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