]> git.proxmox.com Git - ovs.git/blame - lib/ofp-util.c
ofp-actions: Add support for OpenFlow 1.2 "set-field" action.
[ovs.git] / lib / ofp-util.c
CommitLineData
fa37b408 1/*
e0edde6f 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012 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"
dc4762ed 19#include <errno.h>
fa37b408 20#include <inttypes.h>
6ca00f6f
ETN
21#include <sys/types.h>
22#include <netinet/in.h>
b459a924 23#include <netinet/icmp6.h>
fa37b408 24#include <stdlib.h>
3b6a2571 25#include "autopath.h"
daff3353 26#include "bundle.h"
10a24935 27#include "byte-order.h"
d8ae4d67 28#include "classifier.h"
dc4762ed 29#include "dynamic-string.h"
75a75043 30#include "learn.h"
816fd533 31#include "meta-flow.h"
9e1fd49b 32#include "multipath.h"
6c038611 33#include "netdev.h"
b6c9e612 34#include "nx-match.h"
f25d0cf3 35#include "ofp-actions.h"
dc4762ed 36#include "ofp-errors.h"
982697a4 37#include "ofp-msgs.h"
fa37b408
BP
38#include "ofp-util.h"
39#include "ofpbuf.h"
40#include "packets.h"
41#include "random.h"
4ffd1b43 42#include "unaligned.h"
e41a9130 43#include "type-props.h"
5136ce49 44#include "vlog.h"
fa37b408 45
d98e6007 46VLOG_DEFINE_THIS_MODULE(ofp_util);
fa37b408
BP
47
48/* Rate limit for OpenFlow message parse errors. These always indicate a bug
49 * in the peer and so there's not much point in showing a lot of them. */
50static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
51
0596e897
BP
52/* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
53 * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
54 * is wildcarded.
55 *
56 * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
57 * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
58 * ..., 32 and higher wildcard the entire field. This is the *opposite* of the
59 * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
60 * wildcarded. */
61ovs_be32
62ofputil_wcbits_to_netmask(int wcbits)
63{
64 wcbits &= 0x3f;
65 return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
66}
67
68/* Given the IP netmask 'netmask', returns the number of bits of the IP address
c08201d6
BP
69 * that it wildcards, that is, the number of 0-bits in 'netmask', a number
70 * between 0 and 32 inclusive.
71 *
72 * If 'netmask' is not a CIDR netmask (see ip_is_cidr()), the return value will
73 * still be in the valid range but isn't otherwise meaningful. */
0596e897
BP
74int
75ofputil_netmask_to_wcbits(ovs_be32 netmask)
76{
aad29cd1 77 return 32 - ip_count_cidr_bits(netmask);
0596e897
BP
78}
79
eec25dc1 80/* Converts the OpenFlow 1.0 wildcards in 'ofpfw' (OFPFW10_*) into a
81a76618 81 * flow_wildcards in 'wc' for use in struct match. It is the caller's
eec25dc1
BP
82 * responsibility to handle the special case where the flow match's dl_vlan is
83 * set to OFP_VLAN_NONE. */
7286b1e1 84void
eec25dc1 85ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *wc)
d8ae4d67 86{
e2170cff 87 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 17);
a877206f 88
81a76618 89 /* Initialize most of wc. */
f9ba8dad 90 flow_wildcards_init_catchall(wc);
bad68a99 91
0bdc4bec 92 if (!(ofpfw & OFPFW10_IN_PORT)) {
26720e24 93 wc->masks.in_port = UINT16_MAX;
27cafc5f 94 }
5d9499c4
BP
95
96 if (!(ofpfw & OFPFW10_NW_TOS)) {
26720e24 97 wc->masks.nw_tos |= IP_DSCP_MASK;
d8ae4d67 98 }
7257b535 99
851d3105 100 if (!(ofpfw & OFPFW10_NW_PROTO)) {
26720e24 101 wc->masks.nw_proto = UINT8_MAX;
851d3105 102 }
26720e24
BP
103 wc->masks.nw_src = ofputil_wcbits_to_netmask(ofpfw
104 >> OFPFW10_NW_SRC_SHIFT);
105 wc->masks.nw_dst = ofputil_wcbits_to_netmask(ofpfw
106 >> OFPFW10_NW_DST_SHIFT);
d8ae4d67 107
eec25dc1 108 if (!(ofpfw & OFPFW10_TP_SRC)) {
26720e24 109 wc->masks.tp_src = htons(UINT16_MAX);
73f33563 110 }
eec25dc1 111 if (!(ofpfw & OFPFW10_TP_DST)) {
26720e24 112 wc->masks.tp_dst = htons(UINT16_MAX);
73f33563
BP
113 }
114
eec25dc1 115 if (!(ofpfw & OFPFW10_DL_SRC)) {
26720e24 116 memset(wc->masks.dl_src, 0xff, ETH_ADDR_LEN);
73c0ce34 117 }
eec25dc1 118 if (!(ofpfw & OFPFW10_DL_DST)) {
26720e24 119 memset(wc->masks.dl_dst, 0xff, ETH_ADDR_LEN);
d8ae4d67 120 }
e2170cff 121 if (!(ofpfw & OFPFW10_DL_TYPE)) {
26720e24 122 wc->masks.dl_type = htons(UINT16_MAX);
e2170cff 123 }
d8ae4d67 124
eb6f28db 125 /* VLAN TCI mask. */
eec25dc1 126 if (!(ofpfw & OFPFW10_DL_VLAN_PCP)) {
26720e24 127 wc->masks.vlan_tci |= htons(VLAN_PCP_MASK | VLAN_CFI);
eb6f28db 128 }
eec25dc1 129 if (!(ofpfw & OFPFW10_DL_VLAN)) {
26720e24 130 wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
eb6f28db
BP
131 }
132}
133
81a76618 134/* Converts the ofp10_match in 'ofmatch' into a struct match in 'match'. */
eb6f28db 135void
81a76618
BP
136ofputil_match_from_ofp10_match(const struct ofp10_match *ofmatch,
137 struct match *match)
138{
139 uint32_t ofpfw = ntohl(ofmatch->wildcards) & OFPFW10_ALL;
140
141 /* Initialize match->wc. */
142 memset(match->flow.zeros, 0, sizeof match->flow.zeros);
143 ofputil_wildcard_from_ofpfw10(ofpfw, &match->wc);
144
145 /* Initialize most of match->flow. */
146 match->flow.nw_src = ofmatch->nw_src;
147 match->flow.nw_dst = ofmatch->nw_dst;
148 match->flow.in_port = ntohs(ofmatch->in_port);
149 match->flow.dl_type = ofputil_dl_type_from_openflow(ofmatch->dl_type);
150 match->flow.tp_src = ofmatch->tp_src;
151 match->flow.tp_dst = ofmatch->tp_dst;
152 memcpy(match->flow.dl_src, ofmatch->dl_src, ETH_ADDR_LEN);
153 memcpy(match->flow.dl_dst, ofmatch->dl_dst, ETH_ADDR_LEN);
154 match->flow.nw_tos = ofmatch->nw_tos & IP_DSCP_MASK;
155 match->flow.nw_proto = ofmatch->nw_proto;
d8ae4d67 156
66642cb4 157 /* Translate VLANs. */
0c436519 158 if (!(ofpfw & OFPFW10_DL_VLAN) &&
81a76618 159 ofmatch->dl_vlan == htons(OFP10_VLAN_NONE)) {
47271d0d
BP
160 /* Match only packets without 802.1Q header.
161 *
eec25dc1 162 * When OFPFW10_DL_VLAN_PCP is wildcarded, this is obviously correct.
47271d0d 163 *
eec25dc1 164 * If OFPFW10_DL_VLAN_PCP is matched, the flow match is contradictory,
47271d0d
BP
165 * because we can't have a specific PCP without an 802.1Q header.
166 * However, older versions of OVS treated this as matching packets
167 * withut an 802.1Q header, so we do here too. */
81a76618
BP
168 match->flow.vlan_tci = htons(0);
169 match->wc.masks.vlan_tci = htons(0xffff);
47271d0d
BP
170 } else {
171 ovs_be16 vid, pcp, tci;
172
81a76618
BP
173 vid = ofmatch->dl_vlan & htons(VLAN_VID_MASK);
174 pcp = htons((ofmatch->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
47271d0d 175 tci = vid | pcp | htons(VLAN_CFI);
81a76618 176 match->flow.vlan_tci = tci & match->wc.masks.vlan_tci;
66642cb4
BP
177 }
178
d8ae4d67 179 /* Clean up. */
81a76618 180 match_zero_wildcarded_fields(match);
d8ae4d67
BP
181}
182
81a76618 183/* Convert 'match' into the OpenFlow 1.0 match structure 'ofmatch'. */
d8ae4d67 184void
81a76618
BP
185ofputil_match_to_ofp10_match(const struct match *match,
186 struct ofp10_match *ofmatch)
d8ae4d67 187{
81a76618 188 const struct flow_wildcards *wc = &match->wc;
eeba8e4f 189 uint32_t ofpfw;
d8ae4d67 190
66642cb4 191 /* Figure out most OpenFlow wildcards. */
27cafc5f 192 ofpfw = 0;
26720e24 193 if (!wc->masks.in_port) {
27cafc5f
BP
194 ofpfw |= OFPFW10_IN_PORT;
195 }
26720e24 196 if (!wc->masks.dl_type) {
27cafc5f
BP
197 ofpfw |= OFPFW10_DL_TYPE;
198 }
26720e24 199 if (!wc->masks.nw_proto) {
27cafc5f
BP
200 ofpfw |= OFPFW10_NW_PROTO;
201 }
26720e24 202 ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
eec25dc1 203 << OFPFW10_NW_SRC_SHIFT);
26720e24 204 ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
eec25dc1 205 << OFPFW10_NW_DST_SHIFT);
26720e24 206 if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
eec25dc1 207 ofpfw |= OFPFW10_NW_TOS;
d8ae4d67 208 }
26720e24 209 if (!wc->masks.tp_src) {
eec25dc1 210 ofpfw |= OFPFW10_TP_SRC;
73f33563 211 }
26720e24 212 if (!wc->masks.tp_dst) {
eec25dc1 213 ofpfw |= OFPFW10_TP_DST;
73f33563 214 }
26720e24 215 if (eth_addr_is_zero(wc->masks.dl_src)) {
eec25dc1 216 ofpfw |= OFPFW10_DL_SRC;
73c0ce34 217 }
26720e24 218 if (eth_addr_is_zero(wc->masks.dl_dst)) {
eec25dc1 219 ofpfw |= OFPFW10_DL_DST;
73c0ce34 220 }
ff9d3826 221
66642cb4 222 /* Translate VLANs. */
81a76618
BP
223 ofmatch->dl_vlan = htons(0);
224 ofmatch->dl_vlan_pcp = 0;
225 if (match->wc.masks.vlan_tci == htons(0)) {
eec25dc1 226 ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
81a76618
BP
227 } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
228 && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
229 ofmatch->dl_vlan = htons(OFP10_VLAN_NONE);
41ca9a1e 230 ofpfw |= OFPFW10_DL_VLAN_PCP;
66642cb4 231 } else {
81a76618 232 if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
eec25dc1 233 ofpfw |= OFPFW10_DL_VLAN;
66642cb4 234 } else {
81a76618 235 ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
66642cb4
BP
236 }
237
81a76618 238 if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
eec25dc1 239 ofpfw |= OFPFW10_DL_VLAN_PCP;
66642cb4 240 } else {
81a76618 241 ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
66642cb4
BP
242 }
243 }
244
245 /* Compose most of the match structure. */
81a76618
BP
246 ofmatch->wildcards = htonl(ofpfw);
247 ofmatch->in_port = htons(match->flow.in_port);
248 memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
249 memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
250 ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
251 ofmatch->nw_src = match->flow.nw_src;
252 ofmatch->nw_dst = match->flow.nw_dst;
253 ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
254 ofmatch->nw_proto = match->flow.nw_proto;
255 ofmatch->tp_src = match->flow.tp_src;
256 ofmatch->tp_dst = match->flow.tp_dst;
257 memset(ofmatch->pad1, '\0', sizeof ofmatch->pad1);
258 memset(ofmatch->pad2, '\0', sizeof ofmatch->pad2);
d8ae4d67
BP
259}
260
aa319503 261enum ofperr
81a76618
BP
262ofputil_pull_ofp11_match(struct ofpbuf *buf, struct match *match,
263 uint16_t *padded_match_len)
aa319503 264{
36a16881
SH
265 struct ofp11_match_header *omh = buf->data;
266 uint16_t match_len;
aa319503 267
36a16881 268 if (buf->size < sizeof *omh) {
aa319503
BP
269 return OFPERR_OFPBMC_BAD_LEN;
270 }
271
36a16881
SH
272 match_len = ntohs(omh->length);
273
aa319503 274 switch (ntohs(omh->type)) {
36a16881
SH
275 case OFPMT_STANDARD: {
276 struct ofp11_match *om;
277
278 if (match_len != sizeof *om || buf->size < sizeof *om) {
aa319503
BP
279 return OFPERR_OFPBMC_BAD_LEN;
280 }
281 om = ofpbuf_pull(buf, sizeof *om);
36a16881
SH
282 if (padded_match_len) {
283 *padded_match_len = match_len;
284 }
81a76618 285 return ofputil_match_from_ofp11_match(om, match);
36a16881
SH
286 }
287
288 case OFPMT_OXM:
289 if (padded_match_len) {
290 *padded_match_len = ROUND_UP(match_len, 8);
291 }
81a76618 292 return oxm_pull_match(buf, match);
aa319503
BP
293
294 default:
295 return OFPERR_OFPBMC_BAD_TYPE;
296 }
297}
298
81a76618
BP
299/* Converts the ofp11_match in 'match' into a struct match in 'match. Returns
300 * 0 if successful, otherwise an OFPERR_* value. */
410698cf 301enum ofperr
81a76618
BP
302ofputil_match_from_ofp11_match(const struct ofp11_match *ofmatch,
303 struct match *match)
410698cf 304{
81a76618 305 uint16_t wc = ntohl(ofmatch->wildcards);
410698cf
BP
306 uint8_t dl_src_mask[ETH_ADDR_LEN];
307 uint8_t dl_dst_mask[ETH_ADDR_LEN];
308 bool ipv4, arp;
309 int i;
310
81a76618 311 match_init_catchall(match);
410698cf
BP
312
313 if (!(wc & OFPFW11_IN_PORT)) {
314 uint16_t ofp_port;
315 enum ofperr error;
316
81a76618 317 error = ofputil_port_from_ofp11(ofmatch->in_port, &ofp_port);
410698cf
BP
318 if (error) {
319 return OFPERR_OFPBMC_BAD_VALUE;
320 }
81a76618 321 match_set_in_port(match, ofp_port);
410698cf
BP
322 }
323
324 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 325 dl_src_mask[i] = ~ofmatch->dl_src_mask[i];
410698cf 326 }
81a76618 327 match_set_dl_src_masked(match, ofmatch->dl_src, dl_src_mask);
410698cf
BP
328
329 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 330 dl_dst_mask[i] = ~ofmatch->dl_dst_mask[i];
410698cf 331 }
81a76618 332 match_set_dl_dst_masked(match, ofmatch->dl_dst, dl_dst_mask);
410698cf
BP
333
334 if (!(wc & OFPFW11_DL_VLAN)) {
81a76618 335 if (ofmatch->dl_vlan == htons(OFPVID11_NONE)) {
410698cf 336 /* Match only packets without a VLAN tag. */
81a76618
BP
337 match->flow.vlan_tci = htons(0);
338 match->wc.masks.vlan_tci = htons(UINT16_MAX);
410698cf 339 } else {
81a76618 340 if (ofmatch->dl_vlan == htons(OFPVID11_ANY)) {
410698cf 341 /* Match any packet with a VLAN tag regardless of VID. */
81a76618
BP
342 match->flow.vlan_tci = htons(VLAN_CFI);
343 match->wc.masks.vlan_tci = htons(VLAN_CFI);
344 } else if (ntohs(ofmatch->dl_vlan) < 4096) {
410698cf 345 /* Match only packets with the specified VLAN VID. */
81a76618
BP
346 match->flow.vlan_tci = htons(VLAN_CFI) | ofmatch->dl_vlan;
347 match->wc.masks.vlan_tci = htons(VLAN_CFI | VLAN_VID_MASK);
410698cf
BP
348 } else {
349 /* Invalid VID. */
350 return OFPERR_OFPBMC_BAD_VALUE;
351 }
352
353 if (!(wc & OFPFW11_DL_VLAN_PCP)) {
81a76618
BP
354 if (ofmatch->dl_vlan_pcp <= 7) {
355 match->flow.vlan_tci |= htons(ofmatch->dl_vlan_pcp
356 << VLAN_PCP_SHIFT);
357 match->wc.masks.vlan_tci |= htons(VLAN_PCP_MASK);
410698cf
BP
358 } else {
359 /* Invalid PCP. */
360 return OFPERR_OFPBMC_BAD_VALUE;
361 }
362 }
363 }
364 }
365
366 if (!(wc & OFPFW11_DL_TYPE)) {
81a76618
BP
367 match_set_dl_type(match,
368 ofputil_dl_type_from_openflow(ofmatch->dl_type));
410698cf
BP
369 }
370
81a76618
BP
371 ipv4 = match->flow.dl_type == htons(ETH_TYPE_IP);
372 arp = match->flow.dl_type == htons(ETH_TYPE_ARP);
410698cf
BP
373
374 if (ipv4 && !(wc & OFPFW11_NW_TOS)) {
81a76618 375 if (ofmatch->nw_tos & ~IP_DSCP_MASK) {
410698cf
BP
376 /* Invalid TOS. */
377 return OFPERR_OFPBMC_BAD_VALUE;
378 }
379
81a76618 380 match_set_nw_dscp(match, ofmatch->nw_tos);
410698cf
BP
381 }
382
383 if (ipv4 || arp) {
384 if (!(wc & OFPFW11_NW_PROTO)) {
81a76618 385 match_set_nw_proto(match, ofmatch->nw_proto);
410698cf 386 }
81a76618
BP
387 match_set_nw_src_masked(match, ofmatch->nw_src, ~ofmatch->nw_src_mask);
388 match_set_nw_dst_masked(match, ofmatch->nw_dst, ~ofmatch->nw_dst_mask);
410698cf
BP
389 }
390
391#define OFPFW11_TP_ALL (OFPFW11_TP_SRC | OFPFW11_TP_DST)
392 if (ipv4 && (wc & OFPFW11_TP_ALL) != OFPFW11_TP_ALL) {
81a76618 393 switch (match->flow.nw_proto) {
410698cf
BP
394 case IPPROTO_ICMP:
395 /* "A.2.3 Flow Match Structures" in OF1.1 says:
396 *
397 * The tp_src and tp_dst fields will be ignored unless the
398 * network protocol specified is as TCP, UDP or SCTP.
399 *
400 * but I'm pretty sure we should support ICMP too, otherwise
401 * that's a regression from OF1.0. */
402 if (!(wc & OFPFW11_TP_SRC)) {
81a76618 403 uint16_t icmp_type = ntohs(ofmatch->tp_src);
410698cf 404 if (icmp_type < 0x100) {
81a76618 405 match_set_icmp_type(match, icmp_type);
410698cf
BP
406 } else {
407 return OFPERR_OFPBMC_BAD_FIELD;
408 }
409 }
410 if (!(wc & OFPFW11_TP_DST)) {
81a76618 411 uint16_t icmp_code = ntohs(ofmatch->tp_dst);
410698cf 412 if (icmp_code < 0x100) {
81a76618 413 match_set_icmp_code(match, icmp_code);
410698cf
BP
414 } else {
415 return OFPERR_OFPBMC_BAD_FIELD;
416 }
417 }
418 break;
419
420 case IPPROTO_TCP:
421 case IPPROTO_UDP:
422 if (!(wc & (OFPFW11_TP_SRC))) {
81a76618 423 match_set_tp_src(match, ofmatch->tp_src);
410698cf
BP
424 }
425 if (!(wc & (OFPFW11_TP_DST))) {
81a76618 426 match_set_tp_dst(match, ofmatch->tp_dst);
410698cf
BP
427 }
428 break;
429
430 case IPPROTO_SCTP:
431 /* We don't support SCTP and it seems that we should tell the
432 * controller, since OF1.1 implementations are supposed to. */
433 return OFPERR_OFPBMC_BAD_FIELD;
434
435 default:
436 /* OF1.1 says explicitly to ignore this. */
437 break;
438 }
439 }
440
81a76618
BP
441 if (match->flow.dl_type == htons(ETH_TYPE_MPLS) ||
442 match->flow.dl_type == htons(ETH_TYPE_MPLS_MCAST)) {
410698cf
BP
443 enum { OFPFW11_MPLS_ALL = OFPFW11_MPLS_LABEL | OFPFW11_MPLS_TC };
444
445 if ((wc & OFPFW11_MPLS_ALL) != OFPFW11_MPLS_ALL) {
446 /* MPLS not supported. */
447 return OFPERR_OFPBMC_BAD_TAG;
448 }
449 }
450
81a76618
BP
451 match_set_metadata_masked(match, ofmatch->metadata,
452 ~ofmatch->metadata_mask);
410698cf
BP
453
454 return 0;
455}
456
81a76618 457/* Convert 'match' into the OpenFlow 1.1 match structure 'ofmatch'. */
410698cf 458void
81a76618
BP
459ofputil_match_to_ofp11_match(const struct match *match,
460 struct ofp11_match *ofmatch)
410698cf
BP
461{
462 uint32_t wc = 0;
463 int i;
464
81a76618
BP
465 memset(ofmatch, 0, sizeof *ofmatch);
466 ofmatch->omh.type = htons(OFPMT_STANDARD);
467 ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
410698cf 468
81a76618 469 if (!match->wc.masks.in_port) {
410698cf
BP
470 wc |= OFPFW11_IN_PORT;
471 } else {
81a76618 472 ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port);
410698cf
BP
473 }
474
81a76618 475 memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
410698cf 476 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 477 ofmatch->dl_src_mask[i] = ~match->wc.masks.dl_src[i];
410698cf
BP
478 }
479
81a76618 480 memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
410698cf 481 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 482 ofmatch->dl_dst_mask[i] = ~match->wc.masks.dl_dst[i];
410698cf
BP
483 }
484
81a76618 485 if (match->wc.masks.vlan_tci == htons(0)) {
410698cf 486 wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
81a76618
BP
487 } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
488 && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
489 ofmatch->dl_vlan = htons(OFPVID11_NONE);
410698cf
BP
490 wc |= OFPFW11_DL_VLAN_PCP;
491 } else {
81a76618
BP
492 if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
493 ofmatch->dl_vlan = htons(OFPVID11_ANY);
410698cf 494 } else {
81a76618 495 ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
410698cf
BP
496 }
497
81a76618 498 if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
410698cf
BP
499 wc |= OFPFW11_DL_VLAN_PCP;
500 } else {
81a76618 501 ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
410698cf
BP
502 }
503 }
504
81a76618 505 if (!match->wc.masks.dl_type) {
410698cf
BP
506 wc |= OFPFW11_DL_TYPE;
507 } else {
81a76618 508 ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
410698cf
BP
509 }
510
81a76618 511 if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
410698cf
BP
512 wc |= OFPFW11_NW_TOS;
513 } else {
81a76618 514 ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
410698cf
BP
515 }
516
81a76618 517 if (!match->wc.masks.nw_proto) {
410698cf
BP
518 wc |= OFPFW11_NW_PROTO;
519 } else {
81a76618 520 ofmatch->nw_proto = match->flow.nw_proto;
410698cf
BP
521 }
522
81a76618
BP
523 ofmatch->nw_src = match->flow.nw_src;
524 ofmatch->nw_src_mask = ~match->wc.masks.nw_src;
525 ofmatch->nw_dst = match->flow.nw_dst;
526 ofmatch->nw_dst_mask = ~match->wc.masks.nw_dst;
410698cf 527
81a76618 528 if (!match->wc.masks.tp_src) {
410698cf
BP
529 wc |= OFPFW11_TP_SRC;
530 } else {
81a76618 531 ofmatch->tp_src = match->flow.tp_src;
410698cf
BP
532 }
533
81a76618 534 if (!match->wc.masks.tp_dst) {
410698cf
BP
535 wc |= OFPFW11_TP_DST;
536 } else {
81a76618 537 ofmatch->tp_dst = match->flow.tp_dst;
410698cf
BP
538 }
539
540 /* MPLS not supported. */
541 wc |= OFPFW11_MPLS_LABEL;
542 wc |= OFPFW11_MPLS_TC;
543
81a76618
BP
544 ofmatch->metadata = match->flow.metadata;
545 ofmatch->metadata_mask = ~match->wc.masks.metadata;
410698cf 546
81a76618 547 ofmatch->wildcards = htonl(wc);
410698cf
BP
548}
549
36956a7d 550/* Given a 'dl_type' value in the format used in struct flow, returns the
eec25dc1
BP
551 * corresponding 'dl_type' value for use in an ofp10_match or ofp11_match
552 * structure. */
36956a7d
BP
553ovs_be16
554ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
555{
556 return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
557 ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
558 : flow_dl_type);
559}
560
eec25dc1 561/* Given a 'dl_type' value in the format used in an ofp10_match or ofp11_match
36956a7d
BP
562 * structure, returns the corresponding 'dl_type' value for use in struct
563 * flow. */
564ovs_be16
565ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
566{
567 return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
568 ? htons(FLOW_DL_TYPE_NONE)
569 : ofp_dl_type);
570}
2e4f5fcf 571\f
27527aa0 572/* Protocols. */
7fa91113 573
27527aa0
BP
574struct proto_abbrev {
575 enum ofputil_protocol protocol;
576 const char *name;
577};
578
579/* Most users really don't care about some of the differences between
580 * protocols. These abbreviations help with that. */
581static const struct proto_abbrev proto_abbrevs[] = {
582 { OFPUTIL_P_ANY, "any" },
583 { OFPUTIL_P_OF10_ANY, "OpenFlow10" },
584 { OFPUTIL_P_NXM_ANY, "NXM" },
585};
586#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
587
588enum ofputil_protocol ofputil_flow_dump_protocols[] = {
589 OFPUTIL_P_NXM,
590 OFPUTIL_P_OF10,
591};
592size_t ofputil_n_flow_dump_protocols = ARRAY_SIZE(ofputil_flow_dump_protocols);
593
594/* Returns the ofputil_protocol that is initially in effect on an OpenFlow
595 * connection that has negotiated the given 'version'. 'version' should
596 * normally be an 8-bit OpenFlow version identifier (e.g. 0x01 for OpenFlow
597 * 1.0, 0x02 for OpenFlow 1.1). Returns 0 if 'version' is not supported or
598 * outside the valid range. */
599enum ofputil_protocol
2e3fa633 600ofputil_protocol_from_ofp_version(enum ofp_version version)
27527aa0
BP
601{
602 switch (version) {
2e3fa633
SH
603 case OFP10_VERSION:
604 return OFPUTIL_P_OF10;
605 case OFP12_VERSION:
606 return OFPUTIL_P_OF12;
607 case OFP11_VERSION:
608 default:
609 return 0;
27527aa0
BP
610 }
611}
612
44d3732d
SH
613/* Returns the OpenFlow protocol version number (e.g. OFP10_VERSION,
614 * OFP11_VERSION or OFP12_VERSION) that corresponds to 'protocol'. */
2e3fa633 615enum ofp_version
9e1fd49b
BP
616ofputil_protocol_to_ofp_version(enum ofputil_protocol protocol)
617{
618 switch (protocol) {
619 case OFPUTIL_P_OF10:
620 case OFPUTIL_P_OF10_TID:
621 case OFPUTIL_P_NXM:
622 case OFPUTIL_P_NXM_TID:
623 return OFP10_VERSION;
44d3732d
SH
624 case OFPUTIL_P_OF12:
625 return OFP12_VERSION;
9e1fd49b
BP
626 }
627
628 NOT_REACHED();
629}
630
27527aa0
BP
631/* Returns true if 'protocol' is a single OFPUTIL_P_* value, false
632 * otherwise. */
7fa91113 633bool
27527aa0 634ofputil_protocol_is_valid(enum ofputil_protocol protocol)
7fa91113 635{
27527aa0
BP
636 return protocol & OFPUTIL_P_ANY && is_pow2(protocol);
637}
638
639/* Returns the equivalent of 'protocol' with the Nicira flow_mod_table_id
640 * extension turned on or off if 'enable' is true or false, respectively.
641 *
642 * This extension is only useful for protocols whose "standard" version does
643 * not allow specific tables to be modified. In particular, this is true of
644 * OpenFlow 1.0. In later versions of OpenFlow, a flow_mod request always
645 * specifies a table ID and so there is no need for such an extension. When
646 * 'protocol' is such a protocol that doesn't need a flow_mod_table_id
647 * extension, this function just returns its 'protocol' argument unchanged
648 * regardless of the value of 'enable'. */
649enum ofputil_protocol
650ofputil_protocol_set_tid(enum ofputil_protocol protocol, bool enable)
651{
652 switch (protocol) {
653 case OFPUTIL_P_OF10:
654 case OFPUTIL_P_OF10_TID:
655 return enable ? OFPUTIL_P_OF10_TID : OFPUTIL_P_OF10;
656
657 case OFPUTIL_P_NXM:
658 case OFPUTIL_P_NXM_TID:
659 return enable ? OFPUTIL_P_NXM_TID : OFPUTIL_P_NXM;
660
44d3732d
SH
661 case OFPUTIL_P_OF12:
662 return OFPUTIL_P_OF12;
663
27527aa0
BP
664 default:
665 NOT_REACHED();
7fa91113 666 }
27527aa0 667}
7fa91113 668
27527aa0
BP
669/* Returns the "base" version of 'protocol'. That is, if 'protocol' includes
670 * some extension to a standard protocol version, the return value is the
671 * standard version of that protocol without any extension. If 'protocol' is a
672 * standard protocol version, returns 'protocol' unchanged. */
673enum ofputil_protocol
674ofputil_protocol_to_base(enum ofputil_protocol protocol)
675{
676 return ofputil_protocol_set_tid(protocol, false);
7fa91113
BP
677}
678
27527aa0
BP
679/* Returns 'new_base' with any extensions taken from 'cur'. */
680enum ofputil_protocol
681ofputil_protocol_set_base(enum ofputil_protocol cur,
682 enum ofputil_protocol new_base)
7fa91113 683{
27527aa0
BP
684 bool tid = (cur & OFPUTIL_P_TID) != 0;
685
686 switch (new_base) {
687 case OFPUTIL_P_OF10:
688 case OFPUTIL_P_OF10_TID:
689 return ofputil_protocol_set_tid(OFPUTIL_P_OF10, tid);
690
691 case OFPUTIL_P_NXM:
692 case OFPUTIL_P_NXM_TID:
693 return ofputil_protocol_set_tid(OFPUTIL_P_NXM, tid);
694
44d3732d
SH
695 case OFPUTIL_P_OF12:
696 return ofputil_protocol_set_tid(OFPUTIL_P_OF12, tid);
697
7fa91113
BP
698 default:
699 NOT_REACHED();
700 }
701}
702
27527aa0
BP
703/* Returns a string form of 'protocol', if a simple form exists (that is, if
704 * 'protocol' is either a single protocol or it is a combination of protocols
705 * that have a single abbreviation). Otherwise, returns NULL. */
706const char *
707ofputil_protocol_to_string(enum ofputil_protocol protocol)
88ca35ee 708{
27527aa0
BP
709 const struct proto_abbrev *p;
710
711 /* Use a "switch" statement for single-bit names so that we get a compiler
712 * warning if we forget any. */
713 switch (protocol) {
714 case OFPUTIL_P_NXM:
715 return "NXM-table_id";
716
717 case OFPUTIL_P_NXM_TID:
718 return "NXM+table_id";
719
720 case OFPUTIL_P_OF10:
721 return "OpenFlow10-table_id";
722
723 case OFPUTIL_P_OF10_TID:
724 return "OpenFlow10+table_id";
44d3732d
SH
725
726 case OFPUTIL_P_OF12:
727 return NULL;
27527aa0
BP
728 }
729
730 /* Check abbreviations. */
731 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
732 if (protocol == p->protocol) {
733 return p->name;
734 }
735 }
736
737 return NULL;
738}
739
740/* Returns a string that represents 'protocols'. The return value might be a
741 * comma-separated list if 'protocols' doesn't have a simple name. The return
742 * value is "none" if 'protocols' is 0.
743 *
744 * The caller must free the returned string (with free()). */
745char *
746ofputil_protocols_to_string(enum ofputil_protocol protocols)
747{
748 struct ds s;
749
750 assert(!(protocols & ~OFPUTIL_P_ANY));
751 if (protocols == 0) {
752 return xstrdup("none");
753 }
754
755 ds_init(&s);
756 while (protocols) {
757 const struct proto_abbrev *p;
758 int i;
759
760 if (s.length) {
761 ds_put_char(&s, ',');
762 }
763
764 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
765 if ((protocols & p->protocol) == p->protocol) {
766 ds_put_cstr(&s, p->name);
767 protocols &= ~p->protocol;
768 goto match;
769 }
770 }
771
772 for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
773 enum ofputil_protocol bit = 1u << i;
774
775 if (protocols & bit) {
776 ds_put_cstr(&s, ofputil_protocol_to_string(bit));
777 protocols &= ~bit;
778 goto match;
779 }
780 }
781 NOT_REACHED();
782
783 match: ;
784 }
785 return ds_steal_cstr(&s);
786}
787
788static enum ofputil_protocol
789ofputil_protocol_from_string__(const char *s, size_t n)
790{
791 const struct proto_abbrev *p;
792 int i;
793
794 for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
795 enum ofputil_protocol bit = 1u << i;
796 const char *name = ofputil_protocol_to_string(bit);
797
798 if (name && n == strlen(name) && !strncasecmp(s, name, n)) {
799 return bit;
800 }
801 }
802
803 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
804 if (n == strlen(p->name) && !strncasecmp(s, p->name, n)) {
805 return p->protocol;
806 }
807 }
808
809 return 0;
810}
811
812/* Returns the nonempty set of protocols represented by 's', which can be a
813 * single protocol name or abbreviation or a comma-separated list of them.
814 *
815 * Aborts the program with an error message if 's' is invalid. */
816enum ofputil_protocol
817ofputil_protocols_from_string(const char *s)
818{
819 const char *orig_s = s;
820 enum ofputil_protocol protocols;
821
822 protocols = 0;
823 while (*s) {
824 enum ofputil_protocol p;
825 size_t n;
826
827 n = strcspn(s, ",");
828 if (n == 0) {
829 s++;
830 continue;
831 }
832
833 p = ofputil_protocol_from_string__(s, n);
834 if (!p) {
835 ovs_fatal(0, "%.*s: unknown flow protocol", (int) n, s);
836 }
837 protocols |= p;
838
839 s += n;
840 }
841
842 if (!protocols) {
843 ovs_fatal(0, "%s: no flow protocol specified", orig_s);
844 }
845 return protocols;
88ca35ee
BP
846}
847
54834960
EJ
848bool
849ofputil_packet_in_format_is_valid(enum nx_packet_in_format packet_in_format)
850{
851 switch (packet_in_format) {
852 case NXPIF_OPENFLOW10:
853 case NXPIF_NXM:
854 return true;
855 }
856
857 return false;
858}
859
860const char *
861ofputil_packet_in_format_to_string(enum nx_packet_in_format packet_in_format)
862{
863 switch (packet_in_format) {
864 case NXPIF_OPENFLOW10:
865 return "openflow10";
866 case NXPIF_NXM:
867 return "nxm";
868 default:
869 NOT_REACHED();
870 }
871}
872
873int
874ofputil_packet_in_format_from_string(const char *s)
875{
876 return (!strcmp(s, "openflow10") ? NXPIF_OPENFLOW10
877 : !strcmp(s, "nxm") ? NXPIF_NXM
878 : -1);
879}
880
88ca35ee
BP
881static bool
882regs_fully_wildcarded(const struct flow_wildcards *wc)
883{
884 int i;
885
886 for (i = 0; i < FLOW_N_REGS; i++) {
26720e24 887 if (wc->masks.regs[i] != 0) {
88ca35ee
BP
888 return false;
889 }
890 }
891 return true;
892}
893
81a76618 894/* Returns a bit-mask of ofputil_protocols that can be used for sending 'match'
27527aa0
BP
895 * to a switch (e.g. to add or remove a flow). Only NXM can handle tunnel IDs,
896 * registers, or fixing the Ethernet multicast bit. Otherwise, it's better to
897 * use OpenFlow 1.0 protocol for backward compatibility. */
898enum ofputil_protocol
81a76618 899ofputil_usable_protocols(const struct match *match)
8368c090 900{
81a76618 901 const struct flow_wildcards *wc = &match->wc;
8368c090 902
e2170cff 903 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 17);
a877206f 904
73c0ce34 905 /* NXM and OF1.1+ supports bitwise matching on ethernet addresses. */
26720e24
BP
906 if (!eth_mask_is_exact(wc->masks.dl_src)
907 && !eth_addr_is_zero(wc->masks.dl_src)) {
73c0ce34
JS
908 return OFPUTIL_P_NXM_ANY;
909 }
26720e24
BP
910 if (!eth_mask_is_exact(wc->masks.dl_dst)
911 && !eth_addr_is_zero(wc->masks.dl_dst)) {
27527aa0 912 return OFPUTIL_P_NXM_ANY;
8368c090
BP
913 }
914
969fc56c 915 /* NXM and OF1.1+ support matching metadata. */
26720e24 916 if (wc->masks.metadata != htonll(0)) {
969fc56c
JS
917 return OFPUTIL_P_NXM_ANY;
918 }
919
bad68a99 920 /* Only NXM supports matching ARP hardware addresses. */
26720e24
BP
921 if (!eth_addr_is_zero(wc->masks.arp_sha) ||
922 !eth_addr_is_zero(wc->masks.arp_tha)) {
27527aa0 923 return OFPUTIL_P_NXM_ANY;
bad68a99
JP
924 }
925
d31f1109 926 /* Only NXM supports matching IPv6 traffic. */
81a76618 927 if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
27527aa0 928 return OFPUTIL_P_NXM_ANY;
d31f1109
JP
929 }
930
8368c090
BP
931 /* Only NXM supports matching registers. */
932 if (!regs_fully_wildcarded(wc)) {
27527aa0 933 return OFPUTIL_P_NXM_ANY;
8368c090
BP
934 }
935
b78f6b77 936 /* Only NXM supports matching tun_id. */
26720e24 937 if (wc->masks.tun_id != htonll(0)) {
27527aa0 938 return OFPUTIL_P_NXM_ANY;
8368c090
BP
939 }
940
7257b535 941 /* Only NXM supports matching fragments. */
26720e24 942 if (wc->masks.nw_frag) {
27527aa0 943 return OFPUTIL_P_NXM_ANY;
7257b535
BP
944 }
945
fa8223b7 946 /* Only NXM supports matching IPv6 flow label. */
26720e24 947 if (wc->masks.ipv6_label) {
27527aa0 948 return OFPUTIL_P_NXM_ANY;
fa8223b7
JP
949 }
950
530180fd 951 /* Only NXM supports matching IP ECN bits. */
26720e24 952 if (wc->masks.nw_tos & IP_ECN_MASK) {
27527aa0 953 return OFPUTIL_P_NXM_ANY;
530180fd
JP
954 }
955
a61680c6 956 /* Only NXM supports matching IP TTL/hop limit. */
26720e24 957 if (wc->masks.nw_ttl) {
27527aa0 958 return OFPUTIL_P_NXM_ANY;
a61680c6
JP
959 }
960
c08201d6 961 /* Only NXM supports non-CIDR IPv4 address masks. */
26720e24 962 if (!ip_is_cidr(wc->masks.nw_src) || !ip_is_cidr(wc->masks.nw_dst)) {
c08201d6
BP
963 return OFPUTIL_P_NXM_ANY;
964 }
965
73f33563 966 /* Only NXM supports bitwise matching on transport port. */
26720e24
BP
967 if ((wc->masks.tp_src && wc->masks.tp_src != htons(UINT16_MAX)) ||
968 (wc->masks.tp_dst && wc->masks.tp_dst != htons(UINT16_MAX))) {
27527aa0 969 return OFPUTIL_P_NXM_ANY;
73f33563
BP
970 }
971
8368c090 972 /* Other formats can express this rule. */
27527aa0
BP
973 return OFPUTIL_P_ANY;
974}
975
976/* Returns an OpenFlow message that, sent on an OpenFlow connection whose
977 * protocol is 'current', at least partly transitions the protocol to 'want'.
978 * Stores in '*next' the protocol that will be in effect on the OpenFlow
979 * connection if the switch processes the returned message correctly. (If
980 * '*next != want' then the caller will have to iterate.)
981 *
982 * If 'current == want', returns NULL and stores 'current' in '*next'. */
983struct ofpbuf *
984ofputil_encode_set_protocol(enum ofputil_protocol current,
985 enum ofputil_protocol want,
986 enum ofputil_protocol *next)
987{
988 enum ofputil_protocol cur_base, want_base;
989 bool cur_tid, want_tid;
990
991 cur_base = ofputil_protocol_to_base(current);
992 want_base = ofputil_protocol_to_base(want);
993 if (cur_base != want_base) {
994 *next = ofputil_protocol_set_base(current, want_base);
995
996 switch (want_base) {
997 case OFPUTIL_P_NXM:
998 return ofputil_encode_nx_set_flow_format(NXFF_NXM);
999
1000 case OFPUTIL_P_OF10:
1001 return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW10);
1002
44d3732d
SH
1003 case OFPUTIL_P_OF12:
1004 return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW12);
1005
27527aa0
BP
1006 case OFPUTIL_P_OF10_TID:
1007 case OFPUTIL_P_NXM_TID:
1008 NOT_REACHED();
1009 }
1010 }
1011
1012 cur_tid = (current & OFPUTIL_P_TID) != 0;
1013 want_tid = (want & OFPUTIL_P_TID) != 0;
1014 if (cur_tid != want_tid) {
1015 *next = ofputil_protocol_set_tid(current, want_tid);
1016 return ofputil_make_flow_mod_table_id(want_tid);
1017 }
1018
1019 assert(current == want);
1020
1021 *next = current;
1022 return NULL;
88ca35ee
BP
1023}
1024
27527aa0
BP
1025/* Returns an NXT_SET_FLOW_FORMAT message that can be used to set the flow
1026 * format to 'nxff'. */
88ca35ee 1027struct ofpbuf *
27527aa0 1028ofputil_encode_nx_set_flow_format(enum nx_flow_format nxff)
88ca35ee 1029{
73dbf4ab 1030 struct nx_set_flow_format *sff;
88ca35ee
BP
1031 struct ofpbuf *msg;
1032
27527aa0
BP
1033 assert(ofputil_nx_flow_format_is_valid(nxff));
1034
982697a4
BP
1035 msg = ofpraw_alloc(OFPRAW_NXT_SET_FLOW_FORMAT, OFP10_VERSION, 0);
1036 sff = ofpbuf_put_zeros(msg, sizeof *sff);
27527aa0 1037 sff->format = htonl(nxff);
88ca35ee
BP
1038
1039 return msg;
1040}
1041
27527aa0
BP
1042/* Returns the base protocol if 'flow_format' is a valid NXFF_* value, false
1043 * otherwise. */
1044enum ofputil_protocol
1045ofputil_nx_flow_format_to_protocol(enum nx_flow_format flow_format)
1046{
1047 switch (flow_format) {
1048 case NXFF_OPENFLOW10:
1049 return OFPUTIL_P_OF10;
1050
1051 case NXFF_NXM:
1052 return OFPUTIL_P_NXM;
1053
44d3732d
SH
1054 case NXFF_OPENFLOW12:
1055 return OFPUTIL_P_OF12;
1056
27527aa0
BP
1057 default:
1058 return 0;
1059 }
1060}
1061
1062/* Returns true if 'flow_format' is a valid NXFF_* value, false otherwise. */
1063bool
1064ofputil_nx_flow_format_is_valid(enum nx_flow_format flow_format)
1065{
1066 return ofputil_nx_flow_format_to_protocol(flow_format) != 0;
1067}
1068
1069/* Returns a string version of 'flow_format', which must be a valid NXFF_*
1070 * value. */
1071const char *
1072ofputil_nx_flow_format_to_string(enum nx_flow_format flow_format)
1073{
1074 switch (flow_format) {
1075 case NXFF_OPENFLOW10:
1076 return "openflow10";
1077 case NXFF_NXM:
1078 return "nxm";
44d3732d
SH
1079 case NXFF_OPENFLOW12:
1080 return "openflow12";
27527aa0
BP
1081 default:
1082 NOT_REACHED();
1083 }
1084}
1085
54834960
EJ
1086struct ofpbuf *
1087ofputil_make_set_packet_in_format(enum nx_packet_in_format packet_in_format)
1088{
73dbf4ab 1089 struct nx_set_packet_in_format *spif;
54834960
EJ
1090 struct ofpbuf *msg;
1091
982697a4
BP
1092 msg = ofpraw_alloc(OFPRAW_NXT_SET_PACKET_IN_FORMAT, OFP10_VERSION, 0);
1093 spif = ofpbuf_put_zeros(msg, sizeof *spif);
54834960
EJ
1094 spif->format = htonl(packet_in_format);
1095
1096 return msg;
1097}
1098
6c1491fb
BP
1099/* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
1100 * extension on or off (according to 'flow_mod_table_id'). */
1101struct ofpbuf *
1102ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
1103{
73dbf4ab 1104 struct nx_flow_mod_table_id *nfmti;
6c1491fb
BP
1105 struct ofpbuf *msg;
1106
982697a4
BP
1107 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD_TABLE_ID, OFP10_VERSION, 0);
1108 nfmti = ofpbuf_put_zeros(msg, sizeof *nfmti);
6c1491fb
BP
1109 nfmti->set = flow_mod_table_id;
1110 return msg;
1111}
1112
7fa91113
BP
1113/* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
1114 * flow_mod in 'fm'. Returns 0 if successful, otherwise an OpenFlow error
1115 * code.
1116 *
f25d0cf3
BP
1117 * Uses 'ofpacts' to store the abstract OFPACT_* version of 'oh''s actions.
1118 * The caller must initialize 'ofpacts' and retains ownership of it.
1119 * 'fm->ofpacts' will point into the 'ofpacts' buffer.
1120 *
1121 * Does not validate the flow_mod actions. The caller should do that, with
1122 * ofpacts_check(). */
90bf1e07 1123enum ofperr
a9a2da38 1124ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
27527aa0 1125 const struct ofp_header *oh,
f25d0cf3
BP
1126 enum ofputil_protocol protocol,
1127 struct ofpbuf *ofpacts)
2e4f5fcf 1128{
6c1491fb 1129 uint16_t command;
2e4f5fcf 1130 struct ofpbuf b;
982697a4 1131 enum ofpraw raw;
2e4f5fcf 1132
2013493b 1133 ofpbuf_use_const(&b, oh, ntohs(oh->length));
982697a4 1134 raw = ofpraw_pull_assert(&b);
aa319503 1135 if (raw == OFPRAW_OFPT11_FLOW_MOD) {
982697a4 1136 /* Standard OpenFlow 1.1 flow_mod. */
aa319503 1137 const struct ofp11_flow_mod *ofm;
90bf1e07 1138 enum ofperr error;
2e4f5fcf 1139
bbc32a88 1140 ofm = ofpbuf_pull(&b, sizeof *ofm);
2e4f5fcf 1141
81a76618 1142 error = ofputil_pull_ofp11_match(&b, &fm->match, NULL);
aa319503
BP
1143 if (error) {
1144 return error;
1c0b7503
BP
1145 }
1146
aa319503 1147 error = ofpacts_pull_openflow11_instructions(&b, b.size, ofpacts);
f25d0cf3
BP
1148 if (error) {
1149 return error;
1150 }
1151
2e4f5fcf 1152 /* Translate the message. */
81a76618 1153 fm->priority = ntohs(ofm->priority);
aa319503
BP
1154 if (ofm->command == OFPFC_ADD) {
1155 fm->cookie = htonll(0);
1156 fm->cookie_mask = htonll(0);
1157 fm->new_cookie = ofm->cookie;
1158 } else {
1159 /* XXX */
1160 fm->cookie = ofm->cookie;
1161 fm->cookie_mask = ofm->cookie_mask;
1162 fm->new_cookie = htonll(UINT64_MAX);
1163 }
1164 fm->command = ofm->command;
1165 fm->table_id = ofm->table_id;
2e4f5fcf
BP
1166 fm->idle_timeout = ntohs(ofm->idle_timeout);
1167 fm->hard_timeout = ntohs(ofm->hard_timeout);
1168 fm->buffer_id = ntohl(ofm->buffer_id);
aa319503 1169 error = ofputil_port_from_ofp11(ofm->out_port, &fm->out_port);
2e4f5fcf
BP
1170 if (error) {
1171 return error;
1172 }
aa319503 1173 if (ofm->out_group != htonl(OFPG_ANY)) {
fb9515e1 1174 return OFPERR_OFPFMFC_UNKNOWN;
2e4f5fcf 1175 }
aa319503
BP
1176 fm->flags = ntohs(ofm->flags);
1177 } else {
1178 if (raw == OFPRAW_OFPT10_FLOW_MOD) {
1179 /* Standard OpenFlow 1.0 flow_mod. */
1180 const struct ofp10_flow_mod *ofm;
aa319503
BP
1181 enum ofperr error;
1182
1183 /* Get the ofp10_flow_mod. */
1184 ofm = ofpbuf_pull(&b, sizeof *ofm);
1185
aa319503 1186 /* Translate the rule. */
81a76618
BP
1187 ofputil_match_from_ofp10_match(&ofm->match, &fm->match);
1188 ofputil_normalize_match(&fm->match);
aa319503
BP
1189
1190 /* Now get the actions. */
1191 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1192 if (error) {
1193 return error;
1194 }
1195
81a76618
BP
1196 /* OpenFlow 1.0 says that exact-match rules have to have the
1197 * highest possible priority. */
1198 fm->priority = (ofm->match.wildcards & htonl(OFPFW10_ALL)
1199 ? ntohs(ofm->priority)
1200 : UINT16_MAX);
1201
aa319503
BP
1202 /* Translate the message. */
1203 command = ntohs(ofm->command);
1204 fm->cookie = htonll(0);
1205 fm->cookie_mask = htonll(0);
1206 fm->new_cookie = ofm->cookie;
1207 fm->idle_timeout = ntohs(ofm->idle_timeout);
1208 fm->hard_timeout = ntohs(ofm->hard_timeout);
1209 fm->buffer_id = ntohl(ofm->buffer_id);
1210 fm->out_port = ntohs(ofm->out_port);
1211 fm->flags = ntohs(ofm->flags);
1212 } else if (raw == OFPRAW_NXT_FLOW_MOD) {
1213 /* Nicira extended flow_mod. */
1214 const struct nx_flow_mod *nfm;
1215 enum ofperr error;
1216
1217 /* Dissect the message. */
1218 nfm = ofpbuf_pull(&b, sizeof *nfm);
81a76618
BP
1219 error = nx_pull_match(&b, ntohs(nfm->match_len),
1220 &fm->match, &fm->cookie, &fm->cookie_mask);
aa319503
BP
1221 if (error) {
1222 return error;
1223 }
1224 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1225 if (error) {
1226 return error;
1227 }
1228
1229 /* Translate the message. */
1230 command = ntohs(nfm->command);
1231 if ((command & 0xff) == OFPFC_ADD && fm->cookie_mask) {
1232 /* Flow additions may only set a new cookie, not match an
1233 * existing cookie. */
1234 return OFPERR_NXBRC_NXM_INVALID;
1235 }
81a76618 1236 fm->priority = ntohs(nfm->priority);
aa319503
BP
1237 fm->new_cookie = nfm->cookie;
1238 fm->idle_timeout = ntohs(nfm->idle_timeout);
1239 fm->hard_timeout = ntohs(nfm->hard_timeout);
1240 fm->buffer_id = ntohl(nfm->buffer_id);
1241 fm->out_port = ntohs(nfm->out_port);
1242 fm->flags = ntohs(nfm->flags);
1243 } else {
1244 NOT_REACHED();
1245 }
1246
1247 if (protocol & OFPUTIL_P_TID) {
1248 fm->command = command & 0xff;
1249 fm->table_id = command >> 8;
1250 } else {
1251 fm->command = command;
1252 fm->table_id = 0xff;
e729e793 1253 }
2e4f5fcf
BP
1254 }
1255
f25d0cf3
BP
1256 fm->ofpacts = ofpacts->data;
1257 fm->ofpacts_len = ofpacts->size;
6c1491fb 1258
2e4f5fcf
BP
1259 return 0;
1260}
1261
aa6305ea
SH
1262static ovs_be16
1263ofputil_tid_command(const struct ofputil_flow_mod *fm,
1264 enum ofputil_protocol protocol)
1265{
1266 return htons(protocol & OFPUTIL_P_TID
1267 ? (fm->command & 0xff) | (fm->table_id << 8)
1268 : fm->command);
1269}
1270
2e4f5fcf 1271/* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
6cbe2c0f 1272 * 'protocol' and returns the message. */
2e4f5fcf 1273struct ofpbuf *
a9a2da38 1274ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
27527aa0 1275 enum ofputil_protocol protocol)
2e4f5fcf 1276{
2e4f5fcf
BP
1277 struct ofpbuf *msg;
1278
27527aa0 1279 switch (protocol) {
aa6305ea
SH
1280 case OFPUTIL_P_OF12: {
1281 struct ofp11_flow_mod *ofm;
1282
1283 msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, OFP12_VERSION,
1284 NXM_TYPICAL_LEN + fm->ofpacts_len);
1285 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
1286 ofm->cookie = fm->new_cookie;
1287 ofm->cookie_mask = fm->cookie_mask;
1288 ofm->table_id = fm->table_id;
1289 ofm->command = fm->command;
1290 ofm->idle_timeout = htons(fm->idle_timeout);
1291 ofm->hard_timeout = htons(fm->hard_timeout);
81a76618 1292 ofm->priority = htons(fm->priority);
aa6305ea
SH
1293 ofm->buffer_id = htonl(fm->buffer_id);
1294 ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
1295 ofm->out_group = htonl(OFPG11_ANY);
1296 ofm->flags = htons(fm->flags);
81a76618 1297 oxm_put_match(msg, &fm->match);
5b289eaf 1298 ofpacts_put_openflow11_instructions(fm->ofpacts, fm->ofpacts_len, msg);
aa6305ea
SH
1299 break;
1300 }
1301
27527aa0 1302 case OFPUTIL_P_OF10:
3f192f23
SH
1303 case OFPUTIL_P_OF10_TID: {
1304 struct ofp10_flow_mod *ofm;
1305
982697a4
BP
1306 msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
1307 fm->ofpacts_len);
1308 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
81a76618 1309 ofputil_match_to_ofp10_match(&fm->match, &ofm->match);
623e1caf 1310 ofm->cookie = fm->new_cookie;
aa6305ea 1311 ofm->command = ofputil_tid_command(fm, protocol);
2e4f5fcf
BP
1312 ofm->idle_timeout = htons(fm->idle_timeout);
1313 ofm->hard_timeout = htons(fm->hard_timeout);
81a76618 1314 ofm->priority = htons(fm->priority);
2e4f5fcf
BP
1315 ofm->buffer_id = htonl(fm->buffer_id);
1316 ofm->out_port = htons(fm->out_port);
1317 ofm->flags = htons(fm->flags);
5b289eaf 1318 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
27527aa0 1319 break;
3f192f23 1320 }
2e4f5fcf 1321
27527aa0 1322 case OFPUTIL_P_NXM:
3f192f23
SH
1323 case OFPUTIL_P_NXM_TID: {
1324 struct nx_flow_mod *nfm;
1325 int match_len;
1326
982697a4
BP
1327 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
1328 NXM_TYPICAL_LEN + fm->ofpacts_len);
1329 nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
aa6305ea 1330 nfm->command = ofputil_tid_command(fm, protocol);
623e1caf 1331 nfm->cookie = fm->new_cookie;
81a76618 1332 match_len = nx_put_match(msg, &fm->match, fm->cookie, fm->cookie_mask);
982697a4 1333 nfm = msg->l3;
2e4f5fcf
BP
1334 nfm->idle_timeout = htons(fm->idle_timeout);
1335 nfm->hard_timeout = htons(fm->hard_timeout);
81a76618 1336 nfm->priority = htons(fm->priority);
2e4f5fcf
BP
1337 nfm->buffer_id = htonl(fm->buffer_id);
1338 nfm->out_port = htons(fm->out_port);
1339 nfm->flags = htons(fm->flags);
1340 nfm->match_len = htons(match_len);
5b289eaf 1341 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
27527aa0 1342 break;
3f192f23 1343 }
27527aa0
BP
1344
1345 default:
2e4f5fcf
BP
1346 NOT_REACHED();
1347 }
1348
982697a4 1349 ofpmsg_update_length(msg);
2e4f5fcf
BP
1350 return msg;
1351}
1352
27527aa0
BP
1353/* Returns a bitmask with a 1-bit for each protocol that could be used to
1354 * send all of the 'n_fm's flow table modification requests in 'fms', and a
1355 * 0-bit for each protocol that is inadequate.
1356 *
1357 * (The return value will have at least one 1-bit.) */
1358enum ofputil_protocol
1359ofputil_flow_mod_usable_protocols(const struct ofputil_flow_mod *fms,
1360 size_t n_fms)
1361{
1362 enum ofputil_protocol usable_protocols;
1363 size_t i;
1364
1365 usable_protocols = OFPUTIL_P_ANY;
1366 for (i = 0; i < n_fms; i++) {
1367 const struct ofputil_flow_mod *fm = &fms[i];
1368
81a76618 1369 usable_protocols &= ofputil_usable_protocols(&fm->match);
27527aa0
BP
1370 if (fm->table_id != 0xff) {
1371 usable_protocols &= OFPUTIL_P_TID;
1372 }
623e1caf
JP
1373
1374 /* Matching of the cookie is only supported through NXM. */
1375 if (fm->cookie_mask != htonll(0)) {
27527aa0
BP
1376 usable_protocols &= OFPUTIL_P_NXM_ANY;
1377 }
1378 }
1379 assert(usable_protocols);
1380
1381 return usable_protocols;
1382}
1383
90bf1e07 1384static enum ofperr
0157ad3a
SH
1385ofputil_decode_ofpst10_flow_request(struct ofputil_flow_stats_request *fsr,
1386 const struct ofp10_flow_stats_request *ofsr,
1387 bool aggregate)
2e4f5fcf 1388{
2e4f5fcf 1389 fsr->aggregate = aggregate;
81a76618 1390 ofputil_match_from_ofp10_match(&ofsr->match, &fsr->match);
2e4f5fcf
BP
1391 fsr->out_port = ntohs(ofsr->out_port);
1392 fsr->table_id = ofsr->table_id;
e729e793 1393 fsr->cookie = fsr->cookie_mask = htonll(0);
2e4f5fcf
BP
1394
1395 return 0;
1396}
1397
0157ad3a
SH
1398static enum ofperr
1399ofputil_decode_ofpst11_flow_request(struct ofputil_flow_stats_request *fsr,
1400 struct ofpbuf *b, bool aggregate)
1401{
1402 const struct ofp11_flow_stats_request *ofsr;
1403 enum ofperr error;
1404
1405 ofsr = ofpbuf_pull(b, sizeof *ofsr);
1406 fsr->aggregate = aggregate;
1407 fsr->table_id = ofsr->table_id;
1408 error = ofputil_port_from_ofp11(ofsr->out_port, &fsr->out_port);
1409 if (error) {
1410 return error;
1411 }
1412 if (ofsr->out_group != htonl(OFPG11_ANY)) {
fb9515e1 1413 return OFPERR_OFPFMFC_UNKNOWN;
0157ad3a
SH
1414 }
1415 fsr->cookie = ofsr->cookie;
1416 fsr->cookie_mask = ofsr->cookie_mask;
81a76618 1417 error = ofputil_pull_ofp11_match(b, &fsr->match, NULL);
0157ad3a
SH
1418 if (error) {
1419 return error;
1420 }
1421
1422 return 0;
1423}
1424
90bf1e07 1425static enum ofperr
81d1ea94 1426ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
982697a4 1427 struct ofpbuf *b, bool aggregate)
2e4f5fcf
BP
1428{
1429 const struct nx_flow_stats_request *nfsr;
90bf1e07 1430 enum ofperr error;
2e4f5fcf 1431
982697a4 1432 nfsr = ofpbuf_pull(b, sizeof *nfsr);
81a76618 1433 error = nx_pull_match(b, ntohs(nfsr->match_len), &fsr->match,
e729e793 1434 &fsr->cookie, &fsr->cookie_mask);
2e4f5fcf
BP
1435 if (error) {
1436 return error;
1437 }
982697a4 1438 if (b->size) {
90bf1e07 1439 return OFPERR_OFPBRC_BAD_LEN;
2e4f5fcf
BP
1440 }
1441
1442 fsr->aggregate = aggregate;
1443 fsr->out_port = ntohs(nfsr->out_port);
1444 fsr->table_id = nfsr->table_id;
1445
1446 return 0;
1447}
1448
1449/* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
b78f6b77
BP
1450 * request 'oh', into an abstract flow_stats_request in 'fsr'. Returns 0 if
1451 * successful, otherwise an OpenFlow error code. */
90bf1e07 1452enum ofperr
81d1ea94 1453ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
b78f6b77 1454 const struct ofp_header *oh)
2e4f5fcf 1455{
982697a4 1456 enum ofpraw raw;
2e4f5fcf 1457 struct ofpbuf b;
2e4f5fcf 1458
2013493b 1459 ofpbuf_use_const(&b, oh, ntohs(oh->length));
982697a4
BP
1460 raw = ofpraw_pull_assert(&b);
1461 switch ((int) raw) {
cfc23141 1462 case OFPRAW_OFPST10_FLOW_REQUEST:
0157ad3a 1463 return ofputil_decode_ofpst10_flow_request(fsr, b.data, false);
2e4f5fcf 1464
617da9cd 1465 case OFPRAW_OFPST10_AGGREGATE_REQUEST:
0157ad3a
SH
1466 return ofputil_decode_ofpst10_flow_request(fsr, b.data, true);
1467
1468 case OFPRAW_OFPST11_FLOW_REQUEST:
1469 return ofputil_decode_ofpst11_flow_request(fsr, &b, false);
2e4f5fcf 1470
617da9cd
SH
1471 case OFPRAW_OFPST11_AGGREGATE_REQUEST:
1472 return ofputil_decode_ofpst11_flow_request(fsr, &b, true);
1473
982697a4
BP
1474 case OFPRAW_NXST_FLOW_REQUEST:
1475 return ofputil_decode_nxst_flow_request(fsr, &b, false);
2e4f5fcf 1476
982697a4
BP
1477 case OFPRAW_NXST_AGGREGATE_REQUEST:
1478 return ofputil_decode_nxst_flow_request(fsr, &b, true);
2e4f5fcf
BP
1479
1480 default:
1481 /* Hey, the caller lied. */
1482 NOT_REACHED();
1483 }
1484}
1485
1486/* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
4ffd1b43 1487 * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
27527aa0 1488 * 'protocol', and returns the message. */
2e4f5fcf 1489struct ofpbuf *
81d1ea94 1490ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
27527aa0 1491 enum ofputil_protocol protocol)
2e4f5fcf
BP
1492{
1493 struct ofpbuf *msg;
982697a4 1494 enum ofpraw raw;
2e4f5fcf 1495
27527aa0 1496 switch (protocol) {
06516c65
SH
1497 case OFPUTIL_P_OF12: {
1498 struct ofp11_flow_stats_request *ofsr;
1499
1500 raw = (fsr->aggregate
617da9cd 1501 ? OFPRAW_OFPST11_AGGREGATE_REQUEST
cfc23141 1502 : OFPRAW_OFPST11_FLOW_REQUEST);
06516c65
SH
1503 msg = ofpraw_alloc(raw, OFP12_VERSION, NXM_TYPICAL_LEN);
1504 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
1505 ofsr->table_id = fsr->table_id;
1506 ofsr->out_port = ofputil_port_to_ofp11(fsr->out_port);
1507 ofsr->out_group = htonl(OFPG11_ANY);
1508 ofsr->cookie = fsr->cookie;
1509 ofsr->cookie_mask = fsr->cookie_mask;
1510 oxm_put_match(msg, &fsr->match);
1511 break;
1512 }
1513
27527aa0
BP
1514 case OFPUTIL_P_OF10:
1515 case OFPUTIL_P_OF10_TID: {
e2b9ac44 1516 struct ofp10_flow_stats_request *ofsr;
2e4f5fcf 1517
982697a4 1518 raw = (fsr->aggregate
617da9cd 1519 ? OFPRAW_OFPST10_AGGREGATE_REQUEST
cfc23141 1520 : OFPRAW_OFPST10_FLOW_REQUEST);
982697a4
BP
1521 msg = ofpraw_alloc(raw, OFP10_VERSION, 0);
1522 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
81a76618 1523 ofputil_match_to_ofp10_match(&fsr->match, &ofsr->match);
2e4f5fcf
BP
1524 ofsr->table_id = fsr->table_id;
1525 ofsr->out_port = htons(fsr->out_port);
27527aa0
BP
1526 break;
1527 }
1528
1529 case OFPUTIL_P_NXM:
1530 case OFPUTIL_P_NXM_TID: {
2e4f5fcf
BP
1531 struct nx_flow_stats_request *nfsr;
1532 int match_len;
1533
982697a4
BP
1534 raw = (fsr->aggregate
1535 ? OFPRAW_NXST_AGGREGATE_REQUEST
1536 : OFPRAW_NXST_FLOW_REQUEST);
06516c65 1537 msg = ofpraw_alloc(raw, OFP10_VERSION, NXM_TYPICAL_LEN);
982697a4 1538 ofpbuf_put_zeros(msg, sizeof *nfsr);
7623f4dd 1539 match_len = nx_put_match(msg, &fsr->match,
e729e793 1540 fsr->cookie, fsr->cookie_mask);
2e4f5fcf 1541
982697a4 1542 nfsr = msg->l3;
2e4f5fcf
BP
1543 nfsr->out_port = htons(fsr->out_port);
1544 nfsr->match_len = htons(match_len);
1545 nfsr->table_id = fsr->table_id;
27527aa0
BP
1546 break;
1547 }
1548
1549 default:
2e4f5fcf
BP
1550 NOT_REACHED();
1551 }
1552
1553 return msg;
1554}
d1e2cf21 1555
27527aa0
BP
1556/* Returns a bitmask with a 1-bit for each protocol that could be used to
1557 * accurately encode 'fsr', and a 0-bit for each protocol that is inadequate.
1558 *
1559 * (The return value will have at least one 1-bit.) */
1560enum ofputil_protocol
1561ofputil_flow_stats_request_usable_protocols(
1562 const struct ofputil_flow_stats_request *fsr)
1563{
1564 enum ofputil_protocol usable_protocols;
1565
1566 usable_protocols = ofputil_usable_protocols(&fsr->match);
1567 if (fsr->cookie_mask != htonll(0)) {
1568 usable_protocols &= OFPUTIL_P_NXM_ANY;
1569 }
1570 return usable_protocols;
1571}
1572
4ffd1b43 1573/* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
b78f6b77 1574 * ofputil_flow_stats in 'fs'.
4ffd1b43
BP
1575 *
1576 * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
1577 * OpenFlow message. Calling this function multiple times for a single 'msg'
1578 * iterates through the replies. The caller must initially leave 'msg''s layer
1579 * pointers null and not modify them between calls.
1580 *
f27f2134
BP
1581 * Most switches don't send the values needed to populate fs->idle_age and
1582 * fs->hard_age, so those members will usually be set to 0. If the switch from
1583 * which 'msg' originated is known to implement NXT_FLOW_AGE, then pass
1584 * 'flow_age_extension' as true so that the contents of 'msg' determine the
1585 * 'idle_age' and 'hard_age' members in 'fs'.
1586 *
f25d0cf3
BP
1587 * Uses 'ofpacts' to store the abstract OFPACT_* version of the flow stats
1588 * reply's actions. The caller must initialize 'ofpacts' and retains ownership
1589 * of it. 'fs->ofpacts' will point into the 'ofpacts' buffer.
1590 *
4ffd1b43
BP
1591 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1592 * otherwise a positive errno value. */
1593int
1594ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
f27f2134 1595 struct ofpbuf *msg,
f25d0cf3
BP
1596 bool flow_age_extension,
1597 struct ofpbuf *ofpacts)
4ffd1b43 1598{
982697a4
BP
1599 enum ofperr error;
1600 enum ofpraw raw;
4ffd1b43 1601
982697a4
BP
1602 error = (msg->l2
1603 ? ofpraw_decode(&raw, msg->l2)
1604 : ofpraw_pull(&raw, msg));
1605 if (error) {
1606 return error;
4ffd1b43
BP
1607 }
1608
1609 if (!msg->size) {
1610 return EOF;
6ec5f0c5
SH
1611 } else if (raw == OFPRAW_OFPST11_FLOW_REPLY) {
1612 const struct ofp11_flow_stats *ofs;
1613 size_t length;
1614 uint16_t padded_match_len;
1615
1616 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
1617 if (!ofs) {
1618 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
1619 "bytes at end", msg->size);
1620 return EINVAL;
1621 }
1622
1623 length = ntohs(ofs->length);
1624 if (length < sizeof *ofs) {
1625 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
1626 "length %zu", length);
1627 return EINVAL;
1628 }
1629
81a76618 1630 if (ofputil_pull_ofp11_match(msg, &fs->match, &padded_match_len)) {
6ec5f0c5
SH
1631 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad match");
1632 return EINVAL;
1633 }
1634
1635 if (ofpacts_pull_openflow11_instructions(msg, length - sizeof *ofs -
1636 padded_match_len, ofpacts)) {
1637 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad instructions");
1638 return EINVAL;
1639 }
1640
81a76618 1641 fs->priority = ntohs(ofs->priority);
6ec5f0c5
SH
1642 fs->table_id = ofs->table_id;
1643 fs->duration_sec = ntohl(ofs->duration_sec);
1644 fs->duration_nsec = ntohl(ofs->duration_nsec);
1645 fs->idle_timeout = ntohs(ofs->idle_timeout);
1646 fs->hard_timeout = ntohs(ofs->hard_timeout);
1647 fs->idle_age = -1;
1648 fs->hard_age = -1;
1649 fs->cookie = ofs->cookie;
1650 fs->packet_count = ntohll(ofs->packet_count);
1651 fs->byte_count = ntohll(ofs->byte_count);
cfc23141 1652 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
e2b9ac44 1653 const struct ofp10_flow_stats *ofs;
4ffd1b43
BP
1654 size_t length;
1655
1656 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
1657 if (!ofs) {
1658 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
1659 "bytes at end", msg->size);
1660 return EINVAL;
1661 }
1662
1663 length = ntohs(ofs->length);
1664 if (length < sizeof *ofs) {
1665 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
1666 "length %zu", length);
1667 return EINVAL;
1668 }
1669
d01c980f 1670 if (ofpacts_pull_openflow10(msg, length - sizeof *ofs, ofpacts)) {
4ffd1b43
BP
1671 return EINVAL;
1672 }
1673
1674 fs->cookie = get_32aligned_be64(&ofs->cookie);
81a76618
BP
1675 ofputil_match_from_ofp10_match(&ofs->match, &fs->match);
1676 fs->priority = ntohs(ofs->priority);
4ffd1b43
BP
1677 fs->table_id = ofs->table_id;
1678 fs->duration_sec = ntohl(ofs->duration_sec);
1679 fs->duration_nsec = ntohl(ofs->duration_nsec);
1680 fs->idle_timeout = ntohs(ofs->idle_timeout);
1681 fs->hard_timeout = ntohs(ofs->hard_timeout);
f27f2134
BP
1682 fs->idle_age = -1;
1683 fs->hard_age = -1;
4ffd1b43
BP
1684 fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
1685 fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
982697a4 1686 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
4ffd1b43 1687 const struct nx_flow_stats *nfs;
f25d0cf3 1688 size_t match_len, actions_len, length;
4ffd1b43
BP
1689
1690 nfs = ofpbuf_try_pull(msg, sizeof *nfs);
1691 if (!nfs) {
1692 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %zu leftover "
1693 "bytes at end", msg->size);
1694 return EINVAL;
1695 }
1696
1697 length = ntohs(nfs->length);
1698 match_len = ntohs(nfs->match_len);
1699 if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
1700 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%zu "
1701 "claims invalid length %zu", match_len, length);
1702 return EINVAL;
1703 }
81a76618 1704 if (nx_pull_match(msg, match_len, &fs->match, NULL, NULL)) {
4ffd1b43
BP
1705 return EINVAL;
1706 }
1707
f25d0cf3 1708 actions_len = length - sizeof *nfs - ROUND_UP(match_len, 8);
d01c980f 1709 if (ofpacts_pull_openflow10(msg, actions_len, ofpacts)) {
4ffd1b43
BP
1710 return EINVAL;
1711 }
1712
1713 fs->cookie = nfs->cookie;
1714 fs->table_id = nfs->table_id;
1715 fs->duration_sec = ntohl(nfs->duration_sec);
1716 fs->duration_nsec = ntohl(nfs->duration_nsec);
81a76618 1717 fs->priority = ntohs(nfs->priority);
4ffd1b43
BP
1718 fs->idle_timeout = ntohs(nfs->idle_timeout);
1719 fs->hard_timeout = ntohs(nfs->hard_timeout);
f27f2134
BP
1720 fs->idle_age = -1;
1721 fs->hard_age = -1;
1722 if (flow_age_extension) {
1723 if (nfs->idle_age) {
1724 fs->idle_age = ntohs(nfs->idle_age) - 1;
1725 }
1726 if (nfs->hard_age) {
1727 fs->hard_age = ntohs(nfs->hard_age) - 1;
1728 }
1729 }
4ffd1b43
BP
1730 fs->packet_count = ntohll(nfs->packet_count);
1731 fs->byte_count = ntohll(nfs->byte_count);
1732 } else {
1733 NOT_REACHED();
1734 }
1735
f25d0cf3
BP
1736 fs->ofpacts = ofpacts->data;
1737 fs->ofpacts_len = ofpacts->size;
1738
4ffd1b43
BP
1739 return 0;
1740}
1741
5e9d0469
BP
1742/* Returns 'count' unchanged except that UINT64_MAX becomes 0.
1743 *
1744 * We use this in situations where OVS internally uses UINT64_MAX to mean
1745 * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
1746static uint64_t
1747unknown_to_zero(uint64_t count)
1748{
1749 return count != UINT64_MAX ? count : 0;
1750}
1751
349adfb2
BP
1752/* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
1753 * those already present in the list of ofpbufs in 'replies'. 'replies' should
1754 * have been initialized with ofputil_start_stats_reply(). */
1755void
1756ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
1757 struct list *replies)
1758{
f25d0cf3 1759 struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
f25d0cf3 1760 size_t start_ofs = reply->size;
982697a4 1761 enum ofpraw raw;
349adfb2 1762
982697a4 1763 ofpraw_decode_partial(&raw, reply->data, reply->size);
22a86f18
SH
1764 if (raw == OFPRAW_OFPST11_FLOW_REPLY) {
1765 struct ofp11_flow_stats *ofs;
1766
1767 ofpbuf_put_uninit(reply, sizeof *ofs);
81a76618 1768 oxm_put_match(reply, &fs->match);
22a86f18
SH
1769 ofpacts_put_openflow11_instructions(fs->ofpacts, fs->ofpacts_len,
1770 reply);
1771
1772 ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
1773 ofs->length = htons(reply->size - start_ofs);
1774 ofs->table_id = fs->table_id;
1775 ofs->pad = 0;
1776 ofs->duration_sec = htonl(fs->duration_sec);
1777 ofs->duration_nsec = htonl(fs->duration_nsec);
81a76618 1778 ofs->priority = htons(fs->priority);
22a86f18
SH
1779 ofs->idle_timeout = htons(fs->idle_timeout);
1780 ofs->hard_timeout = htons(fs->hard_timeout);
1781 memset(ofs->pad2, 0, sizeof ofs->pad2);
1782 ofs->cookie = fs->cookie;
1783 ofs->packet_count = htonll(unknown_to_zero(fs->packet_count));
1784 ofs->byte_count = htonll(unknown_to_zero(fs->byte_count));
1785 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
e2b9ac44 1786 struct ofp10_flow_stats *ofs;
349adfb2 1787
1a59dc2c
BP
1788 ofpbuf_put_uninit(reply, sizeof *ofs);
1789 ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
1790
1791 ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
1792 ofs->length = htons(reply->size - start_ofs);
349adfb2
BP
1793 ofs->table_id = fs->table_id;
1794 ofs->pad = 0;
81a76618 1795 ofputil_match_to_ofp10_match(&fs->match, &ofs->match);
349adfb2
BP
1796 ofs->duration_sec = htonl(fs->duration_sec);
1797 ofs->duration_nsec = htonl(fs->duration_nsec);
81a76618 1798 ofs->priority = htons(fs->priority);
349adfb2
BP
1799 ofs->idle_timeout = htons(fs->idle_timeout);
1800 ofs->hard_timeout = htons(fs->hard_timeout);
1801 memset(ofs->pad2, 0, sizeof ofs->pad2);
1802 put_32aligned_be64(&ofs->cookie, fs->cookie);
5e9d0469
BP
1803 put_32aligned_be64(&ofs->packet_count,
1804 htonll(unknown_to_zero(fs->packet_count)));
1805 put_32aligned_be64(&ofs->byte_count,
1806 htonll(unknown_to_zero(fs->byte_count)));
982697a4 1807 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
349adfb2 1808 struct nx_flow_stats *nfs;
1a59dc2c 1809 int match_len;
349adfb2 1810
1a59dc2c 1811 ofpbuf_put_uninit(reply, sizeof *nfs);
81a76618 1812 match_len = nx_put_match(reply, &fs->match, 0, 0);
1a59dc2c
BP
1813 ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
1814
1815 nfs = ofpbuf_at_assert(reply, start_ofs, sizeof *nfs);
1816 nfs->length = htons(reply->size - start_ofs);
349adfb2
BP
1817 nfs->table_id = fs->table_id;
1818 nfs->pad = 0;
1819 nfs->duration_sec = htonl(fs->duration_sec);
1820 nfs->duration_nsec = htonl(fs->duration_nsec);
81a76618 1821 nfs->priority = htons(fs->priority);
349adfb2
BP
1822 nfs->idle_timeout = htons(fs->idle_timeout);
1823 nfs->hard_timeout = htons(fs->hard_timeout);
f27f2134
BP
1824 nfs->idle_age = htons(fs->idle_age < 0 ? 0
1825 : fs->idle_age < UINT16_MAX ? fs->idle_age + 1
1826 : UINT16_MAX);
1827 nfs->hard_age = htons(fs->hard_age < 0 ? 0
1828 : fs->hard_age < UINT16_MAX ? fs->hard_age + 1
1829 : UINT16_MAX);
1a59dc2c 1830 nfs->match_len = htons(match_len);
349adfb2
BP
1831 nfs->cookie = fs->cookie;
1832 nfs->packet_count = htonll(fs->packet_count);
1833 nfs->byte_count = htonll(fs->byte_count);
349adfb2
BP
1834 } else {
1835 NOT_REACHED();
1836 }
f25d0cf3 1837
982697a4 1838 ofpmp_postappend(replies, start_ofs);
349adfb2
BP
1839}
1840
76c93b22 1841/* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
a814ba0f 1842 * NXST_AGGREGATE reply matching 'request', and returns the message. */
76c93b22
BP
1843struct ofpbuf *
1844ofputil_encode_aggregate_stats_reply(
1845 const struct ofputil_aggregate_stats *stats,
982697a4 1846 const struct ofp_header *request)
76c93b22 1847{
a814ba0f
BP
1848 struct ofp_aggregate_stats_reply *asr;
1849 uint64_t packet_count;
1850 uint64_t byte_count;
76c93b22 1851 struct ofpbuf *msg;
982697a4 1852 enum ofpraw raw;
76c93b22 1853
982697a4 1854 ofpraw_decode(&raw, request);
617da9cd 1855 if (raw == OFPRAW_OFPST10_AGGREGATE_REQUEST) {
a814ba0f
BP
1856 packet_count = unknown_to_zero(stats->packet_count);
1857 byte_count = unknown_to_zero(stats->byte_count);
76c93b22 1858 } else {
a814ba0f
BP
1859 packet_count = stats->packet_count;
1860 byte_count = stats->byte_count;
76c93b22
BP
1861 }
1862
a814ba0f
BP
1863 msg = ofpraw_alloc_stats_reply(request, 0);
1864 asr = ofpbuf_put_zeros(msg, sizeof *asr);
1865 put_32aligned_be64(&asr->packet_count, htonll(packet_count));
1866 put_32aligned_be64(&asr->byte_count, htonll(byte_count));
1867 asr->flow_count = htonl(stats->flow_count);
1868
76c93b22
BP
1869 return msg;
1870}
1871
982697a4
BP
1872enum ofperr
1873ofputil_decode_aggregate_stats_reply(struct ofputil_aggregate_stats *stats,
1874 const struct ofp_header *reply)
1875{
a814ba0f 1876 struct ofp_aggregate_stats_reply *asr;
982697a4 1877 struct ofpbuf msg;
982697a4
BP
1878
1879 ofpbuf_use_const(&msg, reply, ntohs(reply->length));
a814ba0f
BP
1880 ofpraw_pull_assert(&msg);
1881
1882 asr = msg.l3;
1883 stats->packet_count = ntohll(get_32aligned_be64(&asr->packet_count));
1884 stats->byte_count = ntohll(get_32aligned_be64(&asr->byte_count));
1885 stats->flow_count = ntohl(asr->flow_count);
982697a4
BP
1886
1887 return 0;
1888}
1889
b78f6b77
BP
1890/* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
1891 * abstract ofputil_flow_removed in 'fr'. Returns 0 if successful, otherwise
1892 * an OpenFlow error code. */
90bf1e07 1893enum ofperr
9b045a0c 1894ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
b78f6b77 1895 const struct ofp_header *oh)
9b045a0c 1896{
982697a4
BP
1897 enum ofpraw raw;
1898 struct ofpbuf b;
9b045a0c 1899
982697a4
BP
1900 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1901 raw = ofpraw_pull_assert(&b);
eefbf181
SH
1902 if (raw == OFPRAW_OFPT11_FLOW_REMOVED) {
1903 const struct ofp12_flow_removed *ofr;
1904 enum ofperr error;
1905
1906 ofr = ofpbuf_pull(&b, sizeof *ofr);
1907
81a76618 1908 error = ofputil_pull_ofp11_match(&b, &fr->match, NULL);
eefbf181
SH
1909 if (error) {
1910 return error;
1911 }
1912
81a76618 1913 fr->priority = ntohs(ofr->priority);
eefbf181
SH
1914 fr->cookie = ofr->cookie;
1915 fr->reason = ofr->reason;
1916 /* XXX: ofr->table_id is ignored */
1917 fr->duration_sec = ntohl(ofr->duration_sec);
1918 fr->duration_nsec = ntohl(ofr->duration_nsec);
1919 fr->idle_timeout = ntohs(ofr->idle_timeout);
1920 fr->hard_timeout = ntohs(ofr->hard_timeout);
1921 fr->packet_count = ntohll(ofr->packet_count);
1922 fr->byte_count = ntohll(ofr->byte_count);
1923 } else if (raw == OFPRAW_OFPT10_FLOW_REMOVED) {
9b045a0c
BP
1924 const struct ofp_flow_removed *ofr;
1925
982697a4
BP
1926 ofr = ofpbuf_pull(&b, sizeof *ofr);
1927
81a76618
BP
1928 ofputil_match_from_ofp10_match(&ofr->match, &fr->match);
1929 fr->priority = ntohs(ofr->priority);
9b045a0c
BP
1930 fr->cookie = ofr->cookie;
1931 fr->reason = ofr->reason;
1932 fr->duration_sec = ntohl(ofr->duration_sec);
1933 fr->duration_nsec = ntohl(ofr->duration_nsec);
1934 fr->idle_timeout = ntohs(ofr->idle_timeout);
fa2bad0f 1935 fr->hard_timeout = 0;
9b045a0c
BP
1936 fr->packet_count = ntohll(ofr->packet_count);
1937 fr->byte_count = ntohll(ofr->byte_count);
982697a4 1938 } else if (raw == OFPRAW_NXT_FLOW_REMOVED) {
9b045a0c 1939 struct nx_flow_removed *nfr;
9b045a0c
BP
1940 int error;
1941
9b045a0c 1942 nfr = ofpbuf_pull(&b, sizeof *nfr);
81a76618
BP
1943 error = nx_pull_match(&b, ntohs(nfr->match_len), &fr->match,
1944 NULL, NULL);
9b045a0c
BP
1945 if (error) {
1946 return error;
1947 }
1948 if (b.size) {
90bf1e07 1949 return OFPERR_OFPBRC_BAD_LEN;
9b045a0c
BP
1950 }
1951
81a76618 1952 fr->priority = ntohs(nfr->priority);
9b045a0c
BP
1953 fr->cookie = nfr->cookie;
1954 fr->reason = nfr->reason;
1955 fr->duration_sec = ntohl(nfr->duration_sec);
1956 fr->duration_nsec = ntohl(nfr->duration_nsec);
1957 fr->idle_timeout = ntohs(nfr->idle_timeout);
fa2bad0f 1958 fr->hard_timeout = 0;
9b045a0c
BP
1959 fr->packet_count = ntohll(nfr->packet_count);
1960 fr->byte_count = ntohll(nfr->byte_count);
1961 } else {
1962 NOT_REACHED();
1963 }
1964
1965 return 0;
1966}
1967
588cd7b5 1968/* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
27527aa0 1969 * NXT_FLOW_REMOVED message 'oh' according to 'protocol', and returns the
588cd7b5
BP
1970 * message. */
1971struct ofpbuf *
1972ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
27527aa0 1973 enum ofputil_protocol protocol)
588cd7b5
BP
1974{
1975 struct ofpbuf *msg;
1976
27527aa0 1977 switch (protocol) {
83974732
SH
1978 case OFPUTIL_P_OF12: {
1979 struct ofp12_flow_removed *ofr;
1980
1981 msg = ofpraw_alloc_xid(OFPRAW_OFPT11_FLOW_REMOVED,
1982 ofputil_protocol_to_ofp_version(protocol),
1983 htonl(0), NXM_TYPICAL_LEN);
1984 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
1985 ofr->cookie = fr->cookie;
81a76618 1986 ofr->priority = htons(fr->priority);
83974732
SH
1987 ofr->reason = fr->reason;
1988 ofr->table_id = 0;
1989 ofr->duration_sec = htonl(fr->duration_sec);
1990 ofr->duration_nsec = htonl(fr->duration_nsec);
1991 ofr->idle_timeout = htons(fr->idle_timeout);
fa2bad0f 1992 ofr->hard_timeout = htons(fr->hard_timeout);
83974732
SH
1993 ofr->packet_count = htonll(fr->packet_count);
1994 ofr->byte_count = htonll(fr->byte_count);
81a76618 1995 oxm_put_match(msg, &fr->match);
83974732
SH
1996 break;
1997 }
1998
27527aa0
BP
1999 case OFPUTIL_P_OF10:
2000 case OFPUTIL_P_OF10_TID: {
588cd7b5
BP
2001 struct ofp_flow_removed *ofr;
2002
982697a4
BP
2003 msg = ofpraw_alloc_xid(OFPRAW_OFPT10_FLOW_REMOVED, OFP10_VERSION,
2004 htonl(0), 0);
2005 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
81a76618 2006 ofputil_match_to_ofp10_match(&fr->match, &ofr->match);
7fb563b9 2007 ofr->cookie = fr->cookie;
81a76618 2008 ofr->priority = htons(fr->priority);
588cd7b5
BP
2009 ofr->reason = fr->reason;
2010 ofr->duration_sec = htonl(fr->duration_sec);
2011 ofr->duration_nsec = htonl(fr->duration_nsec);
2012 ofr->idle_timeout = htons(fr->idle_timeout);
5e9d0469
BP
2013 ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
2014 ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
27527aa0
BP
2015 break;
2016 }
2017
2018 case OFPUTIL_P_NXM:
2019 case OFPUTIL_P_NXM_TID: {
588cd7b5
BP
2020 struct nx_flow_removed *nfr;
2021 int match_len;
2022
982697a4
BP
2023 msg = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_REMOVED, OFP10_VERSION,
2024 htonl(0), NXM_TYPICAL_LEN);
2025 nfr = ofpbuf_put_zeros(msg, sizeof *nfr);
81a76618 2026 match_len = nx_put_match(msg, &fr->match, 0, 0);
588cd7b5 2027
982697a4 2028 nfr = msg->l3;
588cd7b5 2029 nfr->cookie = fr->cookie;
81a76618 2030 nfr->priority = htons(fr->priority);
588cd7b5
BP
2031 nfr->reason = fr->reason;
2032 nfr->duration_sec = htonl(fr->duration_sec);
2033 nfr->duration_nsec = htonl(fr->duration_nsec);
2034 nfr->idle_timeout = htons(fr->idle_timeout);
2035 nfr->match_len = htons(match_len);
2036 nfr->packet_count = htonll(fr->packet_count);
2037 nfr->byte_count = htonll(fr->byte_count);
27527aa0
BP
2038 break;
2039 }
2040
2041 default:
588cd7b5
BP
2042 NOT_REACHED();
2043 }
2044
2045 return msg;
2046}
2047
7cfb9651
SH
2048static void
2049ofputil_decode_packet_in_finish(struct ofputil_packet_in *pin,
81a76618 2050 struct match *match, struct ofpbuf *b)
7cfb9651
SH
2051{
2052 pin->packet = b->data;
2053 pin->packet_len = b->size;
2054
81a76618
BP
2055 pin->fmd.in_port = match->flow.in_port;
2056 pin->fmd.tun_id = match->flow.tun_id;
2057 pin->fmd.metadata = match->flow.metadata;
2058 memcpy(pin->fmd.regs, match->flow.regs, sizeof pin->fmd.regs);
7cfb9651
SH
2059}
2060
f7cc6bd8 2061enum ofperr
65120a8a
EJ
2062ofputil_decode_packet_in(struct ofputil_packet_in *pin,
2063 const struct ofp_header *oh)
2064{
982697a4
BP
2065 enum ofpraw raw;
2066 struct ofpbuf b;
65120a8a 2067
65120a8a
EJ
2068 memset(pin, 0, sizeof *pin);
2069
982697a4
BP
2070 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2071 raw = ofpraw_pull_assert(&b);
7cfb9651
SH
2072 if (raw == OFPRAW_OFPT12_PACKET_IN) {
2073 const struct ofp12_packet_in *opi;
81a76618 2074 struct match match;
7cfb9651
SH
2075 int error;
2076
2077 opi = ofpbuf_pull(&b, sizeof *opi);
81a76618 2078 error = oxm_pull_match_loose(&b, &match);
7cfb9651
SH
2079 if (error) {
2080 return error;
2081 }
2082
2083 if (!ofpbuf_try_pull(&b, 2)) {
2084 return OFPERR_OFPBRC_BAD_LEN;
2085 }
2086
2087 pin->reason = opi->reason;
2088 pin->table_id = opi->table_id;
2089
2090 pin->buffer_id = ntohl(opi->buffer_id);
2091 pin->total_len = ntohs(opi->total_len);
2092
81a76618 2093 ofputil_decode_packet_in_finish(pin, &match, &b);
7cfb9651 2094 } else if (raw == OFPRAW_OFPT10_PACKET_IN) {
982697a4
BP
2095 const struct ofp_packet_in *opi;
2096
2097 opi = ofpbuf_pull(&b, offsetof(struct ofp_packet_in, data));
65120a8a
EJ
2098
2099 pin->packet = opi->data;
982697a4 2100 pin->packet_len = b.size;
65120a8a 2101
5d6c3af0 2102 pin->fmd.in_port = ntohs(opi->in_port);
65120a8a
EJ
2103 pin->reason = opi->reason;
2104 pin->buffer_id = ntohl(opi->buffer_id);
2105 pin->total_len = ntohs(opi->total_len);
982697a4 2106 } else if (raw == OFPRAW_NXT_PACKET_IN) {
73dbf4ab 2107 const struct nx_packet_in *npi;
81a76618 2108 struct match match;
54834960
EJ
2109 int error;
2110
54834960 2111 npi = ofpbuf_pull(&b, sizeof *npi);
81a76618 2112 error = nx_pull_match_loose(&b, ntohs(npi->match_len), &match, NULL,
b5ae8913 2113 NULL);
54834960
EJ
2114 if (error) {
2115 return error;
2116 }
2117
2118 if (!ofpbuf_try_pull(&b, 2)) {
90bf1e07 2119 return OFPERR_OFPBRC_BAD_LEN;
54834960
EJ
2120 }
2121
54834960
EJ
2122 pin->reason = npi->reason;
2123 pin->table_id = npi->table_id;
2124 pin->cookie = npi->cookie;
2125
54834960
EJ
2126 pin->buffer_id = ntohl(npi->buffer_id);
2127 pin->total_len = ntohs(npi->total_len);
7cfb9651 2128
81a76618 2129 ofputil_decode_packet_in_finish(pin, &match, &b);
65120a8a
EJ
2130 } else {
2131 NOT_REACHED();
2132 }
2133
2134 return 0;
2135}
2136
d94240ec 2137static void
81a76618
BP
2138ofputil_packet_in_to_match(const struct ofputil_packet_in *pin,
2139 struct match *match)
d94240ec
SH
2140{
2141 int i;
2142
81a76618 2143 match_init_catchall(match);
42edbe39 2144 if (pin->fmd.tun_id != htonll(0)) {
81a76618 2145 match_set_tun_id(match, pin->fmd.tun_id);
42edbe39
BP
2146 }
2147 if (pin->fmd.metadata != htonll(0)) {
81a76618 2148 match_set_metadata(match, pin->fmd.metadata);
42edbe39 2149 }
d94240ec
SH
2150
2151 for (i = 0; i < FLOW_N_REGS; i++) {
42edbe39 2152 if (pin->fmd.regs[i]) {
81a76618 2153 match_set_reg(match, i, pin->fmd.regs[i]);
42edbe39 2154 }
d94240ec
SH
2155 }
2156
81a76618 2157 match_set_in_port(match, pin->fmd.in_port);
d94240ec
SH
2158}
2159
54834960
EJ
2160/* Converts abstract ofputil_packet_in 'pin' into a PACKET_IN message
2161 * in the format specified by 'packet_in_format'. */
ebb57021 2162struct ofpbuf *
54834960 2163ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
d94240ec 2164 enum ofputil_protocol protocol,
54834960 2165 enum nx_packet_in_format packet_in_format)
ebb57021 2166{
54834960
EJ
2167 size_t send_len = MIN(pin->send_len, pin->packet_len);
2168 struct ofpbuf *packet;
ebb57021
BP
2169
2170 /* Add OFPT_PACKET_IN. */
d94240ec
SH
2171 if (protocol == OFPUTIL_P_OF12) {
2172 struct ofp12_packet_in *opi;
81a76618 2173 struct match match;
d94240ec 2174
81a76618 2175 ofputil_packet_in_to_match(pin, &match);
d94240ec
SH
2176
2177 /* The final argument is just an estimate of the space required. */
2178 packet = ofpraw_alloc_xid(OFPRAW_OFPT12_PACKET_IN, OFP12_VERSION,
2179 htonl(0), (sizeof(struct flow_metadata) * 2
2180 + 2 + send_len));
2181 ofpbuf_put_zeros(packet, sizeof *opi);
81a76618 2182 oxm_put_match(packet, &match);
d94240ec
SH
2183 ofpbuf_put_zeros(packet, 2);
2184 ofpbuf_put(packet, pin->packet, send_len);
2185
2186 opi = packet->l3;
2187 opi->buffer_id = htonl(pin->buffer_id);
2188 opi->total_len = htons(pin->total_len);
2189 opi->reason = pin->reason;
2190 opi->table_id = pin->table_id;
2191 } else if (packet_in_format == NXPIF_OPENFLOW10) {
54834960
EJ
2192 struct ofp_packet_in *opi;
2193
982697a4
BP
2194 packet = ofpraw_alloc_xid(OFPRAW_OFPT10_PACKET_IN, OFP10_VERSION,
2195 htonl(0), send_len);
2196 opi = ofpbuf_put_zeros(packet, offsetof(struct ofp_packet_in, data));
54834960
EJ
2197 opi->total_len = htons(pin->total_len);
2198 opi->in_port = htons(pin->fmd.in_port);
2199 opi->reason = pin->reason;
2200 opi->buffer_id = htonl(pin->buffer_id);
2201
2202 ofpbuf_put(packet, pin->packet, send_len);
2203 } else if (packet_in_format == NXPIF_NXM) {
73dbf4ab 2204 struct nx_packet_in *npi;
81a76618 2205 struct match match;
54834960 2206 size_t match_len;
54834960 2207
81a76618 2208 ofputil_packet_in_to_match(pin, &match);
54834960 2209
982697a4
BP
2210 /* The final argument is just an estimate of the space required. */
2211 packet = ofpraw_alloc_xid(OFPRAW_NXT_PACKET_IN, OFP10_VERSION,
2212 htonl(0), (sizeof(struct flow_metadata) * 2
2213 + 2 + send_len));
54834960 2214 ofpbuf_put_zeros(packet, sizeof *npi);
81a76618 2215 match_len = nx_put_match(packet, &match, 0, 0);
54834960
EJ
2216 ofpbuf_put_zeros(packet, 2);
2217 ofpbuf_put(packet, pin->packet, send_len);
2218
982697a4 2219 npi = packet->l3;
54834960
EJ
2220 npi->buffer_id = htonl(pin->buffer_id);
2221 npi->total_len = htons(pin->total_len);
2222 npi->reason = pin->reason;
2223 npi->table_id = pin->table_id;
2224 npi->cookie = pin->cookie;
2225 npi->match_len = htons(match_len);
2226 } else {
2227 NOT_REACHED();
2228 }
982697a4 2229 ofpmsg_update_length(packet);
54834960
EJ
2230
2231 return packet;
ebb57021
BP
2232}
2233
7c1a76a4
BP
2234const char *
2235ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason reason)
2236{
2237 static char s[INT_STRLEN(int) + 1];
2238
2239 switch (reason) {
2240 case OFPR_NO_MATCH:
2241 return "no_match";
2242 case OFPR_ACTION:
2243 return "action";
2244 case OFPR_INVALID_TTL:
2245 return "invalid_ttl";
2246
2247 case OFPR_N_REASONS:
2248 default:
2249 sprintf(s, "%d", (int) reason);
2250 return s;
2251 }
2252}
2253
2254bool
2255ofputil_packet_in_reason_from_string(const char *s,
2256 enum ofp_packet_in_reason *reason)
2257{
2258 int i;
2259
2260 for (i = 0; i < OFPR_N_REASONS; i++) {
2261 if (!strcasecmp(s, ofputil_packet_in_reason_to_string(i))) {
2262 *reason = i;
2263 return true;
2264 }
2265 }
2266 return false;
2267}
2268
f25d0cf3
BP
2269/* Converts an OFPT_PACKET_OUT in 'opo' into an abstract ofputil_packet_out in
2270 * 'po'.
2271 *
2272 * Uses 'ofpacts' to store the abstract OFPACT_* version of the packet out
2273 * message's actions. The caller must initialize 'ofpacts' and retains
2274 * ownership of it. 'po->ofpacts' will point into the 'ofpacts' buffer.
2275 *
2276 * Returns 0 if successful, otherwise an OFPERR_* value. */
c6a93eb7
BP
2277enum ofperr
2278ofputil_decode_packet_out(struct ofputil_packet_out *po,
982697a4 2279 const struct ofp_header *oh,
f25d0cf3 2280 struct ofpbuf *ofpacts)
c6a93eb7 2281{
982697a4 2282 enum ofpraw raw;
c6a93eb7
BP
2283 struct ofpbuf b;
2284
982697a4
BP
2285 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2286 raw = ofpraw_pull_assert(&b);
982697a4 2287
eb5ee596
SH
2288 if (raw == OFPRAW_OFPT11_PACKET_OUT) {
2289 enum ofperr error;
2290 const struct ofp11_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
2291
2292 po->buffer_id = ntohl(opo->buffer_id);
2293 error = ofputil_port_from_ofp11(opo->in_port, &po->in_port);
2294 if (error) {
2295 return error;
2296 }
2297
2298 error = ofpacts_pull_openflow11_actions(&b, ntohs(opo->actions_len),
2299 ofpacts);
2300 if (error) {
2301 return error;
2302 }
eb5ee596 2303 } else if (raw == OFPRAW_OFPT10_PACKET_OUT) {
8a6bc7cd
SH
2304 enum ofperr error;
2305 const struct ofp_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
2306
2307 po->buffer_id = ntohl(opo->buffer_id);
2308 po->in_port = ntohs(opo->in_port);
2309
2310 error = ofpacts_pull_openflow10(&b, ntohs(opo->actions_len), ofpacts);
2311 if (error) {
2312 return error;
2313 }
2314 } else {
2315 NOT_REACHED();
2316 }
2317
c6a93eb7 2318 if (po->in_port >= OFPP_MAX && po->in_port != OFPP_LOCAL
751c7785 2319 && po->in_port != OFPP_NONE && po->in_port != OFPP_CONTROLLER) {
c6a93eb7
BP
2320 VLOG_WARN_RL(&bad_ofmsg_rl, "packet-out has bad input port %#"PRIx16,
2321 po->in_port);
2e1bfcb6 2322 return OFPERR_OFPBRC_BAD_PORT;
c6a93eb7
BP
2323 }
2324
f25d0cf3
BP
2325 po->ofpacts = ofpacts->data;
2326 po->ofpacts_len = ofpacts->size;
c6a93eb7
BP
2327
2328 if (po->buffer_id == UINT32_MAX) {
2329 po->packet = b.data;
2330 po->packet_len = b.size;
2331 } else {
2332 po->packet = NULL;
2333 po->packet_len = 0;
2334 }
2335
2336 return 0;
2337}
6c038611
BP
2338\f
2339/* ofputil_phy_port */
2340
2341/* NETDEV_F_* to and from OFPPF_* and OFPPF10_*. */
2342BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
2343BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
2344BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
2345BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
2346BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
2347BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
2348BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
2349
2350/* NETDEV_F_ bits 11...15 are OFPPF10_ bits 7...11: */
9e1fd49b
BP
2351BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == (OFPPF10_COPPER << 4));
2352BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == (OFPPF10_FIBER << 4));
2353BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == (OFPPF10_AUTONEG << 4));
2354BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == (OFPPF10_PAUSE << 4));
2355BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == (OFPPF10_PAUSE_ASYM << 4));
6c038611 2356
9e1fd49b
BP
2357static enum netdev_features
2358netdev_port_features_from_ofp10(ovs_be32 ofp10_)
6c038611
BP
2359{
2360 uint32_t ofp10 = ntohl(ofp10_);
2361 return (ofp10 & 0x7f) | ((ofp10 & 0xf80) << 4);
2362}
2363
9e1fd49b
BP
2364static ovs_be32
2365netdev_port_features_to_ofp10(enum netdev_features features)
6c038611
BP
2366{
2367 return htonl((features & 0x7f) | ((features & 0xf800) >> 4));
2368}
c6a93eb7 2369
9e1fd49b
BP
2370BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
2371BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
2372BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
2373BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
2374BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
2375BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
2376BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
2377BUILD_ASSERT_DECL((int) NETDEV_F_40GB_FD == OFPPF11_40GB_FD); /* bit 7 */
2378BUILD_ASSERT_DECL((int) NETDEV_F_100GB_FD == OFPPF11_100GB_FD); /* bit 8 */
2379BUILD_ASSERT_DECL((int) NETDEV_F_1TB_FD == OFPPF11_1TB_FD); /* bit 9 */
2380BUILD_ASSERT_DECL((int) NETDEV_F_OTHER == OFPPF11_OTHER); /* bit 10 */
2381BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == OFPPF11_COPPER); /* bit 11 */
2382BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == OFPPF11_FIBER); /* bit 12 */
2383BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == OFPPF11_AUTONEG); /* bit 13 */
2384BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == OFPPF11_PAUSE); /* bit 14 */
2385BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == OFPPF11_PAUSE_ASYM);/* bit 15 */
2386
2387static enum netdev_features
2388netdev_port_features_from_ofp11(ovs_be32 ofp11)
2389{
2390 return ntohl(ofp11) & 0xffff;
2391}
2392
2393static ovs_be32
2394netdev_port_features_to_ofp11(enum netdev_features features)
2395{
2396 return htonl(features & 0xffff);
2397}
2398
2399static enum ofperr
2400ofputil_decode_ofp10_phy_port(struct ofputil_phy_port *pp,
2401 const struct ofp10_phy_port *opp)
2402{
2403 memset(pp, 0, sizeof *pp);
2404
2405 pp->port_no = ntohs(opp->port_no);
2406 memcpy(pp->hw_addr, opp->hw_addr, OFP_ETH_ALEN);
2407 ovs_strlcpy(pp->name, opp->name, OFP_MAX_PORT_NAME_LEN);
2408
2409 pp->config = ntohl(opp->config) & OFPPC10_ALL;
2410 pp->state = ntohl(opp->state) & OFPPS10_ALL;
2411
2412 pp->curr = netdev_port_features_from_ofp10(opp->curr);
2413 pp->advertised = netdev_port_features_from_ofp10(opp->advertised);
2414 pp->supported = netdev_port_features_from_ofp10(opp->supported);
2415 pp->peer = netdev_port_features_from_ofp10(opp->peer);
2416
2417 pp->curr_speed = netdev_features_to_bps(pp->curr) / 1000;
2418 pp->max_speed = netdev_features_to_bps(pp->supported) / 1000;
2419
2420 return 0;
2421}
2422
2423static enum ofperr
2424ofputil_decode_ofp11_port(struct ofputil_phy_port *pp,
2425 const struct ofp11_port *op)
2426{
2427 enum ofperr error;
2428
2429 memset(pp, 0, sizeof *pp);
2430
2431 error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
2432 if (error) {
2433 return error;
2434 }
2435 memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
2436 ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
2437
2438 pp->config = ntohl(op->config) & OFPPC11_ALL;
2439 pp->state = ntohl(op->state) & OFPPC11_ALL;
2440
2441 pp->curr = netdev_port_features_from_ofp11(op->curr);
2442 pp->advertised = netdev_port_features_from_ofp11(op->advertised);
2443 pp->supported = netdev_port_features_from_ofp11(op->supported);
2444 pp->peer = netdev_port_features_from_ofp11(op->peer);
2445
2446 pp->curr_speed = ntohl(op->curr_speed);
2447 pp->max_speed = ntohl(op->max_speed);
2448
2449 return 0;
2450}
2451
5b5a3a67 2452static size_t
2e3fa633
SH
2453ofputil_get_phy_port_size(enum ofp_version ofp_version)
2454{
2455 switch (ofp_version) {
2456 case OFP10_VERSION:
2457 return sizeof(struct ofp10_phy_port);
2458 case OFP11_VERSION:
2459 case OFP12_VERSION:
2460 return sizeof(struct ofp11_port);
2461 default:
2462 NOT_REACHED();
2463 }
5b5a3a67
JP
2464}
2465
9e1fd49b
BP
2466static void
2467ofputil_encode_ofp10_phy_port(const struct ofputil_phy_port *pp,
2468 struct ofp10_phy_port *opp)
2469{
2470 memset(opp, 0, sizeof *opp);
2471
2472 opp->port_no = htons(pp->port_no);
2473 memcpy(opp->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2474 ovs_strlcpy(opp->name, pp->name, OFP_MAX_PORT_NAME_LEN);
2475
2476 opp->config = htonl(pp->config & OFPPC10_ALL);
2477 opp->state = htonl(pp->state & OFPPS10_ALL);
2478
2479 opp->curr = netdev_port_features_to_ofp10(pp->curr);
2480 opp->advertised = netdev_port_features_to_ofp10(pp->advertised);
2481 opp->supported = netdev_port_features_to_ofp10(pp->supported);
2482 opp->peer = netdev_port_features_to_ofp10(pp->peer);
2483}
2484
2485static void
2486ofputil_encode_ofp11_port(const struct ofputil_phy_port *pp,
2487 struct ofp11_port *op)
2488{
2489 memset(op, 0, sizeof *op);
2490
2491 op->port_no = ofputil_port_to_ofp11(pp->port_no);
2492 memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2493 ovs_strlcpy(op->name, pp->name, OFP_MAX_PORT_NAME_LEN);
2494
2495 op->config = htonl(pp->config & OFPPC11_ALL);
2496 op->state = htonl(pp->state & OFPPS11_ALL);
2497
2498 op->curr = netdev_port_features_to_ofp11(pp->curr);
2499 op->advertised = netdev_port_features_to_ofp11(pp->advertised);
2500 op->supported = netdev_port_features_to_ofp11(pp->supported);
2501 op->peer = netdev_port_features_to_ofp11(pp->peer);
2502
2503 op->curr_speed = htonl(pp->curr_speed);
2504 op->max_speed = htonl(pp->max_speed);
2505}
2506
2507static void
2e3fa633
SH
2508ofputil_put_phy_port(enum ofp_version ofp_version,
2509 const struct ofputil_phy_port *pp, struct ofpbuf *b)
9e1fd49b 2510{
2e3fa633
SH
2511 switch (ofp_version) {
2512 case OFP10_VERSION: {
9e1fd49b
BP
2513 struct ofp10_phy_port *opp;
2514 if (b->size + sizeof *opp <= UINT16_MAX) {
2515 opp = ofpbuf_put_uninit(b, sizeof *opp);
2516 ofputil_encode_ofp10_phy_port(pp, opp);
2517 }
2e3fa633
SH
2518 break;
2519 }
2520
2521 case OFP11_VERSION:
2522 case OFP12_VERSION: {
9e1fd49b
BP
2523 struct ofp11_port *op;
2524 if (b->size + sizeof *op <= UINT16_MAX) {
2525 op = ofpbuf_put_uninit(b, sizeof *op);
2526 ofputil_encode_ofp11_port(pp, op);
2527 }
2e3fa633
SH
2528 break;
2529 }
2530
2531 default:
2532 NOT_REACHED();
9e1fd49b
BP
2533 }
2534}
2be393ed
JP
2535
2536void
2e3fa633 2537ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
2be393ed
JP
2538 const struct ofputil_phy_port *pp,
2539 struct list *replies)
2540{
2e3fa633
SH
2541 switch (ofp_version) {
2542 case OFP10_VERSION: {
2be393ed
JP
2543 struct ofp10_phy_port *opp;
2544
982697a4 2545 opp = ofpmp_append(replies, sizeof *opp);
2be393ed 2546 ofputil_encode_ofp10_phy_port(pp, opp);
2e3fa633
SH
2547 break;
2548 }
2549
2550 case OFP11_VERSION:
2551 case OFP12_VERSION: {
2be393ed
JP
2552 struct ofp11_port *op;
2553
982697a4 2554 op = ofpmp_append(replies, sizeof *op);
2be393ed 2555 ofputil_encode_ofp11_port(pp, op);
2e3fa633
SH
2556 break;
2557 }
2558
2559 default:
2560 NOT_REACHED();
2be393ed
JP
2561 }
2562}
9e1fd49b
BP
2563\f
2564/* ofputil_switch_features */
2565
2566#define OFPC_COMMON (OFPC_FLOW_STATS | OFPC_TABLE_STATS | OFPC_PORT_STATS | \
60202987 2567 OFPC_IP_REASM | OFPC_QUEUE_STATS)
9e1fd49b
BP
2568BUILD_ASSERT_DECL((int) OFPUTIL_C_FLOW_STATS == OFPC_FLOW_STATS);
2569BUILD_ASSERT_DECL((int) OFPUTIL_C_TABLE_STATS == OFPC_TABLE_STATS);
2570BUILD_ASSERT_DECL((int) OFPUTIL_C_PORT_STATS == OFPC_PORT_STATS);
2571BUILD_ASSERT_DECL((int) OFPUTIL_C_IP_REASM == OFPC_IP_REASM);
2572BUILD_ASSERT_DECL((int) OFPUTIL_C_QUEUE_STATS == OFPC_QUEUE_STATS);
2573BUILD_ASSERT_DECL((int) OFPUTIL_C_ARP_MATCH_IP == OFPC_ARP_MATCH_IP);
2574
2575struct ofputil_action_bit_translation {
2576 enum ofputil_action_bitmap ofputil_bit;
2577 int of_bit;
2578};
2579
2580static const struct ofputil_action_bit_translation of10_action_bits[] = {
2581 { OFPUTIL_A_OUTPUT, OFPAT10_OUTPUT },
2582 { OFPUTIL_A_SET_VLAN_VID, OFPAT10_SET_VLAN_VID },
2583 { OFPUTIL_A_SET_VLAN_PCP, OFPAT10_SET_VLAN_PCP },
2584 { OFPUTIL_A_STRIP_VLAN, OFPAT10_STRIP_VLAN },
2585 { OFPUTIL_A_SET_DL_SRC, OFPAT10_SET_DL_SRC },
2586 { OFPUTIL_A_SET_DL_DST, OFPAT10_SET_DL_DST },
2587 { OFPUTIL_A_SET_NW_SRC, OFPAT10_SET_NW_SRC },
2588 { OFPUTIL_A_SET_NW_DST, OFPAT10_SET_NW_DST },
2589 { OFPUTIL_A_SET_NW_TOS, OFPAT10_SET_NW_TOS },
2590 { OFPUTIL_A_SET_TP_SRC, OFPAT10_SET_TP_SRC },
2591 { OFPUTIL_A_SET_TP_DST, OFPAT10_SET_TP_DST },
2592 { OFPUTIL_A_ENQUEUE, OFPAT10_ENQUEUE },
2593 { 0, 0 },
2594};
2595
9e1fd49b
BP
2596static enum ofputil_action_bitmap
2597decode_action_bits(ovs_be32 of_actions,
2598 const struct ofputil_action_bit_translation *x)
2599{
2600 enum ofputil_action_bitmap ofputil_actions;
2601
2602 ofputil_actions = 0;
2603 for (; x->ofputil_bit; x++) {
2604 if (of_actions & htonl(1u << x->of_bit)) {
2605 ofputil_actions |= x->ofputil_bit;
2606 }
2607 }
2608 return ofputil_actions;
2609}
2610
60202987
SH
2611static uint32_t
2612ofputil_capabilities_mask(enum ofp_version ofp_version)
2613{
2614 /* Handle capabilities whose bit is unique for all Open Flow versions */
2615 switch (ofp_version) {
2616 case OFP10_VERSION:
2617 case OFP11_VERSION:
2618 return OFPC_COMMON | OFPC_ARP_MATCH_IP;
2619 case OFP12_VERSION:
2620 return OFPC_COMMON | OFPC12_PORT_BLOCKED;
2621 default:
2622 /* Caller needs to check osf->header.version itself */
2623 return 0;
2624 }
2625}
2626
9e1fd49b
BP
2627/* Decodes an OpenFlow 1.0 or 1.1 "switch_features" structure 'osf' into an
2628 * abstract representation in '*features'. Initializes '*b' to iterate over
2629 * the OpenFlow port structures following 'osf' with later calls to
2be393ed 2630 * ofputil_pull_phy_port(). Returns 0 if successful, otherwise an
9e1fd49b
BP
2631 * OFPERR_* value. */
2632enum ofperr
982697a4 2633ofputil_decode_switch_features(const struct ofp_header *oh,
9e1fd49b
BP
2634 struct ofputil_switch_features *features,
2635 struct ofpbuf *b)
2636{
982697a4
BP
2637 const struct ofp_switch_features *osf;
2638 enum ofpraw raw;
2639
2640 ofpbuf_use_const(b, oh, ntohs(oh->length));
2641 raw = ofpraw_pull_assert(b);
9e1fd49b 2642
982697a4 2643 osf = ofpbuf_pull(b, sizeof *osf);
9e1fd49b
BP
2644 features->datapath_id = ntohll(osf->datapath_id);
2645 features->n_buffers = ntohl(osf->n_buffers);
2646 features->n_tables = osf->n_tables;
2647
60202987
SH
2648 features->capabilities = ntohl(osf->capabilities) &
2649 ofputil_capabilities_mask(oh->version);
9e1fd49b 2650
982697a4 2651 if (b->size % ofputil_get_phy_port_size(oh->version)) {
5b5a3a67
JP
2652 return OFPERR_OFPBRC_BAD_LEN;
2653 }
2654
982697a4 2655 if (raw == OFPRAW_OFPT10_FEATURES_REPLY) {
9e1fd49b
BP
2656 if (osf->capabilities & htonl(OFPC10_STP)) {
2657 features->capabilities |= OFPUTIL_C_STP;
2658 }
2659 features->actions = decode_action_bits(osf->actions, of10_action_bits);
982697a4 2660 } else if (raw == OFPRAW_OFPT11_FEATURES_REPLY) {
9e1fd49b
BP
2661 if (osf->capabilities & htonl(OFPC11_GROUP_STATS)) {
2662 features->capabilities |= OFPUTIL_C_GROUP_STATS;
2663 }
34b28fc7 2664 features->actions = 0;
9e1fd49b
BP
2665 } else {
2666 return OFPERR_OFPBRC_BAD_VERSION;
2667 }
2668
2669 return 0;
2670}
2671
982697a4 2672/* Returns true if the maximum number of ports are in 'oh'. */
347b7ac4 2673static bool
982697a4 2674max_ports_in_features(const struct ofp_header *oh)
347b7ac4 2675{
982697a4
BP
2676 size_t pp_size = ofputil_get_phy_port_size(oh->version);
2677 return ntohs(oh->length) + pp_size > UINT16_MAX;
347b7ac4
JP
2678}
2679
2680/* Given a buffer 'b' that contains a Features Reply message, checks if
2681 * it contains the maximum number of ports that will fit. If so, it
2682 * returns true and removes the ports from the message. The caller
2683 * should then send an OFPST_PORT_DESC stats request to get the ports,
2684 * since the switch may have more ports than could be represented in the
2685 * Features Reply. Otherwise, returns false.
2686 */
2687bool
2688ofputil_switch_features_ports_trunc(struct ofpbuf *b)
2689{
982697a4 2690 struct ofp_header *oh = b->data;
347b7ac4 2691
982697a4 2692 if (max_ports_in_features(oh)) {
347b7ac4 2693 /* Remove all the ports. */
982697a4
BP
2694 b->size = (sizeof(struct ofp_header)
2695 + sizeof(struct ofp_switch_features));
2696 ofpmsg_update_length(b);
347b7ac4
JP
2697
2698 return true;
2699 }
2700
2701 return false;
2702}
2703
9e1fd49b
BP
2704static ovs_be32
2705encode_action_bits(enum ofputil_action_bitmap ofputil_actions,
2706 const struct ofputil_action_bit_translation *x)
2707{
2708 uint32_t of_actions;
2709
2710 of_actions = 0;
2711 for (; x->ofputil_bit; x++) {
2712 if (ofputil_actions & x->ofputil_bit) {
2713 of_actions |= 1 << x->of_bit;
2714 }
2715 }
2716 return htonl(of_actions);
2717}
2718
2719/* Returns a buffer owned by the caller that encodes 'features' in the format
2720 * required by 'protocol' with the given 'xid'. The caller should append port
2721 * information to the buffer with subsequent calls to
2722 * ofputil_put_switch_features_port(). */
2723struct ofpbuf *
2724ofputil_encode_switch_features(const struct ofputil_switch_features *features,
2725 enum ofputil_protocol protocol, ovs_be32 xid)
2726{
2727 struct ofp_switch_features *osf;
2728 struct ofpbuf *b;
2e3fa633
SH
2729 enum ofp_version version;
2730 enum ofpraw raw;
982697a4
BP
2731
2732 version = ofputil_protocol_to_ofp_version(protocol);
2e3fa633
SH
2733 switch (version) {
2734 case OFP10_VERSION:
2735 raw = OFPRAW_OFPT10_FEATURES_REPLY;
2736 break;
2737 case OFP11_VERSION:
2738 case OFP12_VERSION:
2739 raw = OFPRAW_OFPT11_FEATURES_REPLY;
2740 break;
2741 default:
2742 NOT_REACHED();
2743 }
2744 b = ofpraw_alloc_xid(raw, version, xid, 0);
982697a4 2745 osf = ofpbuf_put_zeros(b, sizeof *osf);
9e1fd49b
BP
2746 osf->datapath_id = htonll(features->datapath_id);
2747 osf->n_buffers = htonl(features->n_buffers);
2748 osf->n_tables = features->n_tables;
2749
2750 osf->capabilities = htonl(features->capabilities & OFPC_COMMON);
60202987
SH
2751 osf->capabilities = htonl(features->capabilities &
2752 ofputil_capabilities_mask(version));
2e3fa633
SH
2753 switch (version) {
2754 case OFP10_VERSION:
9e1fd49b
BP
2755 if (features->capabilities & OFPUTIL_C_STP) {
2756 osf->capabilities |= htonl(OFPC10_STP);
2757 }
2758 osf->actions = encode_action_bits(features->actions, of10_action_bits);
2e3fa633
SH
2759 break;
2760 case OFP11_VERSION:
2761 case OFP12_VERSION:
9e1fd49b
BP
2762 if (features->capabilities & OFPUTIL_C_GROUP_STATS) {
2763 osf->capabilities |= htonl(OFPC11_GROUP_STATS);
2764 }
2e3fa633
SH
2765 break;
2766 default:
2767 NOT_REACHED();
9e1fd49b
BP
2768 }
2769
2770 return b;
2771}
2772
2773/* Encodes 'pp' into the format required by the switch_features message already
2774 * in 'b', which should have been returned by ofputil_encode_switch_features(),
2775 * and appends the encoded version to 'b'. */
2776void
2777ofputil_put_switch_features_port(const struct ofputil_phy_port *pp,
2778 struct ofpbuf *b)
2779{
982697a4 2780 const struct ofp_header *oh = b->data;
9e1fd49b 2781
982697a4 2782 ofputil_put_phy_port(oh->version, pp, b);
9e1fd49b
BP
2783}
2784\f
2785/* ofputil_port_status */
2786
2787/* Decodes the OpenFlow "port status" message in '*ops' into an abstract form
2788 * in '*ps'. Returns 0 if successful, otherwise an OFPERR_* value. */
2789enum ofperr
982697a4 2790ofputil_decode_port_status(const struct ofp_header *oh,
9e1fd49b
BP
2791 struct ofputil_port_status *ps)
2792{
982697a4 2793 const struct ofp_port_status *ops;
9e1fd49b
BP
2794 struct ofpbuf b;
2795 int retval;
2796
982697a4
BP
2797 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2798 ofpraw_pull_assert(&b);
2799 ops = ofpbuf_pull(&b, sizeof *ops);
2800
9e1fd49b
BP
2801 if (ops->reason != OFPPR_ADD &&
2802 ops->reason != OFPPR_DELETE &&
2803 ops->reason != OFPPR_MODIFY) {
2804 return OFPERR_NXBRC_BAD_REASON;
2805 }
2806 ps->reason = ops->reason;
2807
982697a4 2808 retval = ofputil_pull_phy_port(oh->version, &b, &ps->desc);
9e1fd49b
BP
2809 assert(retval != EOF);
2810 return retval;
2811}
2812
2813/* Converts the abstract form of a "port status" message in '*ps' into an
2814 * OpenFlow message suitable for 'protocol', and returns that encoded form in
2815 * a buffer owned by the caller. */
2816struct ofpbuf *
2817ofputil_encode_port_status(const struct ofputil_port_status *ps,
2818 enum ofputil_protocol protocol)
2819{
2820 struct ofp_port_status *ops;
2821 struct ofpbuf *b;
2e3fa633
SH
2822 enum ofp_version version;
2823 enum ofpraw raw;
982697a4
BP
2824
2825 version = ofputil_protocol_to_ofp_version(protocol);
2e3fa633
SH
2826 switch (version) {
2827 case OFP10_VERSION:
2828 raw = OFPRAW_OFPT10_PORT_STATUS;
2829 break;
2830
2831 case OFP11_VERSION:
2832 case OFP12_VERSION:
2833 raw = OFPRAW_OFPT11_PORT_STATUS;
2834 break;
2835
2836 default:
2837 NOT_REACHED();
2838 }
2839
2840 b = ofpraw_alloc_xid(raw, version, htonl(0), 0);
982697a4 2841 ops = ofpbuf_put_zeros(b, sizeof *ops);
9e1fd49b 2842 ops->reason = ps->reason;
982697a4
BP
2843 ofputil_put_phy_port(version, &ps->desc, b);
2844 ofpmsg_update_length(b);
9e1fd49b
BP
2845 return b;
2846}
2847\f
2848/* ofputil_port_mod */
2849
2850/* Decodes the OpenFlow "port mod" message in '*oh' into an abstract form in
2851 * '*pm'. Returns 0 if successful, otherwise an OFPERR_* value. */
2852enum ofperr
2853ofputil_decode_port_mod(const struct ofp_header *oh,
2854 struct ofputil_port_mod *pm)
2855{
982697a4
BP
2856 enum ofpraw raw;
2857 struct ofpbuf b;
9e1fd49b 2858
982697a4
BP
2859 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2860 raw = ofpraw_pull_assert(&b);
2861
2862 if (raw == OFPRAW_OFPT10_PORT_MOD) {
2863 const struct ofp10_port_mod *opm = b.data;
9e1fd49b
BP
2864
2865 pm->port_no = ntohs(opm->port_no);
2866 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
2867 pm->config = ntohl(opm->config) & OFPPC10_ALL;
2868 pm->mask = ntohl(opm->mask) & OFPPC10_ALL;
2869 pm->advertise = netdev_port_features_from_ofp10(opm->advertise);
982697a4
BP
2870 } else if (raw == OFPRAW_OFPT11_PORT_MOD) {
2871 const struct ofp11_port_mod *opm = b.data;
9e1fd49b
BP
2872 enum ofperr error;
2873
9e1fd49b
BP
2874 error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
2875 if (error) {
2876 return error;
2877 }
2878
2879 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
2880 pm->config = ntohl(opm->config) & OFPPC11_ALL;
2881 pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
2882 pm->advertise = netdev_port_features_from_ofp11(opm->advertise);
2883 } else {
982697a4 2884 return OFPERR_OFPBRC_BAD_TYPE;
9e1fd49b
BP
2885 }
2886
2887 pm->config &= pm->mask;
2888 return 0;
2889}
2890
2891/* Converts the abstract form of a "port mod" message in '*pm' into an OpenFlow
2892 * message suitable for 'protocol', and returns that encoded form in a buffer
2893 * owned by the caller. */
2894struct ofpbuf *
2895ofputil_encode_port_mod(const struct ofputil_port_mod *pm,
2896 enum ofputil_protocol protocol)
2897{
2e3fa633 2898 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
9e1fd49b
BP
2899 struct ofpbuf *b;
2900
2e3fa633
SH
2901 switch (ofp_version) {
2902 case OFP10_VERSION: {
9e1fd49b
BP
2903 struct ofp10_port_mod *opm;
2904
982697a4
BP
2905 b = ofpraw_alloc(OFPRAW_OFPT10_PORT_MOD, ofp_version, 0);
2906 opm = ofpbuf_put_zeros(b, sizeof *opm);
9e1fd49b
BP
2907 opm->port_no = htons(pm->port_no);
2908 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
2909 opm->config = htonl(pm->config & OFPPC10_ALL);
2910 opm->mask = htonl(pm->mask & OFPPC10_ALL);
2911 opm->advertise = netdev_port_features_to_ofp10(pm->advertise);
2e3fa633
SH
2912 break;
2913 }
2914
5fe7c919
SH
2915 case OFP11_VERSION:
2916 case OFP12_VERSION: {
9e1fd49b
BP
2917 struct ofp11_port_mod *opm;
2918
982697a4
BP
2919 b = ofpraw_alloc(OFPRAW_OFPT11_PORT_MOD, ofp_version, 0);
2920 opm = ofpbuf_put_zeros(b, sizeof *opm);
026a5179 2921 opm->port_no = ofputil_port_to_ofp11(pm->port_no);
9e1fd49b
BP
2922 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
2923 opm->config = htonl(pm->config & OFPPC11_ALL);
2924 opm->mask = htonl(pm->mask & OFPPC11_ALL);
2925 opm->advertise = netdev_port_features_to_ofp11(pm->advertise);
2e3fa633
SH
2926 break;
2927 }
2928
2e3fa633 2929 default:
9e1fd49b
BP
2930 NOT_REACHED();
2931 }
2932
2933 return b;
2934}
2b07c8b1 2935\f
307975da
SH
2936/* Table stats. */
2937
2938static void
2939ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
2940 struct ofpbuf *buf)
2941{
2942 struct wc_map {
2943 enum ofp_flow_wildcards wc10;
2944 enum oxm12_ofb_match_fields mf12;
2945 };
2946
2947 static const struct wc_map wc_map[] = {
2948 { OFPFW10_IN_PORT, OFPXMT12_OFB_IN_PORT },
2949 { OFPFW10_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
2950 { OFPFW10_DL_SRC, OFPXMT12_OFB_ETH_SRC },
2951 { OFPFW10_DL_DST, OFPXMT12_OFB_ETH_DST},
2952 { OFPFW10_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
2953 { OFPFW10_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
2954 { OFPFW10_TP_SRC, OFPXMT12_OFB_TCP_SRC },
2955 { OFPFW10_TP_DST, OFPXMT12_OFB_TCP_DST },
2956 { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
2957 { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
2958 { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
2959 { OFPFW10_NW_TOS, OFPXMT12_OFB_IP_DSCP },
2960 };
2961
2962 struct ofp10_table_stats *out;
2963 const struct wc_map *p;
2964
2965 out = ofpbuf_put_uninit(buf, sizeof *out);
2966 out->table_id = in->table_id;
2967 strcpy(out->name, in->name);
2968 out->wildcards = 0;
2969 for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
2970 if (in->wildcards & htonll(1ULL << p->mf12)) {
2971 out->wildcards |= htonl(p->wc10);
2972 }
2973 }
2974 out->max_entries = in->max_entries;
2975 out->active_count = in->active_count;
2976 put_32aligned_be64(&out->lookup_count, in->lookup_count);
2977 put_32aligned_be64(&out->matched_count, in->matched_count);
2978}
2979
2980static ovs_be32
2981oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
2982{
2983 struct map {
2984 enum ofp11_flow_match_fields fmf11;
2985 enum oxm12_ofb_match_fields mf12;
2986 };
2987
2988 static const struct map map[] = {
2989 { OFPFMF11_IN_PORT, OFPXMT12_OFB_IN_PORT },
2990 { OFPFMF11_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
2991 { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
2992 { OFPFMF11_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
2993 { OFPFMF11_NW_TOS, OFPXMT12_OFB_IP_DSCP },
2994 { OFPFMF11_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
2995 { OFPFMF11_TP_SRC, OFPXMT12_OFB_TCP_SRC },
2996 { OFPFMF11_TP_DST, OFPXMT12_OFB_TCP_DST },
2997 { OFPFMF11_MPLS_LABEL, OFPXMT12_OFB_MPLS_LABEL },
2998 { OFPFMF11_MPLS_TC, OFPXMT12_OFB_MPLS_TC },
2999 /* I don't know what OFPFMF11_TYPE means. */
3000 { OFPFMF11_DL_SRC, OFPXMT12_OFB_ETH_SRC },
3001 { OFPFMF11_DL_DST, OFPXMT12_OFB_ETH_DST },
3002 { OFPFMF11_NW_SRC, OFPXMT12_OFB_IPV4_SRC },
3003 { OFPFMF11_NW_DST, OFPXMT12_OFB_IPV4_DST },
3004 { OFPFMF11_METADATA, OFPXMT12_OFB_METADATA },
3005 };
3006
3007 const struct map *p;
3008 uint32_t fmf11;
3009
3010 fmf11 = 0;
3011 for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
3012 if (oxm12 & htonll(1ULL << p->mf12)) {
3013 fmf11 |= p->fmf11;
3014 }
3015 }
3016 return htonl(fmf11);
3017}
3018
3019static void
3020ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
3021 struct ofpbuf *buf)
3022{
3023 struct ofp11_table_stats *out;
3024
3025 out = ofpbuf_put_uninit(buf, sizeof *out);
3026 out->table_id = in->table_id;
3027 strcpy(out->name, in->name);
3028 out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
3029 out->match = oxm12_to_ofp11_flow_match_fields(in->match);
3030 out->instructions = in->instructions;
3031 out->write_actions = in->write_actions;
3032 out->apply_actions = in->apply_actions;
3033 out->config = in->config;
3034 out->max_entries = in->max_entries;
3035 out->active_count = in->active_count;
3036 out->lookup_count = in->lookup_count;
3037 out->matched_count = in->matched_count;
3038}
3039
3040struct ofpbuf *
3041ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
3042 const struct ofp_header *request)
3043{
3044 struct ofpbuf *reply;
3045 int i;
3046
3047 reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
3048
3049 switch ((enum ofp_version) request->version) {
3050 case OFP10_VERSION:
3051 for (i = 0; i < n; i++) {
3052 ofputil_put_ofp10_table_stats(&stats[i], reply);
3053 }
3054 break;
3055
3056 case OFP11_VERSION:
3057 for (i = 0; i < n; i++) {
3058 ofputil_put_ofp11_table_stats(&stats[i], reply);
3059 }
3060 break;
3061
3062 case OFP12_VERSION:
3063 ofpbuf_put(reply, stats, n * sizeof *stats);
3064 break;
3065
3066 default:
3067 NOT_REACHED();
3068 }
3069
3070 return reply;
3071}
3072\f
2b07c8b1
BP
3073/* ofputil_flow_monitor_request */
3074
3075/* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
3076 * ofputil_flow_monitor_request in 'rq'.
3077 *
3078 * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
3079 * message. Calling this function multiple times for a single 'msg' iterates
3080 * through the requests. The caller must initially leave 'msg''s layer
3081 * pointers null and not modify them between calls.
3082 *
3083 * Returns 0 if successful, EOF if no requests were left in this 'msg',
3084 * otherwise an OFPERR_* value. */
3085int
3086ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
3087 struct ofpbuf *msg)
3088{
3089 struct nx_flow_monitor_request *nfmr;
3090 uint16_t flags;
3091
3092 if (!msg->l2) {
3093 msg->l2 = msg->data;
982697a4 3094 ofpraw_pull_assert(msg);
2b07c8b1
BP
3095 }
3096
3097 if (!msg->size) {
3098 return EOF;
3099 }
3100
3101 nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
3102 if (!nfmr) {
3103 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %zu "
3104 "leftover bytes at end", msg->size);
3105 return OFPERR_OFPBRC_BAD_LEN;
3106 }
3107
3108 flags = ntohs(nfmr->flags);
3109 if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
3110 || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
3111 | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
3112 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
3113 flags);
3114 return OFPERR_NXBRC_FM_BAD_FLAGS;
3115 }
3116
3117 if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
3118 return OFPERR_NXBRC_MUST_BE_ZERO;
3119 }
3120
3121 rq->id = ntohl(nfmr->id);
3122 rq->flags = flags;
3123 rq->out_port = ntohs(nfmr->out_port);
3124 rq->table_id = nfmr->table_id;
3125
81a76618 3126 return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
2b07c8b1
BP
3127}
3128
3129void
3130ofputil_append_flow_monitor_request(
3131 const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
3132{
3133 struct nx_flow_monitor_request *nfmr;
3134 size_t start_ofs;
3135 int match_len;
3136
3137 if (!msg->size) {
982697a4 3138 ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
2b07c8b1
BP
3139 }
3140
3141 start_ofs = msg->size;
3142 ofpbuf_put_zeros(msg, sizeof *nfmr);
7623f4dd 3143 match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
2b07c8b1
BP
3144
3145 nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
3146 nfmr->id = htonl(rq->id);
3147 nfmr->flags = htons(rq->flags);
3148 nfmr->out_port = htons(rq->out_port);
3149 nfmr->match_len = htons(match_len);
3150 nfmr->table_id = rq->table_id;
3151}
3152
3153/* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
3154 * into an abstract ofputil_flow_update in 'update'. The caller must have
81a76618 3155 * initialized update->match to point to space allocated for a match.
2b07c8b1
BP
3156 *
3157 * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
3158 * actions (except for NXFME_ABBREV, which never includes actions). The caller
3159 * must initialize 'ofpacts' and retains ownership of it. 'update->ofpacts'
3160 * will point into the 'ofpacts' buffer.
3161 *
3162 * Multiple flow updates can be packed into a single OpenFlow message. Calling
3163 * this function multiple times for a single 'msg' iterates through the
3164 * updates. The caller must initially leave 'msg''s layer pointers null and
3165 * not modify them between calls.
3166 *
3167 * Returns 0 if successful, EOF if no updates were left in this 'msg',
3168 * otherwise an OFPERR_* value. */
3169int
3170ofputil_decode_flow_update(struct ofputil_flow_update *update,
3171 struct ofpbuf *msg, struct ofpbuf *ofpacts)
3172{
3173 struct nx_flow_update_header *nfuh;
3174 unsigned int length;
3175
3176 if (!msg->l2) {
3177 msg->l2 = msg->data;
982697a4 3178 ofpraw_pull_assert(msg);
2b07c8b1
BP
3179 }
3180
3181 if (!msg->size) {
3182 return EOF;
3183 }
3184
3185 if (msg->size < sizeof(struct nx_flow_update_header)) {
3186 goto bad_len;
3187 }
3188
3189 nfuh = msg->data;
3190 update->event = ntohs(nfuh->event);
3191 length = ntohs(nfuh->length);
3192 if (length > msg->size || length % 8) {
3193 goto bad_len;
3194 }
3195
3196 if (update->event == NXFME_ABBREV) {
3197 struct nx_flow_update_abbrev *nfua;
3198
3199 if (length != sizeof *nfua) {
3200 goto bad_len;
3201 }
3202
3203 nfua = ofpbuf_pull(msg, sizeof *nfua);
3204 update->xid = nfua->xid;
3205 return 0;
3206 } else if (update->event == NXFME_ADDED
3207 || update->event == NXFME_DELETED
3208 || update->event == NXFME_MODIFIED) {
3209 struct nx_flow_update_full *nfuf;
3210 unsigned int actions_len;
3211 unsigned int match_len;
3212 enum ofperr error;
3213
3214 if (length < sizeof *nfuf) {
3215 goto bad_len;
3216 }
3217
3218 nfuf = ofpbuf_pull(msg, sizeof *nfuf);
3219 match_len = ntohs(nfuf->match_len);
3220 if (sizeof *nfuf + match_len > length) {
3221 goto bad_len;
3222 }
3223
3224 update->reason = ntohs(nfuf->reason);
3225 update->idle_timeout = ntohs(nfuf->idle_timeout);
3226 update->hard_timeout = ntohs(nfuf->hard_timeout);
3227 update->table_id = nfuf->table_id;
3228 update->cookie = nfuf->cookie;
81a76618 3229 update->priority = ntohs(nfuf->priority);
2b07c8b1 3230
81a76618 3231 error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
2b07c8b1
BP
3232 if (error) {
3233 return error;
3234 }
3235
3236 actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
3237 error = ofpacts_pull_openflow10(msg, actions_len, ofpacts);
3238 if (error) {
3239 return error;
3240 }
3241
3242 update->ofpacts = ofpacts->data;
3243 update->ofpacts_len = ofpacts->size;
3244 return 0;
3245 } else {
3246 VLOG_WARN_RL(&bad_ofmsg_rl,
3247 "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
3248 ntohs(nfuh->event));
3249 return OFPERR_OFPET_BAD_REQUEST;
3250 }
3251
3252bad_len:
3253 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %zu "
3254 "leftover bytes at end", msg->size);
3255 return OFPERR_OFPBRC_BAD_LEN;
3256}
3257
3258uint32_t
3259ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
3260{
982697a4
BP
3261 const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
3262
3263 return ntohl(cancel->id);
2b07c8b1 3264}
9e1fd49b 3265
2b07c8b1
BP
3266struct ofpbuf *
3267ofputil_encode_flow_monitor_cancel(uint32_t id)
3268{
3269 struct nx_flow_monitor_cancel *nfmc;
3270 struct ofpbuf *msg;
3271
982697a4
BP
3272 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
3273 nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
2b07c8b1
BP
3274 nfmc->id = htonl(id);
3275 return msg;
3276}
3277
3278void
3279ofputil_start_flow_update(struct list *replies)
3280{
3281 struct ofpbuf *msg;
3282
982697a4
BP
3283 msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
3284 htonl(0), 1024);
2b07c8b1
BP
3285
3286 list_init(replies);
3287 list_push_back(replies, &msg->list_node);
3288}
3289
3290void
3291ofputil_append_flow_update(const struct ofputil_flow_update *update,
3292 struct list *replies)
3293{
3294 struct nx_flow_update_header *nfuh;
3295 struct ofpbuf *msg;
3296 size_t start_ofs;
3297
3298 msg = ofpbuf_from_list(list_back(replies));
3299 start_ofs = msg->size;
3300
3301 if (update->event == NXFME_ABBREV) {
3302 struct nx_flow_update_abbrev *nfua;
3303
3304 nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
3305 nfua->xid = update->xid;
3306 } else {
3307 struct nx_flow_update_full *nfuf;
3308 int match_len;
3309
3310 ofpbuf_put_zeros(msg, sizeof *nfuf);
7623f4dd 3311 match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
2b07c8b1
BP
3312 ofpacts_put_openflow10(update->ofpacts, update->ofpacts_len, msg);
3313
3314 nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
3315 nfuf->reason = htons(update->reason);
81a76618 3316 nfuf->priority = htons(update->priority);
2b07c8b1
BP
3317 nfuf->idle_timeout = htons(update->idle_timeout);
3318 nfuf->hard_timeout = htons(update->hard_timeout);
3319 nfuf->match_len = htons(match_len);
3320 nfuf->table_id = update->table_id;
3321 nfuf->cookie = update->cookie;
3322 }
3323
3324 nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
3325 nfuh->length = htons(msg->size - start_ofs);
3326 nfuh->event = htons(update->event);
3327
982697a4 3328 ofpmp_postappend(replies, start_ofs);
2b07c8b1
BP
3329}
3330\f
c6a93eb7 3331struct ofpbuf *
de0f3156
SH
3332ofputil_encode_packet_out(const struct ofputil_packet_out *po,
3333 enum ofputil_protocol protocol)
c6a93eb7 3334{
de0f3156 3335 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
c6a93eb7
BP
3336 struct ofpbuf *msg;
3337 size_t size;
3338
982697a4 3339 size = po->ofpacts_len;
c6a93eb7
BP
3340 if (po->buffer_id == UINT32_MAX) {
3341 size += po->packet_len;
3342 }
3343
de0f3156
SH
3344 switch (ofp_version) {
3345 case OFP10_VERSION: {
3346 struct ofp_packet_out *opo;
3347 size_t actions_ofs;
3348
3349 msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
3350 ofpbuf_put_zeros(msg, sizeof *opo);
3351 actions_ofs = msg->size;
3352 ofpacts_put_openflow10(po->ofpacts, po->ofpacts_len, msg);
3353
3354 opo = msg->l3;
3355 opo->buffer_id = htonl(po->buffer_id);
3356 opo->in_port = htons(po->in_port);
3357 opo->actions_len = htons(msg->size - actions_ofs);
3358 break;
3359 }
f25d0cf3 3360
de0f3156 3361 case OFP11_VERSION:
7c1b1a0d
SH
3362 case OFP12_VERSION: {
3363 struct ofp11_packet_out *opo;
3364 size_t len;
3365
3366 msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
3367 ofpbuf_put_zeros(msg, sizeof *opo);
3368 len = ofpacts_put_openflow11_actions(po->ofpacts, po->ofpacts_len, msg);
3369
3370 opo = msg->l3;
3371 opo->buffer_id = htonl(po->buffer_id);
3372 opo->in_port = ofputil_port_to_ofp11(po->in_port);
3373 opo->actions_len = htons(len);
3374 break;
3375 }
3376
de0f3156
SH
3377 default:
3378 NOT_REACHED();
3379 }
f25d0cf3 3380
c6a93eb7
BP
3381 if (po->buffer_id == UINT32_MAX) {
3382 ofpbuf_put(msg, po->packet, po->packet_len);
3383 }
f25d0cf3 3384
982697a4 3385 ofpmsg_update_length(msg);
c6a93eb7
BP
3386
3387 return msg;
3388}
d1e2cf21 3389\f
fa37b408
BP
3390/* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
3391struct ofpbuf *
1a126c0c 3392make_echo_request(enum ofp_version ofp_version)
fa37b408 3393{
1a126c0c 3394 return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
982697a4 3395 htonl(0), 0);
fa37b408
BP
3396}
3397
3398/* Creates and returns an OFPT_ECHO_REPLY message matching the
3399 * OFPT_ECHO_REQUEST message in 'rq'. */
3400struct ofpbuf *
3401make_echo_reply(const struct ofp_header *rq)
3402{
982697a4
BP
3403 struct ofpbuf rq_buf;
3404 struct ofpbuf *reply;
3405
3406 ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
3407 ofpraw_pull_assert(&rq_buf);
3408
3409 reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, rq_buf.size);
3410 ofpbuf_put(reply, rq_buf.data, rq_buf.size);
3411 return reply;
fa37b408
BP
3412}
3413
efb80167 3414struct ofpbuf *
a0ae0b6e 3415ofputil_encode_barrier_request(enum ofp_version ofp_version)
efb80167 3416{
a0ae0b6e
SH
3417 enum ofpraw type;
3418
3419 switch (ofp_version) {
3420 case OFP12_VERSION:
3421 case OFP11_VERSION:
3422 type = OFPRAW_OFPT11_BARRIER_REQUEST;
3423 break;
3424
3425 case OFP10_VERSION:
3426 type = OFPRAW_OFPT10_BARRIER_REQUEST;
3427 break;
3428
3429 default:
3430 NOT_REACHED();
3431 }
3432
3433 return ofpraw_alloc(type, ofp_version, 0);
efb80167
BP
3434}
3435
7257b535
BP
3436const char *
3437ofputil_frag_handling_to_string(enum ofp_config_flags flags)
3438{
3439 switch (flags & OFPC_FRAG_MASK) {
3440 case OFPC_FRAG_NORMAL: return "normal";
3441 case OFPC_FRAG_DROP: return "drop";
3442 case OFPC_FRAG_REASM: return "reassemble";
3443 case OFPC_FRAG_NX_MATCH: return "nx-match";
3444 }
3445
3446 NOT_REACHED();
3447}
3448
3449bool
3450ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
3451{
3452 if (!strcasecmp(s, "normal")) {
3453 *flags = OFPC_FRAG_NORMAL;
3454 } else if (!strcasecmp(s, "drop")) {
3455 *flags = OFPC_FRAG_DROP;
3456 } else if (!strcasecmp(s, "reassemble")) {
3457 *flags = OFPC_FRAG_REASM;
3458 } else if (!strcasecmp(s, "nx-match")) {
3459 *flags = OFPC_FRAG_NX_MATCH;
3460 } else {
3461 return false;
3462 }
3463 return true;
3464}
3465
7b7503ea
BP
3466/* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
3467 * port number and stores the latter in '*ofp10_port', for the purpose of
3468 * decoding OpenFlow 1.1+ protocol messages. Returns 0 if successful,
3469 * otherwise an OFPERR_* number.
3470 *
3471 * See the definition of OFP11_MAX for an explanation of the mapping. */
3472enum ofperr
3473ofputil_port_from_ofp11(ovs_be32 ofp11_port, uint16_t *ofp10_port)
3474{
3475 uint32_t ofp11_port_h = ntohl(ofp11_port);
3476
3477 if (ofp11_port_h < OFPP_MAX) {
3478 *ofp10_port = ofp11_port_h;
3479 return 0;
3480 } else if (ofp11_port_h >= OFPP11_MAX) {
3481 *ofp10_port = ofp11_port_h - OFPP11_OFFSET;
3482 return 0;
3483 } else {
3484 VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
3485 "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
3486 ofp11_port_h, OFPP_MAX - 1,
3487 (uint32_t) OFPP11_MAX, UINT32_MAX);
3488 return OFPERR_OFPBAC_BAD_OUT_PORT;
3489 }
3490}
3491
3492/* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
3493 * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
3494 *
3495 * See the definition of OFP11_MAX for an explanation of the mapping. */
3496ovs_be32
3497ofputil_port_to_ofp11(uint16_t ofp10_port)
3498{
3499 return htonl(ofp10_port < OFPP_MAX
3500 ? ofp10_port
3501 : ofp10_port + OFPP11_OFFSET);
3502}
3503
08f94c0e 3504/* Checks that 'port' is a valid output port for the OFPAT10_OUTPUT action, given
c1c9c9c4 3505 * that the switch will never have more than 'max_ports' ports. Returns 0 if
90bf1e07
BP
3506 * 'port' is valid, otherwise an OpenFlow return code. */
3507enum ofperr
77410139 3508ofputil_check_output_port(uint16_t port, int max_ports)
fa37b408
BP
3509{
3510 switch (port) {
3511 case OFPP_IN_PORT:
3512 case OFPP_TABLE:
3513 case OFPP_NORMAL:
3514 case OFPP_FLOOD:
3515 case OFPP_ALL:
3516 case OFPP_CONTROLLER:
0d193212 3517 case OFPP_NONE:
fa37b408
BP
3518 case OFPP_LOCAL:
3519 return 0;
3520
3521 default:
c1c9c9c4 3522 if (port < max_ports) {
fa37b408
BP
3523 return 0;
3524 }
90bf1e07 3525 return OFPERR_OFPBAC_BAD_OUT_PORT;
fa37b408
BP
3526 }
3527}
3528
39dc9082
BP
3529#define OFPUTIL_NAMED_PORTS \
3530 OFPUTIL_NAMED_PORT(IN_PORT) \
3531 OFPUTIL_NAMED_PORT(TABLE) \
3532 OFPUTIL_NAMED_PORT(NORMAL) \
3533 OFPUTIL_NAMED_PORT(FLOOD) \
3534 OFPUTIL_NAMED_PORT(ALL) \
3535 OFPUTIL_NAMED_PORT(CONTROLLER) \
3536 OFPUTIL_NAMED_PORT(LOCAL) \
3537 OFPUTIL_NAMED_PORT(NONE)
3538
c6100d92
BP
3539/* Returns the port number represented by 's', which may be an integer or, for
3540 * reserved ports, the standard OpenFlow name for the port (e.g. "LOCAL").
3541 *
3542 * Returns 0 if 's' is not a valid OpenFlow port number or name. The caller
3543 * should issue an error message in this case, because this function usually
3544 * does not. (This gives the caller an opportunity to look up the port name
3545 * another way, e.g. by contacting the switch and listing the names of all its
3546 * ports).
3547 *
3548 * This function accepts OpenFlow 1.0 port numbers. It also accepts a subset
3549 * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
3550 * range as described in include/openflow/openflow-1.1.h. */
3551uint16_t
3552ofputil_port_from_string(const char *s)
39dc9082 3553{
c6100d92
BP
3554 unsigned int port32;
3555
3556 if (str_to_uint(s, 10, &port32)) {
3557 if (port32 == 0) {
3558 VLOG_WARN("port 0 is not a valid OpenFlow port number");
3559 return 0;
3560 } else if (port32 < OFPP_MAX) {
3561 return port32;
3562 } else if (port32 < OFPP_FIRST_RESV) {
3563 VLOG_WARN("port %u is a reserved OF1.0 port number that will "
3564 "be translated to %u when talking to an OF1.1 or "
3565 "later controller", port32, port32 + OFPP11_OFFSET);
3566 return port32;
3567 } else if (port32 <= OFPP_LAST_RESV) {
3568 struct ds s;
3569
3570 ds_init(&s);
3571 ofputil_format_port(port32, &s);
3572 VLOG_WARN("port %u is better referred to as %s, for compatibility "
3573 "with future versions of OpenFlow",
3574 port32, ds_cstr(&s));
3575 ds_destroy(&s);
3576
3577 return port32;
3578 } else if (port32 < OFPP11_MAX) {
3579 VLOG_WARN("port %u is outside the supported range 0 through "
3580 "%"PRIx16"or 0x%x through 0x%"PRIx32, port32,
3581 UINT16_MAX, (unsigned int) OFPP11_MAX, UINT32_MAX);
3582 return 0;
3583 } else {
3584 return port32 - OFPP11_OFFSET;
3585 }
3586 } else {
3587 struct pair {
3588 const char *name;
3589 uint16_t value;
3590 };
3591 static const struct pair pairs[] = {
39dc9082 3592#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
c6100d92 3593 OFPUTIL_NAMED_PORTS
39dc9082 3594#undef OFPUTIL_NAMED_PORT
c6100d92
BP
3595 };
3596 const struct pair *p;
39dc9082 3597
c6100d92
BP
3598 for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
3599 if (!strcasecmp(s, p->name)) {
3600 return p->value;
3601 }
39dc9082 3602 }
c6100d92 3603 return 0;
39dc9082 3604 }
39dc9082
BP
3605}
3606
3607/* Appends to 's' a string representation of the OpenFlow port number 'port'.
3608 * Most ports' string representation is just the port number, but for special
3609 * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
3610void
3611ofputil_format_port(uint16_t port, struct ds *s)
3612{
3613 const char *name;
3614
3615 switch (port) {
3616#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: name = #NAME; break;
3617 OFPUTIL_NAMED_PORTS
3618#undef OFPUTIL_NAMED_PORT
3619
3620 default:
3621 ds_put_format(s, "%"PRIu16, port);
3622 return;
3623 }
3624 ds_put_cstr(s, name);
3625}
3626
2be393ed
JP
3627/* Given a buffer 'b' that contains an array of OpenFlow ports of type
3628 * 'ofp_version', tries to pull the first element from the array. If
3629 * successful, initializes '*pp' with an abstract representation of the
3630 * port and returns 0. If no ports remain to be decoded, returns EOF.
3631 * On an error, returns a positive OFPERR_* value. */
3632int
2e3fa633 3633ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
2be393ed
JP
3634 struct ofputil_phy_port *pp)
3635{
2e3fa633
SH
3636 switch (ofp_version) {
3637 case OFP10_VERSION: {
2be393ed
JP
3638 const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
3639 return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
2e3fa633
SH
3640 }
3641 case OFP11_VERSION:
3642 case OFP12_VERSION: {
2be393ed
JP
3643 const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
3644 return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
3645 }
2e3fa633
SH
3646 default:
3647 NOT_REACHED();
3648 }
2be393ed
JP
3649}
3650
3651/* Given a buffer 'b' that contains an array of OpenFlow ports of type
3652 * 'ofp_version', returns the number of elements. */
3653size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *b)
3654{
5b5a3a67 3655 return b->size / ofputil_get_phy_port_size(ofp_version);
2be393ed
JP
3656}
3657
e23ae585 3658/* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
08f94c0e 3659 * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1 if
e23ae585
BP
3660 * 'name' is not the name of any action.
3661 *
3662 * ofp-util.def lists the mapping from names to action. */
3663int
3664ofputil_action_code_from_name(const char *name)
3665{
3666 static const char *names[OFPUTIL_N_ACTIONS] = {
690a61c5 3667 NULL,
3ddcaf2d
BP
3668#define OFPAT10_ACTION(ENUM, STRUCT, NAME) NAME,
3669#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
3670#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
e23ae585
BP
3671#include "ofp-util.def"
3672 };
3673
3674 const char **p;
3675
3676 for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
3677 if (*p && !strcasecmp(name, *p)) {
3678 return p - names;
3679 }
3680 }
3681 return -1;
3682}
3683
93996add
BP
3684/* Appends an action of the type specified by 'code' to 'buf' and returns the
3685 * action. Initializes the parts of 'action' that identify it as having type
3686 * <ENUM> and length 'sizeof *action' and zeros the rest. For actions that
3687 * have variable length, the length used and cleared is that of struct
3688 * <STRUCT>. */
3689void *
3690ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
3691{
3692 switch (code) {
690a61c5
BP
3693 case OFPUTIL_ACTION_INVALID:
3694 NOT_REACHED();
3695
3ddcaf2d
BP
3696#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
3697 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
3698#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
93996add
BP
3699 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
3700#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
3701 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
3702#include "ofp-util.def"
3703 }
3704 NOT_REACHED();
3705}
3706
08f94c0e 3707#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
93996add
BP
3708 void \
3709 ofputil_init_##ENUM(struct STRUCT *s) \
3710 { \
3711 memset(s, 0, sizeof *s); \
3712 s->type = htons(ENUM); \
3713 s->len = htons(sizeof *s); \
3714 } \
3715 \
3716 struct STRUCT * \
3717 ofputil_put_##ENUM(struct ofpbuf *buf) \
3718 { \
3719 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
3720 ofputil_init_##ENUM(s); \
3721 return s; \
3722 }
3ddcaf2d
BP
3723#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
3724 OFPAT10_ACTION(ENUM, STRUCT, NAME)
93996add
BP
3725#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
3726 void \
3727 ofputil_init_##ENUM(struct STRUCT *s) \
3728 { \
3729 memset(s, 0, sizeof *s); \
08f94c0e 3730 s->type = htons(OFPAT10_VENDOR); \
93996add
BP
3731 s->len = htons(sizeof *s); \
3732 s->vendor = htonl(NX_VENDOR_ID); \
3733 s->subtype = htons(ENUM); \
3734 } \
3735 \
3736 struct STRUCT * \
3737 ofputil_put_##ENUM(struct ofpbuf *buf) \
3738 { \
3739 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
3740 ofputil_init_##ENUM(s); \
3741 return s; \
3742 }
3743#include "ofp-util.def"
3744
3cbd9931 3745static void
81a76618 3746ofputil_normalize_match__(struct match *match, bool may_log)
b459a924
BP
3747{
3748 enum {
3749 MAY_NW_ADDR = 1 << 0, /* nw_src, nw_dst */
3750 MAY_TP_ADDR = 1 << 1, /* tp_src, tp_dst */
3751 MAY_NW_PROTO = 1 << 2, /* nw_proto */
a61680c6 3752 MAY_IPVx = 1 << 3, /* tos, frag, ttl */
b459a924
BP
3753 MAY_ARP_SHA = 1 << 4, /* arp_sha */
3754 MAY_ARP_THA = 1 << 5, /* arp_tha */
d78477ec 3755 MAY_IPV6 = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
b459a924
BP
3756 MAY_ND_TARGET = 1 << 7 /* nd_target */
3757 } may_match;
3758
3759 struct flow_wildcards wc;
3760
3761 /* Figure out what fields may be matched. */
81a76618 3762 if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
9e44d715 3763 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
81a76618
BP
3764 if (match->flow.nw_proto == IPPROTO_TCP ||
3765 match->flow.nw_proto == IPPROTO_UDP ||
3766 match->flow.nw_proto == IPPROTO_ICMP) {
b459a924
BP
3767 may_match |= MAY_TP_ADDR;
3768 }
81a76618 3769 } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
d78477ec 3770 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
81a76618
BP
3771 if (match->flow.nw_proto == IPPROTO_TCP ||
3772 match->flow.nw_proto == IPPROTO_UDP) {
b459a924 3773 may_match |= MAY_TP_ADDR;
81a76618 3774 } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
b459a924 3775 may_match |= MAY_TP_ADDR;
81a76618 3776 if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
b459a924 3777 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
81a76618 3778 } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
b459a924
BP
3779 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
3780 }
3781 }
81a76618 3782 } else if (match->flow.dl_type == htons(ETH_TYPE_ARP)) {
27527aa0 3783 may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
1c0b7503 3784 } else {
b459a924
BP
3785 may_match = 0;
3786 }
3787
3788 /* Clear the fields that may not be matched. */
81a76618 3789 wc = match->wc;
b459a924 3790 if (!(may_match & MAY_NW_ADDR)) {
26720e24 3791 wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
b459a924
BP
3792 }
3793 if (!(may_match & MAY_TP_ADDR)) {
26720e24 3794 wc.masks.tp_src = wc.masks.tp_dst = htons(0);
b459a924
BP
3795 }
3796 if (!(may_match & MAY_NW_PROTO)) {
26720e24 3797 wc.masks.nw_proto = 0;
b459a924 3798 }
9e44d715 3799 if (!(may_match & MAY_IPVx)) {
26720e24
BP
3800 wc.masks.nw_tos = 0;
3801 wc.masks.nw_ttl = 0;
b459a924
BP
3802 }
3803 if (!(may_match & MAY_ARP_SHA)) {
26720e24 3804 memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
b459a924
BP
3805 }
3806 if (!(may_match & MAY_ARP_THA)) {
26720e24 3807 memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
b459a924 3808 }
d78477ec 3809 if (!(may_match & MAY_IPV6)) {
26720e24
BP
3810 wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
3811 wc.masks.ipv6_label = htonl(0);
b459a924
BP
3812 }
3813 if (!(may_match & MAY_ND_TARGET)) {
26720e24 3814 wc.masks.nd_target = in6addr_any;
b459a924
BP
3815 }
3816
3817 /* Log any changes. */
81a76618 3818 if (!flow_wildcards_equal(&wc, &match->wc)) {
3cbd9931 3819 bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
81a76618 3820 char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
b459a924 3821
81a76618
BP
3822 match->wc = wc;
3823 match_zero_wildcarded_fields(match);
b459a924
BP
3824
3825 if (log) {
81a76618 3826 char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
b459a924
BP
3827 VLOG_INFO("normalization changed ofp_match, details:");
3828 VLOG_INFO(" pre: %s", pre);
3829 VLOG_INFO("post: %s", post);
3830 free(pre);
3831 free(post);
3832 }
fa37b408 3833 }
3f09c339 3834}
26c112c2 3835
81a76618 3836/* "Normalizes" the wildcards in 'match'. That means:
3cbd9931
BP
3837 *
3838 * 1. If the type of level N is known, then only the valid fields for that
3839 * level may be specified. For example, ARP does not have a TOS field,
81a76618 3840 * so nw_tos must be wildcarded if 'match' specifies an ARP flow.
3cbd9931 3841 * Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
81a76618 3842 * ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
3cbd9931
BP
3843 * IPv4 flow.
3844 *
3845 * 2. If the type of level N is not known (or not understood by Open
3846 * vSwitch), then no fields at all for that level may be specified. For
3847 * example, Open vSwitch does not understand SCTP, an L4 protocol, so the
81a76618 3848 * L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
3cbd9931
BP
3849 * SCTP flow.
3850 *
81a76618 3851 * If this function changes 'match', it logs a rate-limited informational
3cbd9931
BP
3852 * message. */
3853void
81a76618 3854ofputil_normalize_match(struct match *match)
3cbd9931 3855{
81a76618 3856 ofputil_normalize_match__(match, true);
3cbd9931
BP
3857}
3858
81a76618
BP
3859/* Same as ofputil_normalize_match() without the logging. Thus, this function
3860 * is suitable for a program's internal use, whereas ofputil_normalize_match()
3cbd9931
BP
3861 * sense for use on flows received from elsewhere (so that a bug in the program
3862 * that sent them can be reported and corrected). */
3863void
81a76618 3864ofputil_normalize_match_quiet(struct match *match)
3cbd9931 3865{
81a76618 3866 ofputil_normalize_match__(match, false);
3cbd9931
BP
3867}
3868
0ff22822
BP
3869/* Parses a key or a key-value pair from '*stringp'.
3870 *
3871 * On success: Stores the key into '*keyp'. Stores the value, if present, into
3872 * '*valuep', otherwise an empty string. Advances '*stringp' past the end of
3873 * the key-value pair, preparing it for another call. '*keyp' and '*valuep'
3874 * are substrings of '*stringp' created by replacing some of its bytes by null
3875 * terminators. Returns true.
3876 *
3877 * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
3878 * NULL and returns false. */
3879bool
3880ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
3881{
3882 char *pos, *key, *value;
3883 size_t key_len;
3884
3885 pos = *stringp;
3886 pos += strspn(pos, ", \t\r\n");
3887 if (*pos == '\0') {
3888 *keyp = *valuep = NULL;
3889 return false;
3890 }
3891
3892 key = pos;
3893 key_len = strcspn(pos, ":=(, \t\r\n");
3894 if (key[key_len] == ':' || key[key_len] == '=') {
3895 /* The value can be separated by a colon. */
3896 size_t value_len;
3897
3898 value = key + key_len + 1;
3899 value_len = strcspn(value, ", \t\r\n");
3900 pos = value + value_len + (value[value_len] != '\0');
3901 value[value_len] = '\0';
3902 } else if (key[key_len] == '(') {
3903 /* The value can be surrounded by balanced parentheses. The outermost
3904 * set of parentheses is removed. */
3905 int level = 1;
3906 size_t value_len;
3907
3908 value = key + key_len + 1;
3909 for (value_len = 0; level > 0; value_len++) {
3910 switch (value[value_len]) {
3911 case '\0':
33cadc50
BP
3912 level = 0;
3913 break;
0ff22822
BP
3914
3915 case '(':
3916 level++;
3917 break;
3918
3919 case ')':
3920 level--;
3921 break;
3922 }
3923 }
3924 value[value_len - 1] = '\0';
3925 pos = value + value_len;
3926 } else {
3927 /* There might be no value at all. */
3928 value = key + key_len; /* Will become the empty string below. */
3929 pos = key + key_len + (key[key_len] != '\0');
3930 }
3931 key[key_len] = '\0';
3932
3933 *stringp = pos;
3934 *keyp = key;
3935 *valuep = value;
3936 return true;
3937}