]> git.proxmox.com Git - ovs.git/blame - lib/ofp-util.c
ofp-util: Fix port and queue stat counting for OpenFlow 1.3.
[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)) {
4e022ec0 93 wc->masks.in_port.ofp_port = u16_to_ofp(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;
4e022ec0 148 match->flow.in_port.ofp_port = u16_to_ofp(ntohs(ofmatch->in_port));
81a76618
BP
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;
4e022ec0 193 if (!wc->masks.in_port.ofp_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 246 ofmatch->wildcards = htonl(ofpfw);
4e022ec0 247 ofmatch->in_port = htons(ofp_to_u16(match->flow.in_port.ofp_port));
81a76618
BP
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)) {
4e022ec0 314 ofp_port_t ofp_port;
410698cf
BP
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
4e022ec0 469 if (!match->wc.masks.in_port.ofp_port) {
410698cf
BP
470 wc |= OFPFW11_IN_PORT;
471 } else {
4e022ec0 472 ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port.ofp_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
75fa58f8
BP
550/* Returns the "typical" length of a match for 'protocol', for use in
551 * estimating space to preallocate. */
552int
553ofputil_match_typical_len(enum ofputil_protocol protocol)
554{
555 switch (protocol) {
556 case OFPUTIL_P_OF10_STD:
557 case OFPUTIL_P_OF10_STD_TID:
558 return sizeof(struct ofp10_match);
559
560 case OFPUTIL_P_OF10_NXM:
561 case OFPUTIL_P_OF10_NXM_TID:
562 return NXM_TYPICAL_LEN;
563
564 case OFPUTIL_P_OF11_STD:
565 return sizeof(struct ofp11_match);
566
567 case OFPUTIL_P_OF12_OXM:
568 case OFPUTIL_P_OF13_OXM:
569 return NXM_TYPICAL_LEN;
570
571 default:
572 NOT_REACHED();
573 }
574}
575
576/* Appends to 'b' an struct ofp11_match_header followed by a match that
577 * expresses 'match' properly for 'protocol', plus enough zero bytes to pad the
578 * data appended out to a multiple of 8. 'protocol' must be one that is usable
579 * in OpenFlow 1.1 or later.
580 *
581 * This function can cause 'b''s data to be reallocated.
582 *
583 * Returns the number of bytes appended to 'b', excluding the padding. Never
584 * returns zero. */
585int
586ofputil_put_ofp11_match(struct ofpbuf *b, const struct match *match,
587 enum ofputil_protocol protocol)
588{
589 switch (protocol) {
590 case OFPUTIL_P_OF10_STD:
591 case OFPUTIL_P_OF10_STD_TID:
592 case OFPUTIL_P_OF10_NXM:
593 case OFPUTIL_P_OF10_NXM_TID:
594 NOT_REACHED();
595
596 case OFPUTIL_P_OF11_STD: {
597 struct ofp11_match *om;
598
599 /* Make sure that no padding is needed. */
600 BUILD_ASSERT_DECL(sizeof *om % 8 == 0);
601
602 om = ofpbuf_put_uninit(b, sizeof *om);
603 ofputil_match_to_ofp11_match(match, om);
604 return sizeof *om;
605 }
606
607 case OFPUTIL_P_OF12_OXM:
608 case OFPUTIL_P_OF13_OXM:
609 return oxm_put_match(b, match);
610 }
611
612 NOT_REACHED();
613}
614
36956a7d 615/* Given a 'dl_type' value in the format used in struct flow, returns the
eec25dc1
BP
616 * corresponding 'dl_type' value for use in an ofp10_match or ofp11_match
617 * structure. */
36956a7d
BP
618ovs_be16
619ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
620{
621 return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
622 ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
623 : flow_dl_type);
624}
625
eec25dc1 626/* Given a 'dl_type' value in the format used in an ofp10_match or ofp11_match
36956a7d
BP
627 * structure, returns the corresponding 'dl_type' value for use in struct
628 * flow. */
629ovs_be16
630ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
631{
632 return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
633 ? htons(FLOW_DL_TYPE_NONE)
634 : ofp_dl_type);
635}
2e4f5fcf 636\f
27527aa0 637/* Protocols. */
7fa91113 638
27527aa0
BP
639struct proto_abbrev {
640 enum ofputil_protocol protocol;
641 const char *name;
642};
643
644/* Most users really don't care about some of the differences between
645 * protocols. These abbreviations help with that. */
646static const struct proto_abbrev proto_abbrevs[] = {
85813857
BP
647 { OFPUTIL_P_ANY, "any" },
648 { OFPUTIL_P_OF10_STD_ANY, "OpenFlow10" },
6d2c051a 649 { OFPUTIL_P_OF10_NXM_ANY, "NXM" },
e71bff1b 650 { OFPUTIL_P_ANY_OXM, "OXM" },
27527aa0
BP
651};
652#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
653
654enum ofputil_protocol ofputil_flow_dump_protocols[] = {
2e1ae200 655 OFPUTIL_P_OF13_OXM,
8d7785bd 656 OFPUTIL_P_OF12_OXM,
75fa58f8 657 OFPUTIL_P_OF11_STD,
85813857
BP
658 OFPUTIL_P_OF10_NXM,
659 OFPUTIL_P_OF10_STD,
27527aa0
BP
660};
661size_t ofputil_n_flow_dump_protocols = ARRAY_SIZE(ofputil_flow_dump_protocols);
662
4f13da56
BP
663/* Returns the set of ofputil_protocols that are supported with the given
664 * OpenFlow 'version'. 'version' should normally be an 8-bit OpenFlow version
665 * identifier (e.g. 0x01 for OpenFlow 1.0, 0x02 for OpenFlow 1.1). Returns 0
666 * if 'version' is not supported or outside the valid range. */
27527aa0 667enum ofputil_protocol
4f13da56 668ofputil_protocols_from_ofp_version(enum ofp_version version)
27527aa0
BP
669{
670 switch (version) {
2e3fa633 671 case OFP10_VERSION:
4f13da56 672 return OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY;
75fa58f8
BP
673 case OFP11_VERSION:
674 return OFPUTIL_P_OF11_STD;
2e3fa633 675 case OFP12_VERSION:
85813857 676 return OFPUTIL_P_OF12_OXM;
2e1ae200
JR
677 case OFP13_VERSION:
678 return OFPUTIL_P_OF13_OXM;
2e3fa633
SH
679 default:
680 return 0;
27527aa0
BP
681 }
682}
683
4f13da56
BP
684/* Returns the ofputil_protocol that is initially in effect on an OpenFlow
685 * connection that has negotiated the given 'version'. 'version' should
686 * normally be an 8-bit OpenFlow version identifier (e.g. 0x01 for OpenFlow
687 * 1.0, 0x02 for OpenFlow 1.1). Returns 0 if 'version' is not supported or
688 * outside the valid range. */
689enum ofputil_protocol
690ofputil_protocol_from_ofp_version(enum ofp_version version)
691{
692 return rightmost_1bit(ofputil_protocols_from_ofp_version(version));
693}
694
44d3732d 695/* Returns the OpenFlow protocol version number (e.g. OFP10_VERSION,
2e1ae200 696 * etc.) that corresponds to 'protocol'. */
2e3fa633 697enum ofp_version
9e1fd49b
BP
698ofputil_protocol_to_ofp_version(enum ofputil_protocol protocol)
699{
700 switch (protocol) {
85813857
BP
701 case OFPUTIL_P_OF10_STD:
702 case OFPUTIL_P_OF10_STD_TID:
703 case OFPUTIL_P_OF10_NXM:
704 case OFPUTIL_P_OF10_NXM_TID:
9e1fd49b 705 return OFP10_VERSION;
75fa58f8
BP
706 case OFPUTIL_P_OF11_STD:
707 return OFP11_VERSION;
85813857 708 case OFPUTIL_P_OF12_OXM:
44d3732d 709 return OFP12_VERSION;
2e1ae200
JR
710 case OFPUTIL_P_OF13_OXM:
711 return OFP13_VERSION;
9e1fd49b
BP
712 }
713
714 NOT_REACHED();
715}
716
4f13da56
BP
717/* Returns a bitmap of OpenFlow versions that are supported by at
718 * least one of the 'protocols'. */
719uint32_t
720ofputil_protocols_to_version_bitmap(enum ofputil_protocol protocols)
721{
722 uint32_t bitmap = 0;
723
724 for (; protocols; protocols = zero_rightmost_1bit(protocols)) {
725 enum ofputil_protocol protocol = rightmost_1bit(protocols);
726
727 bitmap |= 1u << ofputil_protocol_to_ofp_version(protocol);
728 }
729
730 return bitmap;
731}
732
733/* Returns the set of protocols that are supported on top of the
734 * OpenFlow versions included in 'bitmap'. */
735enum ofputil_protocol
736ofputil_protocols_from_version_bitmap(uint32_t bitmap)
737{
738 enum ofputil_protocol protocols = 0;
739
740 for (; bitmap; bitmap = zero_rightmost_1bit(bitmap)) {
741 enum ofp_version version = rightmost_1bit_idx(bitmap);
742
743 protocols |= ofputil_protocols_from_ofp_version(version);
744 }
745
746 return protocols;
747}
748
27527aa0
BP
749/* Returns true if 'protocol' is a single OFPUTIL_P_* value, false
750 * otherwise. */
7fa91113 751bool
27527aa0 752ofputil_protocol_is_valid(enum ofputil_protocol protocol)
7fa91113 753{
27527aa0
BP
754 return protocol & OFPUTIL_P_ANY && is_pow2(protocol);
755}
756
757/* Returns the equivalent of 'protocol' with the Nicira flow_mod_table_id
758 * extension turned on or off if 'enable' is true or false, respectively.
759 *
760 * This extension is only useful for protocols whose "standard" version does
761 * not allow specific tables to be modified. In particular, this is true of
762 * OpenFlow 1.0. In later versions of OpenFlow, a flow_mod request always
763 * specifies a table ID and so there is no need for such an extension. When
764 * 'protocol' is such a protocol that doesn't need a flow_mod_table_id
765 * extension, this function just returns its 'protocol' argument unchanged
766 * regardless of the value of 'enable'. */
767enum ofputil_protocol
768ofputil_protocol_set_tid(enum ofputil_protocol protocol, bool enable)
769{
770 switch (protocol) {
85813857
BP
771 case OFPUTIL_P_OF10_STD:
772 case OFPUTIL_P_OF10_STD_TID:
773 return enable ? OFPUTIL_P_OF10_STD_TID : OFPUTIL_P_OF10_STD;
27527aa0 774
85813857
BP
775 case OFPUTIL_P_OF10_NXM:
776 case OFPUTIL_P_OF10_NXM_TID:
777 return enable ? OFPUTIL_P_OF10_NXM_TID : OFPUTIL_P_OF10_NXM;
27527aa0 778
75fa58f8
BP
779 case OFPUTIL_P_OF11_STD:
780 return OFPUTIL_P_OF11_STD;
781
85813857
BP
782 case OFPUTIL_P_OF12_OXM:
783 return OFPUTIL_P_OF12_OXM;
44d3732d 784
2e1ae200
JR
785 case OFPUTIL_P_OF13_OXM:
786 return OFPUTIL_P_OF13_OXM;
787
27527aa0
BP
788 default:
789 NOT_REACHED();
7fa91113 790 }
27527aa0 791}
7fa91113 792
27527aa0
BP
793/* Returns the "base" version of 'protocol'. That is, if 'protocol' includes
794 * some extension to a standard protocol version, the return value is the
795 * standard version of that protocol without any extension. If 'protocol' is a
796 * standard protocol version, returns 'protocol' unchanged. */
797enum ofputil_protocol
798ofputil_protocol_to_base(enum ofputil_protocol protocol)
799{
800 return ofputil_protocol_set_tid(protocol, false);
7fa91113
BP
801}
802
27527aa0
BP
803/* Returns 'new_base' with any extensions taken from 'cur'. */
804enum ofputil_protocol
805ofputil_protocol_set_base(enum ofputil_protocol cur,
806 enum ofputil_protocol new_base)
7fa91113 807{
27527aa0
BP
808 bool tid = (cur & OFPUTIL_P_TID) != 0;
809
810 switch (new_base) {
85813857
BP
811 case OFPUTIL_P_OF10_STD:
812 case OFPUTIL_P_OF10_STD_TID:
813 return ofputil_protocol_set_tid(OFPUTIL_P_OF10_STD, tid);
27527aa0 814
85813857
BP
815 case OFPUTIL_P_OF10_NXM:
816 case OFPUTIL_P_OF10_NXM_TID:
817 return ofputil_protocol_set_tid(OFPUTIL_P_OF10_NXM, tid);
27527aa0 818
75fa58f8
BP
819 case OFPUTIL_P_OF11_STD:
820 return ofputil_protocol_set_tid(OFPUTIL_P_OF11_STD, tid);
821
85813857
BP
822 case OFPUTIL_P_OF12_OXM:
823 return ofputil_protocol_set_tid(OFPUTIL_P_OF12_OXM, tid);
44d3732d 824
2e1ae200
JR
825 case OFPUTIL_P_OF13_OXM:
826 return ofputil_protocol_set_tid(OFPUTIL_P_OF13_OXM, tid);
827
7fa91113
BP
828 default:
829 NOT_REACHED();
830 }
831}
832
27527aa0
BP
833/* Returns a string form of 'protocol', if a simple form exists (that is, if
834 * 'protocol' is either a single protocol or it is a combination of protocols
835 * that have a single abbreviation). Otherwise, returns NULL. */
836const char *
837ofputil_protocol_to_string(enum ofputil_protocol protocol)
88ca35ee 838{
27527aa0
BP
839 const struct proto_abbrev *p;
840
841 /* Use a "switch" statement for single-bit names so that we get a compiler
842 * warning if we forget any. */
843 switch (protocol) {
85813857 844 case OFPUTIL_P_OF10_NXM:
27527aa0
BP
845 return "NXM-table_id";
846
85813857 847 case OFPUTIL_P_OF10_NXM_TID:
27527aa0
BP
848 return "NXM+table_id";
849
85813857 850 case OFPUTIL_P_OF10_STD:
27527aa0
BP
851 return "OpenFlow10-table_id";
852
85813857 853 case OFPUTIL_P_OF10_STD_TID:
27527aa0 854 return "OpenFlow10+table_id";
44d3732d 855
75fa58f8
BP
856 case OFPUTIL_P_OF11_STD:
857 return "OpenFlow11";
858
85813857 859 case OFPUTIL_P_OF12_OXM:
e71bff1b 860 return "OXM-OpenFlow12";
2e1ae200
JR
861
862 case OFPUTIL_P_OF13_OXM:
e71bff1b 863 return "OXM-OpenFlow13";
27527aa0
BP
864 }
865
866 /* Check abbreviations. */
867 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
868 if (protocol == p->protocol) {
869 return p->name;
870 }
871 }
872
873 return NULL;
874}
875
876/* Returns a string that represents 'protocols'. The return value might be a
877 * comma-separated list if 'protocols' doesn't have a simple name. The return
878 * value is "none" if 'protocols' is 0.
879 *
880 * The caller must free the returned string (with free()). */
881char *
882ofputil_protocols_to_string(enum ofputil_protocol protocols)
883{
884 struct ds s;
885
cb22974d 886 ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
27527aa0
BP
887 if (protocols == 0) {
888 return xstrdup("none");
889 }
890
891 ds_init(&s);
892 while (protocols) {
893 const struct proto_abbrev *p;
894 int i;
895
896 if (s.length) {
897 ds_put_char(&s, ',');
898 }
899
900 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
901 if ((protocols & p->protocol) == p->protocol) {
902 ds_put_cstr(&s, p->name);
903 protocols &= ~p->protocol;
904 goto match;
905 }
906 }
907
908 for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
909 enum ofputil_protocol bit = 1u << i;
910
911 if (protocols & bit) {
912 ds_put_cstr(&s, ofputil_protocol_to_string(bit));
913 protocols &= ~bit;
914 goto match;
915 }
916 }
917 NOT_REACHED();
918
919 match: ;
920 }
921 return ds_steal_cstr(&s);
922}
923
924static enum ofputil_protocol
925ofputil_protocol_from_string__(const char *s, size_t n)
926{
927 const struct proto_abbrev *p;
928 int i;
929
930 for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
931 enum ofputil_protocol bit = 1u << i;
932 const char *name = ofputil_protocol_to_string(bit);
933
934 if (name && n == strlen(name) && !strncasecmp(s, name, n)) {
935 return bit;
936 }
937 }
938
939 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
940 if (n == strlen(p->name) && !strncasecmp(s, p->name, n)) {
941 return p->protocol;
942 }
943 }
944
945 return 0;
946}
947
948/* Returns the nonempty set of protocols represented by 's', which can be a
949 * single protocol name or abbreviation or a comma-separated list of them.
950 *
951 * Aborts the program with an error message if 's' is invalid. */
952enum ofputil_protocol
953ofputil_protocols_from_string(const char *s)
954{
955 const char *orig_s = s;
956 enum ofputil_protocol protocols;
957
958 protocols = 0;
959 while (*s) {
960 enum ofputil_protocol p;
961 size_t n;
962
963 n = strcspn(s, ",");
964 if (n == 0) {
965 s++;
966 continue;
967 }
968
969 p = ofputil_protocol_from_string__(s, n);
970 if (!p) {
971 ovs_fatal(0, "%.*s: unknown flow protocol", (int) n, s);
972 }
973 protocols |= p;
974
975 s += n;
976 }
977
978 if (!protocols) {
979 ovs_fatal(0, "%s: no flow protocol specified", orig_s);
980 }
981 return protocols;
88ca35ee
BP
982}
983
7beaa082 984static int
03e1125c
SH
985ofputil_version_from_string(const char *s)
986{
987 if (!strcasecmp(s, "OpenFlow10")) {
988 return OFP10_VERSION;
989 }
990 if (!strcasecmp(s, "OpenFlow11")) {
991 return OFP11_VERSION;
992 }
993 if (!strcasecmp(s, "OpenFlow12")) {
994 return OFP12_VERSION;
995 }
2e1ae200
JR
996 if (!strcasecmp(s, "OpenFlow13")) {
997 return OFP13_VERSION;
998 }
7beaa082 999 return 0;
03e1125c
SH
1000}
1001
1002static bool
e091ef84 1003is_delimiter(unsigned char c)
03e1125c
SH
1004{
1005 return isspace(c) || c == ',';
1006}
1007
1008uint32_t
1009ofputil_versions_from_string(const char *s)
1010{
1011 size_t i = 0;
1012 uint32_t bitmap = 0;
1013
1014 while (s[i]) {
1015 size_t j;
7beaa082 1016 int version;
03e1125c
SH
1017 char *key;
1018
1019 if (is_delimiter(s[i])) {
1020 i++;
1021 continue;
1022 }
1023 j = 0;
1024 while (s[i + j] && !is_delimiter(s[i + j])) {
1025 j++;
1026 }
1027 key = xmemdup0(s + i, j);
1028 version = ofputil_version_from_string(key);
7beaa082
SH
1029 if (!version) {
1030 VLOG_FATAL("Unknown OpenFlow version: \"%s\"", key);
1031 }
03e1125c
SH
1032 free(key);
1033 bitmap |= 1u << version;
1034 i += j;
1035 }
1036
1037 return bitmap;
1038}
1039
7beaa082
SH
1040uint32_t
1041ofputil_versions_from_strings(char ** const s, size_t count)
1042{
1043 uint32_t bitmap = 0;
1044
1045 while (count--) {
1046 int version = ofputil_version_from_string(s[count]);
1047 if (!version) {
1048 VLOG_WARN("Unknown OpenFlow version: \"%s\"", s[count]);
1049 } else {
1050 bitmap |= 1u << version;
1051 }
1052 }
1053
1054 return bitmap;
1055}
1056
03e1125c
SH
1057const char *
1058ofputil_version_to_string(enum ofp_version ofp_version)
1059{
1060 switch (ofp_version) {
1061 case OFP10_VERSION:
1062 return "OpenFlow10";
1063 case OFP11_VERSION:
1064 return "OpenFlow11";
1065 case OFP12_VERSION:
1066 return "OpenFlow12";
2e1ae200
JR
1067 case OFP13_VERSION:
1068 return "OpenFlow13";
03e1125c
SH
1069 default:
1070 NOT_REACHED();
1071 }
1072}
1073
54834960
EJ
1074bool
1075ofputil_packet_in_format_is_valid(enum nx_packet_in_format packet_in_format)
1076{
1077 switch (packet_in_format) {
1078 case NXPIF_OPENFLOW10:
1079 case NXPIF_NXM:
1080 return true;
1081 }
1082
1083 return false;
1084}
1085
1086const char *
1087ofputil_packet_in_format_to_string(enum nx_packet_in_format packet_in_format)
1088{
1089 switch (packet_in_format) {
1090 case NXPIF_OPENFLOW10:
1091 return "openflow10";
1092 case NXPIF_NXM:
1093 return "nxm";
1094 default:
1095 NOT_REACHED();
1096 }
1097}
1098
1099int
1100ofputil_packet_in_format_from_string(const char *s)
1101{
1102 return (!strcmp(s, "openflow10") ? NXPIF_OPENFLOW10
1103 : !strcmp(s, "nxm") ? NXPIF_NXM
1104 : -1);
1105}
1106
88ca35ee
BP
1107static bool
1108regs_fully_wildcarded(const struct flow_wildcards *wc)
1109{
1110 int i;
1111
1112 for (i = 0; i < FLOW_N_REGS; i++) {
26720e24 1113 if (wc->masks.regs[i] != 0) {
88ca35ee
BP
1114 return false;
1115 }
1116 }
1117 return true;
1118}
1119
81a76618 1120/* Returns a bit-mask of ofputil_protocols that can be used for sending 'match'
27527aa0
BP
1121 * to a switch (e.g. to add or remove a flow). Only NXM can handle tunnel IDs,
1122 * registers, or fixing the Ethernet multicast bit. Otherwise, it's better to
1123 * use OpenFlow 1.0 protocol for backward compatibility. */
1124enum ofputil_protocol
81a76618 1125ofputil_usable_protocols(const struct match *match)
8368c090 1126{
81a76618 1127 const struct flow_wildcards *wc = &match->wc;
8368c090 1128
cff78c88 1129 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 20);
a877206f 1130
0ad90c84
JR
1131 /* These tunnel params can't be sent in a flow_mod */
1132 if (wc->masks.tunnel.ip_ttl
1133 || wc->masks.tunnel.ip_tos || wc->masks.tunnel.flags) {
4fe3445a
PS
1134 return OFPUTIL_P_NONE;
1135 }
1136
1b567fb9
AA
1137 /* skb_mark and skb_priority can't be sent in a flow_mod */
1138 if (wc->masks.skb_mark || wc->masks.skb_priority) {
1139 return OFPUTIL_P_NONE;
1140 }
1141
7cd90356 1142 /* NXM, OXM, and OF1.1 support bitwise matching on ethernet addresses. */
26720e24
BP
1143 if (!eth_mask_is_exact(wc->masks.dl_src)
1144 && !eth_addr_is_zero(wc->masks.dl_src)) {
2e1ae200
JR
1145 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1146 | OFPUTIL_P_OF13_OXM;
73c0ce34 1147 }
26720e24
BP
1148 if (!eth_mask_is_exact(wc->masks.dl_dst)
1149 && !eth_addr_is_zero(wc->masks.dl_dst)) {
2e1ae200
JR
1150 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1151 | OFPUTIL_P_OF13_OXM;
8368c090
BP
1152 }
1153
7cd90356 1154 /* NXM, OXM, and OF1.1+ support matching metadata. */
26720e24 1155 if (wc->masks.metadata != htonll(0)) {
2e1ae200
JR
1156 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1157 | OFPUTIL_P_OF13_OXM;
969fc56c
JS
1158 }
1159
7cd90356 1160 /* NXM and OXM support matching ARP hardware addresses. */
26720e24
BP
1161 if (!eth_addr_is_zero(wc->masks.arp_sha) ||
1162 !eth_addr_is_zero(wc->masks.arp_tha)) {
2e1ae200
JR
1163 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1164 | OFPUTIL_P_OF13_OXM;
bad68a99
JP
1165 }
1166
340c7bb2
BP
1167 /* NXM and OXM support matching L3 and L4 fields within IPv6.
1168 *
1169 * (arp_sha, arp_tha, nw_frag, and nw_ttl are covered elsewhere so they
1170 * don't need to be included in this test too.) */
1171 if (match->flow.dl_type == htons(ETH_TYPE_IPV6)
1172 && (!ipv6_mask_is_any(&wc->masks.ipv6_src)
1173 || !ipv6_mask_is_any(&wc->masks.ipv6_dst)
1174 || !ipv6_mask_is_any(&wc->masks.nd_target)
1175 || wc->masks.ipv6_label
1176 || wc->masks.tp_src
1177 || wc->masks.tp_dst
1178 || wc->masks.nw_proto
1179 || wc->masks.nw_tos)) {
2e1ae200
JR
1180 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1181 | OFPUTIL_P_OF13_OXM;
d31f1109
JP
1182 }
1183
7cd90356 1184 /* NXM and OXM support matching registers. */
8368c090 1185 if (!regs_fully_wildcarded(wc)) {
2e1ae200
JR
1186 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1187 | OFPUTIL_P_OF13_OXM;
8368c090
BP
1188 }
1189
0ad90c84
JR
1190 /* NXM and OXM support matching tun_id, tun_src, and tun_dst. */
1191 if (wc->masks.tunnel.tun_id != htonll(0)
1192 || wc->masks.tunnel.ip_src != htonl(0)
1193 || wc->masks.tunnel.ip_dst != htonl(0)) {
2e1ae200
JR
1194 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1195 | OFPUTIL_P_OF13_OXM;
8368c090
BP
1196 }
1197
7cd90356 1198 /* NXM and OXM support matching fragments. */
26720e24 1199 if (wc->masks.nw_frag) {
2e1ae200
JR
1200 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1201 | OFPUTIL_P_OF13_OXM;
7257b535
BP
1202 }
1203
7cd90356 1204 /* NXM and OXM support matching IP ECN bits. */
26720e24 1205 if (wc->masks.nw_tos & IP_ECN_MASK) {
2e1ae200
JR
1206 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1207 | OFPUTIL_P_OF13_OXM;
530180fd
JP
1208 }
1209
7cd90356 1210 /* NXM and OXM support matching IP TTL/hop limit. */
26720e24 1211 if (wc->masks.nw_ttl) {
2e1ae200
JR
1212 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1213 | OFPUTIL_P_OF13_OXM;
a61680c6
JP
1214 }
1215
7cd90356 1216 /* NXM and OXM support non-CIDR IPv4 address masks. */
26720e24 1217 if (!ip_is_cidr(wc->masks.nw_src) || !ip_is_cidr(wc->masks.nw_dst)) {
2e1ae200
JR
1218 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1219 | OFPUTIL_P_OF13_OXM;
c08201d6
BP
1220 }
1221
7cd90356 1222 /* NXM and OXM support bitwise matching on transport port. */
26720e24
BP
1223 if ((wc->masks.tp_src && wc->masks.tp_src != htons(UINT16_MAX)) ||
1224 (wc->masks.tp_dst && wc->masks.tp_dst != htons(UINT16_MAX))) {
2e1ae200
JR
1225 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1226 | OFPUTIL_P_OF13_OXM;
73f33563
BP
1227 }
1228
b02475c5
SH
1229 /* NXM and OF1.1+ support matching MPLS label */
1230 if (wc->masks.mpls_lse & htonl(MPLS_LABEL_MASK)) {
1231 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1232 | OFPUTIL_P_OF13_OXM;
1233 }
1234
1235 /* NXM and OF1.1+ support matching MPLS TC */
1236 if (wc->masks.mpls_lse & htonl(MPLS_TC_MASK)) {
1237 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1238 | OFPUTIL_P_OF13_OXM;
1239 }
1240
1241 /* NXM and OF1.3+ support matching MPLS stack flag */
1242 /* Allow for OF1.2 as there doesn't seem to be a
1243 * particularly good reason not to */
1244 if (wc->masks.mpls_lse & htonl(MPLS_BOS_MASK)) {
1245 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1246 | OFPUTIL_P_OF13_OXM;
1247 }
1248
8368c090 1249 /* Other formats can express this rule. */
27527aa0
BP
1250 return OFPUTIL_P_ANY;
1251}
1252
03e1125c
SH
1253void
1254ofputil_format_version(struct ds *msg, enum ofp_version version)
1255{
8989046d 1256 ds_put_format(msg, "0x%02x", version);
03e1125c
SH
1257}
1258
1259void
1260ofputil_format_version_name(struct ds *msg, enum ofp_version version)
1261{
1262 ds_put_cstr(msg, ofputil_version_to_string(version));
1263}
1264
1265static void
1266ofputil_format_version_bitmap__(struct ds *msg, uint32_t bitmap,
1267 void (*format_version)(struct ds *msg,
1268 enum ofp_version))
1269{
1270 while (bitmap) {
1271 format_version(msg, raw_ctz(bitmap));
1272 bitmap = zero_rightmost_1bit(bitmap);
1273 if (bitmap) {
1274 ds_put_cstr(msg, ", ");
1275 }
1276 }
1277}
1278
1279void
1280ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap)
1281{
1282 ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version);
1283}
1284
1285void
1286ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap)
1287{
1288 ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version_name);
1289}
1290
de6c85b0
SH
1291static bool
1292ofputil_decode_hello_bitmap(const struct ofp_hello_elem_header *oheh,
0935de41 1293 uint32_t *allowed_versionsp)
de6c85b0
SH
1294{
1295 uint16_t bitmap_len = ntohs(oheh->length) - sizeof *oheh;
db5a1019 1296 const ovs_be32 *bitmap = ALIGNED_CAST(const ovs_be32 *, oheh + 1);
0935de41 1297 uint32_t allowed_versions;
de6c85b0
SH
1298
1299 if (!bitmap_len || bitmap_len % sizeof *bitmap) {
1300 return false;
1301 }
1302
1303 /* Only use the first 32-bit element of the bitmap as that is all the
1304 * current implementation supports. Subsequent elements are ignored which
1305 * should have no effect on session negotiation until Open vSwtich supports
1306 * wire-protocol versions greater than 31.
1307 */
0935de41 1308 allowed_versions = ntohl(bitmap[0]);
de6c85b0 1309
0935de41 1310 if (allowed_versions & 1) {
de6c85b0
SH
1311 /* There's no OpenFlow version 0. */
1312 VLOG_WARN_RL(&bad_ofmsg_rl, "peer claims to support invalid OpenFlow "
1313 "version 0x00");
0935de41 1314 allowed_versions &= ~1u;
de6c85b0
SH
1315 }
1316
0935de41 1317 if (!allowed_versions) {
de6c85b0
SH
1318 VLOG_WARN_RL(&bad_ofmsg_rl, "peer does not support any OpenFlow "
1319 "version (between 0x01 and 0x1f)");
1320 return false;
1321 }
1322
0935de41 1323 *allowed_versionsp = allowed_versions;
de6c85b0
SH
1324 return true;
1325}
1326
1327static uint32_t
1328version_bitmap_from_version(uint8_t ofp_version)
1329{
1330 return ((ofp_version < 32 ? 1u << ofp_version : 0) - 1) << 1;
1331}
1332
1333/* Decodes OpenFlow OFPT_HELLO message 'oh', storing into '*allowed_versions'
1334 * the set of OpenFlow versions for which 'oh' announces support.
1335 *
1336 * Because of how OpenFlow defines OFPT_HELLO messages, this function is always
1337 * successful, and thus '*allowed_versions' is always initialized. However, it
1338 * returns false if 'oh' contains some data that could not be fully understood,
1339 * true if 'oh' was completely parsed. */
1340bool
1341ofputil_decode_hello(const struct ofp_header *oh, uint32_t *allowed_versions)
1342{
1343 struct ofpbuf msg;
1344 bool ok = true;
1345
1346 ofpbuf_use_const(&msg, oh, ntohs(oh->length));
1347 ofpbuf_pull(&msg, sizeof *oh);
1348
1349 *allowed_versions = version_bitmap_from_version(oh->version);
1350 while (msg.size) {
1351 const struct ofp_hello_elem_header *oheh;
1352 unsigned int len;
1353
1354 if (msg.size < sizeof *oheh) {
1355 return false;
1356 }
1357
1358 oheh = msg.data;
1359 len = ntohs(oheh->length);
1360 if (len < sizeof *oheh || !ofpbuf_try_pull(&msg, ROUND_UP(len, 8))) {
1361 return false;
1362 }
1363
1364 if (oheh->type != htons(OFPHET_VERSIONBITMAP)
1365 || !ofputil_decode_hello_bitmap(oheh, allowed_versions)) {
1366 ok = false;
1367 }
1368 }
1369
1370 return ok;
1371}
1372
1373/* Returns true if 'allowed_versions' needs to be accompanied by a version
1374 * bitmap to be correctly expressed in an OFPT_HELLO message. */
5ddea998 1375static bool
de6c85b0
SH
1376should_send_version_bitmap(uint32_t allowed_versions)
1377{
1378 return !is_pow2((allowed_versions >> 1) + 1);
1379}
1380
1381/* Create an OFPT_HELLO message that expresses support for the OpenFlow
1382 * versions in the 'allowed_versions' bitmaps and returns the message. */
1383struct ofpbuf *
1384ofputil_encode_hello(uint32_t allowed_versions)
1385{
1386 enum ofp_version ofp_version;
1387 struct ofpbuf *msg;
1388
1389 ofp_version = leftmost_1bit_idx(allowed_versions);
1390 msg = ofpraw_alloc(OFPRAW_OFPT_HELLO, ofp_version, 0);
1391
1392 if (should_send_version_bitmap(allowed_versions)) {
1393 struct ofp_hello_elem_header *oheh;
1394 uint16_t map_len;
1395
74c4b9c1 1396 map_len = sizeof allowed_versions;
de6c85b0
SH
1397 oheh = ofpbuf_put_zeros(msg, ROUND_UP(map_len + sizeof *oheh, 8));
1398 oheh->type = htons(OFPHET_VERSIONBITMAP);
1399 oheh->length = htons(map_len + sizeof *oheh);
db5a1019 1400 *ALIGNED_CAST(ovs_be32 *, oheh + 1) = htonl(allowed_versions);
1804d25a
BP
1401
1402 ofpmsg_update_length(msg);
de6c85b0
SH
1403 }
1404
1405 return msg;
1406}
1407
27527aa0
BP
1408/* Returns an OpenFlow message that, sent on an OpenFlow connection whose
1409 * protocol is 'current', at least partly transitions the protocol to 'want'.
1410 * Stores in '*next' the protocol that will be in effect on the OpenFlow
1411 * connection if the switch processes the returned message correctly. (If
1412 * '*next != want' then the caller will have to iterate.)
1413 *
e43928f2
BP
1414 * If 'current == want', or if it is not possible to transition from 'current'
1415 * to 'want' (because, for example, 'current' and 'want' use different OpenFlow
1416 * protocol versions), returns NULL and stores 'current' in '*next'. */
27527aa0
BP
1417struct ofpbuf *
1418ofputil_encode_set_protocol(enum ofputil_protocol current,
1419 enum ofputil_protocol want,
1420 enum ofputil_protocol *next)
1421{
e43928f2 1422 enum ofp_version cur_version, want_version;
27527aa0
BP
1423 enum ofputil_protocol cur_base, want_base;
1424 bool cur_tid, want_tid;
1425
e43928f2
BP
1426 cur_version = ofputil_protocol_to_ofp_version(current);
1427 want_version = ofputil_protocol_to_ofp_version(want);
1428 if (cur_version != want_version) {
1429 *next = current;
1430 return NULL;
1431 }
1432
27527aa0
BP
1433 cur_base = ofputil_protocol_to_base(current);
1434 want_base = ofputil_protocol_to_base(want);
1435 if (cur_base != want_base) {
1436 *next = ofputil_protocol_set_base(current, want_base);
1437
1438 switch (want_base) {
85813857 1439 case OFPUTIL_P_OF10_NXM:
27527aa0
BP
1440 return ofputil_encode_nx_set_flow_format(NXFF_NXM);
1441
85813857 1442 case OFPUTIL_P_OF10_STD:
27527aa0
BP
1443 return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW10);
1444
75fa58f8 1445 case OFPUTIL_P_OF11_STD:
85813857 1446 case OFPUTIL_P_OF12_OXM:
2e1ae200 1447 case OFPUTIL_P_OF13_OXM:
75fa58f8 1448 /* There is only one variant of each OpenFlow 1.1+ protocol, and we
2e1ae200 1449 * verified above that we're not trying to change versions. */
310f3699 1450 NOT_REACHED();
44d3732d 1451
85813857
BP
1452 case OFPUTIL_P_OF10_STD_TID:
1453 case OFPUTIL_P_OF10_NXM_TID:
27527aa0
BP
1454 NOT_REACHED();
1455 }
1456 }
1457
1458 cur_tid = (current & OFPUTIL_P_TID) != 0;
1459 want_tid = (want & OFPUTIL_P_TID) != 0;
1460 if (cur_tid != want_tid) {
1461 *next = ofputil_protocol_set_tid(current, want_tid);
1462 return ofputil_make_flow_mod_table_id(want_tid);
1463 }
1464
cb22974d 1465 ovs_assert(current == want);
27527aa0
BP
1466
1467 *next = current;
1468 return NULL;
88ca35ee
BP
1469}
1470
27527aa0
BP
1471/* Returns an NXT_SET_FLOW_FORMAT message that can be used to set the flow
1472 * format to 'nxff'. */
88ca35ee 1473struct ofpbuf *
27527aa0 1474ofputil_encode_nx_set_flow_format(enum nx_flow_format nxff)
88ca35ee 1475{
73dbf4ab 1476 struct nx_set_flow_format *sff;
88ca35ee
BP
1477 struct ofpbuf *msg;
1478
cb22974d 1479 ovs_assert(ofputil_nx_flow_format_is_valid(nxff));
27527aa0 1480
982697a4
BP
1481 msg = ofpraw_alloc(OFPRAW_NXT_SET_FLOW_FORMAT, OFP10_VERSION, 0);
1482 sff = ofpbuf_put_zeros(msg, sizeof *sff);
27527aa0 1483 sff->format = htonl(nxff);
88ca35ee
BP
1484
1485 return msg;
1486}
1487
27527aa0
BP
1488/* Returns the base protocol if 'flow_format' is a valid NXFF_* value, false
1489 * otherwise. */
1490enum ofputil_protocol
1491ofputil_nx_flow_format_to_protocol(enum nx_flow_format flow_format)
1492{
1493 switch (flow_format) {
1494 case NXFF_OPENFLOW10:
85813857 1495 return OFPUTIL_P_OF10_STD;
27527aa0
BP
1496
1497 case NXFF_NXM:
85813857 1498 return OFPUTIL_P_OF10_NXM;
27527aa0
BP
1499
1500 default:
1501 return 0;
1502 }
1503}
1504
1505/* Returns true if 'flow_format' is a valid NXFF_* value, false otherwise. */
1506bool
1507ofputil_nx_flow_format_is_valid(enum nx_flow_format flow_format)
1508{
1509 return ofputil_nx_flow_format_to_protocol(flow_format) != 0;
1510}
1511
1512/* Returns a string version of 'flow_format', which must be a valid NXFF_*
1513 * value. */
1514const char *
1515ofputil_nx_flow_format_to_string(enum nx_flow_format flow_format)
1516{
1517 switch (flow_format) {
1518 case NXFF_OPENFLOW10:
1519 return "openflow10";
1520 case NXFF_NXM:
1521 return "nxm";
1522 default:
1523 NOT_REACHED();
1524 }
1525}
1526
54834960 1527struct ofpbuf *
3f4a1939
SH
1528ofputil_make_set_packet_in_format(enum ofp_version ofp_version,
1529 enum nx_packet_in_format packet_in_format)
54834960 1530{
73dbf4ab 1531 struct nx_set_packet_in_format *spif;
54834960
EJ
1532 struct ofpbuf *msg;
1533
3f4a1939 1534 msg = ofpraw_alloc(OFPRAW_NXT_SET_PACKET_IN_FORMAT, ofp_version, 0);
982697a4 1535 spif = ofpbuf_put_zeros(msg, sizeof *spif);
54834960
EJ
1536 spif->format = htonl(packet_in_format);
1537
1538 return msg;
1539}
1540
6c1491fb
BP
1541/* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
1542 * extension on or off (according to 'flow_mod_table_id'). */
1543struct ofpbuf *
1544ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
1545{
73dbf4ab 1546 struct nx_flow_mod_table_id *nfmti;
6c1491fb
BP
1547 struct ofpbuf *msg;
1548
982697a4
BP
1549 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD_TABLE_ID, OFP10_VERSION, 0);
1550 nfmti = ofpbuf_put_zeros(msg, sizeof *nfmti);
6c1491fb
BP
1551 nfmti->set = flow_mod_table_id;
1552 return msg;
1553}
1554
7fa91113
BP
1555/* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
1556 * flow_mod in 'fm'. Returns 0 if successful, otherwise an OpenFlow error
1557 * code.
1558 *
f25d0cf3
BP
1559 * Uses 'ofpacts' to store the abstract OFPACT_* version of 'oh''s actions.
1560 * The caller must initialize 'ofpacts' and retains ownership of it.
1561 * 'fm->ofpacts' will point into the 'ofpacts' buffer.
1562 *
1563 * Does not validate the flow_mod actions. The caller should do that, with
1564 * ofpacts_check(). */
90bf1e07 1565enum ofperr
a9a2da38 1566ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
27527aa0 1567 const struct ofp_header *oh,
f25d0cf3
BP
1568 enum ofputil_protocol protocol,
1569 struct ofpbuf *ofpacts)
2e4f5fcf 1570{
6c1491fb 1571 uint16_t command;
2e4f5fcf 1572 struct ofpbuf b;
982697a4 1573 enum ofpraw raw;
2e4f5fcf 1574
2013493b 1575 ofpbuf_use_const(&b, oh, ntohs(oh->length));
982697a4 1576 raw = ofpraw_pull_assert(&b);
aa319503 1577 if (raw == OFPRAW_OFPT11_FLOW_MOD) {
982697a4 1578 /* Standard OpenFlow 1.1 flow_mod. */
aa319503 1579 const struct ofp11_flow_mod *ofm;
90bf1e07 1580 enum ofperr error;
2e4f5fcf 1581
bbc32a88 1582 ofm = ofpbuf_pull(&b, sizeof *ofm);
2e4f5fcf 1583
81a76618 1584 error = ofputil_pull_ofp11_match(&b, &fm->match, NULL);
aa319503
BP
1585 if (error) {
1586 return error;
1c0b7503
BP
1587 }
1588
e3b56933 1589 error = ofpacts_pull_openflow11_instructions(&b, b.size, ofpacts);
f25d0cf3
BP
1590 if (error) {
1591 return error;
1592 }
1593
2e4f5fcf 1594 /* Translate the message. */
81a76618 1595 fm->priority = ntohs(ofm->priority);
75fa58f8
BP
1596 if (ofm->command == OFPFC_ADD
1597 || (oh->version == OFP11_VERSION
1598 && (ofm->command == OFPFC_MODIFY ||
1599 ofm->command == OFPFC_MODIFY_STRICT)
1600 && ofm->cookie_mask == htonll(0))) {
1601 /* In OpenFlow 1.1 only, a "modify" or "modify-strict" that does
1602 * not match on the cookie is treated as an "add" if there is no
1603 * match. */
aa319503
BP
1604 fm->cookie = htonll(0);
1605 fm->cookie_mask = htonll(0);
1606 fm->new_cookie = ofm->cookie;
1607 } else {
aa319503
BP
1608 fm->cookie = ofm->cookie;
1609 fm->cookie_mask = ofm->cookie_mask;
1610 fm->new_cookie = htonll(UINT64_MAX);
1611 }
23342857 1612 fm->modify_cookie = false;
aa319503
BP
1613 fm->command = ofm->command;
1614 fm->table_id = ofm->table_id;
2e4f5fcf
BP
1615 fm->idle_timeout = ntohs(ofm->idle_timeout);
1616 fm->hard_timeout = ntohs(ofm->hard_timeout);
1617 fm->buffer_id = ntohl(ofm->buffer_id);
aa319503 1618 error = ofputil_port_from_ofp11(ofm->out_port, &fm->out_port);
2e4f5fcf
BP
1619 if (error) {
1620 return error;
1621 }
09861c3f
JR
1622 if ((ofm->command == OFPFC_DELETE
1623 || ofm->command == OFPFC_DELETE_STRICT)
1624 && ofm->out_group != htonl(OFPG_ANY)) {
fb9515e1 1625 return OFPERR_OFPFMFC_UNKNOWN;
2e4f5fcf 1626 }
aa319503
BP
1627 fm->flags = ntohs(ofm->flags);
1628 } else {
1629 if (raw == OFPRAW_OFPT10_FLOW_MOD) {
1630 /* Standard OpenFlow 1.0 flow_mod. */
1631 const struct ofp10_flow_mod *ofm;
aa319503
BP
1632 enum ofperr error;
1633
1634 /* Get the ofp10_flow_mod. */
1635 ofm = ofpbuf_pull(&b, sizeof *ofm);
1636
aa319503 1637 /* Translate the rule. */
81a76618
BP
1638 ofputil_match_from_ofp10_match(&ofm->match, &fm->match);
1639 ofputil_normalize_match(&fm->match);
aa319503
BP
1640
1641 /* Now get the actions. */
1642 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1643 if (error) {
1644 return error;
1645 }
1646
81a76618
BP
1647 /* OpenFlow 1.0 says that exact-match rules have to have the
1648 * highest possible priority. */
1649 fm->priority = (ofm->match.wildcards & htonl(OFPFW10_ALL)
1650 ? ntohs(ofm->priority)
1651 : UINT16_MAX);
1652
aa319503
BP
1653 /* Translate the message. */
1654 command = ntohs(ofm->command);
1655 fm->cookie = htonll(0);
1656 fm->cookie_mask = htonll(0);
1657 fm->new_cookie = ofm->cookie;
1658 fm->idle_timeout = ntohs(ofm->idle_timeout);
1659 fm->hard_timeout = ntohs(ofm->hard_timeout);
1660 fm->buffer_id = ntohl(ofm->buffer_id);
4e022ec0 1661 fm->out_port = u16_to_ofp(ntohs(ofm->out_port));
aa319503
BP
1662 fm->flags = ntohs(ofm->flags);
1663 } else if (raw == OFPRAW_NXT_FLOW_MOD) {
1664 /* Nicira extended flow_mod. */
1665 const struct nx_flow_mod *nfm;
1666 enum ofperr error;
1667
1668 /* Dissect the message. */
1669 nfm = ofpbuf_pull(&b, sizeof *nfm);
81a76618
BP
1670 error = nx_pull_match(&b, ntohs(nfm->match_len),
1671 &fm->match, &fm->cookie, &fm->cookie_mask);
aa319503
BP
1672 if (error) {
1673 return error;
1674 }
1675 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1676 if (error) {
1677 return error;
1678 }
1679
1680 /* Translate the message. */
1681 command = ntohs(nfm->command);
1682 if ((command & 0xff) == OFPFC_ADD && fm->cookie_mask) {
1683 /* Flow additions may only set a new cookie, not match an
1684 * existing cookie. */
1685 return OFPERR_NXBRC_NXM_INVALID;
1686 }
81a76618 1687 fm->priority = ntohs(nfm->priority);
aa319503
BP
1688 fm->new_cookie = nfm->cookie;
1689 fm->idle_timeout = ntohs(nfm->idle_timeout);
1690 fm->hard_timeout = ntohs(nfm->hard_timeout);
1691 fm->buffer_id = ntohl(nfm->buffer_id);
4e022ec0 1692 fm->out_port = u16_to_ofp(ntohs(nfm->out_port));
aa319503
BP
1693 fm->flags = ntohs(nfm->flags);
1694 } else {
1695 NOT_REACHED();
1696 }
1697
2e1ae200
JR
1698 if (fm->flags & OFPFF10_EMERG) {
1699 /* We do not support the OpenFlow 1.0 emergency flow cache, which
1700 * is not required in OpenFlow 1.0.1 and removed from OpenFlow 1.1.
b5bf17dd
BP
1701 *
1702 * OpenFlow 1.0 specifies the error code to use when idle_timeout
1703 * or hard_timeout is nonzero. Otherwise, there is no good error
1704 * code, so just state that the flow table is full. */
1705 return (fm->hard_timeout || fm->idle_timeout
1706 ? OFPERR_OFPFMFC_BAD_EMERG_TIMEOUT
1707 : OFPERR_OFPFMFC_TABLE_FULL);
2e1ae200
JR
1708 }
1709
75fa58f8 1710 fm->modify_cookie = fm->new_cookie != htonll(UINT64_MAX);
aa319503
BP
1711 if (protocol & OFPUTIL_P_TID) {
1712 fm->command = command & 0xff;
1713 fm->table_id = command >> 8;
1714 } else {
1715 fm->command = command;
1716 fm->table_id = 0xff;
e729e793 1717 }
2e4f5fcf
BP
1718 }
1719
f25d0cf3
BP
1720 fm->ofpacts = ofpacts->data;
1721 fm->ofpacts_len = ofpacts->size;
6c1491fb 1722
2e4f5fcf
BP
1723 return 0;
1724}
1725
638a19b0
JR
1726static enum ofperr
1727ofputil_pull_bands(struct ofpbuf *msg, size_t len, uint16_t *n_bands,
1728 struct ofpbuf *bands)
1729{
1730 const struct ofp13_meter_band_header *ombh;
1731 struct ofputil_meter_band *mb;
1732 uint16_t n = 0;
1733
1734 ombh = ofpbuf_try_pull(msg, len);
1735 if (!ombh) {
1736 return OFPERR_OFPBRC_BAD_LEN;
1737 }
1738
1739 while (len >= sizeof (struct ofp13_meter_band_drop)) {
1740 size_t ombh_len = ntohs(ombh->len);
0445637d 1741 /* All supported band types have the same length. */
638a19b0
JR
1742 if (ombh_len != sizeof (struct ofp13_meter_band_drop)) {
1743 return OFPERR_OFPBRC_BAD_LEN;
1744 }
1745 mb = ofpbuf_put_uninit(bands, sizeof *mb);
1746 mb->type = ntohs(ombh->type);
1747 mb->rate = ntohl(ombh->rate);
1748 mb->burst_size = ntohl(ombh->burst_size);
1749 mb->prec_level = (mb->type == OFPMBT13_DSCP_REMARK) ?
1750 ((struct ofp13_meter_band_dscp_remark *)ombh)->prec_level : 0;
1751 n++;
1752 len -= ombh_len;
db5a1019
AW
1753 ombh = ALIGNED_CAST(struct ofp13_meter_band_header *,
1754 (char *) ombh + ombh_len);
638a19b0
JR
1755 }
1756 if (len) {
1757 return OFPERR_OFPBRC_BAD_LEN;
1758 }
1759 *n_bands = n;
1760 return 0;
1761}
1762
1763enum ofperr
1764ofputil_decode_meter_mod(const struct ofp_header *oh,
1765 struct ofputil_meter_mod *mm,
1766 struct ofpbuf *bands)
1767{
1768 const struct ofp13_meter_mod *omm;
1769 struct ofpbuf b;
1770
1771 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1772 ofpraw_pull_assert(&b);
1773 omm = ofpbuf_pull(&b, sizeof *omm);
1774
1775 /* Translate the message. */
1776 mm->command = ntohs(omm->command);
1777 mm->meter.meter_id = ntohl(omm->meter_id);
1778
1779 if (mm->command == OFPMC13_DELETE) {
1780 mm->meter.flags = 0;
1781 mm->meter.n_bands = 0;
1782 mm->meter.bands = NULL;
1783 } else {
1784 enum ofperr error;
1785
1786 mm->meter.flags = ntohs(omm->flags);
1787 mm->meter.bands = bands->data;
1788
0445637d 1789 error = ofputil_pull_bands(&b, b.size, &mm->meter.n_bands, bands);
638a19b0
JR
1790 if (error) {
1791 return error;
1792 }
1793 }
1794 return 0;
1795}
1796
1797void
1798ofputil_decode_meter_request(const struct ofp_header *oh, uint32_t *meter_id)
1799{
1800 const struct ofp13_meter_multipart_request *omr = ofpmsg_body(oh);
1801 *meter_id = ntohl(omr->meter_id);
1802}
1803
1804struct ofpbuf *
1805ofputil_encode_meter_request(enum ofp_version ofp_version,
1806 enum ofputil_meter_request_type type,
1807 uint32_t meter_id)
1808{
1809 struct ofpbuf *msg;
1810
1811 enum ofpraw raw;
1812
1813 switch (type) {
1814 case OFPUTIL_METER_CONFIG:
1815 raw = OFPRAW_OFPST13_METER_CONFIG_REQUEST;
1816 break;
1817 case OFPUTIL_METER_STATS:
1818 raw = OFPRAW_OFPST13_METER_REQUEST;
1819 break;
1820 default:
1821 case OFPUTIL_METER_FEATURES:
1822 raw = OFPRAW_OFPST13_METER_FEATURES_REQUEST;
1823 break;
1824 }
1825
1826 msg = ofpraw_alloc(raw, ofp_version, 0);
1827
1828 if (type != OFPUTIL_METER_FEATURES) {
1829 struct ofp13_meter_multipart_request *omr;
1830 omr = ofpbuf_put_zeros(msg, sizeof *omr);
1831 omr->meter_id = htonl(meter_id);
1832 }
1833 return msg;
1834}
1835
1836static void
1837ofputil_put_bands(uint16_t n_bands, const struct ofputil_meter_band *mb,
1838 struct ofpbuf *msg)
1839{
1840 uint16_t n = 0;
1841
1842 for (n = 0; n < n_bands; ++n) {
0445637d 1843 /* Currently all band types have same size. */
638a19b0
JR
1844 struct ofp13_meter_band_dscp_remark *ombh;
1845 size_t ombh_len = sizeof *ombh;
1846
1847 ombh = ofpbuf_put_zeros(msg, ombh_len);
1848
1849 ombh->type = htons(mb->type);
1850 ombh->len = htons(ombh_len);
1851 ombh->rate = htonl(mb->rate);
1852 ombh->burst_size = htonl(mb->burst_size);
1853 ombh->prec_level = mb->prec_level;
1854
1855 mb++;
1856 }
1857}
1858
1859/* Encode a meter stat for 'mc' and append it to 'replies'. */
1860void
1861ofputil_append_meter_config(struct list *replies,
1862 const struct ofputil_meter_config *mc)
1863{
1864 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
1865 size_t start_ofs = msg->size;
1866 struct ofp13_meter_config *reply = ofpbuf_put_uninit(msg, sizeof *reply);
1867 reply->flags = htons(mc->flags);
1868 reply->meter_id = htonl(mc->meter_id);
1869
1870 ofputil_put_bands(mc->n_bands, mc->bands, msg);
1871
1872 reply->length = htons(msg->size - start_ofs);
1873
1874 ofpmp_postappend(replies, start_ofs);
1875}
1876
1877/* Encode a meter stat for 'ms' and append it to 'replies'. */
1878void
1879ofputil_append_meter_stats(struct list *replies,
1880 const struct ofputil_meter_stats *ms)
1881{
1882 struct ofp13_meter_stats *reply;
1883 uint16_t n = 0;
1884 uint16_t len;
1885
1886 len = sizeof *reply + ms->n_bands * sizeof(struct ofp13_meter_band_stats);
1887 reply = ofpmp_append(replies, len);
1888
1889 reply->meter_id = htonl(ms->meter_id);
1890 reply->len = htons(len);
1891 memset(reply->pad, 0, sizeof reply->pad);
1892 reply->flow_count = htonl(ms->flow_count);
1893 reply->packet_in_count = htonll(ms->packet_in_count);
1894 reply->byte_in_count = htonll(ms->byte_in_count);
1895 reply->duration_sec = htonl(ms->duration_sec);
1896 reply->duration_nsec = htonl(ms->duration_nsec);
1897
1898 for (n = 0; n < ms->n_bands; ++n) {
1899 const struct ofputil_meter_band_stats *src = &ms->bands[n];
1900 struct ofp13_meter_band_stats *dst = &reply->band_stats[n];
1901
1902 dst->packet_band_count = htonll(src->packet_count);
1903 dst->byte_band_count = htonll(src->byte_count);
1904 }
1905}
1906
1907/* Converts an OFPMP_METER_CONFIG reply in 'msg' into an abstract
1908 * ofputil_meter_config in 'mc', with mc->bands pointing to bands decoded into
1909 * 'bands'. The caller must have initialized 'bands' and retains ownership of
1910 * it across the call.
1911 *
1912 * Multiple OFPST13_METER_CONFIG replies can be packed into a single OpenFlow
1913 * message. Calling this function multiple times for a single 'msg' iterates
1914 * through the replies. 'bands' is cleared for each reply.
1915 *
1916 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1917 * otherwise a positive errno value. */
1918int
1919ofputil_decode_meter_config(struct ofpbuf *msg,
1920 struct ofputil_meter_config *mc,
1921 struct ofpbuf *bands)
1922{
1923 const struct ofp13_meter_config *omc;
1924 enum ofperr err;
1925
1926 /* Pull OpenFlow headers for the first call. */
1927 if (!msg->l2) {
1928 ofpraw_pull_assert(msg);
1929 }
1930
1931 if (!msg->size) {
1932 return EOF;
1933 }
1934
1935 omc = ofpbuf_try_pull(msg, sizeof *omc);
1936 if (!omc) {
0445637d
JR
1937 VLOG_WARN_RL(&bad_ofmsg_rl,
1938 "OFPMP_METER_CONFIG reply has %zu leftover bytes at end",
1939 msg->size);
638a19b0
JR
1940 return OFPERR_OFPBRC_BAD_LEN;
1941 }
1942
1943 ofpbuf_clear(bands);
1944 err = ofputil_pull_bands(msg, ntohs(omc->length) - sizeof *omc,
1945 &mc->n_bands, bands);
1946 if (err) {
1947 return err;
1948 }
1949 mc->meter_id = ntohl(omc->meter_id);
1950 mc->flags = ntohs(omc->flags);
1951 mc->bands = bands->data;
1952
1953 return 0;
1954}
1955
1956static enum ofperr
1957ofputil_pull_band_stats(struct ofpbuf *msg, size_t len, uint16_t *n_bands,
1958 struct ofpbuf *bands)
1959{
1960 const struct ofp13_meter_band_stats *ombs;
1961 struct ofputil_meter_band_stats *mbs;
1962 uint16_t n, i;
1963
0445637d
JR
1964 ombs = ofpbuf_try_pull(msg, len);
1965 if (!ombs) {
1966 return OFPERR_OFPBRC_BAD_LEN;
1967 }
1968
638a19b0
JR
1969 n = len / sizeof *ombs;
1970 if (len != n * sizeof *ombs) {
1971 return OFPERR_OFPBRC_BAD_LEN;
1972 }
1973
638a19b0
JR
1974 mbs = ofpbuf_put_uninit(bands, len);
1975
1976 for (i = 0; i < n; ++i) {
1977 mbs[i].packet_count = ntohll(ombs[i].packet_band_count);
1978 mbs[i].byte_count = ntohll(ombs[i].byte_band_count);
1979 }
1980 *n_bands = n;
1981 return 0;
1982}
1983
1984/* Converts an OFPMP_METER reply in 'msg' into an abstract
1985 * ofputil_meter_stats in 'ms', with ms->bands pointing to band stats
1986 * decoded into 'bands'.
1987 *
1988 * Multiple OFPMP_METER replies can be packed into a single OpenFlow
1989 * message. Calling this function multiple times for a single 'msg' iterates
1990 * through the replies. 'bands' is cleared for each reply.
1991 *
1992 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1993 * otherwise a positive errno value. */
1994int
1995ofputil_decode_meter_stats(struct ofpbuf *msg,
1996 struct ofputil_meter_stats *ms,
1997 struct ofpbuf *bands)
1998{
1999 const struct ofp13_meter_stats *oms;
638a19b0
JR
2000 enum ofperr err;
2001
2002 /* Pull OpenFlow headers for the first call. */
2003 if (!msg->l2) {
2004 ofpraw_pull_assert(msg);
2005 }
2006
2007 if (!msg->size) {
2008 return EOF;
2009 }
2010
2011 oms = ofpbuf_try_pull(msg, sizeof *oms);
2012 if (!oms) {
0445637d
JR
2013 VLOG_WARN_RL(&bad_ofmsg_rl,
2014 "OFPMP_METER reply has %zu leftover bytes at end",
2015 msg->size);
638a19b0
JR
2016 return OFPERR_OFPBRC_BAD_LEN;
2017 }
638a19b0
JR
2018
2019 ofpbuf_clear(bands);
0445637d
JR
2020 err = ofputil_pull_band_stats(msg, ntohs(oms->len) - sizeof *oms,
2021 &ms->n_bands, bands);
638a19b0
JR
2022 if (err) {
2023 return err;
2024 }
2025 ms->meter_id = ntohl(oms->meter_id);
2026 ms->flow_count = ntohl(oms->flow_count);
2027 ms->packet_in_count = ntohll(oms->packet_in_count);
2028 ms->byte_in_count = ntohll(oms->byte_in_count);
2029 ms->duration_sec = ntohl(oms->duration_sec);
2030 ms->duration_nsec = ntohl(oms->duration_nsec);
2031 ms->bands = bands->data;
2032
2033 return 0;
2034}
2035
2036void
2037ofputil_decode_meter_features(const struct ofp_header *oh,
2038 struct ofputil_meter_features *mf)
2039{
2040 const struct ofp13_meter_features *omf = ofpmsg_body(oh);
2041
2042 mf->max_meters = ntohl(omf->max_meter);
2043 mf->band_types = ntohl(omf->band_types);
2044 mf->capabilities = ntohl(omf->capabilities);
2045 mf->max_bands = omf->max_bands;
2046 mf->max_color = omf->max_color;
2047}
2048
2049struct ofpbuf *
2050ofputil_encode_meter_features_reply(const struct ofputil_meter_features *mf,
2051 const struct ofp_header *request)
2052{
2053 struct ofpbuf *reply;
2054 struct ofp13_meter_features *omf;
2055
2056 reply = ofpraw_alloc_stats_reply(request, 0);
2057 omf = ofpbuf_put_zeros(reply, sizeof *omf);
2058
2059 omf->max_meter = htonl(mf->max_meters);
2060 omf->band_types = htonl(mf->band_types);
2061 omf->capabilities = htonl(mf->capabilities);
2062 omf->max_bands = mf->max_bands;
2063 omf->max_color = mf->max_color;
2064
2065 return reply;
2066}
2067
2068struct ofpbuf *
2069ofputil_encode_meter_mod(enum ofp_version ofp_version,
2070 const struct ofputil_meter_mod *mm)
2071{
2072 struct ofpbuf *msg;
2073
2074 struct ofp13_meter_mod *omm;
2075
2076 msg = ofpraw_alloc(OFPRAW_OFPT13_METER_MOD, ofp_version,
2077 NXM_TYPICAL_LEN + mm->meter.n_bands * 16);
2078 omm = ofpbuf_put_zeros(msg, sizeof *omm);
2079 omm->command = htons(mm->command);
2080 if (mm->command != OFPMC13_DELETE) {
2081 omm->flags = htons(mm->meter.flags);
2082 }
2083 omm->meter_id = htonl(mm->meter.meter_id);
2084
2085 ofputil_put_bands(mm->meter.n_bands, mm->meter.bands, msg);
2086
2087 ofpmsg_update_length(msg);
2088 return msg;
2089}
2090
aa6305ea
SH
2091static ovs_be16
2092ofputil_tid_command(const struct ofputil_flow_mod *fm,
2093 enum ofputil_protocol protocol)
2094{
2095 return htons(protocol & OFPUTIL_P_TID
2096 ? (fm->command & 0xff) | (fm->table_id << 8)
2097 : fm->command);
2098}
2099
2e4f5fcf 2100/* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
6cbe2c0f 2101 * 'protocol' and returns the message. */
2e4f5fcf 2102struct ofpbuf *
a9a2da38 2103ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
27527aa0 2104 enum ofputil_protocol protocol)
2e4f5fcf 2105{
2e4f5fcf
BP
2106 struct ofpbuf *msg;
2107
27527aa0 2108 switch (protocol) {
75fa58f8 2109 case OFPUTIL_P_OF11_STD:
2e1ae200
JR
2110 case OFPUTIL_P_OF12_OXM:
2111 case OFPUTIL_P_OF13_OXM: {
aa6305ea 2112 struct ofp11_flow_mod *ofm;
75fa58f8 2113 int tailroom;
aa6305ea 2114
75fa58f8 2115 tailroom = ofputil_match_typical_len(protocol) + fm->ofpacts_len;
4e022ec0 2116 msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD,
2e1ae200 2117 ofputil_protocol_to_ofp_version(protocol),
75fa58f8 2118 tailroom);
aa6305ea 2119 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
75fa58f8
BP
2120 if ((protocol == OFPUTIL_P_OF11_STD
2121 && (fm->command == OFPFC_MODIFY ||
2122 fm->command == OFPFC_MODIFY_STRICT)
2123 && fm->cookie_mask == htonll(0))
2124 || fm->command == OFPFC_ADD) {
a5ff8823
SH
2125 ofm->cookie = fm->new_cookie;
2126 } else {
2127 ofm->cookie = fm->cookie;
2128 }
aa6305ea
SH
2129 ofm->cookie_mask = fm->cookie_mask;
2130 ofm->table_id = fm->table_id;
2131 ofm->command = fm->command;
2132 ofm->idle_timeout = htons(fm->idle_timeout);
2133 ofm->hard_timeout = htons(fm->hard_timeout);
81a76618 2134 ofm->priority = htons(fm->priority);
aa6305ea
SH
2135 ofm->buffer_id = htonl(fm->buffer_id);
2136 ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
2137 ofm->out_group = htonl(OFPG11_ANY);
2138 ofm->flags = htons(fm->flags);
75fa58f8 2139 ofputil_put_ofp11_match(msg, &fm->match, protocol);
5b289eaf 2140 ofpacts_put_openflow11_instructions(fm->ofpacts, fm->ofpacts_len, msg);
aa6305ea
SH
2141 break;
2142 }
2143
85813857
BP
2144 case OFPUTIL_P_OF10_STD:
2145 case OFPUTIL_P_OF10_STD_TID: {
3f192f23
SH
2146 struct ofp10_flow_mod *ofm;
2147
982697a4
BP
2148 msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
2149 fm->ofpacts_len);
2150 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
81a76618 2151 ofputil_match_to_ofp10_match(&fm->match, &ofm->match);
623e1caf 2152 ofm->cookie = fm->new_cookie;
aa6305ea 2153 ofm->command = ofputil_tid_command(fm, protocol);
2e4f5fcf
BP
2154 ofm->idle_timeout = htons(fm->idle_timeout);
2155 ofm->hard_timeout = htons(fm->hard_timeout);
81a76618 2156 ofm->priority = htons(fm->priority);
2e4f5fcf 2157 ofm->buffer_id = htonl(fm->buffer_id);
4e022ec0 2158 ofm->out_port = htons(ofp_to_u16(fm->out_port));
2e4f5fcf 2159 ofm->flags = htons(fm->flags);
5b289eaf 2160 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
27527aa0 2161 break;
3f192f23 2162 }
2e4f5fcf 2163
85813857
BP
2164 case OFPUTIL_P_OF10_NXM:
2165 case OFPUTIL_P_OF10_NXM_TID: {
3f192f23
SH
2166 struct nx_flow_mod *nfm;
2167 int match_len;
2168
982697a4
BP
2169 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
2170 NXM_TYPICAL_LEN + fm->ofpacts_len);
2171 nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
aa6305ea 2172 nfm->command = ofputil_tid_command(fm, protocol);
623e1caf 2173 nfm->cookie = fm->new_cookie;
81a76618 2174 match_len = nx_put_match(msg, &fm->match, fm->cookie, fm->cookie_mask);
982697a4 2175 nfm = msg->l3;
2e4f5fcf
BP
2176 nfm->idle_timeout = htons(fm->idle_timeout);
2177 nfm->hard_timeout = htons(fm->hard_timeout);
81a76618 2178 nfm->priority = htons(fm->priority);
2e4f5fcf 2179 nfm->buffer_id = htonl(fm->buffer_id);
4e022ec0 2180 nfm->out_port = htons(ofp_to_u16(fm->out_port));
2e4f5fcf
BP
2181 nfm->flags = htons(fm->flags);
2182 nfm->match_len = htons(match_len);
5b289eaf 2183 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
27527aa0 2184 break;
3f192f23 2185 }
27527aa0
BP
2186
2187 default:
2e4f5fcf
BP
2188 NOT_REACHED();
2189 }
2190
982697a4 2191 ofpmsg_update_length(msg);
2e4f5fcf
BP
2192 return msg;
2193}
2194
27527aa0
BP
2195/* Returns a bitmask with a 1-bit for each protocol that could be used to
2196 * send all of the 'n_fm's flow table modification requests in 'fms', and a
2197 * 0-bit for each protocol that is inadequate.
2198 *
2199 * (The return value will have at least one 1-bit.) */
2200enum ofputil_protocol
2201ofputil_flow_mod_usable_protocols(const struct ofputil_flow_mod *fms,
2202 size_t n_fms)
2203{
2204 enum ofputil_protocol usable_protocols;
2205 size_t i;
2206
2207 usable_protocols = OFPUTIL_P_ANY;
2208 for (i = 0; i < n_fms; i++) {
2209 const struct ofputil_flow_mod *fm = &fms[i];
2210
81a76618 2211 usable_protocols &= ofputil_usable_protocols(&fm->match);
27527aa0
BP
2212 if (fm->table_id != 0xff) {
2213 usable_protocols &= OFPUTIL_P_TID;
2214 }
623e1caf 2215
7cd90356 2216 /* Matching of the cookie is only supported through NXM or OF1.1+. */
623e1caf 2217 if (fm->cookie_mask != htonll(0)) {
75fa58f8
BP
2218 usable_protocols &= (OFPUTIL_P_OF10_NXM_ANY
2219 | OFPUTIL_P_OF11_STD
2220 | OFPUTIL_P_OF12_OXM
2221 | OFPUTIL_P_OF13_OXM);
27527aa0
BP
2222 }
2223 }
27527aa0
BP
2224
2225 return usable_protocols;
2226}
2227
90bf1e07 2228static enum ofperr
0157ad3a
SH
2229ofputil_decode_ofpst10_flow_request(struct ofputil_flow_stats_request *fsr,
2230 const struct ofp10_flow_stats_request *ofsr,
2231 bool aggregate)
2e4f5fcf 2232{
2e4f5fcf 2233 fsr->aggregate = aggregate;
81a76618 2234 ofputil_match_from_ofp10_match(&ofsr->match, &fsr->match);
4e022ec0 2235 fsr->out_port = u16_to_ofp(ntohs(ofsr->out_port));
2e4f5fcf 2236 fsr->table_id = ofsr->table_id;
e729e793 2237 fsr->cookie = fsr->cookie_mask = htonll(0);
2e4f5fcf
BP
2238
2239 return 0;
2240}
2241
0157ad3a
SH
2242static enum ofperr
2243ofputil_decode_ofpst11_flow_request(struct ofputil_flow_stats_request *fsr,
2244 struct ofpbuf *b, bool aggregate)
2245{
2246 const struct ofp11_flow_stats_request *ofsr;
2247 enum ofperr error;
2248
2249 ofsr = ofpbuf_pull(b, sizeof *ofsr);
2250 fsr->aggregate = aggregate;
2251 fsr->table_id = ofsr->table_id;
2252 error = ofputil_port_from_ofp11(ofsr->out_port, &fsr->out_port);
2253 if (error) {
2254 return error;
2255 }
2256 if (ofsr->out_group != htonl(OFPG11_ANY)) {
fb9515e1 2257 return OFPERR_OFPFMFC_UNKNOWN;
0157ad3a
SH
2258 }
2259 fsr->cookie = ofsr->cookie;
2260 fsr->cookie_mask = ofsr->cookie_mask;
81a76618 2261 error = ofputil_pull_ofp11_match(b, &fsr->match, NULL);
0157ad3a
SH
2262 if (error) {
2263 return error;
2264 }
2265
2266 return 0;
2267}
2268
90bf1e07 2269static enum ofperr
81d1ea94 2270ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
982697a4 2271 struct ofpbuf *b, bool aggregate)
2e4f5fcf
BP
2272{
2273 const struct nx_flow_stats_request *nfsr;
90bf1e07 2274 enum ofperr error;
2e4f5fcf 2275
982697a4 2276 nfsr = ofpbuf_pull(b, sizeof *nfsr);
81a76618 2277 error = nx_pull_match(b, ntohs(nfsr->match_len), &fsr->match,
e729e793 2278 &fsr->cookie, &fsr->cookie_mask);
2e4f5fcf
BP
2279 if (error) {
2280 return error;
2281 }
982697a4 2282 if (b->size) {
90bf1e07 2283 return OFPERR_OFPBRC_BAD_LEN;
2e4f5fcf
BP
2284 }
2285
2286 fsr->aggregate = aggregate;
4e022ec0 2287 fsr->out_port = u16_to_ofp(ntohs(nfsr->out_port));
2e4f5fcf
BP
2288 fsr->table_id = nfsr->table_id;
2289
2290 return 0;
2291}
2292
2293/* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
b78f6b77
BP
2294 * request 'oh', into an abstract flow_stats_request in 'fsr'. Returns 0 if
2295 * successful, otherwise an OpenFlow error code. */
90bf1e07 2296enum ofperr
81d1ea94 2297ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
b78f6b77 2298 const struct ofp_header *oh)
2e4f5fcf 2299{
982697a4 2300 enum ofpraw raw;
2e4f5fcf 2301 struct ofpbuf b;
2e4f5fcf 2302
2013493b 2303 ofpbuf_use_const(&b, oh, ntohs(oh->length));
982697a4
BP
2304 raw = ofpraw_pull_assert(&b);
2305 switch ((int) raw) {
cfc23141 2306 case OFPRAW_OFPST10_FLOW_REQUEST:
0157ad3a 2307 return ofputil_decode_ofpst10_flow_request(fsr, b.data, false);
2e4f5fcf 2308
617da9cd 2309 case OFPRAW_OFPST10_AGGREGATE_REQUEST:
0157ad3a
SH
2310 return ofputil_decode_ofpst10_flow_request(fsr, b.data, true);
2311
2312 case OFPRAW_OFPST11_FLOW_REQUEST:
2313 return ofputil_decode_ofpst11_flow_request(fsr, &b, false);
2e4f5fcf 2314
617da9cd
SH
2315 case OFPRAW_OFPST11_AGGREGATE_REQUEST:
2316 return ofputil_decode_ofpst11_flow_request(fsr, &b, true);
2317
982697a4
BP
2318 case OFPRAW_NXST_FLOW_REQUEST:
2319 return ofputil_decode_nxst_flow_request(fsr, &b, false);
2e4f5fcf 2320
982697a4
BP
2321 case OFPRAW_NXST_AGGREGATE_REQUEST:
2322 return ofputil_decode_nxst_flow_request(fsr, &b, true);
2e4f5fcf
BP
2323
2324 default:
2325 /* Hey, the caller lied. */
2326 NOT_REACHED();
2327 }
2328}
2329
2330/* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
4ffd1b43 2331 * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
27527aa0 2332 * 'protocol', and returns the message. */
2e4f5fcf 2333struct ofpbuf *
81d1ea94 2334ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
27527aa0 2335 enum ofputil_protocol protocol)
2e4f5fcf
BP
2336{
2337 struct ofpbuf *msg;
982697a4 2338 enum ofpraw raw;
2e4f5fcf 2339
27527aa0 2340 switch (protocol) {
75fa58f8 2341 case OFPUTIL_P_OF11_STD:
2e1ae200
JR
2342 case OFPUTIL_P_OF12_OXM:
2343 case OFPUTIL_P_OF13_OXM: {
06516c65
SH
2344 struct ofp11_flow_stats_request *ofsr;
2345
2346 raw = (fsr->aggregate
617da9cd 2347 ? OFPRAW_OFPST11_AGGREGATE_REQUEST
cfc23141 2348 : OFPRAW_OFPST11_FLOW_REQUEST);
2e1ae200 2349 msg = ofpraw_alloc(raw, ofputil_protocol_to_ofp_version(protocol),
75fa58f8 2350 ofputil_match_typical_len(protocol));
06516c65
SH
2351 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
2352 ofsr->table_id = fsr->table_id;
2353 ofsr->out_port = ofputil_port_to_ofp11(fsr->out_port);
2354 ofsr->out_group = htonl(OFPG11_ANY);
2355 ofsr->cookie = fsr->cookie;
2356 ofsr->cookie_mask = fsr->cookie_mask;
75fa58f8 2357 ofputil_put_ofp11_match(msg, &fsr->match, protocol);
06516c65
SH
2358 break;
2359 }
2360
85813857
BP
2361 case OFPUTIL_P_OF10_STD:
2362 case OFPUTIL_P_OF10_STD_TID: {
e2b9ac44 2363 struct ofp10_flow_stats_request *ofsr;
2e4f5fcf 2364
982697a4 2365 raw = (fsr->aggregate
617da9cd 2366 ? OFPRAW_OFPST10_AGGREGATE_REQUEST
cfc23141 2367 : OFPRAW_OFPST10_FLOW_REQUEST);
982697a4
BP
2368 msg = ofpraw_alloc(raw, OFP10_VERSION, 0);
2369 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
81a76618 2370 ofputil_match_to_ofp10_match(&fsr->match, &ofsr->match);
2e4f5fcf 2371 ofsr->table_id = fsr->table_id;
4e022ec0 2372 ofsr->out_port = htons(ofp_to_u16(fsr->out_port));
27527aa0
BP
2373 break;
2374 }
2375
85813857
BP
2376 case OFPUTIL_P_OF10_NXM:
2377 case OFPUTIL_P_OF10_NXM_TID: {
2e4f5fcf
BP
2378 struct nx_flow_stats_request *nfsr;
2379 int match_len;
2380
982697a4
BP
2381 raw = (fsr->aggregate
2382 ? OFPRAW_NXST_AGGREGATE_REQUEST
2383 : OFPRAW_NXST_FLOW_REQUEST);
06516c65 2384 msg = ofpraw_alloc(raw, OFP10_VERSION, NXM_TYPICAL_LEN);
982697a4 2385 ofpbuf_put_zeros(msg, sizeof *nfsr);
7623f4dd 2386 match_len = nx_put_match(msg, &fsr->match,
e729e793 2387 fsr->cookie, fsr->cookie_mask);
2e4f5fcf 2388
982697a4 2389 nfsr = msg->l3;
4e022ec0 2390 nfsr->out_port = htons(ofp_to_u16(fsr->out_port));
2e4f5fcf
BP
2391 nfsr->match_len = htons(match_len);
2392 nfsr->table_id = fsr->table_id;
27527aa0
BP
2393 break;
2394 }
2395
2396 default:
2e4f5fcf
BP
2397 NOT_REACHED();
2398 }
2399
2400 return msg;
2401}
d1e2cf21 2402
27527aa0
BP
2403/* Returns a bitmask with a 1-bit for each protocol that could be used to
2404 * accurately encode 'fsr', and a 0-bit for each protocol that is inadequate.
2405 *
2406 * (The return value will have at least one 1-bit.) */
2407enum ofputil_protocol
2408ofputil_flow_stats_request_usable_protocols(
2409 const struct ofputil_flow_stats_request *fsr)
2410{
2411 enum ofputil_protocol usable_protocols;
2412
2413 usable_protocols = ofputil_usable_protocols(&fsr->match);
2414 if (fsr->cookie_mask != htonll(0)) {
2e1ae200
JR
2415 usable_protocols &= OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
2416 | OFPUTIL_P_OF13_OXM;
27527aa0
BP
2417 }
2418 return usable_protocols;
2419}
2420
4ffd1b43 2421/* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
b78f6b77 2422 * ofputil_flow_stats in 'fs'.
4ffd1b43
BP
2423 *
2424 * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
2425 * OpenFlow message. Calling this function multiple times for a single 'msg'
2426 * iterates through the replies. The caller must initially leave 'msg''s layer
2427 * pointers null and not modify them between calls.
2428 *
f27f2134
BP
2429 * Most switches don't send the values needed to populate fs->idle_age and
2430 * fs->hard_age, so those members will usually be set to 0. If the switch from
2431 * which 'msg' originated is known to implement NXT_FLOW_AGE, then pass
2432 * 'flow_age_extension' as true so that the contents of 'msg' determine the
2433 * 'idle_age' and 'hard_age' members in 'fs'.
2434 *
f25d0cf3
BP
2435 * Uses 'ofpacts' to store the abstract OFPACT_* version of the flow stats
2436 * reply's actions. The caller must initialize 'ofpacts' and retains ownership
2437 * of it. 'fs->ofpacts' will point into the 'ofpacts' buffer.
2438 *
4ffd1b43
BP
2439 * Returns 0 if successful, EOF if no replies were left in this 'msg',
2440 * otherwise a positive errno value. */
2441int
2442ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
f27f2134 2443 struct ofpbuf *msg,
f25d0cf3
BP
2444 bool flow_age_extension,
2445 struct ofpbuf *ofpacts)
4ffd1b43 2446{
982697a4
BP
2447 enum ofperr error;
2448 enum ofpraw raw;
4ffd1b43 2449
982697a4
BP
2450 error = (msg->l2
2451 ? ofpraw_decode(&raw, msg->l2)
2452 : ofpraw_pull(&raw, msg));
2453 if (error) {
2454 return error;
4ffd1b43
BP
2455 }
2456
2457 if (!msg->size) {
2458 return EOF;
2e1ae200
JR
2459 } else if (raw == OFPRAW_OFPST11_FLOW_REPLY
2460 || raw == OFPRAW_OFPST13_FLOW_REPLY) {
6ec5f0c5
SH
2461 const struct ofp11_flow_stats *ofs;
2462 size_t length;
2463 uint16_t padded_match_len;
2464
2465 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2466 if (!ofs) {
2467 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
2468 "bytes at end", msg->size);
2469 return EINVAL;
2470 }
2471
2472 length = ntohs(ofs->length);
2473 if (length < sizeof *ofs) {
2474 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2475 "length %zu", length);
2476 return EINVAL;
2477 }
2478
81a76618 2479 if (ofputil_pull_ofp11_match(msg, &fs->match, &padded_match_len)) {
6ec5f0c5
SH
2480 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad match");
2481 return EINVAL;
2482 }
2483
2484 if (ofpacts_pull_openflow11_instructions(msg, length - sizeof *ofs -
e3b56933 2485 padded_match_len, ofpacts)) {
6ec5f0c5
SH
2486 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad instructions");
2487 return EINVAL;
2488 }
2489
81a76618 2490 fs->priority = ntohs(ofs->priority);
6ec5f0c5
SH
2491 fs->table_id = ofs->table_id;
2492 fs->duration_sec = ntohl(ofs->duration_sec);
2493 fs->duration_nsec = ntohl(ofs->duration_nsec);
2494 fs->idle_timeout = ntohs(ofs->idle_timeout);
2495 fs->hard_timeout = ntohs(ofs->hard_timeout);
2e1ae200 2496 fs->flags = (raw == OFPRAW_OFPST13_FLOW_REPLY) ? ntohs(ofs->flags) : 0;
6ec5f0c5
SH
2497 fs->idle_age = -1;
2498 fs->hard_age = -1;
2499 fs->cookie = ofs->cookie;
2500 fs->packet_count = ntohll(ofs->packet_count);
2501 fs->byte_count = ntohll(ofs->byte_count);
cfc23141 2502 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
e2b9ac44 2503 const struct ofp10_flow_stats *ofs;
4ffd1b43
BP
2504 size_t length;
2505
2506 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2507 if (!ofs) {
2508 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
2509 "bytes at end", msg->size);
2510 return EINVAL;
2511 }
2512
2513 length = ntohs(ofs->length);
2514 if (length < sizeof *ofs) {
2515 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2516 "length %zu", length);
2517 return EINVAL;
2518 }
2519
d01c980f 2520 if (ofpacts_pull_openflow10(msg, length - sizeof *ofs, ofpacts)) {
4ffd1b43
BP
2521 return EINVAL;
2522 }
2523
2524 fs->cookie = get_32aligned_be64(&ofs->cookie);
81a76618
BP
2525 ofputil_match_from_ofp10_match(&ofs->match, &fs->match);
2526 fs->priority = ntohs(ofs->priority);
4ffd1b43
BP
2527 fs->table_id = ofs->table_id;
2528 fs->duration_sec = ntohl(ofs->duration_sec);
2529 fs->duration_nsec = ntohl(ofs->duration_nsec);
2530 fs->idle_timeout = ntohs(ofs->idle_timeout);
2531 fs->hard_timeout = ntohs(ofs->hard_timeout);
f27f2134
BP
2532 fs->idle_age = -1;
2533 fs->hard_age = -1;
4ffd1b43
BP
2534 fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
2535 fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
2e1ae200 2536 fs->flags = 0;
982697a4 2537 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
4ffd1b43 2538 const struct nx_flow_stats *nfs;
f25d0cf3 2539 size_t match_len, actions_len, length;
4ffd1b43
BP
2540
2541 nfs = ofpbuf_try_pull(msg, sizeof *nfs);
2542 if (!nfs) {
2543 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %zu leftover "
2544 "bytes at end", msg->size);
2545 return EINVAL;
2546 }
2547
2548 length = ntohs(nfs->length);
2549 match_len = ntohs(nfs->match_len);
2550 if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
2551 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%zu "
2552 "claims invalid length %zu", match_len, length);
2553 return EINVAL;
2554 }
81a76618 2555 if (nx_pull_match(msg, match_len, &fs->match, NULL, NULL)) {
4ffd1b43
BP
2556 return EINVAL;
2557 }
2558
f25d0cf3 2559 actions_len = length - sizeof *nfs - ROUND_UP(match_len, 8);
d01c980f 2560 if (ofpacts_pull_openflow10(msg, actions_len, ofpacts)) {
4ffd1b43
BP
2561 return EINVAL;
2562 }
2563
2564 fs->cookie = nfs->cookie;
2565 fs->table_id = nfs->table_id;
2566 fs->duration_sec = ntohl(nfs->duration_sec);
2567 fs->duration_nsec = ntohl(nfs->duration_nsec);
81a76618 2568 fs->priority = ntohs(nfs->priority);
4ffd1b43
BP
2569 fs->idle_timeout = ntohs(nfs->idle_timeout);
2570 fs->hard_timeout = ntohs(nfs->hard_timeout);
f27f2134
BP
2571 fs->idle_age = -1;
2572 fs->hard_age = -1;
2573 if (flow_age_extension) {
2574 if (nfs->idle_age) {
2575 fs->idle_age = ntohs(nfs->idle_age) - 1;
2576 }
2577 if (nfs->hard_age) {
2578 fs->hard_age = ntohs(nfs->hard_age) - 1;
2579 }
2580 }
4ffd1b43
BP
2581 fs->packet_count = ntohll(nfs->packet_count);
2582 fs->byte_count = ntohll(nfs->byte_count);
2e1ae200 2583 fs->flags = 0;
4ffd1b43
BP
2584 } else {
2585 NOT_REACHED();
2586 }
2587
f25d0cf3
BP
2588 fs->ofpacts = ofpacts->data;
2589 fs->ofpacts_len = ofpacts->size;
2590
4ffd1b43
BP
2591 return 0;
2592}
2593
5e9d0469
BP
2594/* Returns 'count' unchanged except that UINT64_MAX becomes 0.
2595 *
2596 * We use this in situations where OVS internally uses UINT64_MAX to mean
2597 * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
2598static uint64_t
2599unknown_to_zero(uint64_t count)
2600{
2601 return count != UINT64_MAX ? count : 0;
2602}
2603
349adfb2
BP
2604/* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
2605 * those already present in the list of ofpbufs in 'replies'. 'replies' should
2606 * have been initialized with ofputil_start_stats_reply(). */
2607void
2608ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
2609 struct list *replies)
2610{
f25d0cf3 2611 struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
f25d0cf3 2612 size_t start_ofs = reply->size;
982697a4 2613 enum ofpraw raw;
349adfb2 2614
982697a4 2615 ofpraw_decode_partial(&raw, reply->data, reply->size);
2e1ae200 2616 if (raw == OFPRAW_OFPST11_FLOW_REPLY || raw == OFPRAW_OFPST13_FLOW_REPLY) {
22a86f18
SH
2617 struct ofp11_flow_stats *ofs;
2618
2619 ofpbuf_put_uninit(reply, sizeof *ofs);
81a76618 2620 oxm_put_match(reply, &fs->match);
22a86f18
SH
2621 ofpacts_put_openflow11_instructions(fs->ofpacts, fs->ofpacts_len,
2622 reply);
2623
2624 ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2625 ofs->length = htons(reply->size - start_ofs);
2626 ofs->table_id = fs->table_id;
2627 ofs->pad = 0;
2628 ofs->duration_sec = htonl(fs->duration_sec);
2629 ofs->duration_nsec = htonl(fs->duration_nsec);
81a76618 2630 ofs->priority = htons(fs->priority);
22a86f18
SH
2631 ofs->idle_timeout = htons(fs->idle_timeout);
2632 ofs->hard_timeout = htons(fs->hard_timeout);
2e1ae200 2633 ofs->flags = (raw == OFPRAW_OFPST13_FLOW_REPLY) ? htons(fs->flags) : 0;
22a86f18
SH
2634 memset(ofs->pad2, 0, sizeof ofs->pad2);
2635 ofs->cookie = fs->cookie;
2636 ofs->packet_count = htonll(unknown_to_zero(fs->packet_count));
2637 ofs->byte_count = htonll(unknown_to_zero(fs->byte_count));
2638 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
e2b9ac44 2639 struct ofp10_flow_stats *ofs;
349adfb2 2640
1a59dc2c
BP
2641 ofpbuf_put_uninit(reply, sizeof *ofs);
2642 ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
2643
2644 ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2645 ofs->length = htons(reply->size - start_ofs);
349adfb2
BP
2646 ofs->table_id = fs->table_id;
2647 ofs->pad = 0;
81a76618 2648 ofputil_match_to_ofp10_match(&fs->match, &ofs->match);
349adfb2
BP
2649 ofs->duration_sec = htonl(fs->duration_sec);
2650 ofs->duration_nsec = htonl(fs->duration_nsec);
81a76618 2651 ofs->priority = htons(fs->priority);
349adfb2
BP
2652 ofs->idle_timeout = htons(fs->idle_timeout);
2653 ofs->hard_timeout = htons(fs->hard_timeout);
2654 memset(ofs->pad2, 0, sizeof ofs->pad2);
2655 put_32aligned_be64(&ofs->cookie, fs->cookie);
5e9d0469
BP
2656 put_32aligned_be64(&ofs->packet_count,
2657 htonll(unknown_to_zero(fs->packet_count)));
2658 put_32aligned_be64(&ofs->byte_count,
2659 htonll(unknown_to_zero(fs->byte_count)));
982697a4 2660 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
349adfb2 2661 struct nx_flow_stats *nfs;
1a59dc2c 2662 int match_len;
349adfb2 2663
1a59dc2c 2664 ofpbuf_put_uninit(reply, sizeof *nfs);
81a76618 2665 match_len = nx_put_match(reply, &fs->match, 0, 0);
1a59dc2c
BP
2666 ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
2667
2668 nfs = ofpbuf_at_assert(reply, start_ofs, sizeof *nfs);
2669 nfs->length = htons(reply->size - start_ofs);
349adfb2
BP
2670 nfs->table_id = fs->table_id;
2671 nfs->pad = 0;
2672 nfs->duration_sec = htonl(fs->duration_sec);
2673 nfs->duration_nsec = htonl(fs->duration_nsec);
81a76618 2674 nfs->priority = htons(fs->priority);
349adfb2
BP
2675 nfs->idle_timeout = htons(fs->idle_timeout);
2676 nfs->hard_timeout = htons(fs->hard_timeout);
f27f2134
BP
2677 nfs->idle_age = htons(fs->idle_age < 0 ? 0
2678 : fs->idle_age < UINT16_MAX ? fs->idle_age + 1
2679 : UINT16_MAX);
2680 nfs->hard_age = htons(fs->hard_age < 0 ? 0
2681 : fs->hard_age < UINT16_MAX ? fs->hard_age + 1
2682 : UINT16_MAX);
1a59dc2c 2683 nfs->match_len = htons(match_len);
349adfb2
BP
2684 nfs->cookie = fs->cookie;
2685 nfs->packet_count = htonll(fs->packet_count);
2686 nfs->byte_count = htonll(fs->byte_count);
349adfb2
BP
2687 } else {
2688 NOT_REACHED();
2689 }
f25d0cf3 2690
982697a4 2691 ofpmp_postappend(replies, start_ofs);
349adfb2
BP
2692}
2693
76c93b22 2694/* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
a814ba0f 2695 * NXST_AGGREGATE reply matching 'request', and returns the message. */
76c93b22
BP
2696struct ofpbuf *
2697ofputil_encode_aggregate_stats_reply(
2698 const struct ofputil_aggregate_stats *stats,
982697a4 2699 const struct ofp_header *request)
76c93b22 2700{
a814ba0f
BP
2701 struct ofp_aggregate_stats_reply *asr;
2702 uint64_t packet_count;
2703 uint64_t byte_count;
76c93b22 2704 struct ofpbuf *msg;
982697a4 2705 enum ofpraw raw;
76c93b22 2706
982697a4 2707 ofpraw_decode(&raw, request);
617da9cd 2708 if (raw == OFPRAW_OFPST10_AGGREGATE_REQUEST) {
a814ba0f
BP
2709 packet_count = unknown_to_zero(stats->packet_count);
2710 byte_count = unknown_to_zero(stats->byte_count);
76c93b22 2711 } else {
a814ba0f
BP
2712 packet_count = stats->packet_count;
2713 byte_count = stats->byte_count;
76c93b22
BP
2714 }
2715
a814ba0f
BP
2716 msg = ofpraw_alloc_stats_reply(request, 0);
2717 asr = ofpbuf_put_zeros(msg, sizeof *asr);
2718 put_32aligned_be64(&asr->packet_count, htonll(packet_count));
2719 put_32aligned_be64(&asr->byte_count, htonll(byte_count));
2720 asr->flow_count = htonl(stats->flow_count);
2721
76c93b22
BP
2722 return msg;
2723}
2724
982697a4
BP
2725enum ofperr
2726ofputil_decode_aggregate_stats_reply(struct ofputil_aggregate_stats *stats,
2727 const struct ofp_header *reply)
2728{
a814ba0f 2729 struct ofp_aggregate_stats_reply *asr;
982697a4 2730 struct ofpbuf msg;
982697a4
BP
2731
2732 ofpbuf_use_const(&msg, reply, ntohs(reply->length));
a814ba0f
BP
2733 ofpraw_pull_assert(&msg);
2734
2735 asr = msg.l3;
2736 stats->packet_count = ntohll(get_32aligned_be64(&asr->packet_count));
2737 stats->byte_count = ntohll(get_32aligned_be64(&asr->byte_count));
2738 stats->flow_count = ntohl(asr->flow_count);
982697a4
BP
2739
2740 return 0;
2741}
2742
b78f6b77
BP
2743/* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
2744 * abstract ofputil_flow_removed in 'fr'. Returns 0 if successful, otherwise
2745 * an OpenFlow error code. */
90bf1e07 2746enum ofperr
9b045a0c 2747ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
b78f6b77 2748 const struct ofp_header *oh)
9b045a0c 2749{
982697a4
BP
2750 enum ofpraw raw;
2751 struct ofpbuf b;
9b045a0c 2752
982697a4
BP
2753 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2754 raw = ofpraw_pull_assert(&b);
eefbf181
SH
2755 if (raw == OFPRAW_OFPT11_FLOW_REMOVED) {
2756 const struct ofp12_flow_removed *ofr;
2757 enum ofperr error;
2758
2759 ofr = ofpbuf_pull(&b, sizeof *ofr);
2760
81a76618 2761 error = ofputil_pull_ofp11_match(&b, &fr->match, NULL);
eefbf181
SH
2762 if (error) {
2763 return error;
2764 }
2765
81a76618 2766 fr->priority = ntohs(ofr->priority);
eefbf181
SH
2767 fr->cookie = ofr->cookie;
2768 fr->reason = ofr->reason;
95216219 2769 fr->table_id = ofr->table_id;
eefbf181
SH
2770 fr->duration_sec = ntohl(ofr->duration_sec);
2771 fr->duration_nsec = ntohl(ofr->duration_nsec);
2772 fr->idle_timeout = ntohs(ofr->idle_timeout);
2773 fr->hard_timeout = ntohs(ofr->hard_timeout);
2774 fr->packet_count = ntohll(ofr->packet_count);
2775 fr->byte_count = ntohll(ofr->byte_count);
2776 } else if (raw == OFPRAW_OFPT10_FLOW_REMOVED) {
31a9e63f 2777 const struct ofp10_flow_removed *ofr;
9b045a0c 2778
982697a4
BP
2779 ofr = ofpbuf_pull(&b, sizeof *ofr);
2780
81a76618
BP
2781 ofputil_match_from_ofp10_match(&ofr->match, &fr->match);
2782 fr->priority = ntohs(ofr->priority);
9b045a0c
BP
2783 fr->cookie = ofr->cookie;
2784 fr->reason = ofr->reason;
95216219 2785 fr->table_id = 255;
9b045a0c
BP
2786 fr->duration_sec = ntohl(ofr->duration_sec);
2787 fr->duration_nsec = ntohl(ofr->duration_nsec);
2788 fr->idle_timeout = ntohs(ofr->idle_timeout);
fa2bad0f 2789 fr->hard_timeout = 0;
9b045a0c
BP
2790 fr->packet_count = ntohll(ofr->packet_count);
2791 fr->byte_count = ntohll(ofr->byte_count);
982697a4 2792 } else if (raw == OFPRAW_NXT_FLOW_REMOVED) {
9b045a0c 2793 struct nx_flow_removed *nfr;
c2725b60 2794 enum ofperr error;
9b045a0c 2795
9b045a0c 2796 nfr = ofpbuf_pull(&b, sizeof *nfr);
81a76618
BP
2797 error = nx_pull_match(&b, ntohs(nfr->match_len), &fr->match,
2798 NULL, NULL);
9b045a0c
BP
2799 if (error) {
2800 return error;
2801 }
2802 if (b.size) {
90bf1e07 2803 return OFPERR_OFPBRC_BAD_LEN;
9b045a0c
BP
2804 }
2805
81a76618 2806 fr->priority = ntohs(nfr->priority);
9b045a0c
BP
2807 fr->cookie = nfr->cookie;
2808 fr->reason = nfr->reason;
745bfd5e 2809 fr->table_id = nfr->table_id ? nfr->table_id - 1 : 255;
9b045a0c
BP
2810 fr->duration_sec = ntohl(nfr->duration_sec);
2811 fr->duration_nsec = ntohl(nfr->duration_nsec);
2812 fr->idle_timeout = ntohs(nfr->idle_timeout);
fa2bad0f 2813 fr->hard_timeout = 0;
9b045a0c
BP
2814 fr->packet_count = ntohll(nfr->packet_count);
2815 fr->byte_count = ntohll(nfr->byte_count);
2816 } else {
2817 NOT_REACHED();
2818 }
2819
2820 return 0;
2821}
2822
588cd7b5 2823/* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
27527aa0 2824 * NXT_FLOW_REMOVED message 'oh' according to 'protocol', and returns the
588cd7b5
BP
2825 * message. */
2826struct ofpbuf *
2827ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
27527aa0 2828 enum ofputil_protocol protocol)
588cd7b5
BP
2829{
2830 struct ofpbuf *msg;
2831
27527aa0 2832 switch (protocol) {
75fa58f8 2833 case OFPUTIL_P_OF11_STD:
2e1ae200
JR
2834 case OFPUTIL_P_OF12_OXM:
2835 case OFPUTIL_P_OF13_OXM: {
83974732
SH
2836 struct ofp12_flow_removed *ofr;
2837
2838 msg = ofpraw_alloc_xid(OFPRAW_OFPT11_FLOW_REMOVED,
2839 ofputil_protocol_to_ofp_version(protocol),
75fa58f8
BP
2840 htonl(0),
2841 ofputil_match_typical_len(protocol));
83974732
SH
2842 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
2843 ofr->cookie = fr->cookie;
81a76618 2844 ofr->priority = htons(fr->priority);
83974732 2845 ofr->reason = fr->reason;
95216219 2846 ofr->table_id = fr->table_id;
83974732
SH
2847 ofr->duration_sec = htonl(fr->duration_sec);
2848 ofr->duration_nsec = htonl(fr->duration_nsec);
2849 ofr->idle_timeout = htons(fr->idle_timeout);
fa2bad0f 2850 ofr->hard_timeout = htons(fr->hard_timeout);
83974732
SH
2851 ofr->packet_count = htonll(fr->packet_count);
2852 ofr->byte_count = htonll(fr->byte_count);
75fa58f8 2853 ofputil_put_ofp11_match(msg, &fr->match, protocol);
83974732
SH
2854 break;
2855 }
2856
85813857
BP
2857 case OFPUTIL_P_OF10_STD:
2858 case OFPUTIL_P_OF10_STD_TID: {
31a9e63f 2859 struct ofp10_flow_removed *ofr;
588cd7b5 2860
982697a4
BP
2861 msg = ofpraw_alloc_xid(OFPRAW_OFPT10_FLOW_REMOVED, OFP10_VERSION,
2862 htonl(0), 0);
2863 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
81a76618 2864 ofputil_match_to_ofp10_match(&fr->match, &ofr->match);
7fb563b9 2865 ofr->cookie = fr->cookie;
81a76618 2866 ofr->priority = htons(fr->priority);
588cd7b5
BP
2867 ofr->reason = fr->reason;
2868 ofr->duration_sec = htonl(fr->duration_sec);
2869 ofr->duration_nsec = htonl(fr->duration_nsec);
2870 ofr->idle_timeout = htons(fr->idle_timeout);
5e9d0469
BP
2871 ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
2872 ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
27527aa0
BP
2873 break;
2874 }
2875
85813857
BP
2876 case OFPUTIL_P_OF10_NXM:
2877 case OFPUTIL_P_OF10_NXM_TID: {
588cd7b5
BP
2878 struct nx_flow_removed *nfr;
2879 int match_len;
2880
982697a4
BP
2881 msg = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_REMOVED, OFP10_VERSION,
2882 htonl(0), NXM_TYPICAL_LEN);
2883 nfr = ofpbuf_put_zeros(msg, sizeof *nfr);
81a76618 2884 match_len = nx_put_match(msg, &fr->match, 0, 0);
588cd7b5 2885
982697a4 2886 nfr = msg->l3;
588cd7b5 2887 nfr->cookie = fr->cookie;
81a76618 2888 nfr->priority = htons(fr->priority);
588cd7b5 2889 nfr->reason = fr->reason;
745bfd5e 2890 nfr->table_id = fr->table_id + 1;
588cd7b5
BP
2891 nfr->duration_sec = htonl(fr->duration_sec);
2892 nfr->duration_nsec = htonl(fr->duration_nsec);
2893 nfr->idle_timeout = htons(fr->idle_timeout);
2894 nfr->match_len = htons(match_len);
2895 nfr->packet_count = htonll(fr->packet_count);
2896 nfr->byte_count = htonll(fr->byte_count);
27527aa0
BP
2897 break;
2898 }
2899
2900 default:
588cd7b5
BP
2901 NOT_REACHED();
2902 }
2903
2904 return msg;
2905}
2906
7cfb9651
SH
2907static void
2908ofputil_decode_packet_in_finish(struct ofputil_packet_in *pin,
81a76618 2909 struct match *match, struct ofpbuf *b)
7cfb9651
SH
2910{
2911 pin->packet = b->data;
2912 pin->packet_len = b->size;
2913
4e022ec0 2914 pin->fmd.in_port = match->flow.in_port.ofp_port;
296e07ac 2915 pin->fmd.tun_id = match->flow.tunnel.tun_id;
0ad90c84
JR
2916 pin->fmd.tun_src = match->flow.tunnel.ip_src;
2917 pin->fmd.tun_dst = match->flow.tunnel.ip_dst;
81a76618
BP
2918 pin->fmd.metadata = match->flow.metadata;
2919 memcpy(pin->fmd.regs, match->flow.regs, sizeof pin->fmd.regs);
7cfb9651
SH
2920}
2921
f7cc6bd8 2922enum ofperr
65120a8a
EJ
2923ofputil_decode_packet_in(struct ofputil_packet_in *pin,
2924 const struct ofp_header *oh)
2925{
982697a4
BP
2926 enum ofpraw raw;
2927 struct ofpbuf b;
65120a8a 2928
65120a8a
EJ
2929 memset(pin, 0, sizeof *pin);
2930
982697a4
BP
2931 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2932 raw = ofpraw_pull_assert(&b);
2e1ae200
JR
2933 if (raw == OFPRAW_OFPT13_PACKET_IN || raw == OFPRAW_OFPT12_PACKET_IN) {
2934 const struct ofp13_packet_in *opi;
81a76618 2935 struct match match;
7cfb9651 2936 int error;
2e1ae200
JR
2937 size_t packet_in_size;
2938
2939 if (raw == OFPRAW_OFPT12_PACKET_IN) {
2940 packet_in_size = sizeof (struct ofp12_packet_in);
2941 } else {
2942 packet_in_size = sizeof (struct ofp13_packet_in);
2943 }
7cfb9651 2944
2e1ae200 2945 opi = ofpbuf_pull(&b, packet_in_size);
81a76618 2946 error = oxm_pull_match_loose(&b, &match);
7cfb9651
SH
2947 if (error) {
2948 return error;
2949 }
2950
2951 if (!ofpbuf_try_pull(&b, 2)) {
2952 return OFPERR_OFPBRC_BAD_LEN;
2953 }
2954
2e1ae200
JR
2955 pin->reason = opi->pi.reason;
2956 pin->table_id = opi->pi.table_id;
2957 pin->buffer_id = ntohl(opi->pi.buffer_id);
2958 pin->total_len = ntohs(opi->pi.total_len);
7cfb9651 2959
2e1ae200
JR
2960 if (raw == OFPRAW_OFPT13_PACKET_IN) {
2961 pin->cookie = opi->cookie;
2962 }
7cfb9651 2963
81a76618 2964 ofputil_decode_packet_in_finish(pin, &match, &b);
7cfb9651 2965 } else if (raw == OFPRAW_OFPT10_PACKET_IN) {
31a9e63f 2966 const struct ofp10_packet_in *opi;
982697a4 2967
31a9e63f 2968 opi = ofpbuf_pull(&b, offsetof(struct ofp10_packet_in, data));
65120a8a
EJ
2969
2970 pin->packet = opi->data;
982697a4 2971 pin->packet_len = b.size;
65120a8a 2972
4e022ec0 2973 pin->fmd.in_port = u16_to_ofp(ntohs(opi->in_port));
65120a8a
EJ
2974 pin->reason = opi->reason;
2975 pin->buffer_id = ntohl(opi->buffer_id);
2976 pin->total_len = ntohs(opi->total_len);
982697a4 2977 } else if (raw == OFPRAW_NXT_PACKET_IN) {
73dbf4ab 2978 const struct nx_packet_in *npi;
81a76618 2979 struct match match;
54834960
EJ
2980 int error;
2981
54834960 2982 npi = ofpbuf_pull(&b, sizeof *npi);
81a76618 2983 error = nx_pull_match_loose(&b, ntohs(npi->match_len), &match, NULL,
b5ae8913 2984 NULL);
54834960
EJ
2985 if (error) {
2986 return error;
2987 }
2988
2989 if (!ofpbuf_try_pull(&b, 2)) {
90bf1e07 2990 return OFPERR_OFPBRC_BAD_LEN;
54834960
EJ
2991 }
2992
54834960
EJ
2993 pin->reason = npi->reason;
2994 pin->table_id = npi->table_id;
2995 pin->cookie = npi->cookie;
2996
54834960
EJ
2997 pin->buffer_id = ntohl(npi->buffer_id);
2998 pin->total_len = ntohs(npi->total_len);
7cfb9651 2999
81a76618 3000 ofputil_decode_packet_in_finish(pin, &match, &b);
65120a8a
EJ
3001 } else {
3002 NOT_REACHED();
3003 }
3004
3005 return 0;
3006}
3007
d94240ec 3008static void
81a76618
BP
3009ofputil_packet_in_to_match(const struct ofputil_packet_in *pin,
3010 struct match *match)
d94240ec
SH
3011{
3012 int i;
3013
81a76618 3014 match_init_catchall(match);
42edbe39 3015 if (pin->fmd.tun_id != htonll(0)) {
81a76618 3016 match_set_tun_id(match, pin->fmd.tun_id);
42edbe39 3017 }
0ad90c84
JR
3018 if (pin->fmd.tun_src != htonl(0)) {
3019 match_set_tun_src(match, pin->fmd.tun_src);
3020 }
3021 if (pin->fmd.tun_dst != htonl(0)) {
3022 match_set_tun_dst(match, pin->fmd.tun_dst);
3023 }
42edbe39 3024 if (pin->fmd.metadata != htonll(0)) {
81a76618 3025 match_set_metadata(match, pin->fmd.metadata);
42edbe39 3026 }
d94240ec
SH
3027
3028 for (i = 0; i < FLOW_N_REGS; i++) {
42edbe39 3029 if (pin->fmd.regs[i]) {
81a76618 3030 match_set_reg(match, i, pin->fmd.regs[i]);
42edbe39 3031 }
d94240ec
SH
3032 }
3033
81a76618 3034 match_set_in_port(match, pin->fmd.in_port);
d94240ec
SH
3035}
3036
54834960
EJ
3037/* Converts abstract ofputil_packet_in 'pin' into a PACKET_IN message
3038 * in the format specified by 'packet_in_format'. */
ebb57021 3039struct ofpbuf *
54834960 3040ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
d94240ec 3041 enum ofputil_protocol protocol,
54834960 3042 enum nx_packet_in_format packet_in_format)
ebb57021 3043{
54834960
EJ
3044 size_t send_len = MIN(pin->send_len, pin->packet_len);
3045 struct ofpbuf *packet;
ebb57021
BP
3046
3047 /* Add OFPT_PACKET_IN. */
2e1ae200
JR
3048 if (protocol == OFPUTIL_P_OF13_OXM || protocol == OFPUTIL_P_OF12_OXM) {
3049 struct ofp13_packet_in *opi;
81a76618 3050 struct match match;
2e1ae200
JR
3051 enum ofpraw packet_in_raw;
3052 enum ofp_version packet_in_version;
3053 size_t packet_in_size;
3054
3055 if (protocol == OFPUTIL_P_OF12_OXM) {
3056 packet_in_raw = OFPRAW_OFPT12_PACKET_IN;
3057 packet_in_version = OFP12_VERSION;
3058 packet_in_size = sizeof (struct ofp12_packet_in);
3059 } else {
3060 packet_in_raw = OFPRAW_OFPT13_PACKET_IN;
3061 packet_in_version = OFP13_VERSION;
3062 packet_in_size = sizeof (struct ofp13_packet_in);
3063 }
d94240ec 3064
81a76618 3065 ofputil_packet_in_to_match(pin, &match);
d94240ec
SH
3066
3067 /* The final argument is just an estimate of the space required. */
2e1ae200 3068 packet = ofpraw_alloc_xid(packet_in_raw, packet_in_version,
d94240ec
SH
3069 htonl(0), (sizeof(struct flow_metadata) * 2
3070 + 2 + send_len));
2e1ae200 3071 ofpbuf_put_zeros(packet, packet_in_size);
81a76618 3072 oxm_put_match(packet, &match);
d94240ec
SH
3073 ofpbuf_put_zeros(packet, 2);
3074 ofpbuf_put(packet, pin->packet, send_len);
3075
3076 opi = packet->l3;
2e1ae200
JR
3077 opi->pi.buffer_id = htonl(pin->buffer_id);
3078 opi->pi.total_len = htons(pin->total_len);
3079 opi->pi.reason = pin->reason;
3080 opi->pi.table_id = pin->table_id;
3081 if (protocol == OFPUTIL_P_OF13_OXM) {
3082 opi->cookie = pin->cookie;
3083 }
3084 } else if (packet_in_format == NXPIF_OPENFLOW10) {
31a9e63f 3085 struct ofp10_packet_in *opi;
54834960 3086
982697a4
BP
3087 packet = ofpraw_alloc_xid(OFPRAW_OFPT10_PACKET_IN, OFP10_VERSION,
3088 htonl(0), send_len);
31a9e63f 3089 opi = ofpbuf_put_zeros(packet, offsetof(struct ofp10_packet_in, data));
54834960 3090 opi->total_len = htons(pin->total_len);
4e022ec0 3091 opi->in_port = htons(ofp_to_u16(pin->fmd.in_port));
54834960
EJ
3092 opi->reason = pin->reason;
3093 opi->buffer_id = htonl(pin->buffer_id);
3094
3095 ofpbuf_put(packet, pin->packet, send_len);
3096 } else if (packet_in_format == NXPIF_NXM) {
73dbf4ab 3097 struct nx_packet_in *npi;
81a76618 3098 struct match match;
54834960 3099 size_t match_len;
54834960 3100
81a76618 3101 ofputil_packet_in_to_match(pin, &match);
54834960 3102
982697a4
BP
3103 /* The final argument is just an estimate of the space required. */
3104 packet = ofpraw_alloc_xid(OFPRAW_NXT_PACKET_IN, OFP10_VERSION,
3105 htonl(0), (sizeof(struct flow_metadata) * 2
3106 + 2 + send_len));
54834960 3107 ofpbuf_put_zeros(packet, sizeof *npi);
81a76618 3108 match_len = nx_put_match(packet, &match, 0, 0);
54834960
EJ
3109 ofpbuf_put_zeros(packet, 2);
3110 ofpbuf_put(packet, pin->packet, send_len);
3111
982697a4 3112 npi = packet->l3;
54834960
EJ
3113 npi->buffer_id = htonl(pin->buffer_id);
3114 npi->total_len = htons(pin->total_len);
3115 npi->reason = pin->reason;
3116 npi->table_id = pin->table_id;
3117 npi->cookie = pin->cookie;
3118 npi->match_len = htons(match_len);
3119 } else {
3120 NOT_REACHED();
3121 }
982697a4 3122 ofpmsg_update_length(packet);
54834960
EJ
3123
3124 return packet;
ebb57021
BP
3125}
3126
5014a89d
BP
3127/* Returns a string form of 'reason'. The return value is either a statically
3128 * allocated constant string or the 'bufsize'-byte buffer 'reasonbuf'.
3129 * 'bufsize' should be at least OFPUTIL_PACKET_IN_REASON_BUFSIZE. */
7c1a76a4 3130const char *
5014a89d
BP
3131ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason reason,
3132 char *reasonbuf, size_t bufsize)
7c1a76a4 3133{
7c1a76a4
BP
3134 switch (reason) {
3135 case OFPR_NO_MATCH:
3136 return "no_match";
3137 case OFPR_ACTION:
3138 return "action";
3139 case OFPR_INVALID_TTL:
3140 return "invalid_ttl";
3141
3142 case OFPR_N_REASONS:
3143 default:
5014a89d
BP
3144 snprintf(reasonbuf, bufsize, "%d", (int) reason);
3145 return reasonbuf;
7c1a76a4
BP
3146 }
3147}
3148
3149bool
3150ofputil_packet_in_reason_from_string(const char *s,
3151 enum ofp_packet_in_reason *reason)
3152{
3153 int i;
3154
3155 for (i = 0; i < OFPR_N_REASONS; i++) {
5014a89d
BP
3156 char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
3157 const char *reason_s;
3158
3159 reason_s = ofputil_packet_in_reason_to_string(i, reasonbuf,
3160 sizeof reasonbuf);
3161 if (!strcasecmp(s, reason_s)) {
7c1a76a4
BP
3162 *reason = i;
3163 return true;
3164 }
3165 }
3166 return false;
3167}
3168
f25d0cf3
BP
3169/* Converts an OFPT_PACKET_OUT in 'opo' into an abstract ofputil_packet_out in
3170 * 'po'.
3171 *
3172 * Uses 'ofpacts' to store the abstract OFPACT_* version of the packet out
3173 * message's actions. The caller must initialize 'ofpacts' and retains
3174 * ownership of it. 'po->ofpacts' will point into the 'ofpacts' buffer.
3175 *
3176 * Returns 0 if successful, otherwise an OFPERR_* value. */
c6a93eb7
BP
3177enum ofperr
3178ofputil_decode_packet_out(struct ofputil_packet_out *po,
982697a4 3179 const struct ofp_header *oh,
f25d0cf3 3180 struct ofpbuf *ofpacts)
c6a93eb7 3181{
982697a4 3182 enum ofpraw raw;
c6a93eb7
BP
3183 struct ofpbuf b;
3184
982697a4
BP
3185 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3186 raw = ofpraw_pull_assert(&b);
982697a4 3187
eb5ee596
SH
3188 if (raw == OFPRAW_OFPT11_PACKET_OUT) {
3189 enum ofperr error;
3190 const struct ofp11_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
3191
3192 po->buffer_id = ntohl(opo->buffer_id);
3193 error = ofputil_port_from_ofp11(opo->in_port, &po->in_port);
3194 if (error) {
3195 return error;
3196 }
3197
3198 error = ofpacts_pull_openflow11_actions(&b, ntohs(opo->actions_len),
3199 ofpacts);
3200 if (error) {
3201 return error;
3202 }
eb5ee596 3203 } else if (raw == OFPRAW_OFPT10_PACKET_OUT) {
8a6bc7cd 3204 enum ofperr error;
31a9e63f 3205 const struct ofp10_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
8a6bc7cd
SH
3206
3207 po->buffer_id = ntohl(opo->buffer_id);
4e022ec0 3208 po->in_port = u16_to_ofp(ntohs(opo->in_port));
8a6bc7cd
SH
3209
3210 error = ofpacts_pull_openflow10(&b, ntohs(opo->actions_len), ofpacts);
3211 if (error) {
3212 return error;
3213 }
3214 } else {
3215 NOT_REACHED();
3216 }
3217
4e022ec0
AW
3218 if (ofp_to_u16(po->in_port) >= ofp_to_u16(OFPP_MAX)
3219 && po->in_port != OFPP_LOCAL
751c7785 3220 && po->in_port != OFPP_NONE && po->in_port != OFPP_CONTROLLER) {
c6a93eb7
BP
3221 VLOG_WARN_RL(&bad_ofmsg_rl, "packet-out has bad input port %#"PRIx16,
3222 po->in_port);
2e1bfcb6 3223 return OFPERR_OFPBRC_BAD_PORT;
c6a93eb7
BP
3224 }
3225
f25d0cf3
BP
3226 po->ofpacts = ofpacts->data;
3227 po->ofpacts_len = ofpacts->size;
c6a93eb7
BP
3228
3229 if (po->buffer_id == UINT32_MAX) {
3230 po->packet = b.data;
3231 po->packet_len = b.size;
3232 } else {
3233 po->packet = NULL;
3234 po->packet_len = 0;
3235 }
3236
3237 return 0;
3238}
6c038611
BP
3239\f
3240/* ofputil_phy_port */
3241
3242/* NETDEV_F_* to and from OFPPF_* and OFPPF10_*. */
3243BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
3244BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
3245BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
3246BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
3247BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
3248BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
3249BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
3250
3251/* NETDEV_F_ bits 11...15 are OFPPF10_ bits 7...11: */
9e1fd49b
BP
3252BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == (OFPPF10_COPPER << 4));
3253BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == (OFPPF10_FIBER << 4));
3254BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == (OFPPF10_AUTONEG << 4));
3255BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == (OFPPF10_PAUSE << 4));
3256BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == (OFPPF10_PAUSE_ASYM << 4));
6c038611 3257
9e1fd49b
BP
3258static enum netdev_features
3259netdev_port_features_from_ofp10(ovs_be32 ofp10_)
6c038611
BP
3260{
3261 uint32_t ofp10 = ntohl(ofp10_);
3262 return (ofp10 & 0x7f) | ((ofp10 & 0xf80) << 4);
3263}
3264
9e1fd49b
BP
3265static ovs_be32
3266netdev_port_features_to_ofp10(enum netdev_features features)
6c038611
BP
3267{
3268 return htonl((features & 0x7f) | ((features & 0xf800) >> 4));
3269}
c6a93eb7 3270
9e1fd49b
BP
3271BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
3272BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
3273BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
3274BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
3275BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
3276BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
3277BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
3278BUILD_ASSERT_DECL((int) NETDEV_F_40GB_FD == OFPPF11_40GB_FD); /* bit 7 */
3279BUILD_ASSERT_DECL((int) NETDEV_F_100GB_FD == OFPPF11_100GB_FD); /* bit 8 */
3280BUILD_ASSERT_DECL((int) NETDEV_F_1TB_FD == OFPPF11_1TB_FD); /* bit 9 */
3281BUILD_ASSERT_DECL((int) NETDEV_F_OTHER == OFPPF11_OTHER); /* bit 10 */
3282BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == OFPPF11_COPPER); /* bit 11 */
3283BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == OFPPF11_FIBER); /* bit 12 */
3284BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == OFPPF11_AUTONEG); /* bit 13 */
3285BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == OFPPF11_PAUSE); /* bit 14 */
3286BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == OFPPF11_PAUSE_ASYM);/* bit 15 */
3287
3288static enum netdev_features
3289netdev_port_features_from_ofp11(ovs_be32 ofp11)
3290{
3291 return ntohl(ofp11) & 0xffff;
3292}
3293
3294static ovs_be32
3295netdev_port_features_to_ofp11(enum netdev_features features)
3296{
3297 return htonl(features & 0xffff);
3298}
3299
3300static enum ofperr
3301ofputil_decode_ofp10_phy_port(struct ofputil_phy_port *pp,
3302 const struct ofp10_phy_port *opp)
3303{
3304 memset(pp, 0, sizeof *pp);
3305
4e022ec0 3306 pp->port_no = u16_to_ofp(ntohs(opp->port_no));
9e1fd49b
BP
3307 memcpy(pp->hw_addr, opp->hw_addr, OFP_ETH_ALEN);
3308 ovs_strlcpy(pp->name, opp->name, OFP_MAX_PORT_NAME_LEN);
3309
3310 pp->config = ntohl(opp->config) & OFPPC10_ALL;
3311 pp->state = ntohl(opp->state) & OFPPS10_ALL;
3312
3313 pp->curr = netdev_port_features_from_ofp10(opp->curr);
3314 pp->advertised = netdev_port_features_from_ofp10(opp->advertised);
3315 pp->supported = netdev_port_features_from_ofp10(opp->supported);
3316 pp->peer = netdev_port_features_from_ofp10(opp->peer);
3317
d02a5f8e
BP
3318 pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
3319 pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
9e1fd49b
BP
3320
3321 return 0;
3322}
3323
3324static enum ofperr
3325ofputil_decode_ofp11_port(struct ofputil_phy_port *pp,
3326 const struct ofp11_port *op)
3327{
3328 enum ofperr error;
3329
3330 memset(pp, 0, sizeof *pp);
3331
3332 error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
3333 if (error) {
3334 return error;
3335 }
3336 memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
3337 ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
3338
3339 pp->config = ntohl(op->config) & OFPPC11_ALL;
3340 pp->state = ntohl(op->state) & OFPPC11_ALL;
3341
3342 pp->curr = netdev_port_features_from_ofp11(op->curr);
3343 pp->advertised = netdev_port_features_from_ofp11(op->advertised);
3344 pp->supported = netdev_port_features_from_ofp11(op->supported);
3345 pp->peer = netdev_port_features_from_ofp11(op->peer);
3346
3347 pp->curr_speed = ntohl(op->curr_speed);
3348 pp->max_speed = ntohl(op->max_speed);
3349
3350 return 0;
3351}
3352
5b5a3a67 3353static size_t
2e3fa633
SH
3354ofputil_get_phy_port_size(enum ofp_version ofp_version)
3355{
3356 switch (ofp_version) {
3357 case OFP10_VERSION:
3358 return sizeof(struct ofp10_phy_port);
3359 case OFP11_VERSION:
3360 case OFP12_VERSION:
2e1ae200 3361 case OFP13_VERSION:
2e3fa633
SH
3362 return sizeof(struct ofp11_port);
3363 default:
3364 NOT_REACHED();
3365 }
5b5a3a67
JP
3366}
3367
9e1fd49b
BP
3368static void
3369ofputil_encode_ofp10_phy_port(const struct ofputil_phy_port *pp,
3370 struct ofp10_phy_port *opp)
3371{
3372 memset(opp, 0, sizeof *opp);
3373
4e022ec0 3374 opp->port_no = htons(ofp_to_u16(pp->port_no));
9e1fd49b
BP
3375 memcpy(opp->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3376 ovs_strlcpy(opp->name, pp->name, OFP_MAX_PORT_NAME_LEN);
3377
3378 opp->config = htonl(pp->config & OFPPC10_ALL);
3379 opp->state = htonl(pp->state & OFPPS10_ALL);
3380
3381 opp->curr = netdev_port_features_to_ofp10(pp->curr);
3382 opp->advertised = netdev_port_features_to_ofp10(pp->advertised);
3383 opp->supported = netdev_port_features_to_ofp10(pp->supported);
3384 opp->peer = netdev_port_features_to_ofp10(pp->peer);
3385}
3386
3387static void
3388ofputil_encode_ofp11_port(const struct ofputil_phy_port *pp,
3389 struct ofp11_port *op)
3390{
3391 memset(op, 0, sizeof *op);
3392
3393 op->port_no = ofputil_port_to_ofp11(pp->port_no);
3394 memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3395 ovs_strlcpy(op->name, pp->name, OFP_MAX_PORT_NAME_LEN);
3396
3397 op->config = htonl(pp->config & OFPPC11_ALL);
3398 op->state = htonl(pp->state & OFPPS11_ALL);
3399
3400 op->curr = netdev_port_features_to_ofp11(pp->curr);
3401 op->advertised = netdev_port_features_to_ofp11(pp->advertised);
3402 op->supported = netdev_port_features_to_ofp11(pp->supported);
3403 op->peer = netdev_port_features_to_ofp11(pp->peer);
3404
3405 op->curr_speed = htonl(pp->curr_speed);
3406 op->max_speed = htonl(pp->max_speed);
3407}
3408
3409static void
2e3fa633
SH
3410ofputil_put_phy_port(enum ofp_version ofp_version,
3411 const struct ofputil_phy_port *pp, struct ofpbuf *b)
9e1fd49b 3412{
2e3fa633
SH
3413 switch (ofp_version) {
3414 case OFP10_VERSION: {
9e1fd49b
BP
3415 struct ofp10_phy_port *opp;
3416 if (b->size + sizeof *opp <= UINT16_MAX) {
3417 opp = ofpbuf_put_uninit(b, sizeof *opp);
3418 ofputil_encode_ofp10_phy_port(pp, opp);
3419 }
2e3fa633
SH
3420 break;
3421 }
3422
3423 case OFP11_VERSION:
2e1ae200
JR
3424 case OFP12_VERSION:
3425 case OFP13_VERSION: {
9e1fd49b
BP
3426 struct ofp11_port *op;
3427 if (b->size + sizeof *op <= UINT16_MAX) {
3428 op = ofpbuf_put_uninit(b, sizeof *op);
3429 ofputil_encode_ofp11_port(pp, op);
3430 }
2e3fa633
SH
3431 break;
3432 }
3433
3434 default:
3435 NOT_REACHED();
9e1fd49b
BP
3436 }
3437}
2be393ed
JP
3438
3439void
2e3fa633 3440ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
2be393ed
JP
3441 const struct ofputil_phy_port *pp,
3442 struct list *replies)
3443{
2e3fa633
SH
3444 switch (ofp_version) {
3445 case OFP10_VERSION: {
2be393ed
JP
3446 struct ofp10_phy_port *opp;
3447
982697a4 3448 opp = ofpmp_append(replies, sizeof *opp);
2be393ed 3449 ofputil_encode_ofp10_phy_port(pp, opp);
2e3fa633
SH
3450 break;
3451 }
3452
3453 case OFP11_VERSION:
2e1ae200
JR
3454 case OFP12_VERSION:
3455 case OFP13_VERSION: {
2be393ed
JP
3456 struct ofp11_port *op;
3457
982697a4 3458 op = ofpmp_append(replies, sizeof *op);
2be393ed 3459 ofputil_encode_ofp11_port(pp, op);
2e3fa633
SH
3460 break;
3461 }
3462
3463 default:
3464 NOT_REACHED();
2be393ed
JP
3465 }
3466}
9e1fd49b
BP
3467\f
3468/* ofputil_switch_features */
3469
3470#define OFPC_COMMON (OFPC_FLOW_STATS | OFPC_TABLE_STATS | OFPC_PORT_STATS | \
60202987 3471 OFPC_IP_REASM | OFPC_QUEUE_STATS)
9e1fd49b
BP
3472BUILD_ASSERT_DECL((int) OFPUTIL_C_FLOW_STATS == OFPC_FLOW_STATS);
3473BUILD_ASSERT_DECL((int) OFPUTIL_C_TABLE_STATS == OFPC_TABLE_STATS);
3474BUILD_ASSERT_DECL((int) OFPUTIL_C_PORT_STATS == OFPC_PORT_STATS);
3475BUILD_ASSERT_DECL((int) OFPUTIL_C_IP_REASM == OFPC_IP_REASM);
3476BUILD_ASSERT_DECL((int) OFPUTIL_C_QUEUE_STATS == OFPC_QUEUE_STATS);
3477BUILD_ASSERT_DECL((int) OFPUTIL_C_ARP_MATCH_IP == OFPC_ARP_MATCH_IP);
3478
3479struct ofputil_action_bit_translation {
3480 enum ofputil_action_bitmap ofputil_bit;
3481 int of_bit;
3482};
3483
3484static const struct ofputil_action_bit_translation of10_action_bits[] = {
3485 { OFPUTIL_A_OUTPUT, OFPAT10_OUTPUT },
3486 { OFPUTIL_A_SET_VLAN_VID, OFPAT10_SET_VLAN_VID },
3487 { OFPUTIL_A_SET_VLAN_PCP, OFPAT10_SET_VLAN_PCP },
3488 { OFPUTIL_A_STRIP_VLAN, OFPAT10_STRIP_VLAN },
3489 { OFPUTIL_A_SET_DL_SRC, OFPAT10_SET_DL_SRC },
3490 { OFPUTIL_A_SET_DL_DST, OFPAT10_SET_DL_DST },
3491 { OFPUTIL_A_SET_NW_SRC, OFPAT10_SET_NW_SRC },
3492 { OFPUTIL_A_SET_NW_DST, OFPAT10_SET_NW_DST },
3493 { OFPUTIL_A_SET_NW_TOS, OFPAT10_SET_NW_TOS },
3494 { OFPUTIL_A_SET_TP_SRC, OFPAT10_SET_TP_SRC },
3495 { OFPUTIL_A_SET_TP_DST, OFPAT10_SET_TP_DST },
3496 { OFPUTIL_A_ENQUEUE, OFPAT10_ENQUEUE },
3497 { 0, 0 },
3498};
3499
9e1fd49b
BP
3500static enum ofputil_action_bitmap
3501decode_action_bits(ovs_be32 of_actions,
3502 const struct ofputil_action_bit_translation *x)
3503{
3504 enum ofputil_action_bitmap ofputil_actions;
3505
3506 ofputil_actions = 0;
3507 for (; x->ofputil_bit; x++) {
3508 if (of_actions & htonl(1u << x->of_bit)) {
3509 ofputil_actions |= x->ofputil_bit;
3510 }
3511 }
3512 return ofputil_actions;
3513}
3514
60202987
SH
3515static uint32_t
3516ofputil_capabilities_mask(enum ofp_version ofp_version)
3517{
3518 /* Handle capabilities whose bit is unique for all Open Flow versions */
3519 switch (ofp_version) {
3520 case OFP10_VERSION:
3521 case OFP11_VERSION:
3522 return OFPC_COMMON | OFPC_ARP_MATCH_IP;
3523 case OFP12_VERSION:
2e1ae200 3524 case OFP13_VERSION:
60202987
SH
3525 return OFPC_COMMON | OFPC12_PORT_BLOCKED;
3526 default:
3527 /* Caller needs to check osf->header.version itself */
3528 return 0;
3529 }
3530}
3531
9e1fd49b
BP
3532/* Decodes an OpenFlow 1.0 or 1.1 "switch_features" structure 'osf' into an
3533 * abstract representation in '*features'. Initializes '*b' to iterate over
3534 * the OpenFlow port structures following 'osf' with later calls to
2be393ed 3535 * ofputil_pull_phy_port(). Returns 0 if successful, otherwise an
9e1fd49b
BP
3536 * OFPERR_* value. */
3537enum ofperr
982697a4 3538ofputil_decode_switch_features(const struct ofp_header *oh,
9e1fd49b
BP
3539 struct ofputil_switch_features *features,
3540 struct ofpbuf *b)
3541{
982697a4
BP
3542 const struct ofp_switch_features *osf;
3543 enum ofpraw raw;
3544
3545 ofpbuf_use_const(b, oh, ntohs(oh->length));
3546 raw = ofpraw_pull_assert(b);
9e1fd49b 3547
982697a4 3548 osf = ofpbuf_pull(b, sizeof *osf);
9e1fd49b
BP
3549 features->datapath_id = ntohll(osf->datapath_id);
3550 features->n_buffers = ntohl(osf->n_buffers);
3551 features->n_tables = osf->n_tables;
2e1ae200 3552 features->auxiliary_id = 0;
9e1fd49b 3553
60202987
SH
3554 features->capabilities = ntohl(osf->capabilities) &
3555 ofputil_capabilities_mask(oh->version);
9e1fd49b 3556
982697a4 3557 if (b->size % ofputil_get_phy_port_size(oh->version)) {
5b5a3a67
JP
3558 return OFPERR_OFPBRC_BAD_LEN;
3559 }
3560
982697a4 3561 if (raw == OFPRAW_OFPT10_FEATURES_REPLY) {
9e1fd49b
BP
3562 if (osf->capabilities & htonl(OFPC10_STP)) {
3563 features->capabilities |= OFPUTIL_C_STP;
3564 }
3565 features->actions = decode_action_bits(osf->actions, of10_action_bits);
2e1ae200
JR
3566 } else if (raw == OFPRAW_OFPT11_FEATURES_REPLY
3567 || raw == OFPRAW_OFPT13_FEATURES_REPLY) {
9e1fd49b
BP
3568 if (osf->capabilities & htonl(OFPC11_GROUP_STATS)) {
3569 features->capabilities |= OFPUTIL_C_GROUP_STATS;
3570 }
34b28fc7 3571 features->actions = 0;
2e1ae200
JR
3572 if (raw == OFPRAW_OFPT13_FEATURES_REPLY) {
3573 features->auxiliary_id = osf->auxiliary_id;
3574 }
9e1fd49b
BP
3575 } else {
3576 return OFPERR_OFPBRC_BAD_VERSION;
3577 }
3578
3579 return 0;
3580}
3581
982697a4 3582/* Returns true if the maximum number of ports are in 'oh'. */
347b7ac4 3583static bool
982697a4 3584max_ports_in_features(const struct ofp_header *oh)
347b7ac4 3585{
982697a4
BP
3586 size_t pp_size = ofputil_get_phy_port_size(oh->version);
3587 return ntohs(oh->length) + pp_size > UINT16_MAX;
347b7ac4
JP
3588}
3589
3590/* Given a buffer 'b' that contains a Features Reply message, checks if
3591 * it contains the maximum number of ports that will fit. If so, it
3592 * returns true and removes the ports from the message. The caller
3593 * should then send an OFPST_PORT_DESC stats request to get the ports,
3594 * since the switch may have more ports than could be represented in the
3595 * Features Reply. Otherwise, returns false.
3596 */
3597bool
3598ofputil_switch_features_ports_trunc(struct ofpbuf *b)
3599{
982697a4 3600 struct ofp_header *oh = b->data;
347b7ac4 3601
982697a4 3602 if (max_ports_in_features(oh)) {
347b7ac4 3603 /* Remove all the ports. */
982697a4
BP
3604 b->size = (sizeof(struct ofp_header)
3605 + sizeof(struct ofp_switch_features));
3606 ofpmsg_update_length(b);
347b7ac4
JP
3607
3608 return true;
3609 }
3610
3611 return false;
3612}
3613
9e1fd49b
BP
3614static ovs_be32
3615encode_action_bits(enum ofputil_action_bitmap ofputil_actions,
3616 const struct ofputil_action_bit_translation *x)
3617{
3618 uint32_t of_actions;
3619
3620 of_actions = 0;
3621 for (; x->ofputil_bit; x++) {
3622 if (ofputil_actions & x->ofputil_bit) {
3623 of_actions |= 1 << x->of_bit;
3624 }
3625 }
3626 return htonl(of_actions);
3627}
3628
3629/* Returns a buffer owned by the caller that encodes 'features' in the format
3630 * required by 'protocol' with the given 'xid'. The caller should append port
3631 * information to the buffer with subsequent calls to
3632 * ofputil_put_switch_features_port(). */
3633struct ofpbuf *
3634ofputil_encode_switch_features(const struct ofputil_switch_features *features,
3635 enum ofputil_protocol protocol, ovs_be32 xid)
3636{
3637 struct ofp_switch_features *osf;
3638 struct ofpbuf *b;
2e3fa633
SH
3639 enum ofp_version version;
3640 enum ofpraw raw;
982697a4
BP
3641
3642 version = ofputil_protocol_to_ofp_version(protocol);
2e3fa633
SH
3643 switch (version) {
3644 case OFP10_VERSION:
3645 raw = OFPRAW_OFPT10_FEATURES_REPLY;
3646 break;
3647 case OFP11_VERSION:
3648 case OFP12_VERSION:
3649 raw = OFPRAW_OFPT11_FEATURES_REPLY;
3650 break;
2e1ae200
JR
3651 case OFP13_VERSION:
3652 raw = OFPRAW_OFPT13_FEATURES_REPLY;
3653 break;
2e3fa633
SH
3654 default:
3655 NOT_REACHED();
3656 }
3657 b = ofpraw_alloc_xid(raw, version, xid, 0);
982697a4 3658 osf = ofpbuf_put_zeros(b, sizeof *osf);
9e1fd49b
BP
3659 osf->datapath_id = htonll(features->datapath_id);
3660 osf->n_buffers = htonl(features->n_buffers);
3661 osf->n_tables = features->n_tables;
3662
3663 osf->capabilities = htonl(features->capabilities & OFPC_COMMON);
60202987
SH
3664 osf->capabilities = htonl(features->capabilities &
3665 ofputil_capabilities_mask(version));
2e3fa633
SH
3666 switch (version) {
3667 case OFP10_VERSION:
9e1fd49b
BP
3668 if (features->capabilities & OFPUTIL_C_STP) {
3669 osf->capabilities |= htonl(OFPC10_STP);
3670 }
3671 osf->actions = encode_action_bits(features->actions, of10_action_bits);
2e3fa633 3672 break;
2e1ae200
JR
3673 case OFP13_VERSION:
3674 osf->auxiliary_id = features->auxiliary_id;
3675 /* fall through */
2e3fa633
SH
3676 case OFP11_VERSION:
3677 case OFP12_VERSION:
9e1fd49b
BP
3678 if (features->capabilities & OFPUTIL_C_GROUP_STATS) {
3679 osf->capabilities |= htonl(OFPC11_GROUP_STATS);
3680 }
2e3fa633
SH
3681 break;
3682 default:
3683 NOT_REACHED();
9e1fd49b
BP
3684 }
3685
3686 return b;
3687}
3688
3689/* Encodes 'pp' into the format required by the switch_features message already
3690 * in 'b', which should have been returned by ofputil_encode_switch_features(),
3691 * and appends the encoded version to 'b'. */
3692void
3693ofputil_put_switch_features_port(const struct ofputil_phy_port *pp,
3694 struct ofpbuf *b)
3695{
982697a4 3696 const struct ofp_header *oh = b->data;
9e1fd49b 3697
e0c91c0c
SK
3698 if (oh->version < OFP13_VERSION) {
3699 ofputil_put_phy_port(oh->version, pp, b);
3700 }
9e1fd49b
BP
3701}
3702\f
3703/* ofputil_port_status */
3704
3705/* Decodes the OpenFlow "port status" message in '*ops' into an abstract form
3706 * in '*ps'. Returns 0 if successful, otherwise an OFPERR_* value. */
3707enum ofperr
982697a4 3708ofputil_decode_port_status(const struct ofp_header *oh,
9e1fd49b
BP
3709 struct ofputil_port_status *ps)
3710{
982697a4 3711 const struct ofp_port_status *ops;
9e1fd49b
BP
3712 struct ofpbuf b;
3713 int retval;
3714
982697a4
BP
3715 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3716 ofpraw_pull_assert(&b);
3717 ops = ofpbuf_pull(&b, sizeof *ops);
3718
9e1fd49b
BP
3719 if (ops->reason != OFPPR_ADD &&
3720 ops->reason != OFPPR_DELETE &&
3721 ops->reason != OFPPR_MODIFY) {
3722 return OFPERR_NXBRC_BAD_REASON;
3723 }
3724 ps->reason = ops->reason;
3725
982697a4 3726 retval = ofputil_pull_phy_port(oh->version, &b, &ps->desc);
cb22974d 3727 ovs_assert(retval != EOF);
9e1fd49b
BP
3728 return retval;
3729}
3730
3731/* Converts the abstract form of a "port status" message in '*ps' into an
3732 * OpenFlow message suitable for 'protocol', and returns that encoded form in
3733 * a buffer owned by the caller. */
3734struct ofpbuf *
3735ofputil_encode_port_status(const struct ofputil_port_status *ps,
3736 enum ofputil_protocol protocol)
3737{
3738 struct ofp_port_status *ops;
3739 struct ofpbuf *b;
2e3fa633
SH
3740 enum ofp_version version;
3741 enum ofpraw raw;
982697a4
BP
3742
3743 version = ofputil_protocol_to_ofp_version(protocol);
2e3fa633
SH
3744 switch (version) {
3745 case OFP10_VERSION:
3746 raw = OFPRAW_OFPT10_PORT_STATUS;
3747 break;
3748
3749 case OFP11_VERSION:
3750 case OFP12_VERSION:
2e1ae200 3751 case OFP13_VERSION:
2e3fa633
SH
3752 raw = OFPRAW_OFPT11_PORT_STATUS;
3753 break;
3754
3755 default:
3756 NOT_REACHED();
3757 }
3758
3759 b = ofpraw_alloc_xid(raw, version, htonl(0), 0);
982697a4 3760 ops = ofpbuf_put_zeros(b, sizeof *ops);
9e1fd49b 3761 ops->reason = ps->reason;
982697a4
BP
3762 ofputil_put_phy_port(version, &ps->desc, b);
3763 ofpmsg_update_length(b);
9e1fd49b
BP
3764 return b;
3765}
3766\f
3767/* ofputil_port_mod */
3768
3769/* Decodes the OpenFlow "port mod" message in '*oh' into an abstract form in
3770 * '*pm'. Returns 0 if successful, otherwise an OFPERR_* value. */
3771enum ofperr
3772ofputil_decode_port_mod(const struct ofp_header *oh,
3773 struct ofputil_port_mod *pm)
3774{
982697a4
BP
3775 enum ofpraw raw;
3776 struct ofpbuf b;
9e1fd49b 3777
982697a4
BP
3778 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3779 raw = ofpraw_pull_assert(&b);
3780
3781 if (raw == OFPRAW_OFPT10_PORT_MOD) {
3782 const struct ofp10_port_mod *opm = b.data;
9e1fd49b 3783
4e022ec0 3784 pm->port_no = u16_to_ofp(ntohs(opm->port_no));
9e1fd49b
BP
3785 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3786 pm->config = ntohl(opm->config) & OFPPC10_ALL;
3787 pm->mask = ntohl(opm->mask) & OFPPC10_ALL;
3788 pm->advertise = netdev_port_features_from_ofp10(opm->advertise);
982697a4
BP
3789 } else if (raw == OFPRAW_OFPT11_PORT_MOD) {
3790 const struct ofp11_port_mod *opm = b.data;
9e1fd49b
BP
3791 enum ofperr error;
3792
9e1fd49b
BP
3793 error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
3794 if (error) {
3795 return error;
3796 }
3797
3798 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3799 pm->config = ntohl(opm->config) & OFPPC11_ALL;
3800 pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
3801 pm->advertise = netdev_port_features_from_ofp11(opm->advertise);
3802 } else {
982697a4 3803 return OFPERR_OFPBRC_BAD_TYPE;
9e1fd49b
BP
3804 }
3805
3806 pm->config &= pm->mask;
3807 return 0;
3808}
3809
3810/* Converts the abstract form of a "port mod" message in '*pm' into an OpenFlow
3811 * message suitable for 'protocol', and returns that encoded form in a buffer
3812 * owned by the caller. */
3813struct ofpbuf *
3814ofputil_encode_port_mod(const struct ofputil_port_mod *pm,
3815 enum ofputil_protocol protocol)
3816{
2e3fa633 3817 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
9e1fd49b
BP
3818 struct ofpbuf *b;
3819
2e3fa633
SH
3820 switch (ofp_version) {
3821 case OFP10_VERSION: {
9e1fd49b
BP
3822 struct ofp10_port_mod *opm;
3823
982697a4
BP
3824 b = ofpraw_alloc(OFPRAW_OFPT10_PORT_MOD, ofp_version, 0);
3825 opm = ofpbuf_put_zeros(b, sizeof *opm);
4e022ec0 3826 opm->port_no = htons(ofp_to_u16(pm->port_no));
9e1fd49b
BP
3827 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3828 opm->config = htonl(pm->config & OFPPC10_ALL);
3829 opm->mask = htonl(pm->mask & OFPPC10_ALL);
3830 opm->advertise = netdev_port_features_to_ofp10(pm->advertise);
2e3fa633
SH
3831 break;
3832 }
3833
5fe7c919 3834 case OFP11_VERSION:
2e1ae200
JR
3835 case OFP12_VERSION:
3836 case OFP13_VERSION: {
9e1fd49b
BP
3837 struct ofp11_port_mod *opm;
3838
982697a4
BP
3839 b = ofpraw_alloc(OFPRAW_OFPT11_PORT_MOD, ofp_version, 0);
3840 opm = ofpbuf_put_zeros(b, sizeof *opm);
026a5179 3841 opm->port_no = ofputil_port_to_ofp11(pm->port_no);
9e1fd49b
BP
3842 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3843 opm->config = htonl(pm->config & OFPPC11_ALL);
3844 opm->mask = htonl(pm->mask & OFPPC11_ALL);
3845 opm->advertise = netdev_port_features_to_ofp11(pm->advertise);
2e3fa633
SH
3846 break;
3847 }
3848
2e3fa633 3849 default:
9e1fd49b
BP
3850 NOT_REACHED();
3851 }
3852
3853 return b;
3854}
2b07c8b1 3855\f
6ea4776b
JR
3856/* ofputil_role_request */
3857
3858/* Decodes the OpenFlow "role request" or "role reply" message in '*oh' into
3859 * an abstract form in '*rr'. Returns 0 if successful, otherwise an
3860 * OFPERR_* value. */
3861enum ofperr
3862ofputil_decode_role_message(const struct ofp_header *oh,
3863 struct ofputil_role_request *rr)
3864{
6ea4776b
JR
3865 struct ofpbuf b;
3866 enum ofpraw raw;
3867
6ea4776b
JR
3868 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3869 raw = ofpraw_pull_assert(&b);
3870
f4f1ea7e
BP
3871 if (raw == OFPRAW_OFPT12_ROLE_REQUEST ||
3872 raw == OFPRAW_OFPT12_ROLE_REPLY) {
3873 const struct ofp12_role_request *orr = b.l3;
6ea4776b 3874
f4f1ea7e
BP
3875 if (orr->role != htonl(OFPCR12_ROLE_NOCHANGE) &&
3876 orr->role != htonl(OFPCR12_ROLE_EQUAL) &&
3877 orr->role != htonl(OFPCR12_ROLE_MASTER) &&
3878 orr->role != htonl(OFPCR12_ROLE_SLAVE)) {
3879 return OFPERR_OFPRRFC_BAD_ROLE;
6ea4776b
JR
3880 }
3881
f4f1ea7e 3882 rr->role = ntohl(orr->role);
147cc9d3
BP
3883 if (raw == OFPRAW_OFPT12_ROLE_REQUEST
3884 ? orr->role == htonl(OFPCR12_ROLE_NOCHANGE)
3885 : orr->generation_id == htonll(UINT64_MAX)) {
f4f1ea7e
BP
3886 rr->have_generation_id = false;
3887 rr->generation_id = 0;
3888 } else {
3889 rr->have_generation_id = true;
3890 rr->generation_id = ntohll(orr->generation_id);
3891 }
3892 } else if (raw == OFPRAW_NXT_ROLE_REQUEST ||
3893 raw == OFPRAW_NXT_ROLE_REPLY) {
3894 const struct nx_role_request *nrr = b.l3;
3895
3896 BUILD_ASSERT(NX_ROLE_OTHER + 1 == OFPCR12_ROLE_EQUAL);
3897 BUILD_ASSERT(NX_ROLE_MASTER + 1 == OFPCR12_ROLE_MASTER);
3898 BUILD_ASSERT(NX_ROLE_SLAVE + 1 == OFPCR12_ROLE_SLAVE);
3899
3900 if (nrr->role != htonl(NX_ROLE_OTHER) &&
3901 nrr->role != htonl(NX_ROLE_MASTER) &&
3902 nrr->role != htonl(NX_ROLE_SLAVE)) {
3903 return OFPERR_OFPRRFC_BAD_ROLE;
3904 }
6ea4776b 3905
f4f1ea7e
BP
3906 rr->role = ntohl(nrr->role) + 1;
3907 rr->have_generation_id = false;
3908 rr->generation_id = 0;
3909 } else {
3910 NOT_REACHED();
6ea4776b
JR
3911 }
3912
6ea4776b
JR
3913 return 0;
3914}
3915
3916/* Returns an encoded form of a role reply suitable for the "request" in a
3917 * buffer owned by the caller. */
3918struct ofpbuf *
3919ofputil_encode_role_reply(const struct ofp_header *request,
f4f1ea7e 3920 const struct ofputil_role_request *rr)
6ea4776b 3921{
6ea4776b 3922 struct ofpbuf *buf;
6ea4776b
JR
3923 enum ofpraw raw;
3924
f4f1ea7e 3925 raw = ofpraw_decode_assert(request);
6ea4776b 3926 if (raw == OFPRAW_OFPT12_ROLE_REQUEST) {
f4f1ea7e 3927 struct ofp12_role_request *orr;
6ea4776b 3928
f4f1ea7e
BP
3929 buf = ofpraw_alloc_reply(OFPRAW_OFPT12_ROLE_REPLY, request, 0);
3930 orr = ofpbuf_put_zeros(buf, sizeof *orr);
6ea4776b 3931
147cc9d3
BP
3932 orr->role = htonl(rr->role);
3933 orr->generation_id = htonll(rr->have_generation_id
3934 ? rr->generation_id
3935 : UINT64_MAX);
f4f1ea7e
BP
3936 } else if (raw == OFPRAW_NXT_ROLE_REQUEST) {
3937 struct nx_role_request *nrr;
3938
3939 BUILD_ASSERT(NX_ROLE_OTHER == OFPCR12_ROLE_EQUAL - 1);
3940 BUILD_ASSERT(NX_ROLE_MASTER == OFPCR12_ROLE_MASTER - 1);
3941 BUILD_ASSERT(NX_ROLE_SLAVE == OFPCR12_ROLE_SLAVE - 1);
3942
3943 buf = ofpraw_alloc_reply(OFPRAW_NXT_ROLE_REPLY, request, 0);
3944 nrr = ofpbuf_put_zeros(buf, sizeof *nrr);
3945 nrr->role = htonl(rr->role - 1);
3946 } else {
3947 NOT_REACHED();
6ea4776b 3948 }
6ea4776b
JR
3949
3950 return buf;
3951}
3952\f
307975da
SH
3953/* Table stats. */
3954
3955static void
3956ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
3957 struct ofpbuf *buf)
3958{
3959 struct wc_map {
31a9e63f 3960 enum ofp10_flow_wildcards wc10;
307975da
SH
3961 enum oxm12_ofb_match_fields mf12;
3962 };
3963
3964 static const struct wc_map wc_map[] = {
3965 { OFPFW10_IN_PORT, OFPXMT12_OFB_IN_PORT },
3966 { OFPFW10_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
3967 { OFPFW10_DL_SRC, OFPXMT12_OFB_ETH_SRC },
3968 { OFPFW10_DL_DST, OFPXMT12_OFB_ETH_DST},
3969 { OFPFW10_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
3970 { OFPFW10_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
3971 { OFPFW10_TP_SRC, OFPXMT12_OFB_TCP_SRC },
3972 { OFPFW10_TP_DST, OFPXMT12_OFB_TCP_DST },
3973 { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
3974 { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
3975 { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3976 { OFPFW10_NW_TOS, OFPXMT12_OFB_IP_DSCP },
3977 };
3978
3979 struct ofp10_table_stats *out;
3980 const struct wc_map *p;
3981
3bdc692b 3982 out = ofpbuf_put_zeros(buf, sizeof *out);
307975da 3983 out->table_id = in->table_id;
3bdc692b 3984 ovs_strlcpy(out->name, in->name, sizeof out->name);
307975da
SH
3985 out->wildcards = 0;
3986 for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
3987 if (in->wildcards & htonll(1ULL << p->mf12)) {
3988 out->wildcards |= htonl(p->wc10);
3989 }
3990 }
3991 out->max_entries = in->max_entries;
3992 out->active_count = in->active_count;
3993 put_32aligned_be64(&out->lookup_count, in->lookup_count);
3994 put_32aligned_be64(&out->matched_count, in->matched_count);
3995}
3996
3997static ovs_be32
3998oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
3999{
4000 struct map {
4001 enum ofp11_flow_match_fields fmf11;
4002 enum oxm12_ofb_match_fields mf12;
4003 };
4004
4005 static const struct map map[] = {
4006 { OFPFMF11_IN_PORT, OFPXMT12_OFB_IN_PORT },
4007 { OFPFMF11_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
4008 { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
4009 { OFPFMF11_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
4010 { OFPFMF11_NW_TOS, OFPXMT12_OFB_IP_DSCP },
4011 { OFPFMF11_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
4012 { OFPFMF11_TP_SRC, OFPXMT12_OFB_TCP_SRC },
4013 { OFPFMF11_TP_DST, OFPXMT12_OFB_TCP_DST },
4014 { OFPFMF11_MPLS_LABEL, OFPXMT12_OFB_MPLS_LABEL },
4015 { OFPFMF11_MPLS_TC, OFPXMT12_OFB_MPLS_TC },
4016 /* I don't know what OFPFMF11_TYPE means. */
4017 { OFPFMF11_DL_SRC, OFPXMT12_OFB_ETH_SRC },
4018 { OFPFMF11_DL_DST, OFPXMT12_OFB_ETH_DST },
4019 { OFPFMF11_NW_SRC, OFPXMT12_OFB_IPV4_SRC },
4020 { OFPFMF11_NW_DST, OFPXMT12_OFB_IPV4_DST },
4021 { OFPFMF11_METADATA, OFPXMT12_OFB_METADATA },
4022 };
4023
4024 const struct map *p;
4025 uint32_t fmf11;
4026
4027 fmf11 = 0;
4028 for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
4029 if (oxm12 & htonll(1ULL << p->mf12)) {
4030 fmf11 |= p->fmf11;
4031 }
4032 }
4033 return htonl(fmf11);
4034}
4035
4036static void
4037ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
4038 struct ofpbuf *buf)
4039{
4040 struct ofp11_table_stats *out;
4041
3bdc692b 4042 out = ofpbuf_put_zeros(buf, sizeof *out);
307975da 4043 out->table_id = in->table_id;
3bdc692b 4044 ovs_strlcpy(out->name, in->name, sizeof out->name);
307975da
SH
4045 out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
4046 out->match = oxm12_to_ofp11_flow_match_fields(in->match);
4047 out->instructions = in->instructions;
4048 out->write_actions = in->write_actions;
4049 out->apply_actions = in->apply_actions;
4050 out->config = in->config;
4051 out->max_entries = in->max_entries;
4052 out->active_count = in->active_count;
4053 out->lookup_count = in->lookup_count;
4054 out->matched_count = in->matched_count;
4055}
4056
2e1ae200
JR
4057static void
4058ofputil_put_ofp13_table_stats(const struct ofp12_table_stats *in,
4059 struct ofpbuf *buf)
4060{
4061 struct ofp13_table_stats *out;
4062
4063 /* OF 1.3 splits table features off the ofp_table_stats,
4064 * so there is not much here. */
4065
4066 out = ofpbuf_put_uninit(buf, sizeof *out);
4067 out->table_id = in->table_id;
4068 out->active_count = in->active_count;
4069 out->lookup_count = in->lookup_count;
4070 out->matched_count = in->matched_count;
4071}
4072
307975da
SH
4073struct ofpbuf *
4074ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
4075 const struct ofp_header *request)
4076{
4077 struct ofpbuf *reply;
4078 int i;
4079
4080 reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
4081
4082 switch ((enum ofp_version) request->version) {
4083 case OFP10_VERSION:
4084 for (i = 0; i < n; i++) {
4085 ofputil_put_ofp10_table_stats(&stats[i], reply);
4086 }
4087 break;
4088
4089 case OFP11_VERSION:
4090 for (i = 0; i < n; i++) {
4091 ofputil_put_ofp11_table_stats(&stats[i], reply);
4092 }
4093 break;
4094
4095 case OFP12_VERSION:
4096 ofpbuf_put(reply, stats, n * sizeof *stats);
4097 break;
4098
2e1ae200
JR
4099 case OFP13_VERSION:
4100 for (i = 0; i < n; i++) {
4101 ofputil_put_ofp13_table_stats(&stats[i], reply);
4102 }
4103 break;
4104
307975da
SH
4105 default:
4106 NOT_REACHED();
4107 }
4108
4109 return reply;
4110}
4111\f
2b07c8b1
BP
4112/* ofputil_flow_monitor_request */
4113
4114/* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
4115 * ofputil_flow_monitor_request in 'rq'.
4116 *
4117 * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
4118 * message. Calling this function multiple times for a single 'msg' iterates
4119 * through the requests. The caller must initially leave 'msg''s layer
4120 * pointers null and not modify them between calls.
4121 *
4122 * Returns 0 if successful, EOF if no requests were left in this 'msg',
4123 * otherwise an OFPERR_* value. */
4124int
4125ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
4126 struct ofpbuf *msg)
4127{
4128 struct nx_flow_monitor_request *nfmr;
4129 uint16_t flags;
4130
4131 if (!msg->l2) {
4132 msg->l2 = msg->data;
982697a4 4133 ofpraw_pull_assert(msg);
2b07c8b1
BP
4134 }
4135
4136 if (!msg->size) {
4137 return EOF;
4138 }
4139
4140 nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
4141 if (!nfmr) {
4142 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %zu "
4143 "leftover bytes at end", msg->size);
4144 return OFPERR_OFPBRC_BAD_LEN;
4145 }
4146
4147 flags = ntohs(nfmr->flags);
4148 if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
4149 || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
4150 | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
4151 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
4152 flags);
4153 return OFPERR_NXBRC_FM_BAD_FLAGS;
4154 }
4155
4156 if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
4157 return OFPERR_NXBRC_MUST_BE_ZERO;
4158 }
4159
4160 rq->id = ntohl(nfmr->id);
4161 rq->flags = flags;
4e022ec0 4162 rq->out_port = u16_to_ofp(ntohs(nfmr->out_port));
2b07c8b1
BP
4163 rq->table_id = nfmr->table_id;
4164
81a76618 4165 return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
2b07c8b1
BP
4166}
4167
4168void
4169ofputil_append_flow_monitor_request(
4170 const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
4171{
4172 struct nx_flow_monitor_request *nfmr;
4173 size_t start_ofs;
4174 int match_len;
4175
4176 if (!msg->size) {
982697a4 4177 ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
2b07c8b1
BP
4178 }
4179
4180 start_ofs = msg->size;
4181 ofpbuf_put_zeros(msg, sizeof *nfmr);
7623f4dd 4182 match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
2b07c8b1
BP
4183
4184 nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
4185 nfmr->id = htonl(rq->id);
4186 nfmr->flags = htons(rq->flags);
4e022ec0 4187 nfmr->out_port = htons(ofp_to_u16(rq->out_port));
2b07c8b1
BP
4188 nfmr->match_len = htons(match_len);
4189 nfmr->table_id = rq->table_id;
4190}
4191
4192/* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
4193 * into an abstract ofputil_flow_update in 'update'. The caller must have
81a76618 4194 * initialized update->match to point to space allocated for a match.
2b07c8b1
BP
4195 *
4196 * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
4197 * actions (except for NXFME_ABBREV, which never includes actions). The caller
4198 * must initialize 'ofpacts' and retains ownership of it. 'update->ofpacts'
4199 * will point into the 'ofpacts' buffer.
4200 *
4201 * Multiple flow updates can be packed into a single OpenFlow message. Calling
4202 * this function multiple times for a single 'msg' iterates through the
4203 * updates. The caller must initially leave 'msg''s layer pointers null and
4204 * not modify them between calls.
4205 *
4206 * Returns 0 if successful, EOF if no updates were left in this 'msg',
4207 * otherwise an OFPERR_* value. */
4208int
4209ofputil_decode_flow_update(struct ofputil_flow_update *update,
4210 struct ofpbuf *msg, struct ofpbuf *ofpacts)
4211{
4212 struct nx_flow_update_header *nfuh;
4213 unsigned int length;
4214
4215 if (!msg->l2) {
4216 msg->l2 = msg->data;
982697a4 4217 ofpraw_pull_assert(msg);
2b07c8b1
BP
4218 }
4219
4220 if (!msg->size) {
4221 return EOF;
4222 }
4223
4224 if (msg->size < sizeof(struct nx_flow_update_header)) {
4225 goto bad_len;
4226 }
4227
4228 nfuh = msg->data;
4229 update->event = ntohs(nfuh->event);
4230 length = ntohs(nfuh->length);
4231 if (length > msg->size || length % 8) {
4232 goto bad_len;
4233 }
4234
4235 if (update->event == NXFME_ABBREV) {
4236 struct nx_flow_update_abbrev *nfua;
4237
4238 if (length != sizeof *nfua) {
4239 goto bad_len;
4240 }
4241
4242 nfua = ofpbuf_pull(msg, sizeof *nfua);
4243 update->xid = nfua->xid;
4244 return 0;
4245 } else if (update->event == NXFME_ADDED
4246 || update->event == NXFME_DELETED
4247 || update->event == NXFME_MODIFIED) {
4248 struct nx_flow_update_full *nfuf;
4249 unsigned int actions_len;
4250 unsigned int match_len;
4251 enum ofperr error;
4252
4253 if (length < sizeof *nfuf) {
4254 goto bad_len;
4255 }
4256
4257 nfuf = ofpbuf_pull(msg, sizeof *nfuf);
4258 match_len = ntohs(nfuf->match_len);
4259 if (sizeof *nfuf + match_len > length) {
4260 goto bad_len;
4261 }
4262
4263 update->reason = ntohs(nfuf->reason);
4264 update->idle_timeout = ntohs(nfuf->idle_timeout);
4265 update->hard_timeout = ntohs(nfuf->hard_timeout);
4266 update->table_id = nfuf->table_id;
4267 update->cookie = nfuf->cookie;
81a76618 4268 update->priority = ntohs(nfuf->priority);
2b07c8b1 4269
81a76618 4270 error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
2b07c8b1
BP
4271 if (error) {
4272 return error;
4273 }
4274
4275 actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
4276 error = ofpacts_pull_openflow10(msg, actions_len, ofpacts);
4277 if (error) {
4278 return error;
4279 }
4280
4281 update->ofpacts = ofpacts->data;
4282 update->ofpacts_len = ofpacts->size;
4283 return 0;
4284 } else {
4285 VLOG_WARN_RL(&bad_ofmsg_rl,
4286 "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
4287 ntohs(nfuh->event));
15549878 4288 return OFPERR_NXBRC_FM_BAD_EVENT;
2b07c8b1
BP
4289 }
4290
4291bad_len:
4292 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %zu "
4293 "leftover bytes at end", msg->size);
4294 return OFPERR_OFPBRC_BAD_LEN;
4295}
4296
4297uint32_t
4298ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
4299{
982697a4
BP
4300 const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
4301
4302 return ntohl(cancel->id);
2b07c8b1 4303}
9e1fd49b 4304
2b07c8b1
BP
4305struct ofpbuf *
4306ofputil_encode_flow_monitor_cancel(uint32_t id)
4307{
4308 struct nx_flow_monitor_cancel *nfmc;
4309 struct ofpbuf *msg;
4310
982697a4
BP
4311 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
4312 nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
2b07c8b1
BP
4313 nfmc->id = htonl(id);
4314 return msg;
4315}
4316
4317void
4318ofputil_start_flow_update(struct list *replies)
4319{
4320 struct ofpbuf *msg;
4321
982697a4
BP
4322 msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
4323 htonl(0), 1024);
2b07c8b1
BP
4324
4325 list_init(replies);
4326 list_push_back(replies, &msg->list_node);
4327}
4328
4329void
4330ofputil_append_flow_update(const struct ofputil_flow_update *update,
4331 struct list *replies)
4332{
4333 struct nx_flow_update_header *nfuh;
4334 struct ofpbuf *msg;
4335 size_t start_ofs;
4336
4337 msg = ofpbuf_from_list(list_back(replies));
4338 start_ofs = msg->size;
4339
4340 if (update->event == NXFME_ABBREV) {
4341 struct nx_flow_update_abbrev *nfua;
4342
4343 nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
4344 nfua->xid = update->xid;
4345 } else {
4346 struct nx_flow_update_full *nfuf;
4347 int match_len;
4348
4349 ofpbuf_put_zeros(msg, sizeof *nfuf);
7623f4dd 4350 match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
2b07c8b1
BP
4351 ofpacts_put_openflow10(update->ofpacts, update->ofpacts_len, msg);
4352
4353 nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
4354 nfuf->reason = htons(update->reason);
81a76618 4355 nfuf->priority = htons(update->priority);
2b07c8b1
BP
4356 nfuf->idle_timeout = htons(update->idle_timeout);
4357 nfuf->hard_timeout = htons(update->hard_timeout);
4358 nfuf->match_len = htons(match_len);
4359 nfuf->table_id = update->table_id;
4360 nfuf->cookie = update->cookie;
4361 }
4362
4363 nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
4364 nfuh->length = htons(msg->size - start_ofs);
4365 nfuh->event = htons(update->event);
4366
982697a4 4367 ofpmp_postappend(replies, start_ofs);
2b07c8b1
BP
4368}
4369\f
c6a93eb7 4370struct ofpbuf *
de0f3156
SH
4371ofputil_encode_packet_out(const struct ofputil_packet_out *po,
4372 enum ofputil_protocol protocol)
c6a93eb7 4373{
de0f3156 4374 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
c6a93eb7
BP
4375 struct ofpbuf *msg;
4376 size_t size;
4377
982697a4 4378 size = po->ofpacts_len;
c6a93eb7
BP
4379 if (po->buffer_id == UINT32_MAX) {
4380 size += po->packet_len;
4381 }
4382
de0f3156
SH
4383 switch (ofp_version) {
4384 case OFP10_VERSION: {
31a9e63f 4385 struct ofp10_packet_out *opo;
de0f3156
SH
4386 size_t actions_ofs;
4387
4388 msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
4389 ofpbuf_put_zeros(msg, sizeof *opo);
4390 actions_ofs = msg->size;
4391 ofpacts_put_openflow10(po->ofpacts, po->ofpacts_len, msg);
4392
4393 opo = msg->l3;
4394 opo->buffer_id = htonl(po->buffer_id);
4e022ec0 4395 opo->in_port = htons(ofp_to_u16(po->in_port));
de0f3156
SH
4396 opo->actions_len = htons(msg->size - actions_ofs);
4397 break;
4398 }
f25d0cf3 4399
de0f3156 4400 case OFP11_VERSION:
2e1ae200
JR
4401 case OFP12_VERSION:
4402 case OFP13_VERSION: {
7c1b1a0d
SH
4403 struct ofp11_packet_out *opo;
4404 size_t len;
4405
4406 msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
4407 ofpbuf_put_zeros(msg, sizeof *opo);
4408 len = ofpacts_put_openflow11_actions(po->ofpacts, po->ofpacts_len, msg);
4409
4410 opo = msg->l3;
4411 opo->buffer_id = htonl(po->buffer_id);
4412 opo->in_port = ofputil_port_to_ofp11(po->in_port);
4413 opo->actions_len = htons(len);
4414 break;
4415 }
4416
de0f3156
SH
4417 default:
4418 NOT_REACHED();
4419 }
f25d0cf3 4420
c6a93eb7
BP
4421 if (po->buffer_id == UINT32_MAX) {
4422 ofpbuf_put(msg, po->packet, po->packet_len);
4423 }
f25d0cf3 4424
982697a4 4425 ofpmsg_update_length(msg);
c6a93eb7
BP
4426
4427 return msg;
4428}
d1e2cf21 4429\f
fa37b408
BP
4430/* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
4431struct ofpbuf *
1a126c0c 4432make_echo_request(enum ofp_version ofp_version)
fa37b408 4433{
1a126c0c 4434 return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
982697a4 4435 htonl(0), 0);
fa37b408
BP
4436}
4437
4438/* Creates and returns an OFPT_ECHO_REPLY message matching the
4439 * OFPT_ECHO_REQUEST message in 'rq'. */
4440struct ofpbuf *
4441make_echo_reply(const struct ofp_header *rq)
4442{
982697a4
BP
4443 struct ofpbuf rq_buf;
4444 struct ofpbuf *reply;
4445
4446 ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
4447 ofpraw_pull_assert(&rq_buf);
4448
4449 reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, rq_buf.size);
4450 ofpbuf_put(reply, rq_buf.data, rq_buf.size);
4451 return reply;
fa37b408
BP
4452}
4453
efb80167 4454struct ofpbuf *
a0ae0b6e 4455ofputil_encode_barrier_request(enum ofp_version ofp_version)
efb80167 4456{
a0ae0b6e
SH
4457 enum ofpraw type;
4458
4459 switch (ofp_version) {
2e1ae200 4460 case OFP13_VERSION:
a0ae0b6e
SH
4461 case OFP12_VERSION:
4462 case OFP11_VERSION:
4463 type = OFPRAW_OFPT11_BARRIER_REQUEST;
4464 break;
4465
4466 case OFP10_VERSION:
4467 type = OFPRAW_OFPT10_BARRIER_REQUEST;
4468 break;
4469
4470 default:
4471 NOT_REACHED();
4472 }
4473
4474 return ofpraw_alloc(type, ofp_version, 0);
efb80167
BP
4475}
4476
7257b535
BP
4477const char *
4478ofputil_frag_handling_to_string(enum ofp_config_flags flags)
4479{
4480 switch (flags & OFPC_FRAG_MASK) {
4481 case OFPC_FRAG_NORMAL: return "normal";
4482 case OFPC_FRAG_DROP: return "drop";
4483 case OFPC_FRAG_REASM: return "reassemble";
4484 case OFPC_FRAG_NX_MATCH: return "nx-match";
4485 }
4486
4487 NOT_REACHED();
4488}
4489
4490bool
4491ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
4492{
4493 if (!strcasecmp(s, "normal")) {
4494 *flags = OFPC_FRAG_NORMAL;
4495 } else if (!strcasecmp(s, "drop")) {
4496 *flags = OFPC_FRAG_DROP;
4497 } else if (!strcasecmp(s, "reassemble")) {
4498 *flags = OFPC_FRAG_REASM;
4499 } else if (!strcasecmp(s, "nx-match")) {
4500 *flags = OFPC_FRAG_NX_MATCH;
4501 } else {
4502 return false;
4503 }
4504 return true;
4505}
4506
7b7503ea
BP
4507/* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
4508 * port number and stores the latter in '*ofp10_port', for the purpose of
4509 * decoding OpenFlow 1.1+ protocol messages. Returns 0 if successful,
bc146369 4510 * otherwise an OFPERR_* number. On error, stores OFPP_NONE in '*ofp10_port'.
7b7503ea
BP
4511 *
4512 * See the definition of OFP11_MAX for an explanation of the mapping. */
4513enum ofperr
4e022ec0 4514ofputil_port_from_ofp11(ovs_be32 ofp11_port, ofp_port_t *ofp10_port)
7b7503ea
BP
4515{
4516 uint32_t ofp11_port_h = ntohl(ofp11_port);
4517
4e022ec0
AW
4518 if (ofp11_port_h < ofp_to_u16(OFPP_MAX)) {
4519 *ofp10_port = u16_to_ofp(ofp11_port_h);
7b7503ea 4520 return 0;
4e022ec0
AW
4521 } else if (ofp11_port_h >= ofp11_to_u32(OFPP11_MAX)) {
4522 *ofp10_port = u16_to_ofp(ofp11_port_h - OFPP11_OFFSET);
7b7503ea
BP
4523 return 0;
4524 } else {
bc146369 4525 *ofp10_port = OFPP_NONE;
7b7503ea
BP
4526 VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
4527 "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
4e022ec0
AW
4528 ofp11_port_h, ofp_to_u16(OFPP_MAX) - 1,
4529 ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
7b7503ea
BP
4530 return OFPERR_OFPBAC_BAD_OUT_PORT;
4531 }
4532}
4533
4534/* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
4535 * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
4536 *
4537 * See the definition of OFP11_MAX for an explanation of the mapping. */
4538ovs_be32
4e022ec0 4539ofputil_port_to_ofp11(ofp_port_t ofp10_port)
7b7503ea 4540{
4e022ec0
AW
4541 return htonl(ofp_to_u16(ofp10_port) < ofp_to_u16(OFPP_MAX)
4542 ? ofp_to_u16(ofp10_port)
4543 : ofp_to_u16(ofp10_port) + OFPP11_OFFSET);
7b7503ea
BP
4544}
4545
08f94c0e 4546/* Checks that 'port' is a valid output port for the OFPAT10_OUTPUT action, given
c1c9c9c4 4547 * that the switch will never have more than 'max_ports' ports. Returns 0 if
90bf1e07
BP
4548 * 'port' is valid, otherwise an OpenFlow return code. */
4549enum ofperr
4e022ec0 4550ofputil_check_output_port(ofp_port_t port, ofp_port_t max_ports)
fa37b408
BP
4551{
4552 switch (port) {
4553 case OFPP_IN_PORT:
4554 case OFPP_TABLE:
4555 case OFPP_NORMAL:
4556 case OFPP_FLOOD:
4557 case OFPP_ALL:
4558 case OFPP_CONTROLLER:
0d193212 4559 case OFPP_NONE:
fa37b408
BP
4560 case OFPP_LOCAL:
4561 return 0;
4562
4563 default:
4e022ec0 4564 if (ofp_to_u16(port) < ofp_to_u16(max_ports)) {
fa37b408
BP
4565 return 0;
4566 }
90bf1e07 4567 return OFPERR_OFPBAC_BAD_OUT_PORT;
fa37b408
BP
4568 }
4569}
4570
39dc9082
BP
4571#define OFPUTIL_NAMED_PORTS \
4572 OFPUTIL_NAMED_PORT(IN_PORT) \
4573 OFPUTIL_NAMED_PORT(TABLE) \
4574 OFPUTIL_NAMED_PORT(NORMAL) \
4575 OFPUTIL_NAMED_PORT(FLOOD) \
4576 OFPUTIL_NAMED_PORT(ALL) \
4577 OFPUTIL_NAMED_PORT(CONTROLLER) \
4578 OFPUTIL_NAMED_PORT(LOCAL) \
7f05e7ab
JR
4579 OFPUTIL_NAMED_PORT(ANY)
4580
4581/* For backwards compatibility, so that "none" is recognized as OFPP_ANY */
4582#define OFPUTIL_NAMED_PORTS_WITH_NONE \
4583 OFPUTIL_NAMED_PORTS \
39dc9082
BP
4584 OFPUTIL_NAMED_PORT(NONE)
4585
8010100b
BP
4586/* Stores the port number represented by 's' into '*portp'. 's' may be an
4587 * integer or, for reserved ports, the standard OpenFlow name for the port
4588 * (e.g. "LOCAL").
c6100d92 4589 *
8010100b
BP
4590 * Returns true if successful, false if 's' is not a valid OpenFlow port number
4591 * or name. The caller should issue an error message in this case, because
4592 * this function usually does not. (This gives the caller an opportunity to
4593 * look up the port name another way, e.g. by contacting the switch and listing
4594 * the names of all its ports).
c6100d92
BP
4595 *
4596 * This function accepts OpenFlow 1.0 port numbers. It also accepts a subset
4597 * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
4598 * range as described in include/openflow/openflow-1.1.h. */
8010100b 4599bool
4e022ec0 4600ofputil_port_from_string(const char *s, ofp_port_t *portp)
39dc9082 4601{
4e022ec0 4602 uint32_t port32;
c6100d92 4603
8010100b 4604 *portp = 0;
c6100d92 4605 if (str_to_uint(s, 10, &port32)) {
4e022ec0
AW
4606 if (port32 < ofp_to_u16(OFPP_MAX)) {
4607 /* Pass. */
4608 } else if (port32 < ofp_to_u16(OFPP_FIRST_RESV)) {
c6100d92
BP
4609 VLOG_WARN("port %u is a reserved OF1.0 port number that will "
4610 "be translated to %u when talking to an OF1.1 or "
4611 "later controller", port32, port32 + OFPP11_OFFSET);
4e022ec0 4612 } else if (port32 <= ofp_to_u16(OFPP_LAST_RESV)) {
28b11432
BP
4613 char name[OFP_MAX_PORT_NAME_LEN];
4614
4615 ofputil_port_to_string(u16_to_ofp(port32), name, sizeof name);
4616 VLOG_WARN_ONCE("referring to port %s as %"PRIu32" is deprecated "
4617 "for compatibility with OpenFlow 1.1 and later",
4618 name, port32);
4e022ec0 4619 } else if (port32 < ofp11_to_u32(OFPP11_MAX)) {
c6100d92 4620 VLOG_WARN("port %u is outside the supported range 0 through "
d047fd17 4621 "%"PRIx16" or 0x%x through 0x%"PRIx32, port32,
4e022ec0 4622 UINT16_MAX, ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
8010100b 4623 return false;
c6100d92 4624 } else {
4e022ec0 4625 port32 -= OFPP11_OFFSET;
c6100d92 4626 }
4e022ec0
AW
4627
4628 *portp = u16_to_ofp(port32);
4629 return true;
c6100d92
BP
4630 } else {
4631 struct pair {
4632 const char *name;
4e022ec0 4633 ofp_port_t value;
c6100d92
BP
4634 };
4635 static const struct pair pairs[] = {
39dc9082 4636#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
7f05e7ab 4637 OFPUTIL_NAMED_PORTS_WITH_NONE
39dc9082 4638#undef OFPUTIL_NAMED_PORT
c6100d92
BP
4639 };
4640 const struct pair *p;
39dc9082 4641
c6100d92
BP
4642 for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
4643 if (!strcasecmp(s, p->name)) {
8010100b
BP
4644 *portp = p->value;
4645 return true;
c6100d92 4646 }
39dc9082 4647 }
8010100b 4648 return false;
39dc9082 4649 }
39dc9082
BP
4650}
4651
4652/* Appends to 's' a string representation of the OpenFlow port number 'port'.
4653 * Most ports' string representation is just the port number, but for special
4654 * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
4655void
4e022ec0 4656ofputil_format_port(ofp_port_t port, struct ds *s)
39dc9082 4657{
28b11432
BP
4658 char name[OFP_MAX_PORT_NAME_LEN];
4659
4660 ofputil_port_to_string(port, name, sizeof name);
4661 ds_put_cstr(s, name);
4662}
39dc9082 4663
28b11432
BP
4664/* Puts in the 'bufsize' byte in 'namebuf' a null-terminated string
4665 * representation of OpenFlow port number 'port'. Most ports are represented
4666 * as just the port number, but special ports, e.g. OFPP_LOCAL, are represented
4667 * by name, e.g. "LOCAL". */
4668void
4669ofputil_port_to_string(ofp_port_t port,
4670 char namebuf[OFP_MAX_PORT_NAME_LEN], size_t bufsize)
4671{
39dc9082 4672 switch (port) {
28b11432
BP
4673#define OFPUTIL_NAMED_PORT(NAME) \
4674 case OFPP_##NAME: \
4675 ovs_strlcpy(namebuf, #NAME, bufsize); \
4676 break;
39dc9082
BP
4677 OFPUTIL_NAMED_PORTS
4678#undef OFPUTIL_NAMED_PORT
4679
4680 default:
28b11432
BP
4681 snprintf(namebuf, bufsize, "%"PRIu16, port);
4682 break;
39dc9082 4683 }
39dc9082
BP
4684}
4685
2be393ed
JP
4686/* Given a buffer 'b' that contains an array of OpenFlow ports of type
4687 * 'ofp_version', tries to pull the first element from the array. If
4688 * successful, initializes '*pp' with an abstract representation of the
4689 * port and returns 0. If no ports remain to be decoded, returns EOF.
4690 * On an error, returns a positive OFPERR_* value. */
4691int
2e3fa633 4692ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
2be393ed
JP
4693 struct ofputil_phy_port *pp)
4694{
2e3fa633
SH
4695 switch (ofp_version) {
4696 case OFP10_VERSION: {
2be393ed
JP
4697 const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
4698 return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
2e3fa633
SH
4699 }
4700 case OFP11_VERSION:
2e1ae200
JR
4701 case OFP12_VERSION:
4702 case OFP13_VERSION: {
2be393ed
JP
4703 const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
4704 return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
4705 }
2e3fa633
SH
4706 default:
4707 NOT_REACHED();
4708 }
2be393ed
JP
4709}
4710
4711/* Given a buffer 'b' that contains an array of OpenFlow ports of type
4712 * 'ofp_version', returns the number of elements. */
4713size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *b)
4714{
5b5a3a67 4715 return b->size / ofputil_get_phy_port_size(ofp_version);
2be393ed
JP
4716}
4717
e23ae585 4718/* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
08f94c0e 4719 * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1 if
e23ae585
BP
4720 * 'name' is not the name of any action.
4721 *
4722 * ofp-util.def lists the mapping from names to action. */
4723int
4724ofputil_action_code_from_name(const char *name)
4725{
a00d4bd0 4726 static const char *const names[OFPUTIL_N_ACTIONS] = {
690a61c5 4727 NULL,
3ddcaf2d
BP
4728#define OFPAT10_ACTION(ENUM, STRUCT, NAME) NAME,
4729#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
4730#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
e23ae585
BP
4731#include "ofp-util.def"
4732 };
4733
a00d4bd0 4734 const char *const *p;
e23ae585
BP
4735
4736 for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
4737 if (*p && !strcasecmp(name, *p)) {
4738 return p - names;
4739 }
4740 }
4741 return -1;
4742}
4743
93996add
BP
4744/* Appends an action of the type specified by 'code' to 'buf' and returns the
4745 * action. Initializes the parts of 'action' that identify it as having type
4746 * <ENUM> and length 'sizeof *action' and zeros the rest. For actions that
4747 * have variable length, the length used and cleared is that of struct
4748 * <STRUCT>. */
4749void *
4750ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
4751{
4752 switch (code) {
690a61c5
BP
4753 case OFPUTIL_ACTION_INVALID:
4754 NOT_REACHED();
4755
3ddcaf2d
BP
4756#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
4757 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4758#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
93996add
BP
4759 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4760#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4761 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4762#include "ofp-util.def"
4763 }
4764 NOT_REACHED();
4765}
4766
08f94c0e 4767#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
93996add
BP
4768 void \
4769 ofputil_init_##ENUM(struct STRUCT *s) \
4770 { \
4771 memset(s, 0, sizeof *s); \
4772 s->type = htons(ENUM); \
4773 s->len = htons(sizeof *s); \
4774 } \
4775 \
4776 struct STRUCT * \
4777 ofputil_put_##ENUM(struct ofpbuf *buf) \
4778 { \
4779 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
4780 ofputil_init_##ENUM(s); \
4781 return s; \
4782 }
3ddcaf2d
BP
4783#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4784 OFPAT10_ACTION(ENUM, STRUCT, NAME)
93996add
BP
4785#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4786 void \
4787 ofputil_init_##ENUM(struct STRUCT *s) \
4788 { \
4789 memset(s, 0, sizeof *s); \
08f94c0e 4790 s->type = htons(OFPAT10_VENDOR); \
93996add
BP
4791 s->len = htons(sizeof *s); \
4792 s->vendor = htonl(NX_VENDOR_ID); \
4793 s->subtype = htons(ENUM); \
4794 } \
4795 \
4796 struct STRUCT * \
4797 ofputil_put_##ENUM(struct ofpbuf *buf) \
4798 { \
4799 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
4800 ofputil_init_##ENUM(s); \
4801 return s; \
4802 }
4803#include "ofp-util.def"
4804
3cbd9931 4805static void
81a76618 4806ofputil_normalize_match__(struct match *match, bool may_log)
b459a924
BP
4807{
4808 enum {
4809 MAY_NW_ADDR = 1 << 0, /* nw_src, nw_dst */
4810 MAY_TP_ADDR = 1 << 1, /* tp_src, tp_dst */
4811 MAY_NW_PROTO = 1 << 2, /* nw_proto */
a61680c6 4812 MAY_IPVx = 1 << 3, /* tos, frag, ttl */
b459a924
BP
4813 MAY_ARP_SHA = 1 << 4, /* arp_sha */
4814 MAY_ARP_THA = 1 << 5, /* arp_tha */
d78477ec 4815 MAY_IPV6 = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
b02475c5
SH
4816 MAY_ND_TARGET = 1 << 7, /* nd_target */
4817 MAY_MPLS = 1 << 8, /* mpls label and tc */
b459a924
BP
4818 } may_match;
4819
4820 struct flow_wildcards wc;
4821
4822 /* Figure out what fields may be matched. */
81a76618 4823 if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
9e44d715 4824 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
81a76618
BP
4825 if (match->flow.nw_proto == IPPROTO_TCP ||
4826 match->flow.nw_proto == IPPROTO_UDP ||
4827 match->flow.nw_proto == IPPROTO_ICMP) {
b459a924
BP
4828 may_match |= MAY_TP_ADDR;
4829 }
81a76618 4830 } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
d78477ec 4831 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
81a76618
BP
4832 if (match->flow.nw_proto == IPPROTO_TCP ||
4833 match->flow.nw_proto == IPPROTO_UDP) {
b459a924 4834 may_match |= MAY_TP_ADDR;
81a76618 4835 } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
b459a924 4836 may_match |= MAY_TP_ADDR;
81a76618 4837 if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
b459a924 4838 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
81a76618 4839 } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
b459a924
BP
4840 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
4841 }
4842 }
8087f5ff
MM
4843 } else if (match->flow.dl_type == htons(ETH_TYPE_ARP) ||
4844 match->flow.dl_type == htons(ETH_TYPE_RARP)) {
27527aa0 4845 may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
b02475c5
SH
4846 } else if (eth_type_mpls(match->flow.dl_type)) {
4847 may_match = MAY_MPLS;
1c0b7503 4848 } else {
b459a924
BP
4849 may_match = 0;
4850 }
4851
4852 /* Clear the fields that may not be matched. */
81a76618 4853 wc = match->wc;
b459a924 4854 if (!(may_match & MAY_NW_ADDR)) {
26720e24 4855 wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
b459a924
BP
4856 }
4857 if (!(may_match & MAY_TP_ADDR)) {
26720e24 4858 wc.masks.tp_src = wc.masks.tp_dst = htons(0);
b459a924
BP
4859 }
4860 if (!(may_match & MAY_NW_PROTO)) {
26720e24 4861 wc.masks.nw_proto = 0;
b459a924 4862 }
9e44d715 4863 if (!(may_match & MAY_IPVx)) {
26720e24
BP
4864 wc.masks.nw_tos = 0;
4865 wc.masks.nw_ttl = 0;
b459a924
BP
4866 }
4867 if (!(may_match & MAY_ARP_SHA)) {
26720e24 4868 memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
b459a924
BP
4869 }
4870 if (!(may_match & MAY_ARP_THA)) {
26720e24 4871 memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
b459a924 4872 }
d78477ec 4873 if (!(may_match & MAY_IPV6)) {
26720e24
BP
4874 wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
4875 wc.masks.ipv6_label = htonl(0);
b459a924
BP
4876 }
4877 if (!(may_match & MAY_ND_TARGET)) {
26720e24 4878 wc.masks.nd_target = in6addr_any;
b459a924 4879 }
b02475c5
SH
4880 if (!(may_match & MAY_MPLS)) {
4881 wc.masks.mpls_lse = htonl(0);
4882 wc.masks.mpls_depth = 0;
4883 }
b459a924
BP
4884
4885 /* Log any changes. */
81a76618 4886 if (!flow_wildcards_equal(&wc, &match->wc)) {
3cbd9931 4887 bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
81a76618 4888 char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
b459a924 4889
81a76618
BP
4890 match->wc = wc;
4891 match_zero_wildcarded_fields(match);
b459a924
BP
4892
4893 if (log) {
81a76618 4894 char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
b459a924
BP
4895 VLOG_INFO("normalization changed ofp_match, details:");
4896 VLOG_INFO(" pre: %s", pre);
4897 VLOG_INFO("post: %s", post);
4898 free(pre);
4899 free(post);
4900 }
fa37b408 4901 }
3f09c339 4902}
26c112c2 4903
81a76618 4904/* "Normalizes" the wildcards in 'match'. That means:
3cbd9931
BP
4905 *
4906 * 1. If the type of level N is known, then only the valid fields for that
4907 * level may be specified. For example, ARP does not have a TOS field,
81a76618 4908 * so nw_tos must be wildcarded if 'match' specifies an ARP flow.
3cbd9931 4909 * Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
81a76618 4910 * ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
3cbd9931
BP
4911 * IPv4 flow.
4912 *
4913 * 2. If the type of level N is not known (or not understood by Open
4914 * vSwitch), then no fields at all for that level may be specified. For
4915 * example, Open vSwitch does not understand SCTP, an L4 protocol, so the
81a76618 4916 * L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
3cbd9931
BP
4917 * SCTP flow.
4918 *
81a76618 4919 * If this function changes 'match', it logs a rate-limited informational
3cbd9931
BP
4920 * message. */
4921void
81a76618 4922ofputil_normalize_match(struct match *match)
3cbd9931 4923{
81a76618 4924 ofputil_normalize_match__(match, true);
3cbd9931
BP
4925}
4926
81a76618
BP
4927/* Same as ofputil_normalize_match() without the logging. Thus, this function
4928 * is suitable for a program's internal use, whereas ofputil_normalize_match()
3cbd9931
BP
4929 * sense for use on flows received from elsewhere (so that a bug in the program
4930 * that sent them can be reported and corrected). */
4931void
81a76618 4932ofputil_normalize_match_quiet(struct match *match)
3cbd9931 4933{
81a76618 4934 ofputil_normalize_match__(match, false);
3cbd9931
BP
4935}
4936
0ff22822
BP
4937/* Parses a key or a key-value pair from '*stringp'.
4938 *
4939 * On success: Stores the key into '*keyp'. Stores the value, if present, into
4940 * '*valuep', otherwise an empty string. Advances '*stringp' past the end of
4941 * the key-value pair, preparing it for another call. '*keyp' and '*valuep'
4942 * are substrings of '*stringp' created by replacing some of its bytes by null
4943 * terminators. Returns true.
4944 *
4945 * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
4946 * NULL and returns false. */
4947bool
4948ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
4949{
4950 char *pos, *key, *value;
4951 size_t key_len;
4952
4953 pos = *stringp;
4954 pos += strspn(pos, ", \t\r\n");
4955 if (*pos == '\0') {
4956 *keyp = *valuep = NULL;
4957 return false;
4958 }
4959
4960 key = pos;
4961 key_len = strcspn(pos, ":=(, \t\r\n");
4962 if (key[key_len] == ':' || key[key_len] == '=') {
4963 /* The value can be separated by a colon. */
4964 size_t value_len;
4965
4966 value = key + key_len + 1;
4967 value_len = strcspn(value, ", \t\r\n");
4968 pos = value + value_len + (value[value_len] != '\0');
4969 value[value_len] = '\0';
4970 } else if (key[key_len] == '(') {
4971 /* The value can be surrounded by balanced parentheses. The outermost
4972 * set of parentheses is removed. */
4973 int level = 1;
4974 size_t value_len;
4975
4976 value = key + key_len + 1;
4977 for (value_len = 0; level > 0; value_len++) {
4978 switch (value[value_len]) {
4979 case '\0':
33cadc50
BP
4980 level = 0;
4981 break;
0ff22822
BP
4982
4983 case '(':
4984 level++;
4985 break;
4986
4987 case ')':
4988 level--;
4989 break;
4990 }
4991 }
4992 value[value_len - 1] = '\0';
4993 pos = value + value_len;
4994 } else {
4995 /* There might be no value at all. */
4996 value = key + key_len; /* Will become the empty string below. */
4997 pos = key + key_len + (key[key_len] != '\0');
4998 }
4999 key[key_len] = '\0';
5000
5001 *stringp = pos;
5002 *keyp = key;
5003 *valuep = value;
5004 return true;
5005}
f8e4867e
SH
5006
5007/* Encode a dump ports request for 'port', the encoded message
2e1ae200 5008 * will be for Open Flow version 'ofp_version'. Returns message
f8e4867e
SH
5009 * as a struct ofpbuf. Returns encoded message on success, NULL on error */
5010struct ofpbuf *
4e022ec0 5011ofputil_encode_dump_ports_request(enum ofp_version ofp_version, ofp_port_t port)
f8e4867e
SH
5012{
5013 struct ofpbuf *request;
5014
5015 switch (ofp_version) {
5016 case OFP10_VERSION: {
5017 struct ofp10_port_stats_request *req;
5018 request = ofpraw_alloc(OFPRAW_OFPST10_PORT_REQUEST, ofp_version, 0);
5019 req = ofpbuf_put_zeros(request, sizeof *req);
4e022ec0 5020 req->port_no = htons(ofp_to_u16(port));
f8e4867e
SH
5021 break;
5022 }
5023 case OFP11_VERSION:
2e1ae200
JR
5024 case OFP12_VERSION:
5025 case OFP13_VERSION: {
f8e4867e
SH
5026 struct ofp11_port_stats_request *req;
5027 request = ofpraw_alloc(OFPRAW_OFPST11_PORT_REQUEST, ofp_version, 0);
5028 req = ofpbuf_put_zeros(request, sizeof *req);
5029 req->port_no = ofputil_port_to_ofp11(port);
5030 break;
5031 }
5032 default:
5033 NOT_REACHED();
5034 }
5035
5036 return request;
5037}
5038
5039static void
5040ofputil_port_stats_to_ofp10(const struct ofputil_port_stats *ops,
5041 struct ofp10_port_stats *ps10)
5042{
4e022ec0 5043 ps10->port_no = htons(ofp_to_u16(ops->port_no));
f8e4867e
SH
5044 memset(ps10->pad, 0, sizeof ps10->pad);
5045 put_32aligned_be64(&ps10->rx_packets, htonll(ops->stats.rx_packets));
5046 put_32aligned_be64(&ps10->tx_packets, htonll(ops->stats.tx_packets));
5047 put_32aligned_be64(&ps10->rx_bytes, htonll(ops->stats.rx_bytes));
5048 put_32aligned_be64(&ps10->tx_bytes, htonll(ops->stats.tx_bytes));
5049 put_32aligned_be64(&ps10->rx_dropped, htonll(ops->stats.rx_dropped));
5050 put_32aligned_be64(&ps10->tx_dropped, htonll(ops->stats.tx_dropped));
5051 put_32aligned_be64(&ps10->rx_errors, htonll(ops->stats.rx_errors));
5052 put_32aligned_be64(&ps10->tx_errors, htonll(ops->stats.tx_errors));
5053 put_32aligned_be64(&ps10->rx_frame_err, htonll(ops->stats.rx_frame_errors));
5054 put_32aligned_be64(&ps10->rx_over_err, htonll(ops->stats.rx_over_errors));
5055 put_32aligned_be64(&ps10->rx_crc_err, htonll(ops->stats.rx_crc_errors));
5056 put_32aligned_be64(&ps10->collisions, htonll(ops->stats.collisions));
5057}
5058
5059static void
5060ofputil_port_stats_to_ofp11(const struct ofputil_port_stats *ops,
5061 struct ofp11_port_stats *ps11)
5062{
5063 ps11->port_no = ofputil_port_to_ofp11(ops->port_no);
5064 memset(ps11->pad, 0, sizeof ps11->pad);
5065 ps11->rx_packets = htonll(ops->stats.rx_packets);
5066 ps11->tx_packets = htonll(ops->stats.tx_packets);
5067 ps11->rx_bytes = htonll(ops->stats.rx_bytes);
5068 ps11->tx_bytes = htonll(ops->stats.tx_bytes);
5069 ps11->rx_dropped = htonll(ops->stats.rx_dropped);
5070 ps11->tx_dropped = htonll(ops->stats.tx_dropped);
5071 ps11->rx_errors = htonll(ops->stats.rx_errors);
5072 ps11->tx_errors = htonll(ops->stats.tx_errors);
5073 ps11->rx_frame_err = htonll(ops->stats.rx_frame_errors);
5074 ps11->rx_over_err = htonll(ops->stats.rx_over_errors);
5075 ps11->rx_crc_err = htonll(ops->stats.rx_crc_errors);
5076 ps11->collisions = htonll(ops->stats.collisions);
5077}
5078
2e1ae200
JR
5079static void
5080ofputil_port_stats_to_ofp13(const struct ofputil_port_stats *ops,
5081 struct ofp13_port_stats *ps13)
5082{
5083 ofputil_port_stats_to_ofp11(ops, &ps13->ps);
65e0be10
BP
5084 ps13->duration_sec = htonl(ops->duration_sec);
5085 ps13->duration_nsec = htonl(ops->duration_nsec);
2e1ae200
JR
5086}
5087
5088
ad4c35fe 5089/* Encode a ports stat for 'ops' and append it to 'replies'. */
f8e4867e
SH
5090void
5091ofputil_append_port_stat(struct list *replies,
5092 const struct ofputil_port_stats *ops)
5093{
5094 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5095 struct ofp_header *oh = msg->data;
5096
5097 switch ((enum ofp_version)oh->version) {
2e1ae200
JR
5098 case OFP13_VERSION: {
5099 struct ofp13_port_stats *reply = ofpmp_append(replies, sizeof *reply);
5100 ofputil_port_stats_to_ofp13(ops, reply);
5101 break;
5102 }
f8e4867e
SH
5103 case OFP12_VERSION:
5104 case OFP11_VERSION: {
5105 struct ofp11_port_stats *reply = ofpmp_append(replies, sizeof *reply);
5106 ofputil_port_stats_to_ofp11(ops, reply);
5107 break;
5108 }
5109
5110 case OFP10_VERSION: {
5111 struct ofp10_port_stats *reply = ofpmp_append(replies, sizeof *reply);
5112 ofputil_port_stats_to_ofp10(ops, reply);
5113 break;
5114 }
5115
5116 default:
5117 NOT_REACHED();
5118 }
5119}
5120
5121static enum ofperr
5122ofputil_port_stats_from_ofp10(struct ofputil_port_stats *ops,
5123 const struct ofp10_port_stats *ps10)
5124{
5125 memset(ops, 0, sizeof *ops);
5126
4e022ec0 5127 ops->port_no = u16_to_ofp(ntohs(ps10->port_no));
f8e4867e
SH
5128 ops->stats.rx_packets = ntohll(get_32aligned_be64(&ps10->rx_packets));
5129 ops->stats.tx_packets = ntohll(get_32aligned_be64(&ps10->tx_packets));
5130 ops->stats.rx_bytes = ntohll(get_32aligned_be64(&ps10->rx_bytes));
5131 ops->stats.tx_bytes = ntohll(get_32aligned_be64(&ps10->tx_bytes));
5132 ops->stats.rx_dropped = ntohll(get_32aligned_be64(&ps10->rx_dropped));
5133 ops->stats.tx_dropped = ntohll(get_32aligned_be64(&ps10->tx_dropped));
5134 ops->stats.rx_errors = ntohll(get_32aligned_be64(&ps10->rx_errors));
5135 ops->stats.tx_errors = ntohll(get_32aligned_be64(&ps10->tx_errors));
5136 ops->stats.rx_frame_errors =
5137 ntohll(get_32aligned_be64(&ps10->rx_frame_err));
5138 ops->stats.rx_over_errors = ntohll(get_32aligned_be64(&ps10->rx_over_err));
5139 ops->stats.rx_crc_errors = ntohll(get_32aligned_be64(&ps10->rx_crc_err));
5140 ops->stats.collisions = ntohll(get_32aligned_be64(&ps10->collisions));
65e0be10 5141 ops->duration_sec = ops->duration_nsec = UINT32_MAX;
f8e4867e
SH
5142
5143 return 0;
5144}
5145
5146static enum ofperr
5147ofputil_port_stats_from_ofp11(struct ofputil_port_stats *ops,
5148 const struct ofp11_port_stats *ps11)
5149{
5150 enum ofperr error;
5151
5152 memset(ops, 0, sizeof *ops);
5153 error = ofputil_port_from_ofp11(ps11->port_no, &ops->port_no);
5154 if (error) {
5155 return error;
5156 }
5157
5158 ops->stats.rx_packets = ntohll(ps11->rx_packets);
5159 ops->stats.tx_packets = ntohll(ps11->tx_packets);
5160 ops->stats.rx_bytes = ntohll(ps11->rx_bytes);
5161 ops->stats.tx_bytes = ntohll(ps11->tx_bytes);
5162 ops->stats.rx_dropped = ntohll(ps11->rx_dropped);
5163 ops->stats.tx_dropped = ntohll(ps11->tx_dropped);
5164 ops->stats.rx_errors = ntohll(ps11->rx_errors);
5165 ops->stats.tx_errors = ntohll(ps11->tx_errors);
5166 ops->stats.rx_frame_errors = ntohll(ps11->rx_frame_err);
5167 ops->stats.rx_over_errors = ntohll(ps11->rx_over_err);
5168 ops->stats.rx_crc_errors = ntohll(ps11->rx_crc_err);
5169 ops->stats.collisions = ntohll(ps11->collisions);
65e0be10 5170 ops->duration_sec = ops->duration_nsec = UINT32_MAX;
f8e4867e
SH
5171
5172 return 0;
5173}
5174
2e1ae200
JR
5175static enum ofperr
5176ofputil_port_stats_from_ofp13(struct ofputil_port_stats *ops,
5177 const struct ofp13_port_stats *ps13)
5178{
65e0be10 5179 enum ofperr error = ofputil_port_stats_from_ofp11(ops, &ps13->ps);
2e1ae200 5180 if (!error) {
65e0be10
BP
5181 ops->duration_sec = ntohl(ps13->duration_sec);
5182 ops->duration_nsec = ntohl(ps13->duration_nsec);
2e1ae200 5183 }
2e1ae200
JR
5184 return error;
5185}
5186
be0c30df
BP
5187static size_t
5188ofputil_get_port_stats_size(enum ofp_version ofp_version)
5189{
5190 switch (ofp_version) {
5191 case OFP10_VERSION:
5192 return sizeof(struct ofp10_port_stats);
5193 case OFP11_VERSION:
5194 case OFP12_VERSION:
5195 return sizeof(struct ofp11_port_stats);
5196 case OFP13_VERSION:
5197 return sizeof(struct ofp13_port_stats);
5198 default:
5199 NOT_REACHED();
5200 }
5201}
2e1ae200 5202
f8e4867e
SH
5203/* Returns the number of port stats elements in OFPTYPE_PORT_STATS_REPLY
5204 * message 'oh'. */
5205size_t
5206ofputil_count_port_stats(const struct ofp_header *oh)
5207{
5208 struct ofpbuf b;
5209
5210 ofpbuf_use_const(&b, oh, ntohs(oh->length));
5211 ofpraw_pull_assert(&b);
5212
be0c30df 5213 return b.size / ofputil_get_port_stats_size(oh->version);
f8e4867e
SH
5214}
5215
5216/* Converts an OFPST_PORT_STATS reply in 'msg' into an abstract
5217 * ofputil_port_stats in 'ps'.
5218 *
5219 * Multiple OFPST_PORT_STATS replies can be packed into a single OpenFlow
5220 * message. Calling this function multiple times for a single 'msg' iterates
5221 * through the replies. The caller must initially leave 'msg''s layer pointers
5222 * null and not modify them between calls.
5223 *
5224 * Returns 0 if successful, EOF if no replies were left in this 'msg',
5225 * otherwise a positive errno value. */
5226int
5227ofputil_decode_port_stats(struct ofputil_port_stats *ps, struct ofpbuf *msg)
5228{
5229 enum ofperr error;
5230 enum ofpraw raw;
5231
5232 error = (msg->l2
5233 ? ofpraw_decode(&raw, msg->l2)
5234 : ofpraw_pull(&raw, msg));
5235 if (error) {
5236 return error;
5237 }
5238
5239 if (!msg->size) {
5240 return EOF;
2e1ae200
JR
5241 } else if (raw == OFPRAW_OFPST13_PORT_REPLY) {
5242 const struct ofp13_port_stats *ps13;
5243
5244 ps13 = ofpbuf_try_pull(msg, sizeof *ps13);
5245 if (!ps13) {
5246 goto bad_len;
5247 }
5248 return ofputil_port_stats_from_ofp13(ps, ps13);
f8e4867e
SH
5249 } else if (raw == OFPRAW_OFPST11_PORT_REPLY) {
5250 const struct ofp11_port_stats *ps11;
5251
5252 ps11 = ofpbuf_try_pull(msg, sizeof *ps11);
5253 if (!ps11) {
2e1ae200 5254 goto bad_len;
f8e4867e
SH
5255 }
5256 return ofputil_port_stats_from_ofp11(ps, ps11);
5257 } else if (raw == OFPRAW_OFPST10_PORT_REPLY) {
5258 const struct ofp10_port_stats *ps10;
5259
5260 ps10 = ofpbuf_try_pull(msg, sizeof *ps10);
5261 if (!ps10) {
2e1ae200 5262 goto bad_len;
f8e4867e
SH
5263 }
5264 return ofputil_port_stats_from_ofp10(ps, ps10);
5265 } else {
5266 NOT_REACHED();
5267 }
5268
2e1ae200
JR
5269 bad_len:
5270 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_PORT reply has %zu leftover "
5271 "bytes at end", msg->size);
5272 return OFPERR_OFPBRC_BAD_LEN;
f8e4867e
SH
5273}
5274
5275/* Parse a port status request message into a 16 bit OpenFlow 1.0
5276 * port number and stores the latter in '*ofp10_port'.
5277 * Returns 0 if successful, otherwise an OFPERR_* number. */
5278enum ofperr
5279ofputil_decode_port_stats_request(const struct ofp_header *request,
4e022ec0 5280 ofp_port_t *ofp10_port)
f8e4867e
SH
5281{
5282 switch ((enum ofp_version)request->version) {
2e1ae200 5283 case OFP13_VERSION:
f8e4867e
SH
5284 case OFP12_VERSION:
5285 case OFP11_VERSION: {
5286 const struct ofp11_port_stats_request *psr11 = ofpmsg_body(request);
5287 return ofputil_port_from_ofp11(psr11->port_no, ofp10_port);
5288 }
5289
5290 case OFP10_VERSION: {
5291 const struct ofp10_port_stats_request *psr10 = ofpmsg_body(request);
4e022ec0 5292 *ofp10_port = u16_to_ofp(ntohs(psr10->port_no));
f8e4867e
SH
5293 return 0;
5294 }
5295
5296 default:
5297 NOT_REACHED();
5298 }
5299}
64626975
SH
5300
5301/* Parse a queue status request message into 'oqsr'.
5302 * Returns 0 if successful, otherwise an OFPERR_* number. */
5303enum ofperr
5304ofputil_decode_queue_stats_request(const struct ofp_header *request,
5305 struct ofputil_queue_stats_request *oqsr)
5306{
5307 switch ((enum ofp_version)request->version) {
2e1ae200 5308 case OFP13_VERSION:
64626975
SH
5309 case OFP12_VERSION:
5310 case OFP11_VERSION: {
5311 const struct ofp11_queue_stats_request *qsr11 = ofpmsg_body(request);
5312 oqsr->queue_id = ntohl(qsr11->queue_id);
5313 return ofputil_port_from_ofp11(qsr11->port_no, &oqsr->port_no);
5314 }
5315
5316 case OFP10_VERSION: {
7f05e7ab
JR
5317 const struct ofp10_queue_stats_request *qsr10 = ofpmsg_body(request);
5318 oqsr->queue_id = ntohl(qsr10->queue_id);
4e022ec0 5319 oqsr->port_no = u16_to_ofp(ntohs(qsr10->port_no));
7f05e7ab
JR
5320 /* OF 1.0 uses OFPP_ALL for OFPP_ANY */
5321 if (oqsr->port_no == OFPP_ALL) {
5322 oqsr->port_no = OFPP_ANY;
5323 }
64626975
SH
5324 return 0;
5325 }
5326
5327 default:
5328 NOT_REACHED();
5329 }
5330}
5331
5332/* Encode a queue statsrequest for 'oqsr', the encoded message
5333 * will be fore Open Flow version 'ofp_version'. Returns message
5334 * as a struct ofpbuf. Returns encoded message on success, NULL on error */
5335struct ofpbuf *
5336ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
5337 const struct ofputil_queue_stats_request *oqsr)
5338{
5339 struct ofpbuf *request;
5340
5341 switch (ofp_version) {
5342 case OFP11_VERSION:
2e1ae200
JR
5343 case OFP12_VERSION:
5344 case OFP13_VERSION: {
64626975
SH
5345 struct ofp11_queue_stats_request *req;
5346 request = ofpraw_alloc(OFPRAW_OFPST11_QUEUE_REQUEST, ofp_version, 0);
5347 req = ofpbuf_put_zeros(request, sizeof *req);
5348 req->port_no = ofputil_port_to_ofp11(oqsr->port_no);
5349 req->queue_id = htonl(oqsr->queue_id);
5350 break;
5351 }
5352 case OFP10_VERSION: {
5353 struct ofp10_queue_stats_request *req;
5354 request = ofpraw_alloc(OFPRAW_OFPST10_QUEUE_REQUEST, ofp_version, 0);
5355 req = ofpbuf_put_zeros(request, sizeof *req);
7f05e7ab 5356 /* OpenFlow 1.0 needs OFPP_ALL instead of OFPP_ANY */
4e022ec0
AW
5357 req->port_no = htons(ofp_to_u16(oqsr->port_no == OFPP_ANY
5358 ? OFPP_ALL : oqsr->port_no));
64626975
SH
5359 req->queue_id = htonl(oqsr->queue_id);
5360 break;
5361 }
5362 default:
5363 NOT_REACHED();
5364 }
5365
5366 return request;
5367}
5368
be0c30df
BP
5369static size_t
5370ofputil_get_queue_stats_size(enum ofp_version ofp_version)
5371{
5372 switch (ofp_version) {
5373 case OFP10_VERSION:
5374 return sizeof(struct ofp10_queue_stats);
5375 case OFP11_VERSION:
5376 case OFP12_VERSION:
5377 return sizeof(struct ofp11_queue_stats);
5378 case OFP13_VERSION:
5379 return sizeof(struct ofp13_queue_stats);
5380 default:
5381 NOT_REACHED();
5382 }
5383}
5384
64626975
SH
5385/* Returns the number of queue stats elements in OFPTYPE_QUEUE_STATS_REPLY
5386 * message 'oh'. */
5387size_t
5388ofputil_count_queue_stats(const struct ofp_header *oh)
5389{
5390 struct ofpbuf b;
5391
5392 ofpbuf_use_const(&b, oh, ntohs(oh->length));
5393 ofpraw_pull_assert(&b);
5394
be0c30df 5395 return b.size / ofputil_get_queue_stats_size(oh->version);
64626975
SH
5396}
5397
5398static enum ofperr
5399ofputil_queue_stats_from_ofp10(struct ofputil_queue_stats *oqs,
5400 const struct ofp10_queue_stats *qs10)
5401{
4e022ec0 5402 oqs->port_no = u16_to_ofp(ntohs(qs10->port_no));
64626975
SH
5403 oqs->queue_id = ntohl(qs10->queue_id);
5404 oqs->stats.tx_bytes = ntohll(get_32aligned_be64(&qs10->tx_bytes));
5405 oqs->stats.tx_packets = ntohll(get_32aligned_be64(&qs10->tx_packets));
5406 oqs->stats.tx_errors = ntohll(get_32aligned_be64(&qs10->tx_errors));
5407
5408 return 0;
5409}
5410
5411static enum ofperr
5412ofputil_queue_stats_from_ofp11(struct ofputil_queue_stats *oqs,
5413 const struct ofp11_queue_stats *qs11)
5414{
5415 enum ofperr error;
5416
5417 error = ofputil_port_from_ofp11(qs11->port_no, &oqs->port_no);
5418 if (error) {
5419 return error;
5420 }
5421
5422 oqs->queue_id = ntohl(qs11->queue_id);
5423 oqs->stats.tx_bytes = ntohll(qs11->tx_bytes);
5424 oqs->stats.tx_packets = ntohll(qs11->tx_packets);
5425 oqs->stats.tx_errors = ntohll(qs11->tx_errors);
5426
5427 return 0;
5428}
5429
2e1ae200
JR
5430static enum ofperr
5431ofputil_queue_stats_from_ofp13(struct ofputil_queue_stats *oqs,
5432 const struct ofp13_queue_stats *qs13)
5433{
5434 enum ofperr error
5435 = ofputil_queue_stats_from_ofp11(oqs, &qs13->qs);
5436 if (!error) {
5437 /* FIXME: Get qs13->duration_sec and qs13->duration_nsec,
5438 * Add to netdev_queue_stats? */
5439 }
5440
5441 return error;
5442}
5443
64626975
SH
5444/* Converts an OFPST_QUEUE_STATS reply in 'msg' into an abstract
5445 * ofputil_queue_stats in 'qs'.
5446 *
5447 * Multiple OFPST_QUEUE_STATS replies can be packed into a single OpenFlow
5448 * message. Calling this function multiple times for a single 'msg' iterates
5449 * through the replies. The caller must initially leave 'msg''s layer pointers
5450 * null and not modify them between calls.
5451 *
5452 * Returns 0 if successful, EOF if no replies were left in this 'msg',
5453 * otherwise a positive errno value. */
5454int
5455ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg)
5456{
5457 enum ofperr error;
5458 enum ofpraw raw;
5459
5460 error = (msg->l2
5461 ? ofpraw_decode(&raw, msg->l2)
5462 : ofpraw_pull(&raw, msg));
5463 if (error) {
5464 return error;
5465 }
5466
5467 if (!msg->size) {
5468 return EOF;
2e1ae200
JR
5469 } else if (raw == OFPRAW_OFPST13_QUEUE_REPLY) {
5470 const struct ofp13_queue_stats *qs13;
5471
5472 qs13 = ofpbuf_try_pull(msg, sizeof *qs13);
5473 if (!qs13) {
5474 goto bad_len;
5475 }
5476 return ofputil_queue_stats_from_ofp13(qs, qs13);
64626975
SH
5477 } else if (raw == OFPRAW_OFPST11_QUEUE_REPLY) {
5478 const struct ofp11_queue_stats *qs11;
5479
5480 qs11 = ofpbuf_try_pull(msg, sizeof *qs11);
5481 if (!qs11) {
2e1ae200 5482 goto bad_len;
64626975
SH
5483 }
5484 return ofputil_queue_stats_from_ofp11(qs, qs11);
5485 } else if (raw == OFPRAW_OFPST10_QUEUE_REPLY) {
5486 const struct ofp10_queue_stats *qs10;
5487
5488 qs10 = ofpbuf_try_pull(msg, sizeof *qs10);
5489 if (!qs10) {
2e1ae200 5490 goto bad_len;
64626975
SH
5491 }
5492 return ofputil_queue_stats_from_ofp10(qs, qs10);
5493 } else {
5494 NOT_REACHED();
5495 }
2e1ae200
JR
5496
5497 bad_len:
5498 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_QUEUE reply has %zu leftover "
5499 "bytes at end", msg->size);
5500 return OFPERR_OFPBRC_BAD_LEN;
64626975
SH
5501}
5502
5503static void
5504ofputil_queue_stats_to_ofp10(const struct ofputil_queue_stats *oqs,
5505 struct ofp10_queue_stats *qs10)
5506{
4e022ec0 5507 qs10->port_no = htons(ofp_to_u16(oqs->port_no));
64626975
SH
5508 memset(qs10->pad, 0, sizeof qs10->pad);
5509 qs10->queue_id = htonl(oqs->queue_id);
5510 put_32aligned_be64(&qs10->tx_bytes, htonll(oqs->stats.tx_bytes));
5511 put_32aligned_be64(&qs10->tx_packets, htonll(oqs->stats.tx_packets));
5512 put_32aligned_be64(&qs10->tx_errors, htonll(oqs->stats.tx_errors));
5513}
5514
5515static void
5516ofputil_queue_stats_to_ofp11(const struct ofputil_queue_stats *oqs,
5517 struct ofp11_queue_stats *qs11)
5518{
5519 qs11->port_no = ofputil_port_to_ofp11(oqs->port_no);
5520 qs11->queue_id = htonl(oqs->queue_id);
5521 qs11->tx_bytes = htonll(oqs->stats.tx_bytes);
5522 qs11->tx_packets = htonll(oqs->stats.tx_packets);
5523 qs11->tx_errors = htonll(oqs->stats.tx_errors);
5524}
5525
2e1ae200
JR
5526static void
5527ofputil_queue_stats_to_ofp13(const struct ofputil_queue_stats *oqs,
5528 struct ofp13_queue_stats *qs13)
5529{
5530 ofputil_queue_stats_to_ofp11(oqs, &qs13->qs);
5531 /* OF 1.3 adds duration fields */
5532 /* FIXME: Need to implement queue alive duration (sec + nsec) */
5533 qs13->duration_sec = htonl(~0);
5534 qs13->duration_nsec = htonl(~0);
5535}
5536
64626975
SH
5537/* Encode a queue stat for 'oqs' and append it to 'replies'. */
5538void
5539ofputil_append_queue_stat(struct list *replies,
5540 const struct ofputil_queue_stats *oqs)
5541{
5542 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5543 struct ofp_header *oh = msg->data;
5544
5545 switch ((enum ofp_version)oh->version) {
2e1ae200
JR
5546 case OFP13_VERSION: {
5547 struct ofp13_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5548 ofputil_queue_stats_to_ofp13(oqs, reply);
5549 break;
5550 }
5551
64626975
SH
5552 case OFP12_VERSION:
5553 case OFP11_VERSION: {
2e1ae200 5554 struct ofp11_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
64626975
SH
5555 ofputil_queue_stats_to_ofp11(oqs, reply);
5556 break;
5557 }
5558
5559 case OFP10_VERSION: {
2e1ae200 5560 struct ofp10_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
64626975
SH
5561 ofputil_queue_stats_to_ofp10(oqs, reply);
5562 break;
5563 }
5564
5565 default:
5566 NOT_REACHED();
5567 }
5568}