]> git.proxmox.com Git - ovs.git/blob - lib/ofp-util.c
connmgr: Move send_len from ofputil_packet_in to ofproto_packet_in.
[ovs.git] / lib / ofp-util.c
1 /*
2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18 #include "ofp-print.h"
19 #include <ctype.h>
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <sys/types.h>
23 #include <netinet/in.h>
24 #include <netinet/icmp6.h>
25 #include <stdlib.h>
26 #include "bundle.h"
27 #include "byte-order.h"
28 #include "classifier.h"
29 #include "dynamic-string.h"
30 #include "learn.h"
31 #include "meta-flow.h"
32 #include "multipath.h"
33 #include "netdev.h"
34 #include "nx-match.h"
35 #include "ofp-actions.h"
36 #include "ofp-errors.h"
37 #include "ofp-msgs.h"
38 #include "ofp-util.h"
39 #include "ofpbuf.h"
40 #include "packets.h"
41 #include "random.h"
42 #include "unaligned.h"
43 #include "type-props.h"
44 #include "vlog.h"
45
46 VLOG_DEFINE_THIS_MODULE(ofp_util);
47
48 /* Rate limit for OpenFlow message parse errors. These always indicate a bug
49 * in the peer and so there's not much point in showing a lot of them. */
50 static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
51
52 /* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
53 * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
54 * is wildcarded.
55 *
56 * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
57 * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
58 * ..., 32 and higher wildcard the entire field. This is the *opposite* of the
59 * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
60 * wildcarded. */
61 ovs_be32
62 ofputil_wcbits_to_netmask(int wcbits)
63 {
64 wcbits &= 0x3f;
65 return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
66 }
67
68 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
69 * that it wildcards, that is, the number of 0-bits in 'netmask', a number
70 * between 0 and 32 inclusive.
71 *
72 * If 'netmask' is not a CIDR netmask (see ip_is_cidr()), the return value will
73 * still be in the valid range but isn't otherwise meaningful. */
74 int
75 ofputil_netmask_to_wcbits(ovs_be32 netmask)
76 {
77 return 32 - ip_count_cidr_bits(netmask);
78 }
79
80 /* Converts the OpenFlow 1.0 wildcards in 'ofpfw' (OFPFW10_*) into a
81 * flow_wildcards in 'wc' for use in struct match. It is the caller's
82 * responsibility to handle the special case where the flow match's dl_vlan is
83 * set to OFP_VLAN_NONE. */
84 void
85 ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *wc)
86 {
87 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 21);
88
89 /* Initialize most of wc. */
90 flow_wildcards_init_catchall(wc);
91
92 if (!(ofpfw & OFPFW10_IN_PORT)) {
93 wc->masks.in_port.ofp_port = u16_to_ofp(UINT16_MAX);
94 }
95
96 if (!(ofpfw & OFPFW10_NW_TOS)) {
97 wc->masks.nw_tos |= IP_DSCP_MASK;
98 }
99
100 if (!(ofpfw & OFPFW10_NW_PROTO)) {
101 wc->masks.nw_proto = UINT8_MAX;
102 }
103 wc->masks.nw_src = ofputil_wcbits_to_netmask(ofpfw
104 >> OFPFW10_NW_SRC_SHIFT);
105 wc->masks.nw_dst = ofputil_wcbits_to_netmask(ofpfw
106 >> OFPFW10_NW_DST_SHIFT);
107
108 if (!(ofpfw & OFPFW10_TP_SRC)) {
109 wc->masks.tp_src = OVS_BE16_MAX;
110 }
111 if (!(ofpfw & OFPFW10_TP_DST)) {
112 wc->masks.tp_dst = OVS_BE16_MAX;
113 }
114
115 if (!(ofpfw & OFPFW10_DL_SRC)) {
116 memset(wc->masks.dl_src, 0xff, ETH_ADDR_LEN);
117 }
118 if (!(ofpfw & OFPFW10_DL_DST)) {
119 memset(wc->masks.dl_dst, 0xff, ETH_ADDR_LEN);
120 }
121 if (!(ofpfw & OFPFW10_DL_TYPE)) {
122 wc->masks.dl_type = OVS_BE16_MAX;
123 }
124
125 /* VLAN TCI mask. */
126 if (!(ofpfw & OFPFW10_DL_VLAN_PCP)) {
127 wc->masks.vlan_tci |= htons(VLAN_PCP_MASK | VLAN_CFI);
128 }
129 if (!(ofpfw & OFPFW10_DL_VLAN)) {
130 wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
131 }
132 }
133
134 /* Converts the ofp10_match in 'ofmatch' into a struct match in 'match'. */
135 void
136 ofputil_match_from_ofp10_match(const struct ofp10_match *ofmatch,
137 struct match *match)
138 {
139 uint32_t ofpfw = ntohl(ofmatch->wildcards) & OFPFW10_ALL;
140
141 /* Initialize match->wc. */
142 memset(&match->flow, 0, sizeof match->flow);
143 ofputil_wildcard_from_ofpfw10(ofpfw, &match->wc);
144
145 /* Initialize most of match->flow. */
146 match->flow.nw_src = ofmatch->nw_src;
147 match->flow.nw_dst = ofmatch->nw_dst;
148 match->flow.in_port.ofp_port = u16_to_ofp(ntohs(ofmatch->in_port));
149 match->flow.dl_type = ofputil_dl_type_from_openflow(ofmatch->dl_type);
150 match->flow.tp_src = ofmatch->tp_src;
151 match->flow.tp_dst = ofmatch->tp_dst;
152 memcpy(match->flow.dl_src, ofmatch->dl_src, ETH_ADDR_LEN);
153 memcpy(match->flow.dl_dst, ofmatch->dl_dst, ETH_ADDR_LEN);
154 match->flow.nw_tos = ofmatch->nw_tos & IP_DSCP_MASK;
155 match->flow.nw_proto = ofmatch->nw_proto;
156
157 /* Translate VLANs. */
158 if (!(ofpfw & OFPFW10_DL_VLAN) &&
159 ofmatch->dl_vlan == htons(OFP10_VLAN_NONE)) {
160 /* Match only packets without 802.1Q header.
161 *
162 * When OFPFW10_DL_VLAN_PCP is wildcarded, this is obviously correct.
163 *
164 * If OFPFW10_DL_VLAN_PCP is matched, the flow match is contradictory,
165 * because we can't have a specific PCP without an 802.1Q header.
166 * However, older versions of OVS treated this as matching packets
167 * withut an 802.1Q header, so we do here too. */
168 match->flow.vlan_tci = htons(0);
169 match->wc.masks.vlan_tci = htons(0xffff);
170 } else {
171 ovs_be16 vid, pcp, tci;
172
173 vid = ofmatch->dl_vlan & htons(VLAN_VID_MASK);
174 pcp = htons((ofmatch->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
175 tci = vid | pcp | htons(VLAN_CFI);
176 match->flow.vlan_tci = tci & match->wc.masks.vlan_tci;
177 }
178
179 /* Clean up. */
180 match_zero_wildcarded_fields(match);
181 }
182
183 /* Convert 'match' into the OpenFlow 1.0 match structure 'ofmatch'. */
184 void
185 ofputil_match_to_ofp10_match(const struct match *match,
186 struct ofp10_match *ofmatch)
187 {
188 const struct flow_wildcards *wc = &match->wc;
189 uint32_t ofpfw;
190
191 /* Figure out most OpenFlow wildcards. */
192 ofpfw = 0;
193 if (!wc->masks.in_port.ofp_port) {
194 ofpfw |= OFPFW10_IN_PORT;
195 }
196 if (!wc->masks.dl_type) {
197 ofpfw |= OFPFW10_DL_TYPE;
198 }
199 if (!wc->masks.nw_proto) {
200 ofpfw |= OFPFW10_NW_PROTO;
201 }
202 ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
203 << OFPFW10_NW_SRC_SHIFT);
204 ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
205 << OFPFW10_NW_DST_SHIFT);
206 if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
207 ofpfw |= OFPFW10_NW_TOS;
208 }
209 if (!wc->masks.tp_src) {
210 ofpfw |= OFPFW10_TP_SRC;
211 }
212 if (!wc->masks.tp_dst) {
213 ofpfw |= OFPFW10_TP_DST;
214 }
215 if (eth_addr_is_zero(wc->masks.dl_src)) {
216 ofpfw |= OFPFW10_DL_SRC;
217 }
218 if (eth_addr_is_zero(wc->masks.dl_dst)) {
219 ofpfw |= OFPFW10_DL_DST;
220 }
221
222 /* Translate VLANs. */
223 ofmatch->dl_vlan = htons(0);
224 ofmatch->dl_vlan_pcp = 0;
225 if (match->wc.masks.vlan_tci == htons(0)) {
226 ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
227 } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
228 && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
229 ofmatch->dl_vlan = htons(OFP10_VLAN_NONE);
230 ofpfw |= OFPFW10_DL_VLAN_PCP;
231 } else {
232 if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
233 ofpfw |= OFPFW10_DL_VLAN;
234 } else {
235 ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
236 }
237
238 if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
239 ofpfw |= OFPFW10_DL_VLAN_PCP;
240 } else {
241 ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
242 }
243 }
244
245 /* Compose most of the match structure. */
246 ofmatch->wildcards = htonl(ofpfw);
247 ofmatch->in_port = htons(ofp_to_u16(match->flow.in_port.ofp_port));
248 memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
249 memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
250 ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
251 ofmatch->nw_src = match->flow.nw_src;
252 ofmatch->nw_dst = match->flow.nw_dst;
253 ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
254 ofmatch->nw_proto = match->flow.nw_proto;
255 ofmatch->tp_src = match->flow.tp_src;
256 ofmatch->tp_dst = match->flow.tp_dst;
257 memset(ofmatch->pad1, '\0', sizeof ofmatch->pad1);
258 memset(ofmatch->pad2, '\0', sizeof ofmatch->pad2);
259 }
260
261 enum ofperr
262 ofputil_pull_ofp11_match(struct ofpbuf *buf, struct match *match,
263 uint16_t *padded_match_len)
264 {
265 struct ofp11_match_header *omh = buf->data;
266 uint16_t match_len;
267
268 if (buf->size < sizeof *omh) {
269 return OFPERR_OFPBMC_BAD_LEN;
270 }
271
272 match_len = ntohs(omh->length);
273
274 switch (ntohs(omh->type)) {
275 case OFPMT_STANDARD: {
276 struct ofp11_match *om;
277
278 if (match_len != sizeof *om || buf->size < sizeof *om) {
279 return OFPERR_OFPBMC_BAD_LEN;
280 }
281 om = ofpbuf_pull(buf, sizeof *om);
282 if (padded_match_len) {
283 *padded_match_len = match_len;
284 }
285 return ofputil_match_from_ofp11_match(om, match);
286 }
287
288 case OFPMT_OXM:
289 if (padded_match_len) {
290 *padded_match_len = ROUND_UP(match_len, 8);
291 }
292 return oxm_pull_match(buf, match);
293
294 default:
295 return OFPERR_OFPBMC_BAD_TYPE;
296 }
297 }
298
299 /* Converts the ofp11_match in 'ofmatch' into a struct match in 'match'.
300 * Returns 0 if successful, otherwise an OFPERR_* value. */
301 enum ofperr
302 ofputil_match_from_ofp11_match(const struct ofp11_match *ofmatch,
303 struct match *match)
304 {
305 uint16_t wc = ntohl(ofmatch->wildcards);
306 uint8_t dl_src_mask[ETH_ADDR_LEN];
307 uint8_t dl_dst_mask[ETH_ADDR_LEN];
308 bool ipv4, arp, rarp;
309 int i;
310
311 match_init_catchall(match);
312
313 if (!(wc & OFPFW11_IN_PORT)) {
314 ofp_port_t ofp_port;
315 enum ofperr error;
316
317 error = ofputil_port_from_ofp11(ofmatch->in_port, &ofp_port);
318 if (error) {
319 return OFPERR_OFPBMC_BAD_VALUE;
320 }
321 match_set_in_port(match, ofp_port);
322 }
323
324 for (i = 0; i < ETH_ADDR_LEN; i++) {
325 dl_src_mask[i] = ~ofmatch->dl_src_mask[i];
326 }
327 match_set_dl_src_masked(match, ofmatch->dl_src, dl_src_mask);
328
329 for (i = 0; i < ETH_ADDR_LEN; i++) {
330 dl_dst_mask[i] = ~ofmatch->dl_dst_mask[i];
331 }
332 match_set_dl_dst_masked(match, ofmatch->dl_dst, dl_dst_mask);
333
334 if (!(wc & OFPFW11_DL_VLAN)) {
335 if (ofmatch->dl_vlan == htons(OFPVID11_NONE)) {
336 /* Match only packets without a VLAN tag. */
337 match->flow.vlan_tci = htons(0);
338 match->wc.masks.vlan_tci = OVS_BE16_MAX;
339 } else {
340 if (ofmatch->dl_vlan == htons(OFPVID11_ANY)) {
341 /* Match any packet with a VLAN tag regardless of VID. */
342 match->flow.vlan_tci = htons(VLAN_CFI);
343 match->wc.masks.vlan_tci = htons(VLAN_CFI);
344 } else if (ntohs(ofmatch->dl_vlan) < 4096) {
345 /* Match only packets with the specified VLAN VID. */
346 match->flow.vlan_tci = htons(VLAN_CFI) | ofmatch->dl_vlan;
347 match->wc.masks.vlan_tci = htons(VLAN_CFI | VLAN_VID_MASK);
348 } else {
349 /* Invalid VID. */
350 return OFPERR_OFPBMC_BAD_VALUE;
351 }
352
353 if (!(wc & OFPFW11_DL_VLAN_PCP)) {
354 if (ofmatch->dl_vlan_pcp <= 7) {
355 match->flow.vlan_tci |= htons(ofmatch->dl_vlan_pcp
356 << VLAN_PCP_SHIFT);
357 match->wc.masks.vlan_tci |= htons(VLAN_PCP_MASK);
358 } else {
359 /* Invalid PCP. */
360 return OFPERR_OFPBMC_BAD_VALUE;
361 }
362 }
363 }
364 }
365
366 if (!(wc & OFPFW11_DL_TYPE)) {
367 match_set_dl_type(match,
368 ofputil_dl_type_from_openflow(ofmatch->dl_type));
369 }
370
371 ipv4 = match->flow.dl_type == htons(ETH_TYPE_IP);
372 arp = match->flow.dl_type == htons(ETH_TYPE_ARP);
373 rarp = match->flow.dl_type == htons(ETH_TYPE_RARP);
374
375 if (ipv4 && !(wc & OFPFW11_NW_TOS)) {
376 if (ofmatch->nw_tos & ~IP_DSCP_MASK) {
377 /* Invalid TOS. */
378 return OFPERR_OFPBMC_BAD_VALUE;
379 }
380
381 match_set_nw_dscp(match, ofmatch->nw_tos);
382 }
383
384 if (ipv4 || arp || rarp) {
385 if (!(wc & OFPFW11_NW_PROTO)) {
386 match_set_nw_proto(match, ofmatch->nw_proto);
387 }
388 match_set_nw_src_masked(match, ofmatch->nw_src, ~ofmatch->nw_src_mask);
389 match_set_nw_dst_masked(match, ofmatch->nw_dst, ~ofmatch->nw_dst_mask);
390 }
391
392 #define OFPFW11_TP_ALL (OFPFW11_TP_SRC | OFPFW11_TP_DST)
393 if (ipv4 && (wc & OFPFW11_TP_ALL) != OFPFW11_TP_ALL) {
394 switch (match->flow.nw_proto) {
395 case IPPROTO_ICMP:
396 /* "A.2.3 Flow Match Structures" in OF1.1 says:
397 *
398 * The tp_src and tp_dst fields will be ignored unless the
399 * network protocol specified is as TCP, UDP or SCTP.
400 *
401 * but I'm pretty sure we should support ICMP too, otherwise
402 * that's a regression from OF1.0. */
403 if (!(wc & OFPFW11_TP_SRC)) {
404 uint16_t icmp_type = ntohs(ofmatch->tp_src);
405 if (icmp_type < 0x100) {
406 match_set_icmp_type(match, icmp_type);
407 } else {
408 return OFPERR_OFPBMC_BAD_FIELD;
409 }
410 }
411 if (!(wc & OFPFW11_TP_DST)) {
412 uint16_t icmp_code = ntohs(ofmatch->tp_dst);
413 if (icmp_code < 0x100) {
414 match_set_icmp_code(match, icmp_code);
415 } else {
416 return OFPERR_OFPBMC_BAD_FIELD;
417 }
418 }
419 break;
420
421 case IPPROTO_TCP:
422 case IPPROTO_UDP:
423 case IPPROTO_SCTP:
424 if (!(wc & (OFPFW11_TP_SRC))) {
425 match_set_tp_src(match, ofmatch->tp_src);
426 }
427 if (!(wc & (OFPFW11_TP_DST))) {
428 match_set_tp_dst(match, ofmatch->tp_dst);
429 }
430 break;
431
432 default:
433 /* OF1.1 says explicitly to ignore this. */
434 break;
435 }
436 }
437
438 if (eth_type_mpls(match->flow.dl_type)) {
439 enum { OFPFW11_MPLS_ALL = OFPFW11_MPLS_LABEL | OFPFW11_MPLS_TC };
440
441 if ((wc & OFPFW11_MPLS_ALL) != OFPFW11_MPLS_ALL) {
442 /* MPLS not supported. */
443 return OFPERR_OFPBMC_BAD_TAG;
444 }
445 }
446
447 match_set_metadata_masked(match, ofmatch->metadata,
448 ~ofmatch->metadata_mask);
449
450 return 0;
451 }
452
453 /* Convert 'match' into the OpenFlow 1.1 match structure 'ofmatch'. */
454 void
455 ofputil_match_to_ofp11_match(const struct match *match,
456 struct ofp11_match *ofmatch)
457 {
458 uint32_t wc = 0;
459 int i;
460
461 memset(ofmatch, 0, sizeof *ofmatch);
462 ofmatch->omh.type = htons(OFPMT_STANDARD);
463 ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
464
465 if (!match->wc.masks.in_port.ofp_port) {
466 wc |= OFPFW11_IN_PORT;
467 } else {
468 ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port.ofp_port);
469 }
470
471 memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
472 for (i = 0; i < ETH_ADDR_LEN; i++) {
473 ofmatch->dl_src_mask[i] = ~match->wc.masks.dl_src[i];
474 }
475
476 memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
477 for (i = 0; i < ETH_ADDR_LEN; i++) {
478 ofmatch->dl_dst_mask[i] = ~match->wc.masks.dl_dst[i];
479 }
480
481 if (match->wc.masks.vlan_tci == htons(0)) {
482 wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
483 } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
484 && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
485 ofmatch->dl_vlan = htons(OFPVID11_NONE);
486 wc |= OFPFW11_DL_VLAN_PCP;
487 } else {
488 if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
489 ofmatch->dl_vlan = htons(OFPVID11_ANY);
490 } else {
491 ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
492 }
493
494 if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
495 wc |= OFPFW11_DL_VLAN_PCP;
496 } else {
497 ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
498 }
499 }
500
501 if (!match->wc.masks.dl_type) {
502 wc |= OFPFW11_DL_TYPE;
503 } else {
504 ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
505 }
506
507 if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
508 wc |= OFPFW11_NW_TOS;
509 } else {
510 ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
511 }
512
513 if (!match->wc.masks.nw_proto) {
514 wc |= OFPFW11_NW_PROTO;
515 } else {
516 ofmatch->nw_proto = match->flow.nw_proto;
517 }
518
519 ofmatch->nw_src = match->flow.nw_src;
520 ofmatch->nw_src_mask = ~match->wc.masks.nw_src;
521 ofmatch->nw_dst = match->flow.nw_dst;
522 ofmatch->nw_dst_mask = ~match->wc.masks.nw_dst;
523
524 if (!match->wc.masks.tp_src) {
525 wc |= OFPFW11_TP_SRC;
526 } else {
527 ofmatch->tp_src = match->flow.tp_src;
528 }
529
530 if (!match->wc.masks.tp_dst) {
531 wc |= OFPFW11_TP_DST;
532 } else {
533 ofmatch->tp_dst = match->flow.tp_dst;
534 }
535
536 /* MPLS not supported. */
537 wc |= OFPFW11_MPLS_LABEL;
538 wc |= OFPFW11_MPLS_TC;
539
540 ofmatch->metadata = match->flow.metadata;
541 ofmatch->metadata_mask = ~match->wc.masks.metadata;
542
543 ofmatch->wildcards = htonl(wc);
544 }
545
546 /* Returns the "typical" length of a match for 'protocol', for use in
547 * estimating space to preallocate. */
548 int
549 ofputil_match_typical_len(enum ofputil_protocol protocol)
550 {
551 switch (protocol) {
552 case OFPUTIL_P_OF10_STD:
553 case OFPUTIL_P_OF10_STD_TID:
554 return sizeof(struct ofp10_match);
555
556 case OFPUTIL_P_OF10_NXM:
557 case OFPUTIL_P_OF10_NXM_TID:
558 return NXM_TYPICAL_LEN;
559
560 case OFPUTIL_P_OF11_STD:
561 return sizeof(struct ofp11_match);
562
563 case OFPUTIL_P_OF12_OXM:
564 case OFPUTIL_P_OF13_OXM:
565 return NXM_TYPICAL_LEN;
566
567 default:
568 NOT_REACHED();
569 }
570 }
571
572 /* Appends to 'b' an struct ofp11_match_header followed by a match that
573 * expresses 'match' properly for 'protocol', plus enough zero bytes to pad the
574 * data appended out to a multiple of 8. 'protocol' must be one that is usable
575 * in OpenFlow 1.1 or later.
576 *
577 * This function can cause 'b''s data to be reallocated.
578 *
579 * Returns the number of bytes appended to 'b', excluding the padding. Never
580 * returns zero. */
581 int
582 ofputil_put_ofp11_match(struct ofpbuf *b, const struct match *match,
583 enum ofputil_protocol protocol)
584 {
585 switch (protocol) {
586 case OFPUTIL_P_OF10_STD:
587 case OFPUTIL_P_OF10_STD_TID:
588 case OFPUTIL_P_OF10_NXM:
589 case OFPUTIL_P_OF10_NXM_TID:
590 NOT_REACHED();
591
592 case OFPUTIL_P_OF11_STD: {
593 struct ofp11_match *om;
594
595 /* Make sure that no padding is needed. */
596 BUILD_ASSERT_DECL(sizeof *om % 8 == 0);
597
598 om = ofpbuf_put_uninit(b, sizeof *om);
599 ofputil_match_to_ofp11_match(match, om);
600 return sizeof *om;
601 }
602
603 case OFPUTIL_P_OF12_OXM:
604 case OFPUTIL_P_OF13_OXM:
605 return oxm_put_match(b, match);
606 }
607
608 NOT_REACHED();
609 }
610
611 /* Given a 'dl_type' value in the format used in struct flow, returns the
612 * corresponding 'dl_type' value for use in an ofp10_match or ofp11_match
613 * structure. */
614 ovs_be16
615 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
616 {
617 return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
618 ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
619 : flow_dl_type);
620 }
621
622 /* Given a 'dl_type' value in the format used in an ofp10_match or ofp11_match
623 * structure, returns the corresponding 'dl_type' value for use in struct
624 * flow. */
625 ovs_be16
626 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
627 {
628 return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
629 ? htons(FLOW_DL_TYPE_NONE)
630 : ofp_dl_type);
631 }
632 \f
633 /* Protocols. */
634
635 struct proto_abbrev {
636 enum ofputil_protocol protocol;
637 const char *name;
638 };
639
640 /* Most users really don't care about some of the differences between
641 * protocols. These abbreviations help with that. */
642 static const struct proto_abbrev proto_abbrevs[] = {
643 { OFPUTIL_P_ANY, "any" },
644 { OFPUTIL_P_OF10_STD_ANY, "OpenFlow10" },
645 { OFPUTIL_P_OF10_NXM_ANY, "NXM" },
646 { OFPUTIL_P_ANY_OXM, "OXM" },
647 };
648 #define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
649
650 enum ofputil_protocol ofputil_flow_dump_protocols[] = {
651 OFPUTIL_P_OF13_OXM,
652 OFPUTIL_P_OF12_OXM,
653 OFPUTIL_P_OF11_STD,
654 OFPUTIL_P_OF10_NXM,
655 OFPUTIL_P_OF10_STD,
656 };
657 size_t ofputil_n_flow_dump_protocols = ARRAY_SIZE(ofputil_flow_dump_protocols);
658
659 /* Returns the set of ofputil_protocols that are supported with the given
660 * OpenFlow 'version'. 'version' should normally be an 8-bit OpenFlow version
661 * identifier (e.g. 0x01 for OpenFlow 1.0, 0x02 for OpenFlow 1.1). Returns 0
662 * if 'version' is not supported or outside the valid range. */
663 enum ofputil_protocol
664 ofputil_protocols_from_ofp_version(enum ofp_version version)
665 {
666 switch (version) {
667 case OFP10_VERSION:
668 return OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY;
669 case OFP11_VERSION:
670 return OFPUTIL_P_OF11_STD;
671 case OFP12_VERSION:
672 return OFPUTIL_P_OF12_OXM;
673 case OFP13_VERSION:
674 return OFPUTIL_P_OF13_OXM;
675 default:
676 return 0;
677 }
678 }
679
680 /* Returns the ofputil_protocol that is initially in effect on an OpenFlow
681 * connection that has negotiated the given 'version'. 'version' should
682 * normally be an 8-bit OpenFlow version identifier (e.g. 0x01 for OpenFlow
683 * 1.0, 0x02 for OpenFlow 1.1). Returns 0 if 'version' is not supported or
684 * outside the valid range. */
685 enum ofputil_protocol
686 ofputil_protocol_from_ofp_version(enum ofp_version version)
687 {
688 return rightmost_1bit(ofputil_protocols_from_ofp_version(version));
689 }
690
691 /* Returns the OpenFlow protocol version number (e.g. OFP10_VERSION,
692 * etc.) that corresponds to 'protocol'. */
693 enum ofp_version
694 ofputil_protocol_to_ofp_version(enum ofputil_protocol protocol)
695 {
696 switch (protocol) {
697 case OFPUTIL_P_OF10_STD:
698 case OFPUTIL_P_OF10_STD_TID:
699 case OFPUTIL_P_OF10_NXM:
700 case OFPUTIL_P_OF10_NXM_TID:
701 return OFP10_VERSION;
702 case OFPUTIL_P_OF11_STD:
703 return OFP11_VERSION;
704 case OFPUTIL_P_OF12_OXM:
705 return OFP12_VERSION;
706 case OFPUTIL_P_OF13_OXM:
707 return OFP13_VERSION;
708 }
709
710 NOT_REACHED();
711 }
712
713 /* Returns a bitmap of OpenFlow versions that are supported by at
714 * least one of the 'protocols'. */
715 uint32_t
716 ofputil_protocols_to_version_bitmap(enum ofputil_protocol protocols)
717 {
718 uint32_t bitmap = 0;
719
720 for (; protocols; protocols = zero_rightmost_1bit(protocols)) {
721 enum ofputil_protocol protocol = rightmost_1bit(protocols);
722
723 bitmap |= 1u << ofputil_protocol_to_ofp_version(protocol);
724 }
725
726 return bitmap;
727 }
728
729 /* Returns the set of protocols that are supported on top of the
730 * OpenFlow versions included in 'bitmap'. */
731 enum ofputil_protocol
732 ofputil_protocols_from_version_bitmap(uint32_t bitmap)
733 {
734 enum ofputil_protocol protocols = 0;
735
736 for (; bitmap; bitmap = zero_rightmost_1bit(bitmap)) {
737 enum ofp_version version = rightmost_1bit_idx(bitmap);
738
739 protocols |= ofputil_protocols_from_ofp_version(version);
740 }
741
742 return protocols;
743 }
744
745 /* Returns true if 'protocol' is a single OFPUTIL_P_* value, false
746 * otherwise. */
747 bool
748 ofputil_protocol_is_valid(enum ofputil_protocol protocol)
749 {
750 return protocol & OFPUTIL_P_ANY && is_pow2(protocol);
751 }
752
753 /* Returns the equivalent of 'protocol' with the Nicira flow_mod_table_id
754 * extension turned on or off if 'enable' is true or false, respectively.
755 *
756 * This extension is only useful for protocols whose "standard" version does
757 * not allow specific tables to be modified. In particular, this is true of
758 * OpenFlow 1.0. In later versions of OpenFlow, a flow_mod request always
759 * specifies a table ID and so there is no need for such an extension. When
760 * 'protocol' is such a protocol that doesn't need a flow_mod_table_id
761 * extension, this function just returns its 'protocol' argument unchanged
762 * regardless of the value of 'enable'. */
763 enum ofputil_protocol
764 ofputil_protocol_set_tid(enum ofputil_protocol protocol, bool enable)
765 {
766 switch (protocol) {
767 case OFPUTIL_P_OF10_STD:
768 case OFPUTIL_P_OF10_STD_TID:
769 return enable ? OFPUTIL_P_OF10_STD_TID : OFPUTIL_P_OF10_STD;
770
771 case OFPUTIL_P_OF10_NXM:
772 case OFPUTIL_P_OF10_NXM_TID:
773 return enable ? OFPUTIL_P_OF10_NXM_TID : OFPUTIL_P_OF10_NXM;
774
775 case OFPUTIL_P_OF11_STD:
776 return OFPUTIL_P_OF11_STD;
777
778 case OFPUTIL_P_OF12_OXM:
779 return OFPUTIL_P_OF12_OXM;
780
781 case OFPUTIL_P_OF13_OXM:
782 return OFPUTIL_P_OF13_OXM;
783
784 default:
785 NOT_REACHED();
786 }
787 }
788
789 /* Returns the "base" version of 'protocol'. That is, if 'protocol' includes
790 * some extension to a standard protocol version, the return value is the
791 * standard version of that protocol without any extension. If 'protocol' is a
792 * standard protocol version, returns 'protocol' unchanged. */
793 enum ofputil_protocol
794 ofputil_protocol_to_base(enum ofputil_protocol protocol)
795 {
796 return ofputil_protocol_set_tid(protocol, false);
797 }
798
799 /* Returns 'new_base' with any extensions taken from 'cur'. */
800 enum ofputil_protocol
801 ofputil_protocol_set_base(enum ofputil_protocol cur,
802 enum ofputil_protocol new_base)
803 {
804 bool tid = (cur & OFPUTIL_P_TID) != 0;
805
806 switch (new_base) {
807 case OFPUTIL_P_OF10_STD:
808 case OFPUTIL_P_OF10_STD_TID:
809 return ofputil_protocol_set_tid(OFPUTIL_P_OF10_STD, tid);
810
811 case OFPUTIL_P_OF10_NXM:
812 case OFPUTIL_P_OF10_NXM_TID:
813 return ofputil_protocol_set_tid(OFPUTIL_P_OF10_NXM, tid);
814
815 case OFPUTIL_P_OF11_STD:
816 return ofputil_protocol_set_tid(OFPUTIL_P_OF11_STD, tid);
817
818 case OFPUTIL_P_OF12_OXM:
819 return ofputil_protocol_set_tid(OFPUTIL_P_OF12_OXM, tid);
820
821 case OFPUTIL_P_OF13_OXM:
822 return ofputil_protocol_set_tid(OFPUTIL_P_OF13_OXM, tid);
823
824 default:
825 NOT_REACHED();
826 }
827 }
828
829 /* Returns a string form of 'protocol', if a simple form exists (that is, if
830 * 'protocol' is either a single protocol or it is a combination of protocols
831 * that have a single abbreviation). Otherwise, returns NULL. */
832 const char *
833 ofputil_protocol_to_string(enum ofputil_protocol protocol)
834 {
835 const struct proto_abbrev *p;
836
837 /* Use a "switch" statement for single-bit names so that we get a compiler
838 * warning if we forget any. */
839 switch (protocol) {
840 case OFPUTIL_P_OF10_NXM:
841 return "NXM-table_id";
842
843 case OFPUTIL_P_OF10_NXM_TID:
844 return "NXM+table_id";
845
846 case OFPUTIL_P_OF10_STD:
847 return "OpenFlow10-table_id";
848
849 case OFPUTIL_P_OF10_STD_TID:
850 return "OpenFlow10+table_id";
851
852 case OFPUTIL_P_OF11_STD:
853 return "OpenFlow11";
854
855 case OFPUTIL_P_OF12_OXM:
856 return "OXM-OpenFlow12";
857
858 case OFPUTIL_P_OF13_OXM:
859 return "OXM-OpenFlow13";
860 }
861
862 /* Check abbreviations. */
863 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
864 if (protocol == p->protocol) {
865 return p->name;
866 }
867 }
868
869 return NULL;
870 }
871
872 /* Returns a string that represents 'protocols'. The return value might be a
873 * comma-separated list if 'protocols' doesn't have a simple name. The return
874 * value is "none" if 'protocols' is 0.
875 *
876 * The caller must free the returned string (with free()). */
877 char *
878 ofputil_protocols_to_string(enum ofputil_protocol protocols)
879 {
880 struct ds s;
881
882 ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
883 if (protocols == 0) {
884 return xstrdup("none");
885 }
886
887 ds_init(&s);
888 while (protocols) {
889 const struct proto_abbrev *p;
890 int i;
891
892 if (s.length) {
893 ds_put_char(&s, ',');
894 }
895
896 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
897 if ((protocols & p->protocol) == p->protocol) {
898 ds_put_cstr(&s, p->name);
899 protocols &= ~p->protocol;
900 goto match;
901 }
902 }
903
904 for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
905 enum ofputil_protocol bit = 1u << i;
906
907 if (protocols & bit) {
908 ds_put_cstr(&s, ofputil_protocol_to_string(bit));
909 protocols &= ~bit;
910 goto match;
911 }
912 }
913 NOT_REACHED();
914
915 match: ;
916 }
917 return ds_steal_cstr(&s);
918 }
919
920 static enum ofputil_protocol
921 ofputil_protocol_from_string__(const char *s, size_t n)
922 {
923 const struct proto_abbrev *p;
924 int i;
925
926 for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
927 enum ofputil_protocol bit = 1u << i;
928 const char *name = ofputil_protocol_to_string(bit);
929
930 if (name && n == strlen(name) && !strncasecmp(s, name, n)) {
931 return bit;
932 }
933 }
934
935 for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
936 if (n == strlen(p->name) && !strncasecmp(s, p->name, n)) {
937 return p->protocol;
938 }
939 }
940
941 return 0;
942 }
943
944 /* Returns the nonempty set of protocols represented by 's', which can be a
945 * single protocol name or abbreviation or a comma-separated list of them.
946 *
947 * Aborts the program with an error message if 's' is invalid. */
948 enum ofputil_protocol
949 ofputil_protocols_from_string(const char *s)
950 {
951 const char *orig_s = s;
952 enum ofputil_protocol protocols;
953
954 protocols = 0;
955 while (*s) {
956 enum ofputil_protocol p;
957 size_t n;
958
959 n = strcspn(s, ",");
960 if (n == 0) {
961 s++;
962 continue;
963 }
964
965 p = ofputil_protocol_from_string__(s, n);
966 if (!p) {
967 ovs_fatal(0, "%.*s: unknown flow protocol", (int) n, s);
968 }
969 protocols |= p;
970
971 s += n;
972 }
973
974 if (!protocols) {
975 ovs_fatal(0, "%s: no flow protocol specified", orig_s);
976 }
977 return protocols;
978 }
979
980 static int
981 ofputil_version_from_string(const char *s)
982 {
983 if (!strcasecmp(s, "OpenFlow10")) {
984 return OFP10_VERSION;
985 }
986 if (!strcasecmp(s, "OpenFlow11")) {
987 return OFP11_VERSION;
988 }
989 if (!strcasecmp(s, "OpenFlow12")) {
990 return OFP12_VERSION;
991 }
992 if (!strcasecmp(s, "OpenFlow13")) {
993 return OFP13_VERSION;
994 }
995 return 0;
996 }
997
998 static bool
999 is_delimiter(unsigned char c)
1000 {
1001 return isspace(c) || c == ',';
1002 }
1003
1004 uint32_t
1005 ofputil_versions_from_string(const char *s)
1006 {
1007 size_t i = 0;
1008 uint32_t bitmap = 0;
1009
1010 while (s[i]) {
1011 size_t j;
1012 int version;
1013 char *key;
1014
1015 if (is_delimiter(s[i])) {
1016 i++;
1017 continue;
1018 }
1019 j = 0;
1020 while (s[i + j] && !is_delimiter(s[i + j])) {
1021 j++;
1022 }
1023 key = xmemdup0(s + i, j);
1024 version = ofputil_version_from_string(key);
1025 if (!version) {
1026 VLOG_FATAL("Unknown OpenFlow version: \"%s\"", key);
1027 }
1028 free(key);
1029 bitmap |= 1u << version;
1030 i += j;
1031 }
1032
1033 return bitmap;
1034 }
1035
1036 uint32_t
1037 ofputil_versions_from_strings(char ** const s, size_t count)
1038 {
1039 uint32_t bitmap = 0;
1040
1041 while (count--) {
1042 int version = ofputil_version_from_string(s[count]);
1043 if (!version) {
1044 VLOG_WARN("Unknown OpenFlow version: \"%s\"", s[count]);
1045 } else {
1046 bitmap |= 1u << version;
1047 }
1048 }
1049
1050 return bitmap;
1051 }
1052
1053 const char *
1054 ofputil_version_to_string(enum ofp_version ofp_version)
1055 {
1056 switch (ofp_version) {
1057 case OFP10_VERSION:
1058 return "OpenFlow10";
1059 case OFP11_VERSION:
1060 return "OpenFlow11";
1061 case OFP12_VERSION:
1062 return "OpenFlow12";
1063 case OFP13_VERSION:
1064 return "OpenFlow13";
1065 default:
1066 NOT_REACHED();
1067 }
1068 }
1069
1070 bool
1071 ofputil_packet_in_format_is_valid(enum nx_packet_in_format packet_in_format)
1072 {
1073 switch (packet_in_format) {
1074 case NXPIF_OPENFLOW10:
1075 case NXPIF_NXM:
1076 return true;
1077 }
1078
1079 return false;
1080 }
1081
1082 const char *
1083 ofputil_packet_in_format_to_string(enum nx_packet_in_format packet_in_format)
1084 {
1085 switch (packet_in_format) {
1086 case NXPIF_OPENFLOW10:
1087 return "openflow10";
1088 case NXPIF_NXM:
1089 return "nxm";
1090 default:
1091 NOT_REACHED();
1092 }
1093 }
1094
1095 int
1096 ofputil_packet_in_format_from_string(const char *s)
1097 {
1098 return (!strcmp(s, "openflow10") ? NXPIF_OPENFLOW10
1099 : !strcmp(s, "nxm") ? NXPIF_NXM
1100 : -1);
1101 }
1102
1103 void
1104 ofputil_format_version(struct ds *msg, enum ofp_version version)
1105 {
1106 ds_put_format(msg, "0x%02x", version);
1107 }
1108
1109 void
1110 ofputil_format_version_name(struct ds *msg, enum ofp_version version)
1111 {
1112 ds_put_cstr(msg, ofputil_version_to_string(version));
1113 }
1114
1115 static void
1116 ofputil_format_version_bitmap__(struct ds *msg, uint32_t bitmap,
1117 void (*format_version)(struct ds *msg,
1118 enum ofp_version))
1119 {
1120 while (bitmap) {
1121 format_version(msg, raw_ctz(bitmap));
1122 bitmap = zero_rightmost_1bit(bitmap);
1123 if (bitmap) {
1124 ds_put_cstr(msg, ", ");
1125 }
1126 }
1127 }
1128
1129 void
1130 ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap)
1131 {
1132 ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version);
1133 }
1134
1135 void
1136 ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap)
1137 {
1138 ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version_name);
1139 }
1140
1141 static bool
1142 ofputil_decode_hello_bitmap(const struct ofp_hello_elem_header *oheh,
1143 uint32_t *allowed_versionsp)
1144 {
1145 uint16_t bitmap_len = ntohs(oheh->length) - sizeof *oheh;
1146 const ovs_be32 *bitmap = ALIGNED_CAST(const ovs_be32 *, oheh + 1);
1147 uint32_t allowed_versions;
1148
1149 if (!bitmap_len || bitmap_len % sizeof *bitmap) {
1150 return false;
1151 }
1152
1153 /* Only use the first 32-bit element of the bitmap as that is all the
1154 * current implementation supports. Subsequent elements are ignored which
1155 * should have no effect on session negotiation until Open vSwtich supports
1156 * wire-protocol versions greater than 31.
1157 */
1158 allowed_versions = ntohl(bitmap[0]);
1159
1160 if (allowed_versions & 1) {
1161 /* There's no OpenFlow version 0. */
1162 VLOG_WARN_RL(&bad_ofmsg_rl, "peer claims to support invalid OpenFlow "
1163 "version 0x00");
1164 allowed_versions &= ~1u;
1165 }
1166
1167 if (!allowed_versions) {
1168 VLOG_WARN_RL(&bad_ofmsg_rl, "peer does not support any OpenFlow "
1169 "version (between 0x01 and 0x1f)");
1170 return false;
1171 }
1172
1173 *allowed_versionsp = allowed_versions;
1174 return true;
1175 }
1176
1177 static uint32_t
1178 version_bitmap_from_version(uint8_t ofp_version)
1179 {
1180 return ((ofp_version < 32 ? 1u << ofp_version : 0) - 1) << 1;
1181 }
1182
1183 /* Decodes OpenFlow OFPT_HELLO message 'oh', storing into '*allowed_versions'
1184 * the set of OpenFlow versions for which 'oh' announces support.
1185 *
1186 * Because of how OpenFlow defines OFPT_HELLO messages, this function is always
1187 * successful, and thus '*allowed_versions' is always initialized. However, it
1188 * returns false if 'oh' contains some data that could not be fully understood,
1189 * true if 'oh' was completely parsed. */
1190 bool
1191 ofputil_decode_hello(const struct ofp_header *oh, uint32_t *allowed_versions)
1192 {
1193 struct ofpbuf msg;
1194 bool ok = true;
1195
1196 ofpbuf_use_const(&msg, oh, ntohs(oh->length));
1197 ofpbuf_pull(&msg, sizeof *oh);
1198
1199 *allowed_versions = version_bitmap_from_version(oh->version);
1200 while (msg.size) {
1201 const struct ofp_hello_elem_header *oheh;
1202 unsigned int len;
1203
1204 if (msg.size < sizeof *oheh) {
1205 return false;
1206 }
1207
1208 oheh = msg.data;
1209 len = ntohs(oheh->length);
1210 if (len < sizeof *oheh || !ofpbuf_try_pull(&msg, ROUND_UP(len, 8))) {
1211 return false;
1212 }
1213
1214 if (oheh->type != htons(OFPHET_VERSIONBITMAP)
1215 || !ofputil_decode_hello_bitmap(oheh, allowed_versions)) {
1216 ok = false;
1217 }
1218 }
1219
1220 return ok;
1221 }
1222
1223 /* Returns true if 'allowed_versions' needs to be accompanied by a version
1224 * bitmap to be correctly expressed in an OFPT_HELLO message. */
1225 static bool
1226 should_send_version_bitmap(uint32_t allowed_versions)
1227 {
1228 return !is_pow2((allowed_versions >> 1) + 1);
1229 }
1230
1231 /* Create an OFPT_HELLO message that expresses support for the OpenFlow
1232 * versions in the 'allowed_versions' bitmaps and returns the message. */
1233 struct ofpbuf *
1234 ofputil_encode_hello(uint32_t allowed_versions)
1235 {
1236 enum ofp_version ofp_version;
1237 struct ofpbuf *msg;
1238
1239 ofp_version = leftmost_1bit_idx(allowed_versions);
1240 msg = ofpraw_alloc(OFPRAW_OFPT_HELLO, ofp_version, 0);
1241
1242 if (should_send_version_bitmap(allowed_versions)) {
1243 struct ofp_hello_elem_header *oheh;
1244 uint16_t map_len;
1245
1246 map_len = sizeof allowed_versions;
1247 oheh = ofpbuf_put_zeros(msg, ROUND_UP(map_len + sizeof *oheh, 8));
1248 oheh->type = htons(OFPHET_VERSIONBITMAP);
1249 oheh->length = htons(map_len + sizeof *oheh);
1250 *ALIGNED_CAST(ovs_be32 *, oheh + 1) = htonl(allowed_versions);
1251
1252 ofpmsg_update_length(msg);
1253 }
1254
1255 return msg;
1256 }
1257
1258 /* Returns an OpenFlow message that, sent on an OpenFlow connection whose
1259 * protocol is 'current', at least partly transitions the protocol to 'want'.
1260 * Stores in '*next' the protocol that will be in effect on the OpenFlow
1261 * connection if the switch processes the returned message correctly. (If
1262 * '*next != want' then the caller will have to iterate.)
1263 *
1264 * If 'current == want', or if it is not possible to transition from 'current'
1265 * to 'want' (because, for example, 'current' and 'want' use different OpenFlow
1266 * protocol versions), returns NULL and stores 'current' in '*next'. */
1267 struct ofpbuf *
1268 ofputil_encode_set_protocol(enum ofputil_protocol current,
1269 enum ofputil_protocol want,
1270 enum ofputil_protocol *next)
1271 {
1272 enum ofp_version cur_version, want_version;
1273 enum ofputil_protocol cur_base, want_base;
1274 bool cur_tid, want_tid;
1275
1276 cur_version = ofputil_protocol_to_ofp_version(current);
1277 want_version = ofputil_protocol_to_ofp_version(want);
1278 if (cur_version != want_version) {
1279 *next = current;
1280 return NULL;
1281 }
1282
1283 cur_base = ofputil_protocol_to_base(current);
1284 want_base = ofputil_protocol_to_base(want);
1285 if (cur_base != want_base) {
1286 *next = ofputil_protocol_set_base(current, want_base);
1287
1288 switch (want_base) {
1289 case OFPUTIL_P_OF10_NXM:
1290 return ofputil_encode_nx_set_flow_format(NXFF_NXM);
1291
1292 case OFPUTIL_P_OF10_STD:
1293 return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW10);
1294
1295 case OFPUTIL_P_OF11_STD:
1296 case OFPUTIL_P_OF12_OXM:
1297 case OFPUTIL_P_OF13_OXM:
1298 /* There is only one variant of each OpenFlow 1.1+ protocol, and we
1299 * verified above that we're not trying to change versions. */
1300 NOT_REACHED();
1301
1302 case OFPUTIL_P_OF10_STD_TID:
1303 case OFPUTIL_P_OF10_NXM_TID:
1304 NOT_REACHED();
1305 }
1306 }
1307
1308 cur_tid = (current & OFPUTIL_P_TID) != 0;
1309 want_tid = (want & OFPUTIL_P_TID) != 0;
1310 if (cur_tid != want_tid) {
1311 *next = ofputil_protocol_set_tid(current, want_tid);
1312 return ofputil_make_flow_mod_table_id(want_tid);
1313 }
1314
1315 ovs_assert(current == want);
1316
1317 *next = current;
1318 return NULL;
1319 }
1320
1321 /* Returns an NXT_SET_FLOW_FORMAT message that can be used to set the flow
1322 * format to 'nxff'. */
1323 struct ofpbuf *
1324 ofputil_encode_nx_set_flow_format(enum nx_flow_format nxff)
1325 {
1326 struct nx_set_flow_format *sff;
1327 struct ofpbuf *msg;
1328
1329 ovs_assert(ofputil_nx_flow_format_is_valid(nxff));
1330
1331 msg = ofpraw_alloc(OFPRAW_NXT_SET_FLOW_FORMAT, OFP10_VERSION, 0);
1332 sff = ofpbuf_put_zeros(msg, sizeof *sff);
1333 sff->format = htonl(nxff);
1334
1335 return msg;
1336 }
1337
1338 /* Returns the base protocol if 'flow_format' is a valid NXFF_* value, false
1339 * otherwise. */
1340 enum ofputil_protocol
1341 ofputil_nx_flow_format_to_protocol(enum nx_flow_format flow_format)
1342 {
1343 switch (flow_format) {
1344 case NXFF_OPENFLOW10:
1345 return OFPUTIL_P_OF10_STD;
1346
1347 case NXFF_NXM:
1348 return OFPUTIL_P_OF10_NXM;
1349
1350 default:
1351 return 0;
1352 }
1353 }
1354
1355 /* Returns true if 'flow_format' is a valid NXFF_* value, false otherwise. */
1356 bool
1357 ofputil_nx_flow_format_is_valid(enum nx_flow_format flow_format)
1358 {
1359 return ofputil_nx_flow_format_to_protocol(flow_format) != 0;
1360 }
1361
1362 /* Returns a string version of 'flow_format', which must be a valid NXFF_*
1363 * value. */
1364 const char *
1365 ofputil_nx_flow_format_to_string(enum nx_flow_format flow_format)
1366 {
1367 switch (flow_format) {
1368 case NXFF_OPENFLOW10:
1369 return "openflow10";
1370 case NXFF_NXM:
1371 return "nxm";
1372 default:
1373 NOT_REACHED();
1374 }
1375 }
1376
1377 struct ofpbuf *
1378 ofputil_make_set_packet_in_format(enum ofp_version ofp_version,
1379 enum nx_packet_in_format packet_in_format)
1380 {
1381 struct nx_set_packet_in_format *spif;
1382 struct ofpbuf *msg;
1383
1384 msg = ofpraw_alloc(OFPRAW_NXT_SET_PACKET_IN_FORMAT, ofp_version, 0);
1385 spif = ofpbuf_put_zeros(msg, sizeof *spif);
1386 spif->format = htonl(packet_in_format);
1387
1388 return msg;
1389 }
1390
1391 /* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
1392 * extension on or off (according to 'flow_mod_table_id'). */
1393 struct ofpbuf *
1394 ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
1395 {
1396 struct nx_flow_mod_table_id *nfmti;
1397 struct ofpbuf *msg;
1398
1399 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD_TABLE_ID, OFP10_VERSION, 0);
1400 nfmti = ofpbuf_put_zeros(msg, sizeof *nfmti);
1401 nfmti->set = flow_mod_table_id;
1402 return msg;
1403 }
1404
1405 struct ofputil_flow_mod_flag {
1406 uint16_t raw_flag;
1407 enum ofp_version min_version, max_version;
1408 enum ofputil_flow_mod_flags flag;
1409 };
1410
1411 static const struct ofputil_flow_mod_flag ofputil_flow_mod_flags[] = {
1412 { OFPFF_SEND_FLOW_REM, OFP10_VERSION, 0, OFPUTIL_FF_SEND_FLOW_REM },
1413 { OFPFF_CHECK_OVERLAP, OFP10_VERSION, 0, OFPUTIL_FF_CHECK_OVERLAP },
1414 { OFPFF10_EMERG, OFP10_VERSION, OFP10_VERSION,
1415 OFPUTIL_FF_EMERG },
1416 { OFPFF12_RESET_COUNTS, OFP12_VERSION, 0, OFPUTIL_FF_RESET_COUNTS },
1417 { OFPFF13_NO_PKT_COUNTS, OFP13_VERSION, 0, OFPUTIL_FF_NO_PKT_COUNTS },
1418 { OFPFF13_NO_BYT_COUNTS, OFP13_VERSION, 0, OFPUTIL_FF_NO_BYT_COUNTS },
1419 { 0, 0, 0, 0 },
1420 };
1421
1422 static enum ofperr
1423 ofputil_decode_flow_mod_flags(ovs_be16 raw_flags_,
1424 enum ofp_flow_mod_command command,
1425 enum ofp_version version,
1426 enum ofputil_flow_mod_flags *flagsp)
1427 {
1428 uint16_t raw_flags = ntohs(raw_flags_);
1429 const struct ofputil_flow_mod_flag *f;
1430
1431 *flagsp = 0;
1432 for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
1433 if (raw_flags & f->raw_flag
1434 && version >= f->min_version
1435 && (!f->max_version || version <= f->max_version)) {
1436 raw_flags &= ~f->raw_flag;
1437 *flagsp |= f->flag;
1438 }
1439 }
1440
1441 /* In OF1.0 and OF1.1, "add" always resets counters, and other commands
1442 * never do.
1443 *
1444 * In OF1.2 and later, OFPFF12_RESET_COUNTS controls whether each command
1445 * resets counters. */
1446 if ((version == OFP10_VERSION || version == OFP11_VERSION)
1447 && command == OFPFC_ADD) {
1448 *flagsp |= OFPUTIL_FF_RESET_COUNTS;
1449 }
1450
1451 return raw_flags ? OFPERR_OFPFMFC_BAD_FLAGS : 0;
1452 }
1453
1454 static ovs_be16
1455 ofputil_encode_flow_mod_flags(enum ofputil_flow_mod_flags flags,
1456 enum ofp_version version)
1457 {
1458 const struct ofputil_flow_mod_flag *f;
1459 uint16_t raw_flags;
1460
1461 raw_flags = 0;
1462 for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
1463 if (f->flag & flags
1464 && version >= f->min_version
1465 && (!f->max_version || version <= f->max_version)) {
1466 raw_flags |= f->raw_flag;
1467 }
1468 }
1469
1470 return htons(raw_flags);
1471 }
1472
1473 /* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
1474 * flow_mod in 'fm'. Returns 0 if successful, otherwise an OpenFlow error
1475 * code.
1476 *
1477 * Uses 'ofpacts' to store the abstract OFPACT_* version of 'oh''s actions.
1478 * The caller must initialize 'ofpacts' and retains ownership of it.
1479 * 'fm->ofpacts' will point into the 'ofpacts' buffer.
1480 *
1481 * Does not validate the flow_mod actions. The caller should do that, with
1482 * ofpacts_check(). */
1483 enum ofperr
1484 ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
1485 const struct ofp_header *oh,
1486 enum ofputil_protocol protocol,
1487 struct ofpbuf *ofpacts)
1488 {
1489 ovs_be16 raw_flags;
1490 enum ofperr error;
1491 struct ofpbuf b;
1492 enum ofpraw raw;
1493
1494 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1495 raw = ofpraw_pull_assert(&b);
1496 if (raw == OFPRAW_OFPT11_FLOW_MOD) {
1497 /* Standard OpenFlow 1.1+ flow_mod. */
1498 const struct ofp11_flow_mod *ofm;
1499
1500 ofm = ofpbuf_pull(&b, sizeof *ofm);
1501
1502 error = ofputil_pull_ofp11_match(&b, &fm->match, NULL);
1503 if (error) {
1504 return error;
1505 }
1506
1507 error = ofpacts_pull_openflow11_instructions(&b, oh->version,
1508 b.size, ofpacts);
1509 if (error) {
1510 return error;
1511 }
1512
1513 /* Translate the message. */
1514 fm->priority = ntohs(ofm->priority);
1515 if (ofm->command == OFPFC_ADD
1516 || (oh->version == OFP11_VERSION
1517 && (ofm->command == OFPFC_MODIFY ||
1518 ofm->command == OFPFC_MODIFY_STRICT)
1519 && ofm->cookie_mask == htonll(0))) {
1520 /* In OpenFlow 1.1 only, a "modify" or "modify-strict" that does
1521 * not match on the cookie is treated as an "add" if there is no
1522 * match. */
1523 fm->cookie = htonll(0);
1524 fm->cookie_mask = htonll(0);
1525 fm->new_cookie = ofm->cookie;
1526 } else {
1527 fm->cookie = ofm->cookie;
1528 fm->cookie_mask = ofm->cookie_mask;
1529 fm->new_cookie = OVS_BE64_MAX;
1530 }
1531 fm->modify_cookie = false;
1532 fm->command = ofm->command;
1533 fm->table_id = ofm->table_id;
1534 fm->idle_timeout = ntohs(ofm->idle_timeout);
1535 fm->hard_timeout = ntohs(ofm->hard_timeout);
1536 fm->buffer_id = ntohl(ofm->buffer_id);
1537 error = ofputil_port_from_ofp11(ofm->out_port, &fm->out_port);
1538 if (error) {
1539 return error;
1540 }
1541 fm->out_group = ntohl(ofm->out_group);
1542
1543 if ((ofm->command == OFPFC_DELETE
1544 || ofm->command == OFPFC_DELETE_STRICT)
1545 && ofm->out_group != htonl(OFPG_ANY)) {
1546 return OFPERR_OFPFMFC_UNKNOWN;
1547 }
1548 raw_flags = ofm->flags;
1549 } else {
1550 uint16_t command;
1551
1552 if (raw == OFPRAW_OFPT10_FLOW_MOD) {
1553 /* Standard OpenFlow 1.0 flow_mod. */
1554 const struct ofp10_flow_mod *ofm;
1555
1556 /* Get the ofp10_flow_mod. */
1557 ofm = ofpbuf_pull(&b, sizeof *ofm);
1558
1559 /* Translate the rule. */
1560 ofputil_match_from_ofp10_match(&ofm->match, &fm->match);
1561 ofputil_normalize_match(&fm->match);
1562
1563 /* Now get the actions. */
1564 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1565 if (error) {
1566 return error;
1567 }
1568
1569 /* OpenFlow 1.0 says that exact-match rules have to have the
1570 * highest possible priority. */
1571 fm->priority = (ofm->match.wildcards & htonl(OFPFW10_ALL)
1572 ? ntohs(ofm->priority)
1573 : UINT16_MAX);
1574
1575 /* Translate the message. */
1576 command = ntohs(ofm->command);
1577 fm->cookie = htonll(0);
1578 fm->cookie_mask = htonll(0);
1579 fm->new_cookie = ofm->cookie;
1580 fm->idle_timeout = ntohs(ofm->idle_timeout);
1581 fm->hard_timeout = ntohs(ofm->hard_timeout);
1582 fm->buffer_id = ntohl(ofm->buffer_id);
1583 fm->out_port = u16_to_ofp(ntohs(ofm->out_port));
1584 fm->out_group = OFPG11_ANY;
1585 raw_flags = ofm->flags;
1586 } else if (raw == OFPRAW_NXT_FLOW_MOD) {
1587 /* Nicira extended flow_mod. */
1588 const struct nx_flow_mod *nfm;
1589
1590 /* Dissect the message. */
1591 nfm = ofpbuf_pull(&b, sizeof *nfm);
1592 error = nx_pull_match(&b, ntohs(nfm->match_len),
1593 &fm->match, &fm->cookie, &fm->cookie_mask);
1594 if (error) {
1595 return error;
1596 }
1597 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1598 if (error) {
1599 return error;
1600 }
1601
1602 /* Translate the message. */
1603 command = ntohs(nfm->command);
1604 if ((command & 0xff) == OFPFC_ADD && fm->cookie_mask) {
1605 /* Flow additions may only set a new cookie, not match an
1606 * existing cookie. */
1607 return OFPERR_NXBRC_NXM_INVALID;
1608 }
1609 fm->priority = ntohs(nfm->priority);
1610 fm->new_cookie = nfm->cookie;
1611 fm->idle_timeout = ntohs(nfm->idle_timeout);
1612 fm->hard_timeout = ntohs(nfm->hard_timeout);
1613 fm->buffer_id = ntohl(nfm->buffer_id);
1614 fm->out_port = u16_to_ofp(ntohs(nfm->out_port));
1615 fm->out_group = OFPG11_ANY;
1616 raw_flags = nfm->flags;
1617 } else {
1618 NOT_REACHED();
1619 }
1620
1621 fm->modify_cookie = fm->new_cookie != OVS_BE64_MAX;
1622 if (protocol & OFPUTIL_P_TID) {
1623 fm->command = command & 0xff;
1624 fm->table_id = command >> 8;
1625 } else {
1626 fm->command = command;
1627 fm->table_id = 0xff;
1628 }
1629 }
1630
1631 fm->ofpacts = ofpacts->data;
1632 fm->ofpacts_len = ofpacts->size;
1633
1634 error = ofputil_decode_flow_mod_flags(raw_flags, fm->command,
1635 oh->version, &fm->flags);
1636 if (error) {
1637 return error;
1638 }
1639
1640 if (fm->flags & OFPUTIL_FF_EMERG) {
1641 /* We do not support the OpenFlow 1.0 emergency flow cache, which
1642 * is not required in OpenFlow 1.0.1 and removed from OpenFlow 1.1.
1643 *
1644 * OpenFlow 1.0 specifies the error code to use when idle_timeout
1645 * or hard_timeout is nonzero. Otherwise, there is no good error
1646 * code, so just state that the flow table is full. */
1647 return (fm->hard_timeout || fm->idle_timeout
1648 ? OFPERR_OFPFMFC_BAD_EMERG_TIMEOUT
1649 : OFPERR_OFPFMFC_TABLE_FULL);
1650 }
1651
1652 return 0;
1653 }
1654
1655 static enum ofperr
1656 ofputil_pull_bands(struct ofpbuf *msg, size_t len, uint16_t *n_bands,
1657 struct ofpbuf *bands)
1658 {
1659 const struct ofp13_meter_band_header *ombh;
1660 struct ofputil_meter_band *mb;
1661 uint16_t n = 0;
1662
1663 ombh = ofpbuf_try_pull(msg, len);
1664 if (!ombh) {
1665 return OFPERR_OFPBRC_BAD_LEN;
1666 }
1667
1668 while (len >= sizeof (struct ofp13_meter_band_drop)) {
1669 size_t ombh_len = ntohs(ombh->len);
1670 /* All supported band types have the same length. */
1671 if (ombh_len != sizeof (struct ofp13_meter_band_drop)) {
1672 return OFPERR_OFPBRC_BAD_LEN;
1673 }
1674 mb = ofpbuf_put_uninit(bands, sizeof *mb);
1675 mb->type = ntohs(ombh->type);
1676 mb->rate = ntohl(ombh->rate);
1677 mb->burst_size = ntohl(ombh->burst_size);
1678 mb->prec_level = (mb->type == OFPMBT13_DSCP_REMARK) ?
1679 ((struct ofp13_meter_band_dscp_remark *)ombh)->prec_level : 0;
1680 n++;
1681 len -= ombh_len;
1682 ombh = ALIGNED_CAST(struct ofp13_meter_band_header *,
1683 (char *) ombh + ombh_len);
1684 }
1685 if (len) {
1686 return OFPERR_OFPBRC_BAD_LEN;
1687 }
1688 *n_bands = n;
1689 return 0;
1690 }
1691
1692 enum ofperr
1693 ofputil_decode_meter_mod(const struct ofp_header *oh,
1694 struct ofputil_meter_mod *mm,
1695 struct ofpbuf *bands)
1696 {
1697 const struct ofp13_meter_mod *omm;
1698 struct ofpbuf b;
1699
1700 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1701 ofpraw_pull_assert(&b);
1702 omm = ofpbuf_pull(&b, sizeof *omm);
1703
1704 /* Translate the message. */
1705 mm->command = ntohs(omm->command);
1706 mm->meter.meter_id = ntohl(omm->meter_id);
1707
1708 if (mm->command == OFPMC13_DELETE) {
1709 mm->meter.flags = 0;
1710 mm->meter.n_bands = 0;
1711 mm->meter.bands = NULL;
1712 } else {
1713 enum ofperr error;
1714
1715 mm->meter.flags = ntohs(omm->flags);
1716 mm->meter.bands = bands->data;
1717
1718 error = ofputil_pull_bands(&b, b.size, &mm->meter.n_bands, bands);
1719 if (error) {
1720 return error;
1721 }
1722 }
1723 return 0;
1724 }
1725
1726 void
1727 ofputil_decode_meter_request(const struct ofp_header *oh, uint32_t *meter_id)
1728 {
1729 const struct ofp13_meter_multipart_request *omr = ofpmsg_body(oh);
1730 *meter_id = ntohl(omr->meter_id);
1731 }
1732
1733 struct ofpbuf *
1734 ofputil_encode_meter_request(enum ofp_version ofp_version,
1735 enum ofputil_meter_request_type type,
1736 uint32_t meter_id)
1737 {
1738 struct ofpbuf *msg;
1739
1740 enum ofpraw raw;
1741
1742 switch (type) {
1743 case OFPUTIL_METER_CONFIG:
1744 raw = OFPRAW_OFPST13_METER_CONFIG_REQUEST;
1745 break;
1746 case OFPUTIL_METER_STATS:
1747 raw = OFPRAW_OFPST13_METER_REQUEST;
1748 break;
1749 default:
1750 case OFPUTIL_METER_FEATURES:
1751 raw = OFPRAW_OFPST13_METER_FEATURES_REQUEST;
1752 break;
1753 }
1754
1755 msg = ofpraw_alloc(raw, ofp_version, 0);
1756
1757 if (type != OFPUTIL_METER_FEATURES) {
1758 struct ofp13_meter_multipart_request *omr;
1759 omr = ofpbuf_put_zeros(msg, sizeof *omr);
1760 omr->meter_id = htonl(meter_id);
1761 }
1762 return msg;
1763 }
1764
1765 static void
1766 ofputil_put_bands(uint16_t n_bands, const struct ofputil_meter_band *mb,
1767 struct ofpbuf *msg)
1768 {
1769 uint16_t n = 0;
1770
1771 for (n = 0; n < n_bands; ++n) {
1772 /* Currently all band types have same size. */
1773 struct ofp13_meter_band_dscp_remark *ombh;
1774 size_t ombh_len = sizeof *ombh;
1775
1776 ombh = ofpbuf_put_zeros(msg, ombh_len);
1777
1778 ombh->type = htons(mb->type);
1779 ombh->len = htons(ombh_len);
1780 ombh->rate = htonl(mb->rate);
1781 ombh->burst_size = htonl(mb->burst_size);
1782 ombh->prec_level = mb->prec_level;
1783
1784 mb++;
1785 }
1786 }
1787
1788 /* Encode a meter stat for 'mc' and append it to 'replies'. */
1789 void
1790 ofputil_append_meter_config(struct list *replies,
1791 const struct ofputil_meter_config *mc)
1792 {
1793 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
1794 size_t start_ofs = msg->size;
1795 struct ofp13_meter_config *reply = ofpbuf_put_uninit(msg, sizeof *reply);
1796 reply->flags = htons(mc->flags);
1797 reply->meter_id = htonl(mc->meter_id);
1798
1799 ofputil_put_bands(mc->n_bands, mc->bands, msg);
1800
1801 reply->length = htons(msg->size - start_ofs);
1802
1803 ofpmp_postappend(replies, start_ofs);
1804 }
1805
1806 /* Encode a meter stat for 'ms' and append it to 'replies'. */
1807 void
1808 ofputil_append_meter_stats(struct list *replies,
1809 const struct ofputil_meter_stats *ms)
1810 {
1811 struct ofp13_meter_stats *reply;
1812 uint16_t n = 0;
1813 uint16_t len;
1814
1815 len = sizeof *reply + ms->n_bands * sizeof(struct ofp13_meter_band_stats);
1816 reply = ofpmp_append(replies, len);
1817
1818 reply->meter_id = htonl(ms->meter_id);
1819 reply->len = htons(len);
1820 memset(reply->pad, 0, sizeof reply->pad);
1821 reply->flow_count = htonl(ms->flow_count);
1822 reply->packet_in_count = htonll(ms->packet_in_count);
1823 reply->byte_in_count = htonll(ms->byte_in_count);
1824 reply->duration_sec = htonl(ms->duration_sec);
1825 reply->duration_nsec = htonl(ms->duration_nsec);
1826
1827 for (n = 0; n < ms->n_bands; ++n) {
1828 const struct ofputil_meter_band_stats *src = &ms->bands[n];
1829 struct ofp13_meter_band_stats *dst = &reply->band_stats[n];
1830
1831 dst->packet_band_count = htonll(src->packet_count);
1832 dst->byte_band_count = htonll(src->byte_count);
1833 }
1834 }
1835
1836 /* Converts an OFPMP_METER_CONFIG reply in 'msg' into an abstract
1837 * ofputil_meter_config in 'mc', with mc->bands pointing to bands decoded into
1838 * 'bands'. The caller must have initialized 'bands' and retains ownership of
1839 * it across the call.
1840 *
1841 * Multiple OFPST13_METER_CONFIG replies can be packed into a single OpenFlow
1842 * message. Calling this function multiple times for a single 'msg' iterates
1843 * through the replies. 'bands' is cleared for each reply.
1844 *
1845 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1846 * otherwise a positive errno value. */
1847 int
1848 ofputil_decode_meter_config(struct ofpbuf *msg,
1849 struct ofputil_meter_config *mc,
1850 struct ofpbuf *bands)
1851 {
1852 const struct ofp13_meter_config *omc;
1853 enum ofperr err;
1854
1855 /* Pull OpenFlow headers for the first call. */
1856 if (!msg->l2) {
1857 ofpraw_pull_assert(msg);
1858 }
1859
1860 if (!msg->size) {
1861 return EOF;
1862 }
1863
1864 omc = ofpbuf_try_pull(msg, sizeof *omc);
1865 if (!omc) {
1866 VLOG_WARN_RL(&bad_ofmsg_rl,
1867 "OFPMP_METER_CONFIG reply has %zu leftover bytes at end",
1868 msg->size);
1869 return OFPERR_OFPBRC_BAD_LEN;
1870 }
1871
1872 ofpbuf_clear(bands);
1873 err = ofputil_pull_bands(msg, ntohs(omc->length) - sizeof *omc,
1874 &mc->n_bands, bands);
1875 if (err) {
1876 return err;
1877 }
1878 mc->meter_id = ntohl(omc->meter_id);
1879 mc->flags = ntohs(omc->flags);
1880 mc->bands = bands->data;
1881
1882 return 0;
1883 }
1884
1885 static enum ofperr
1886 ofputil_pull_band_stats(struct ofpbuf *msg, size_t len, uint16_t *n_bands,
1887 struct ofpbuf *bands)
1888 {
1889 const struct ofp13_meter_band_stats *ombs;
1890 struct ofputil_meter_band_stats *mbs;
1891 uint16_t n, i;
1892
1893 ombs = ofpbuf_try_pull(msg, len);
1894 if (!ombs) {
1895 return OFPERR_OFPBRC_BAD_LEN;
1896 }
1897
1898 n = len / sizeof *ombs;
1899 if (len != n * sizeof *ombs) {
1900 return OFPERR_OFPBRC_BAD_LEN;
1901 }
1902
1903 mbs = ofpbuf_put_uninit(bands, len);
1904
1905 for (i = 0; i < n; ++i) {
1906 mbs[i].packet_count = ntohll(ombs[i].packet_band_count);
1907 mbs[i].byte_count = ntohll(ombs[i].byte_band_count);
1908 }
1909 *n_bands = n;
1910 return 0;
1911 }
1912
1913 /* Converts an OFPMP_METER reply in 'msg' into an abstract
1914 * ofputil_meter_stats in 'ms', with ms->bands pointing to band stats
1915 * decoded into 'bands'.
1916 *
1917 * Multiple OFPMP_METER replies can be packed into a single OpenFlow
1918 * message. Calling this function multiple times for a single 'msg' iterates
1919 * through the replies. 'bands' is cleared for each reply.
1920 *
1921 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1922 * otherwise a positive errno value. */
1923 int
1924 ofputil_decode_meter_stats(struct ofpbuf *msg,
1925 struct ofputil_meter_stats *ms,
1926 struct ofpbuf *bands)
1927 {
1928 const struct ofp13_meter_stats *oms;
1929 enum ofperr err;
1930
1931 /* Pull OpenFlow headers for the first call. */
1932 if (!msg->l2) {
1933 ofpraw_pull_assert(msg);
1934 }
1935
1936 if (!msg->size) {
1937 return EOF;
1938 }
1939
1940 oms = ofpbuf_try_pull(msg, sizeof *oms);
1941 if (!oms) {
1942 VLOG_WARN_RL(&bad_ofmsg_rl,
1943 "OFPMP_METER reply has %zu leftover bytes at end",
1944 msg->size);
1945 return OFPERR_OFPBRC_BAD_LEN;
1946 }
1947
1948 ofpbuf_clear(bands);
1949 err = ofputil_pull_band_stats(msg, ntohs(oms->len) - sizeof *oms,
1950 &ms->n_bands, bands);
1951 if (err) {
1952 return err;
1953 }
1954 ms->meter_id = ntohl(oms->meter_id);
1955 ms->flow_count = ntohl(oms->flow_count);
1956 ms->packet_in_count = ntohll(oms->packet_in_count);
1957 ms->byte_in_count = ntohll(oms->byte_in_count);
1958 ms->duration_sec = ntohl(oms->duration_sec);
1959 ms->duration_nsec = ntohl(oms->duration_nsec);
1960 ms->bands = bands->data;
1961
1962 return 0;
1963 }
1964
1965 void
1966 ofputil_decode_meter_features(const struct ofp_header *oh,
1967 struct ofputil_meter_features *mf)
1968 {
1969 const struct ofp13_meter_features *omf = ofpmsg_body(oh);
1970
1971 mf->max_meters = ntohl(omf->max_meter);
1972 mf->band_types = ntohl(omf->band_types);
1973 mf->capabilities = ntohl(omf->capabilities);
1974 mf->max_bands = omf->max_bands;
1975 mf->max_color = omf->max_color;
1976 }
1977
1978 struct ofpbuf *
1979 ofputil_encode_meter_features_reply(const struct ofputil_meter_features *mf,
1980 const struct ofp_header *request)
1981 {
1982 struct ofpbuf *reply;
1983 struct ofp13_meter_features *omf;
1984
1985 reply = ofpraw_alloc_stats_reply(request, 0);
1986 omf = ofpbuf_put_zeros(reply, sizeof *omf);
1987
1988 omf->max_meter = htonl(mf->max_meters);
1989 omf->band_types = htonl(mf->band_types);
1990 omf->capabilities = htonl(mf->capabilities);
1991 omf->max_bands = mf->max_bands;
1992 omf->max_color = mf->max_color;
1993
1994 return reply;
1995 }
1996
1997 struct ofpbuf *
1998 ofputil_encode_meter_mod(enum ofp_version ofp_version,
1999 const struct ofputil_meter_mod *mm)
2000 {
2001 struct ofpbuf *msg;
2002
2003 struct ofp13_meter_mod *omm;
2004
2005 msg = ofpraw_alloc(OFPRAW_OFPT13_METER_MOD, ofp_version,
2006 NXM_TYPICAL_LEN + mm->meter.n_bands * 16);
2007 omm = ofpbuf_put_zeros(msg, sizeof *omm);
2008 omm->command = htons(mm->command);
2009 if (mm->command != OFPMC13_DELETE) {
2010 omm->flags = htons(mm->meter.flags);
2011 }
2012 omm->meter_id = htonl(mm->meter.meter_id);
2013
2014 ofputil_put_bands(mm->meter.n_bands, mm->meter.bands, msg);
2015
2016 ofpmsg_update_length(msg);
2017 return msg;
2018 }
2019
2020 static ovs_be16
2021 ofputil_tid_command(const struct ofputil_flow_mod *fm,
2022 enum ofputil_protocol protocol)
2023 {
2024 return htons(protocol & OFPUTIL_P_TID
2025 ? (fm->command & 0xff) | (fm->table_id << 8)
2026 : fm->command);
2027 }
2028
2029 /* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
2030 * 'protocol' and returns the message. */
2031 struct ofpbuf *
2032 ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
2033 enum ofputil_protocol protocol)
2034 {
2035 enum ofp_version version = ofputil_protocol_to_ofp_version(protocol);
2036 ovs_be16 raw_flags = ofputil_encode_flow_mod_flags(fm->flags, version);
2037 struct ofpbuf *msg;
2038
2039 switch (protocol) {
2040 case OFPUTIL_P_OF11_STD:
2041 case OFPUTIL_P_OF12_OXM:
2042 case OFPUTIL_P_OF13_OXM: {
2043 struct ofp11_flow_mod *ofm;
2044 int tailroom;
2045
2046 tailroom = ofputil_match_typical_len(protocol) + fm->ofpacts_len;
2047 msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, version, tailroom);
2048 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
2049 if ((protocol == OFPUTIL_P_OF11_STD
2050 && (fm->command == OFPFC_MODIFY ||
2051 fm->command == OFPFC_MODIFY_STRICT)
2052 && fm->cookie_mask == htonll(0))
2053 || fm->command == OFPFC_ADD) {
2054 ofm->cookie = fm->new_cookie;
2055 } else {
2056 ofm->cookie = fm->cookie;
2057 }
2058 ofm->cookie_mask = fm->cookie_mask;
2059 ofm->table_id = fm->table_id;
2060 ofm->command = fm->command;
2061 ofm->idle_timeout = htons(fm->idle_timeout);
2062 ofm->hard_timeout = htons(fm->hard_timeout);
2063 ofm->priority = htons(fm->priority);
2064 ofm->buffer_id = htonl(fm->buffer_id);
2065 ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
2066 ofm->out_group = htonl(fm->out_group);
2067 ofm->flags = raw_flags;
2068 ofputil_put_ofp11_match(msg, &fm->match, protocol);
2069 ofpacts_put_openflow11_instructions(fm->ofpacts, fm->ofpacts_len, msg);
2070 break;
2071 }
2072
2073 case OFPUTIL_P_OF10_STD:
2074 case OFPUTIL_P_OF10_STD_TID: {
2075 struct ofp10_flow_mod *ofm;
2076
2077 msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
2078 fm->ofpacts_len);
2079 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
2080 ofputil_match_to_ofp10_match(&fm->match, &ofm->match);
2081 ofm->cookie = fm->new_cookie;
2082 ofm->command = ofputil_tid_command(fm, protocol);
2083 ofm->idle_timeout = htons(fm->idle_timeout);
2084 ofm->hard_timeout = htons(fm->hard_timeout);
2085 ofm->priority = htons(fm->priority);
2086 ofm->buffer_id = htonl(fm->buffer_id);
2087 ofm->out_port = htons(ofp_to_u16(fm->out_port));
2088 ofm->flags = raw_flags;
2089 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
2090 break;
2091 }
2092
2093 case OFPUTIL_P_OF10_NXM:
2094 case OFPUTIL_P_OF10_NXM_TID: {
2095 struct nx_flow_mod *nfm;
2096 int match_len;
2097
2098 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
2099 NXM_TYPICAL_LEN + fm->ofpacts_len);
2100 nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
2101 nfm->command = ofputil_tid_command(fm, protocol);
2102 nfm->cookie = fm->new_cookie;
2103 match_len = nx_put_match(msg, &fm->match, fm->cookie, fm->cookie_mask);
2104 nfm = msg->l3;
2105 nfm->idle_timeout = htons(fm->idle_timeout);
2106 nfm->hard_timeout = htons(fm->hard_timeout);
2107 nfm->priority = htons(fm->priority);
2108 nfm->buffer_id = htonl(fm->buffer_id);
2109 nfm->out_port = htons(ofp_to_u16(fm->out_port));
2110 nfm->flags = raw_flags;
2111 nfm->match_len = htons(match_len);
2112 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
2113 break;
2114 }
2115
2116 default:
2117 NOT_REACHED();
2118 }
2119
2120 ofpmsg_update_length(msg);
2121 return msg;
2122 }
2123
2124 static enum ofperr
2125 ofputil_decode_ofpst10_flow_request(struct ofputil_flow_stats_request *fsr,
2126 const struct ofp10_flow_stats_request *ofsr,
2127 bool aggregate)
2128 {
2129 fsr->aggregate = aggregate;
2130 ofputil_match_from_ofp10_match(&ofsr->match, &fsr->match);
2131 fsr->out_port = u16_to_ofp(ntohs(ofsr->out_port));
2132 fsr->out_group = OFPG11_ANY;
2133 fsr->table_id = ofsr->table_id;
2134 fsr->cookie = fsr->cookie_mask = htonll(0);
2135
2136 return 0;
2137 }
2138
2139 static enum ofperr
2140 ofputil_decode_ofpst11_flow_request(struct ofputil_flow_stats_request *fsr,
2141 struct ofpbuf *b, bool aggregate)
2142 {
2143 const struct ofp11_flow_stats_request *ofsr;
2144 enum ofperr error;
2145
2146 ofsr = ofpbuf_pull(b, sizeof *ofsr);
2147 fsr->aggregate = aggregate;
2148 fsr->table_id = ofsr->table_id;
2149 error = ofputil_port_from_ofp11(ofsr->out_port, &fsr->out_port);
2150 if (error) {
2151 return error;
2152 }
2153 fsr->out_group = ntohl(ofsr->out_group);
2154 fsr->cookie = ofsr->cookie;
2155 fsr->cookie_mask = ofsr->cookie_mask;
2156 error = ofputil_pull_ofp11_match(b, &fsr->match, NULL);
2157 if (error) {
2158 return error;
2159 }
2160
2161 return 0;
2162 }
2163
2164 static enum ofperr
2165 ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
2166 struct ofpbuf *b, bool aggregate)
2167 {
2168 const struct nx_flow_stats_request *nfsr;
2169 enum ofperr error;
2170
2171 nfsr = ofpbuf_pull(b, sizeof *nfsr);
2172 error = nx_pull_match(b, ntohs(nfsr->match_len), &fsr->match,
2173 &fsr->cookie, &fsr->cookie_mask);
2174 if (error) {
2175 return error;
2176 }
2177 if (b->size) {
2178 return OFPERR_OFPBRC_BAD_LEN;
2179 }
2180
2181 fsr->aggregate = aggregate;
2182 fsr->out_port = u16_to_ofp(ntohs(nfsr->out_port));
2183 fsr->out_group = OFPG11_ANY;
2184 fsr->table_id = nfsr->table_id;
2185
2186 return 0;
2187 }
2188
2189 /* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
2190 * request 'oh', into an abstract flow_stats_request in 'fsr'. Returns 0 if
2191 * successful, otherwise an OpenFlow error code. */
2192 enum ofperr
2193 ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
2194 const struct ofp_header *oh)
2195 {
2196 enum ofpraw raw;
2197 struct ofpbuf b;
2198
2199 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2200 raw = ofpraw_pull_assert(&b);
2201 switch ((int) raw) {
2202 case OFPRAW_OFPST10_FLOW_REQUEST:
2203 return ofputil_decode_ofpst10_flow_request(fsr, b.data, false);
2204
2205 case OFPRAW_OFPST10_AGGREGATE_REQUEST:
2206 return ofputil_decode_ofpst10_flow_request(fsr, b.data, true);
2207
2208 case OFPRAW_OFPST11_FLOW_REQUEST:
2209 return ofputil_decode_ofpst11_flow_request(fsr, &b, false);
2210
2211 case OFPRAW_OFPST11_AGGREGATE_REQUEST:
2212 return ofputil_decode_ofpst11_flow_request(fsr, &b, true);
2213
2214 case OFPRAW_NXST_FLOW_REQUEST:
2215 return ofputil_decode_nxst_flow_request(fsr, &b, false);
2216
2217 case OFPRAW_NXST_AGGREGATE_REQUEST:
2218 return ofputil_decode_nxst_flow_request(fsr, &b, true);
2219
2220 default:
2221 /* Hey, the caller lied. */
2222 NOT_REACHED();
2223 }
2224 }
2225
2226 /* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
2227 * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
2228 * 'protocol', and returns the message. */
2229 struct ofpbuf *
2230 ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
2231 enum ofputil_protocol protocol)
2232 {
2233 struct ofpbuf *msg;
2234 enum ofpraw raw;
2235
2236 switch (protocol) {
2237 case OFPUTIL_P_OF11_STD:
2238 case OFPUTIL_P_OF12_OXM:
2239 case OFPUTIL_P_OF13_OXM: {
2240 struct ofp11_flow_stats_request *ofsr;
2241
2242 raw = (fsr->aggregate
2243 ? OFPRAW_OFPST11_AGGREGATE_REQUEST
2244 : OFPRAW_OFPST11_FLOW_REQUEST);
2245 msg = ofpraw_alloc(raw, ofputil_protocol_to_ofp_version(protocol),
2246 ofputil_match_typical_len(protocol));
2247 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
2248 ofsr->table_id = fsr->table_id;
2249 ofsr->out_port = ofputil_port_to_ofp11(fsr->out_port);
2250 ofsr->out_group = htonl(fsr->out_group);
2251 ofsr->cookie = fsr->cookie;
2252 ofsr->cookie_mask = fsr->cookie_mask;
2253 ofputil_put_ofp11_match(msg, &fsr->match, protocol);
2254 break;
2255 }
2256
2257 case OFPUTIL_P_OF10_STD:
2258 case OFPUTIL_P_OF10_STD_TID: {
2259 struct ofp10_flow_stats_request *ofsr;
2260
2261 raw = (fsr->aggregate
2262 ? OFPRAW_OFPST10_AGGREGATE_REQUEST
2263 : OFPRAW_OFPST10_FLOW_REQUEST);
2264 msg = ofpraw_alloc(raw, OFP10_VERSION, 0);
2265 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
2266 ofputil_match_to_ofp10_match(&fsr->match, &ofsr->match);
2267 ofsr->table_id = fsr->table_id;
2268 ofsr->out_port = htons(ofp_to_u16(fsr->out_port));
2269 break;
2270 }
2271
2272 case OFPUTIL_P_OF10_NXM:
2273 case OFPUTIL_P_OF10_NXM_TID: {
2274 struct nx_flow_stats_request *nfsr;
2275 int match_len;
2276
2277 raw = (fsr->aggregate
2278 ? OFPRAW_NXST_AGGREGATE_REQUEST
2279 : OFPRAW_NXST_FLOW_REQUEST);
2280 msg = ofpraw_alloc(raw, OFP10_VERSION, NXM_TYPICAL_LEN);
2281 ofpbuf_put_zeros(msg, sizeof *nfsr);
2282 match_len = nx_put_match(msg, &fsr->match,
2283 fsr->cookie, fsr->cookie_mask);
2284
2285 nfsr = msg->l3;
2286 nfsr->out_port = htons(ofp_to_u16(fsr->out_port));
2287 nfsr->match_len = htons(match_len);
2288 nfsr->table_id = fsr->table_id;
2289 break;
2290 }
2291
2292 default:
2293 NOT_REACHED();
2294 }
2295
2296 return msg;
2297 }
2298
2299 /* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
2300 * ofputil_flow_stats in 'fs'.
2301 *
2302 * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
2303 * OpenFlow message. Calling this function multiple times for a single 'msg'
2304 * iterates through the replies. The caller must initially leave 'msg''s layer
2305 * pointers null and not modify them between calls.
2306 *
2307 * Most switches don't send the values needed to populate fs->idle_age and
2308 * fs->hard_age, so those members will usually be set to 0. If the switch from
2309 * which 'msg' originated is known to implement NXT_FLOW_AGE, then pass
2310 * 'flow_age_extension' as true so that the contents of 'msg' determine the
2311 * 'idle_age' and 'hard_age' members in 'fs'.
2312 *
2313 * Uses 'ofpacts' to store the abstract OFPACT_* version of the flow stats
2314 * reply's actions. The caller must initialize 'ofpacts' and retains ownership
2315 * of it. 'fs->ofpacts' will point into the 'ofpacts' buffer.
2316 *
2317 * Returns 0 if successful, EOF if no replies were left in this 'msg',
2318 * otherwise a positive errno value. */
2319 int
2320 ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
2321 struct ofpbuf *msg,
2322 bool flow_age_extension,
2323 struct ofpbuf *ofpacts)
2324 {
2325 const struct ofp_header *oh;
2326 enum ofperr error;
2327 enum ofpraw raw;
2328
2329 error = (msg->l2
2330 ? ofpraw_decode(&raw, msg->l2)
2331 : ofpraw_pull(&raw, msg));
2332 if (error) {
2333 return error;
2334 }
2335 oh = msg->l2;
2336
2337 if (!msg->size) {
2338 return EOF;
2339 } else if (raw == OFPRAW_OFPST11_FLOW_REPLY
2340 || raw == OFPRAW_OFPST13_FLOW_REPLY) {
2341 const struct ofp11_flow_stats *ofs;
2342 size_t length;
2343 uint16_t padded_match_len;
2344
2345 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2346 if (!ofs) {
2347 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
2348 "bytes at end", msg->size);
2349 return EINVAL;
2350 }
2351
2352 length = ntohs(ofs->length);
2353 if (length < sizeof *ofs) {
2354 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2355 "length %zu", length);
2356 return EINVAL;
2357 }
2358
2359 if (ofputil_pull_ofp11_match(msg, &fs->match, &padded_match_len)) {
2360 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad match");
2361 return EINVAL;
2362 }
2363
2364 if (ofpacts_pull_openflow11_instructions(msg, oh->version,
2365 length - sizeof *ofs -
2366 padded_match_len, ofpacts)) {
2367 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad instructions");
2368 return EINVAL;
2369 }
2370
2371 fs->priority = ntohs(ofs->priority);
2372 fs->table_id = ofs->table_id;
2373 fs->duration_sec = ntohl(ofs->duration_sec);
2374 fs->duration_nsec = ntohl(ofs->duration_nsec);
2375 fs->idle_timeout = ntohs(ofs->idle_timeout);
2376 fs->hard_timeout = ntohs(ofs->hard_timeout);
2377 if (raw == OFPRAW_OFPST13_FLOW_REPLY) {
2378 error = ofputil_decode_flow_mod_flags(ofs->flags, -1, oh->version,
2379 &fs->flags);
2380 if (error) {
2381 return error;
2382 }
2383 } else {
2384 fs->flags = 0;
2385 }
2386 fs->idle_age = -1;
2387 fs->hard_age = -1;
2388 fs->cookie = ofs->cookie;
2389 fs->packet_count = ntohll(ofs->packet_count);
2390 fs->byte_count = ntohll(ofs->byte_count);
2391 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
2392 const struct ofp10_flow_stats *ofs;
2393 size_t length;
2394
2395 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2396 if (!ofs) {
2397 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
2398 "bytes at end", msg->size);
2399 return EINVAL;
2400 }
2401
2402 length = ntohs(ofs->length);
2403 if (length < sizeof *ofs) {
2404 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2405 "length %zu", length);
2406 return EINVAL;
2407 }
2408
2409 if (ofpacts_pull_openflow10(msg, length - sizeof *ofs, ofpacts)) {
2410 return EINVAL;
2411 }
2412
2413 fs->cookie = get_32aligned_be64(&ofs->cookie);
2414 ofputil_match_from_ofp10_match(&ofs->match, &fs->match);
2415 fs->priority = ntohs(ofs->priority);
2416 fs->table_id = ofs->table_id;
2417 fs->duration_sec = ntohl(ofs->duration_sec);
2418 fs->duration_nsec = ntohl(ofs->duration_nsec);
2419 fs->idle_timeout = ntohs(ofs->idle_timeout);
2420 fs->hard_timeout = ntohs(ofs->hard_timeout);
2421 fs->idle_age = -1;
2422 fs->hard_age = -1;
2423 fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
2424 fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
2425 fs->flags = 0;
2426 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
2427 const struct nx_flow_stats *nfs;
2428 size_t match_len, actions_len, length;
2429
2430 nfs = ofpbuf_try_pull(msg, sizeof *nfs);
2431 if (!nfs) {
2432 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %zu leftover "
2433 "bytes at end", msg->size);
2434 return EINVAL;
2435 }
2436
2437 length = ntohs(nfs->length);
2438 match_len = ntohs(nfs->match_len);
2439 if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
2440 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%zu "
2441 "claims invalid length %zu", match_len, length);
2442 return EINVAL;
2443 }
2444 if (nx_pull_match(msg, match_len, &fs->match, NULL, NULL)) {
2445 return EINVAL;
2446 }
2447
2448 actions_len = length - sizeof *nfs - ROUND_UP(match_len, 8);
2449 if (ofpacts_pull_openflow10(msg, actions_len, ofpacts)) {
2450 return EINVAL;
2451 }
2452
2453 fs->cookie = nfs->cookie;
2454 fs->table_id = nfs->table_id;
2455 fs->duration_sec = ntohl(nfs->duration_sec);
2456 fs->duration_nsec = ntohl(nfs->duration_nsec);
2457 fs->priority = ntohs(nfs->priority);
2458 fs->idle_timeout = ntohs(nfs->idle_timeout);
2459 fs->hard_timeout = ntohs(nfs->hard_timeout);
2460 fs->idle_age = -1;
2461 fs->hard_age = -1;
2462 if (flow_age_extension) {
2463 if (nfs->idle_age) {
2464 fs->idle_age = ntohs(nfs->idle_age) - 1;
2465 }
2466 if (nfs->hard_age) {
2467 fs->hard_age = ntohs(nfs->hard_age) - 1;
2468 }
2469 }
2470 fs->packet_count = ntohll(nfs->packet_count);
2471 fs->byte_count = ntohll(nfs->byte_count);
2472 fs->flags = 0;
2473 } else {
2474 NOT_REACHED();
2475 }
2476
2477 fs->ofpacts = ofpacts->data;
2478 fs->ofpacts_len = ofpacts->size;
2479
2480 return 0;
2481 }
2482
2483 /* Returns 'count' unchanged except that UINT64_MAX becomes 0.
2484 *
2485 * We use this in situations where OVS internally uses UINT64_MAX to mean
2486 * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
2487 static uint64_t
2488 unknown_to_zero(uint64_t count)
2489 {
2490 return count != UINT64_MAX ? count : 0;
2491 }
2492
2493 /* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
2494 * those already present in the list of ofpbufs in 'replies'. 'replies' should
2495 * have been initialized with ofpmp_init(). */
2496 void
2497 ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
2498 struct list *replies)
2499 {
2500 struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
2501 size_t start_ofs = reply->size;
2502 enum ofpraw raw;
2503
2504 ofpraw_decode_partial(&raw, reply->data, reply->size);
2505 if (raw == OFPRAW_OFPST11_FLOW_REPLY || raw == OFPRAW_OFPST13_FLOW_REPLY) {
2506 const struct ofp_header *oh = reply->data;
2507 struct ofp11_flow_stats *ofs;
2508
2509 ofpbuf_put_uninit(reply, sizeof *ofs);
2510 oxm_put_match(reply, &fs->match);
2511 ofpacts_put_openflow11_instructions(fs->ofpacts, fs->ofpacts_len,
2512 reply);
2513
2514 ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2515 ofs->length = htons(reply->size - start_ofs);
2516 ofs->table_id = fs->table_id;
2517 ofs->pad = 0;
2518 ofs->duration_sec = htonl(fs->duration_sec);
2519 ofs->duration_nsec = htonl(fs->duration_nsec);
2520 ofs->priority = htons(fs->priority);
2521 ofs->idle_timeout = htons(fs->idle_timeout);
2522 ofs->hard_timeout = htons(fs->hard_timeout);
2523 if (raw == OFPRAW_OFPST13_FLOW_REPLY) {
2524 ofs->flags = ofputil_encode_flow_mod_flags(fs->flags, oh->version);
2525 } else {
2526 ofs->flags = 0;
2527 }
2528 memset(ofs->pad2, 0, sizeof ofs->pad2);
2529 ofs->cookie = fs->cookie;
2530 ofs->packet_count = htonll(unknown_to_zero(fs->packet_count));
2531 ofs->byte_count = htonll(unknown_to_zero(fs->byte_count));
2532 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
2533 struct ofp10_flow_stats *ofs;
2534
2535 ofpbuf_put_uninit(reply, sizeof *ofs);
2536 ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
2537
2538 ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2539 ofs->length = htons(reply->size - start_ofs);
2540 ofs->table_id = fs->table_id;
2541 ofs->pad = 0;
2542 ofputil_match_to_ofp10_match(&fs->match, &ofs->match);
2543 ofs->duration_sec = htonl(fs->duration_sec);
2544 ofs->duration_nsec = htonl(fs->duration_nsec);
2545 ofs->priority = htons(fs->priority);
2546 ofs->idle_timeout = htons(fs->idle_timeout);
2547 ofs->hard_timeout = htons(fs->hard_timeout);
2548 memset(ofs->pad2, 0, sizeof ofs->pad2);
2549 put_32aligned_be64(&ofs->cookie, fs->cookie);
2550 put_32aligned_be64(&ofs->packet_count,
2551 htonll(unknown_to_zero(fs->packet_count)));
2552 put_32aligned_be64(&ofs->byte_count,
2553 htonll(unknown_to_zero(fs->byte_count)));
2554 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
2555 struct nx_flow_stats *nfs;
2556 int match_len;
2557
2558 ofpbuf_put_uninit(reply, sizeof *nfs);
2559 match_len = nx_put_match(reply, &fs->match, 0, 0);
2560 ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
2561
2562 nfs = ofpbuf_at_assert(reply, start_ofs, sizeof *nfs);
2563 nfs->length = htons(reply->size - start_ofs);
2564 nfs->table_id = fs->table_id;
2565 nfs->pad = 0;
2566 nfs->duration_sec = htonl(fs->duration_sec);
2567 nfs->duration_nsec = htonl(fs->duration_nsec);
2568 nfs->priority = htons(fs->priority);
2569 nfs->idle_timeout = htons(fs->idle_timeout);
2570 nfs->hard_timeout = htons(fs->hard_timeout);
2571 nfs->idle_age = htons(fs->idle_age < 0 ? 0
2572 : fs->idle_age < UINT16_MAX ? fs->idle_age + 1
2573 : UINT16_MAX);
2574 nfs->hard_age = htons(fs->hard_age < 0 ? 0
2575 : fs->hard_age < UINT16_MAX ? fs->hard_age + 1
2576 : UINT16_MAX);
2577 nfs->match_len = htons(match_len);
2578 nfs->cookie = fs->cookie;
2579 nfs->packet_count = htonll(fs->packet_count);
2580 nfs->byte_count = htonll(fs->byte_count);
2581 } else {
2582 NOT_REACHED();
2583 }
2584
2585 ofpmp_postappend(replies, start_ofs);
2586 }
2587
2588 /* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
2589 * NXST_AGGREGATE reply matching 'request', and returns the message. */
2590 struct ofpbuf *
2591 ofputil_encode_aggregate_stats_reply(
2592 const struct ofputil_aggregate_stats *stats,
2593 const struct ofp_header *request)
2594 {
2595 struct ofp_aggregate_stats_reply *asr;
2596 uint64_t packet_count;
2597 uint64_t byte_count;
2598 struct ofpbuf *msg;
2599 enum ofpraw raw;
2600
2601 ofpraw_decode(&raw, request);
2602 if (raw == OFPRAW_OFPST10_AGGREGATE_REQUEST) {
2603 packet_count = unknown_to_zero(stats->packet_count);
2604 byte_count = unknown_to_zero(stats->byte_count);
2605 } else {
2606 packet_count = stats->packet_count;
2607 byte_count = stats->byte_count;
2608 }
2609
2610 msg = ofpraw_alloc_stats_reply(request, 0);
2611 asr = ofpbuf_put_zeros(msg, sizeof *asr);
2612 put_32aligned_be64(&asr->packet_count, htonll(packet_count));
2613 put_32aligned_be64(&asr->byte_count, htonll(byte_count));
2614 asr->flow_count = htonl(stats->flow_count);
2615
2616 return msg;
2617 }
2618
2619 enum ofperr
2620 ofputil_decode_aggregate_stats_reply(struct ofputil_aggregate_stats *stats,
2621 const struct ofp_header *reply)
2622 {
2623 struct ofp_aggregate_stats_reply *asr;
2624 struct ofpbuf msg;
2625
2626 ofpbuf_use_const(&msg, reply, ntohs(reply->length));
2627 ofpraw_pull_assert(&msg);
2628
2629 asr = msg.l3;
2630 stats->packet_count = ntohll(get_32aligned_be64(&asr->packet_count));
2631 stats->byte_count = ntohll(get_32aligned_be64(&asr->byte_count));
2632 stats->flow_count = ntohl(asr->flow_count);
2633
2634 return 0;
2635 }
2636
2637 /* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
2638 * abstract ofputil_flow_removed in 'fr'. Returns 0 if successful, otherwise
2639 * an OpenFlow error code. */
2640 enum ofperr
2641 ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
2642 const struct ofp_header *oh)
2643 {
2644 enum ofpraw raw;
2645 struct ofpbuf b;
2646
2647 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2648 raw = ofpraw_pull_assert(&b);
2649 if (raw == OFPRAW_OFPT11_FLOW_REMOVED) {
2650 const struct ofp12_flow_removed *ofr;
2651 enum ofperr error;
2652
2653 ofr = ofpbuf_pull(&b, sizeof *ofr);
2654
2655 error = ofputil_pull_ofp11_match(&b, &fr->match, NULL);
2656 if (error) {
2657 return error;
2658 }
2659
2660 fr->priority = ntohs(ofr->priority);
2661 fr->cookie = ofr->cookie;
2662 fr->reason = ofr->reason;
2663 fr->table_id = ofr->table_id;
2664 fr->duration_sec = ntohl(ofr->duration_sec);
2665 fr->duration_nsec = ntohl(ofr->duration_nsec);
2666 fr->idle_timeout = ntohs(ofr->idle_timeout);
2667 fr->hard_timeout = ntohs(ofr->hard_timeout);
2668 fr->packet_count = ntohll(ofr->packet_count);
2669 fr->byte_count = ntohll(ofr->byte_count);
2670 } else if (raw == OFPRAW_OFPT10_FLOW_REMOVED) {
2671 const struct ofp10_flow_removed *ofr;
2672
2673 ofr = ofpbuf_pull(&b, sizeof *ofr);
2674
2675 ofputil_match_from_ofp10_match(&ofr->match, &fr->match);
2676 fr->priority = ntohs(ofr->priority);
2677 fr->cookie = ofr->cookie;
2678 fr->reason = ofr->reason;
2679 fr->table_id = 255;
2680 fr->duration_sec = ntohl(ofr->duration_sec);
2681 fr->duration_nsec = ntohl(ofr->duration_nsec);
2682 fr->idle_timeout = ntohs(ofr->idle_timeout);
2683 fr->hard_timeout = 0;
2684 fr->packet_count = ntohll(ofr->packet_count);
2685 fr->byte_count = ntohll(ofr->byte_count);
2686 } else if (raw == OFPRAW_NXT_FLOW_REMOVED) {
2687 struct nx_flow_removed *nfr;
2688 enum ofperr error;
2689
2690 nfr = ofpbuf_pull(&b, sizeof *nfr);
2691 error = nx_pull_match(&b, ntohs(nfr->match_len), &fr->match,
2692 NULL, NULL);
2693 if (error) {
2694 return error;
2695 }
2696 if (b.size) {
2697 return OFPERR_OFPBRC_BAD_LEN;
2698 }
2699
2700 fr->priority = ntohs(nfr->priority);
2701 fr->cookie = nfr->cookie;
2702 fr->reason = nfr->reason;
2703 fr->table_id = nfr->table_id ? nfr->table_id - 1 : 255;
2704 fr->duration_sec = ntohl(nfr->duration_sec);
2705 fr->duration_nsec = ntohl(nfr->duration_nsec);
2706 fr->idle_timeout = ntohs(nfr->idle_timeout);
2707 fr->hard_timeout = 0;
2708 fr->packet_count = ntohll(nfr->packet_count);
2709 fr->byte_count = ntohll(nfr->byte_count);
2710 } else {
2711 NOT_REACHED();
2712 }
2713
2714 return 0;
2715 }
2716
2717 /* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
2718 * NXT_FLOW_REMOVED message 'oh' according to 'protocol', and returns the
2719 * message. */
2720 struct ofpbuf *
2721 ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
2722 enum ofputil_protocol protocol)
2723 {
2724 struct ofpbuf *msg;
2725
2726 switch (protocol) {
2727 case OFPUTIL_P_OF11_STD:
2728 case OFPUTIL_P_OF12_OXM:
2729 case OFPUTIL_P_OF13_OXM: {
2730 struct ofp12_flow_removed *ofr;
2731
2732 msg = ofpraw_alloc_xid(OFPRAW_OFPT11_FLOW_REMOVED,
2733 ofputil_protocol_to_ofp_version(protocol),
2734 htonl(0),
2735 ofputil_match_typical_len(protocol));
2736 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
2737 ofr->cookie = fr->cookie;
2738 ofr->priority = htons(fr->priority);
2739 ofr->reason = fr->reason;
2740 ofr->table_id = fr->table_id;
2741 ofr->duration_sec = htonl(fr->duration_sec);
2742 ofr->duration_nsec = htonl(fr->duration_nsec);
2743 ofr->idle_timeout = htons(fr->idle_timeout);
2744 ofr->hard_timeout = htons(fr->hard_timeout);
2745 ofr->packet_count = htonll(fr->packet_count);
2746 ofr->byte_count = htonll(fr->byte_count);
2747 ofputil_put_ofp11_match(msg, &fr->match, protocol);
2748 break;
2749 }
2750
2751 case OFPUTIL_P_OF10_STD:
2752 case OFPUTIL_P_OF10_STD_TID: {
2753 struct ofp10_flow_removed *ofr;
2754
2755 msg = ofpraw_alloc_xid(OFPRAW_OFPT10_FLOW_REMOVED, OFP10_VERSION,
2756 htonl(0), 0);
2757 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
2758 ofputil_match_to_ofp10_match(&fr->match, &ofr->match);
2759 ofr->cookie = fr->cookie;
2760 ofr->priority = htons(fr->priority);
2761 ofr->reason = fr->reason;
2762 ofr->duration_sec = htonl(fr->duration_sec);
2763 ofr->duration_nsec = htonl(fr->duration_nsec);
2764 ofr->idle_timeout = htons(fr->idle_timeout);
2765 ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
2766 ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
2767 break;
2768 }
2769
2770 case OFPUTIL_P_OF10_NXM:
2771 case OFPUTIL_P_OF10_NXM_TID: {
2772 struct nx_flow_removed *nfr;
2773 int match_len;
2774
2775 msg = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_REMOVED, OFP10_VERSION,
2776 htonl(0), NXM_TYPICAL_LEN);
2777 nfr = ofpbuf_put_zeros(msg, sizeof *nfr);
2778 match_len = nx_put_match(msg, &fr->match, 0, 0);
2779
2780 nfr = msg->l3;
2781 nfr->cookie = fr->cookie;
2782 nfr->priority = htons(fr->priority);
2783 nfr->reason = fr->reason;
2784 nfr->table_id = fr->table_id + 1;
2785 nfr->duration_sec = htonl(fr->duration_sec);
2786 nfr->duration_nsec = htonl(fr->duration_nsec);
2787 nfr->idle_timeout = htons(fr->idle_timeout);
2788 nfr->match_len = htons(match_len);
2789 nfr->packet_count = htonll(fr->packet_count);
2790 nfr->byte_count = htonll(fr->byte_count);
2791 break;
2792 }
2793
2794 default:
2795 NOT_REACHED();
2796 }
2797
2798 return msg;
2799 }
2800
2801 static void
2802 ofputil_decode_packet_in_finish(struct ofputil_packet_in *pin,
2803 struct match *match, struct ofpbuf *b)
2804 {
2805 pin->packet = b->data;
2806 pin->packet_len = b->size;
2807
2808 pin->fmd.in_port = match->flow.in_port.ofp_port;
2809 pin->fmd.tun_id = match->flow.tunnel.tun_id;
2810 pin->fmd.tun_src = match->flow.tunnel.ip_src;
2811 pin->fmd.tun_dst = match->flow.tunnel.ip_dst;
2812 pin->fmd.metadata = match->flow.metadata;
2813 memcpy(pin->fmd.regs, match->flow.regs, sizeof pin->fmd.regs);
2814 pin->fmd.pkt_mark = match->flow.pkt_mark;
2815 }
2816
2817 enum ofperr
2818 ofputil_decode_packet_in(struct ofputil_packet_in *pin,
2819 const struct ofp_header *oh)
2820 {
2821 enum ofpraw raw;
2822 struct ofpbuf b;
2823
2824 memset(pin, 0, sizeof *pin);
2825
2826 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2827 raw = ofpraw_pull_assert(&b);
2828 if (raw == OFPRAW_OFPT13_PACKET_IN || raw == OFPRAW_OFPT12_PACKET_IN) {
2829 const struct ofp13_packet_in *opi;
2830 struct match match;
2831 int error;
2832 size_t packet_in_size;
2833
2834 if (raw == OFPRAW_OFPT12_PACKET_IN) {
2835 packet_in_size = sizeof (struct ofp12_packet_in);
2836 } else {
2837 packet_in_size = sizeof (struct ofp13_packet_in);
2838 }
2839
2840 opi = ofpbuf_pull(&b, packet_in_size);
2841 error = oxm_pull_match_loose(&b, &match);
2842 if (error) {
2843 return error;
2844 }
2845
2846 if (!ofpbuf_try_pull(&b, 2)) {
2847 return OFPERR_OFPBRC_BAD_LEN;
2848 }
2849
2850 pin->reason = opi->pi.reason;
2851 pin->table_id = opi->pi.table_id;
2852 pin->buffer_id = ntohl(opi->pi.buffer_id);
2853 pin->total_len = ntohs(opi->pi.total_len);
2854
2855 if (raw == OFPRAW_OFPT13_PACKET_IN) {
2856 pin->cookie = opi->cookie;
2857 }
2858
2859 ofputil_decode_packet_in_finish(pin, &match, &b);
2860 } else if (raw == OFPRAW_OFPT10_PACKET_IN) {
2861 const struct ofp10_packet_in *opi;
2862
2863 opi = ofpbuf_pull(&b, offsetof(struct ofp10_packet_in, data));
2864
2865 pin->packet = opi->data;
2866 pin->packet_len = b.size;
2867
2868 pin->fmd.in_port = u16_to_ofp(ntohs(opi->in_port));
2869 pin->reason = opi->reason;
2870 pin->buffer_id = ntohl(opi->buffer_id);
2871 pin->total_len = ntohs(opi->total_len);
2872 } else if (raw == OFPRAW_NXT_PACKET_IN) {
2873 const struct nx_packet_in *npi;
2874 struct match match;
2875 int error;
2876
2877 npi = ofpbuf_pull(&b, sizeof *npi);
2878 error = nx_pull_match_loose(&b, ntohs(npi->match_len), &match, NULL,
2879 NULL);
2880 if (error) {
2881 return error;
2882 }
2883
2884 if (!ofpbuf_try_pull(&b, 2)) {
2885 return OFPERR_OFPBRC_BAD_LEN;
2886 }
2887
2888 pin->reason = npi->reason;
2889 pin->table_id = npi->table_id;
2890 pin->cookie = npi->cookie;
2891
2892 pin->buffer_id = ntohl(npi->buffer_id);
2893 pin->total_len = ntohs(npi->total_len);
2894
2895 ofputil_decode_packet_in_finish(pin, &match, &b);
2896 } else {
2897 NOT_REACHED();
2898 }
2899
2900 return 0;
2901 }
2902
2903 static void
2904 ofputil_packet_in_to_match(const struct ofputil_packet_in *pin,
2905 struct match *match)
2906 {
2907 int i;
2908
2909 match_init_catchall(match);
2910 if (pin->fmd.tun_id != htonll(0)) {
2911 match_set_tun_id(match, pin->fmd.tun_id);
2912 }
2913 if (pin->fmd.tun_src != htonl(0)) {
2914 match_set_tun_src(match, pin->fmd.tun_src);
2915 }
2916 if (pin->fmd.tun_dst != htonl(0)) {
2917 match_set_tun_dst(match, pin->fmd.tun_dst);
2918 }
2919 if (pin->fmd.metadata != htonll(0)) {
2920 match_set_metadata(match, pin->fmd.metadata);
2921 }
2922
2923 for (i = 0; i < FLOW_N_REGS; i++) {
2924 if (pin->fmd.regs[i]) {
2925 match_set_reg(match, i, pin->fmd.regs[i]);
2926 }
2927 }
2928
2929 if (pin->fmd.pkt_mark != 0) {
2930 match_set_pkt_mark(match, pin->fmd.pkt_mark);
2931 }
2932
2933 match_set_in_port(match, pin->fmd.in_port);
2934 }
2935
2936 /* Converts abstract ofputil_packet_in 'pin' into a PACKET_IN message
2937 * in the format specified by 'packet_in_format'. */
2938 struct ofpbuf *
2939 ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
2940 enum ofputil_protocol protocol,
2941 enum nx_packet_in_format packet_in_format)
2942 {
2943 struct ofpbuf *packet;
2944
2945 /* Add OFPT_PACKET_IN. */
2946 if (protocol == OFPUTIL_P_OF13_OXM || protocol == OFPUTIL_P_OF12_OXM) {
2947 struct ofp13_packet_in *opi;
2948 struct match match;
2949 enum ofpraw packet_in_raw;
2950 enum ofp_version packet_in_version;
2951 size_t packet_in_size;
2952
2953 if (protocol == OFPUTIL_P_OF12_OXM) {
2954 packet_in_raw = OFPRAW_OFPT12_PACKET_IN;
2955 packet_in_version = OFP12_VERSION;
2956 packet_in_size = sizeof (struct ofp12_packet_in);
2957 } else {
2958 packet_in_raw = OFPRAW_OFPT13_PACKET_IN;
2959 packet_in_version = OFP13_VERSION;
2960 packet_in_size = sizeof (struct ofp13_packet_in);
2961 }
2962
2963 ofputil_packet_in_to_match(pin, &match);
2964
2965 /* The final argument is just an estimate of the space required. */
2966 packet = ofpraw_alloc_xid(packet_in_raw, packet_in_version,
2967 htonl(0), (sizeof(struct flow_metadata) * 2
2968 + 2 + pin->packet_len));
2969 ofpbuf_put_zeros(packet, packet_in_size);
2970 oxm_put_match(packet, &match);
2971 ofpbuf_put_zeros(packet, 2);
2972 ofpbuf_put(packet, pin->packet, pin->packet_len);
2973
2974 opi = packet->l3;
2975 opi->pi.buffer_id = htonl(pin->buffer_id);
2976 opi->pi.total_len = htons(pin->total_len);
2977 opi->pi.reason = pin->reason;
2978 opi->pi.table_id = pin->table_id;
2979 if (protocol == OFPUTIL_P_OF13_OXM) {
2980 opi->cookie = pin->cookie;
2981 }
2982 } else if (packet_in_format == NXPIF_OPENFLOW10) {
2983 struct ofp10_packet_in *opi;
2984
2985 packet = ofpraw_alloc_xid(OFPRAW_OFPT10_PACKET_IN, OFP10_VERSION,
2986 htonl(0), pin->packet_len);
2987 opi = ofpbuf_put_zeros(packet, offsetof(struct ofp10_packet_in, data));
2988 opi->total_len = htons(pin->total_len);
2989 opi->in_port = htons(ofp_to_u16(pin->fmd.in_port));
2990 opi->reason = pin->reason;
2991 opi->buffer_id = htonl(pin->buffer_id);
2992
2993 ofpbuf_put(packet, pin->packet, pin->packet_len);
2994 } else if (packet_in_format == NXPIF_NXM) {
2995 struct nx_packet_in *npi;
2996 struct match match;
2997 size_t match_len;
2998
2999 ofputil_packet_in_to_match(pin, &match);
3000
3001 /* The final argument is just an estimate of the space required. */
3002 packet = ofpraw_alloc_xid(OFPRAW_NXT_PACKET_IN, OFP10_VERSION,
3003 htonl(0), (sizeof(struct flow_metadata) * 2
3004 + 2 + pin->packet_len));
3005 ofpbuf_put_zeros(packet, sizeof *npi);
3006 match_len = nx_put_match(packet, &match, 0, 0);
3007 ofpbuf_put_zeros(packet, 2);
3008 ofpbuf_put(packet, pin->packet, pin->packet_len);
3009
3010 npi = packet->l3;
3011 npi->buffer_id = htonl(pin->buffer_id);
3012 npi->total_len = htons(pin->total_len);
3013 npi->reason = pin->reason;
3014 npi->table_id = pin->table_id;
3015 npi->cookie = pin->cookie;
3016 npi->match_len = htons(match_len);
3017 } else {
3018 NOT_REACHED();
3019 }
3020 ofpmsg_update_length(packet);
3021
3022 return packet;
3023 }
3024
3025 /* Returns a string form of 'reason'. The return value is either a statically
3026 * allocated constant string or the 'bufsize'-byte buffer 'reasonbuf'.
3027 * 'bufsize' should be at least OFPUTIL_PACKET_IN_REASON_BUFSIZE. */
3028 const char *
3029 ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason reason,
3030 char *reasonbuf, size_t bufsize)
3031 {
3032 switch (reason) {
3033 case OFPR_NO_MATCH:
3034 return "no_match";
3035 case OFPR_ACTION:
3036 return "action";
3037 case OFPR_INVALID_TTL:
3038 return "invalid_ttl";
3039
3040 case OFPR_N_REASONS:
3041 default:
3042 snprintf(reasonbuf, bufsize, "%d", (int) reason);
3043 return reasonbuf;
3044 }
3045 }
3046
3047 bool
3048 ofputil_packet_in_reason_from_string(const char *s,
3049 enum ofp_packet_in_reason *reason)
3050 {
3051 int i;
3052
3053 for (i = 0; i < OFPR_N_REASONS; i++) {
3054 char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
3055 const char *reason_s;
3056
3057 reason_s = ofputil_packet_in_reason_to_string(i, reasonbuf,
3058 sizeof reasonbuf);
3059 if (!strcasecmp(s, reason_s)) {
3060 *reason = i;
3061 return true;
3062 }
3063 }
3064 return false;
3065 }
3066
3067 /* Converts an OFPT_PACKET_OUT in 'opo' into an abstract ofputil_packet_out in
3068 * 'po'.
3069 *
3070 * Uses 'ofpacts' to store the abstract OFPACT_* version of the packet out
3071 * message's actions. The caller must initialize 'ofpacts' and retains
3072 * ownership of it. 'po->ofpacts' will point into the 'ofpacts' buffer.
3073 *
3074 * Returns 0 if successful, otherwise an OFPERR_* value. */
3075 enum ofperr
3076 ofputil_decode_packet_out(struct ofputil_packet_out *po,
3077 const struct ofp_header *oh,
3078 struct ofpbuf *ofpacts)
3079 {
3080 enum ofpraw raw;
3081 struct ofpbuf b;
3082
3083 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3084 raw = ofpraw_pull_assert(&b);
3085
3086 if (raw == OFPRAW_OFPT11_PACKET_OUT) {
3087 enum ofperr error;
3088 const struct ofp11_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
3089
3090 po->buffer_id = ntohl(opo->buffer_id);
3091 error = ofputil_port_from_ofp11(opo->in_port, &po->in_port);
3092 if (error) {
3093 return error;
3094 }
3095
3096 error = ofpacts_pull_openflow11_actions(&b, oh->version,
3097 ntohs(opo->actions_len),
3098 ofpacts);
3099 if (error) {
3100 return error;
3101 }
3102 } else if (raw == OFPRAW_OFPT10_PACKET_OUT) {
3103 enum ofperr error;
3104 const struct ofp10_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
3105
3106 po->buffer_id = ntohl(opo->buffer_id);
3107 po->in_port = u16_to_ofp(ntohs(opo->in_port));
3108
3109 error = ofpacts_pull_openflow10(&b, ntohs(opo->actions_len), ofpacts);
3110 if (error) {
3111 return error;
3112 }
3113 } else {
3114 NOT_REACHED();
3115 }
3116
3117 if (ofp_to_u16(po->in_port) >= ofp_to_u16(OFPP_MAX)
3118 && po->in_port != OFPP_LOCAL
3119 && po->in_port != OFPP_NONE && po->in_port != OFPP_CONTROLLER) {
3120 VLOG_WARN_RL(&bad_ofmsg_rl, "packet-out has bad input port %#"PRIx16,
3121 po->in_port);
3122 return OFPERR_OFPBRC_BAD_PORT;
3123 }
3124
3125 po->ofpacts = ofpacts->data;
3126 po->ofpacts_len = ofpacts->size;
3127
3128 if (po->buffer_id == UINT32_MAX) {
3129 po->packet = b.data;
3130 po->packet_len = b.size;
3131 } else {
3132 po->packet = NULL;
3133 po->packet_len = 0;
3134 }
3135
3136 return 0;
3137 }
3138 \f
3139 /* ofputil_phy_port */
3140
3141 /* NETDEV_F_* to and from OFPPF_* and OFPPF10_*. */
3142 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
3143 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
3144 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
3145 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
3146 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
3147 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
3148 BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
3149
3150 /* NETDEV_F_ bits 11...15 are OFPPF10_ bits 7...11: */
3151 BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == (OFPPF10_COPPER << 4));
3152 BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == (OFPPF10_FIBER << 4));
3153 BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == (OFPPF10_AUTONEG << 4));
3154 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == (OFPPF10_PAUSE << 4));
3155 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == (OFPPF10_PAUSE_ASYM << 4));
3156
3157 static enum netdev_features
3158 netdev_port_features_from_ofp10(ovs_be32 ofp10_)
3159 {
3160 uint32_t ofp10 = ntohl(ofp10_);
3161 return (ofp10 & 0x7f) | ((ofp10 & 0xf80) << 4);
3162 }
3163
3164 static ovs_be32
3165 netdev_port_features_to_ofp10(enum netdev_features features)
3166 {
3167 return htonl((features & 0x7f) | ((features & 0xf800) >> 4));
3168 }
3169
3170 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
3171 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
3172 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
3173 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
3174 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
3175 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
3176 BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
3177 BUILD_ASSERT_DECL((int) NETDEV_F_40GB_FD == OFPPF11_40GB_FD); /* bit 7 */
3178 BUILD_ASSERT_DECL((int) NETDEV_F_100GB_FD == OFPPF11_100GB_FD); /* bit 8 */
3179 BUILD_ASSERT_DECL((int) NETDEV_F_1TB_FD == OFPPF11_1TB_FD); /* bit 9 */
3180 BUILD_ASSERT_DECL((int) NETDEV_F_OTHER == OFPPF11_OTHER); /* bit 10 */
3181 BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == OFPPF11_COPPER); /* bit 11 */
3182 BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == OFPPF11_FIBER); /* bit 12 */
3183 BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == OFPPF11_AUTONEG); /* bit 13 */
3184 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == OFPPF11_PAUSE); /* bit 14 */
3185 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == OFPPF11_PAUSE_ASYM);/* bit 15 */
3186
3187 static enum netdev_features
3188 netdev_port_features_from_ofp11(ovs_be32 ofp11)
3189 {
3190 return ntohl(ofp11) & 0xffff;
3191 }
3192
3193 static ovs_be32
3194 netdev_port_features_to_ofp11(enum netdev_features features)
3195 {
3196 return htonl(features & 0xffff);
3197 }
3198
3199 static enum ofperr
3200 ofputil_decode_ofp10_phy_port(struct ofputil_phy_port *pp,
3201 const struct ofp10_phy_port *opp)
3202 {
3203 memset(pp, 0, sizeof *pp);
3204
3205 pp->port_no = u16_to_ofp(ntohs(opp->port_no));
3206 memcpy(pp->hw_addr, opp->hw_addr, OFP_ETH_ALEN);
3207 ovs_strlcpy(pp->name, opp->name, OFP_MAX_PORT_NAME_LEN);
3208
3209 pp->config = ntohl(opp->config) & OFPPC10_ALL;
3210 pp->state = ntohl(opp->state) & OFPPS10_ALL;
3211
3212 pp->curr = netdev_port_features_from_ofp10(opp->curr);
3213 pp->advertised = netdev_port_features_from_ofp10(opp->advertised);
3214 pp->supported = netdev_port_features_from_ofp10(opp->supported);
3215 pp->peer = netdev_port_features_from_ofp10(opp->peer);
3216
3217 pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
3218 pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
3219
3220 return 0;
3221 }
3222
3223 static enum ofperr
3224 ofputil_decode_ofp11_port(struct ofputil_phy_port *pp,
3225 const struct ofp11_port *op)
3226 {
3227 enum ofperr error;
3228
3229 memset(pp, 0, sizeof *pp);
3230
3231 error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
3232 if (error) {
3233 return error;
3234 }
3235 memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
3236 ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
3237
3238 pp->config = ntohl(op->config) & OFPPC11_ALL;
3239 pp->state = ntohl(op->state) & OFPPC11_ALL;
3240
3241 pp->curr = netdev_port_features_from_ofp11(op->curr);
3242 pp->advertised = netdev_port_features_from_ofp11(op->advertised);
3243 pp->supported = netdev_port_features_from_ofp11(op->supported);
3244 pp->peer = netdev_port_features_from_ofp11(op->peer);
3245
3246 pp->curr_speed = ntohl(op->curr_speed);
3247 pp->max_speed = ntohl(op->max_speed);
3248
3249 return 0;
3250 }
3251
3252 static size_t
3253 ofputil_get_phy_port_size(enum ofp_version ofp_version)
3254 {
3255 switch (ofp_version) {
3256 case OFP10_VERSION:
3257 return sizeof(struct ofp10_phy_port);
3258 case OFP11_VERSION:
3259 case OFP12_VERSION:
3260 case OFP13_VERSION:
3261 return sizeof(struct ofp11_port);
3262 default:
3263 NOT_REACHED();
3264 }
3265 }
3266
3267 static void
3268 ofputil_encode_ofp10_phy_port(const struct ofputil_phy_port *pp,
3269 struct ofp10_phy_port *opp)
3270 {
3271 memset(opp, 0, sizeof *opp);
3272
3273 opp->port_no = htons(ofp_to_u16(pp->port_no));
3274 memcpy(opp->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3275 ovs_strlcpy(opp->name, pp->name, OFP_MAX_PORT_NAME_LEN);
3276
3277 opp->config = htonl(pp->config & OFPPC10_ALL);
3278 opp->state = htonl(pp->state & OFPPS10_ALL);
3279
3280 opp->curr = netdev_port_features_to_ofp10(pp->curr);
3281 opp->advertised = netdev_port_features_to_ofp10(pp->advertised);
3282 opp->supported = netdev_port_features_to_ofp10(pp->supported);
3283 opp->peer = netdev_port_features_to_ofp10(pp->peer);
3284 }
3285
3286 static void
3287 ofputil_encode_ofp11_port(const struct ofputil_phy_port *pp,
3288 struct ofp11_port *op)
3289 {
3290 memset(op, 0, sizeof *op);
3291
3292 op->port_no = ofputil_port_to_ofp11(pp->port_no);
3293 memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3294 ovs_strlcpy(op->name, pp->name, OFP_MAX_PORT_NAME_LEN);
3295
3296 op->config = htonl(pp->config & OFPPC11_ALL);
3297 op->state = htonl(pp->state & OFPPS11_ALL);
3298
3299 op->curr = netdev_port_features_to_ofp11(pp->curr);
3300 op->advertised = netdev_port_features_to_ofp11(pp->advertised);
3301 op->supported = netdev_port_features_to_ofp11(pp->supported);
3302 op->peer = netdev_port_features_to_ofp11(pp->peer);
3303
3304 op->curr_speed = htonl(pp->curr_speed);
3305 op->max_speed = htonl(pp->max_speed);
3306 }
3307
3308 static void
3309 ofputil_put_phy_port(enum ofp_version ofp_version,
3310 const struct ofputil_phy_port *pp, struct ofpbuf *b)
3311 {
3312 switch (ofp_version) {
3313 case OFP10_VERSION: {
3314 struct ofp10_phy_port *opp;
3315 if (b->size + sizeof *opp <= UINT16_MAX) {
3316 opp = ofpbuf_put_uninit(b, sizeof *opp);
3317 ofputil_encode_ofp10_phy_port(pp, opp);
3318 }
3319 break;
3320 }
3321
3322 case OFP11_VERSION:
3323 case OFP12_VERSION:
3324 case OFP13_VERSION: {
3325 struct ofp11_port *op;
3326 if (b->size + sizeof *op <= UINT16_MAX) {
3327 op = ofpbuf_put_uninit(b, sizeof *op);
3328 ofputil_encode_ofp11_port(pp, op);
3329 }
3330 break;
3331 }
3332
3333 default:
3334 NOT_REACHED();
3335 }
3336 }
3337
3338 void
3339 ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
3340 const struct ofputil_phy_port *pp,
3341 struct list *replies)
3342 {
3343 switch (ofp_version) {
3344 case OFP10_VERSION: {
3345 struct ofp10_phy_port *opp;
3346
3347 opp = ofpmp_append(replies, sizeof *opp);
3348 ofputil_encode_ofp10_phy_port(pp, opp);
3349 break;
3350 }
3351
3352 case OFP11_VERSION:
3353 case OFP12_VERSION:
3354 case OFP13_VERSION: {
3355 struct ofp11_port *op;
3356
3357 op = ofpmp_append(replies, sizeof *op);
3358 ofputil_encode_ofp11_port(pp, op);
3359 break;
3360 }
3361
3362 default:
3363 NOT_REACHED();
3364 }
3365 }
3366 \f
3367 /* ofputil_switch_features */
3368
3369 #define OFPC_COMMON (OFPC_FLOW_STATS | OFPC_TABLE_STATS | OFPC_PORT_STATS | \
3370 OFPC_IP_REASM | OFPC_QUEUE_STATS)
3371 BUILD_ASSERT_DECL((int) OFPUTIL_C_FLOW_STATS == OFPC_FLOW_STATS);
3372 BUILD_ASSERT_DECL((int) OFPUTIL_C_TABLE_STATS == OFPC_TABLE_STATS);
3373 BUILD_ASSERT_DECL((int) OFPUTIL_C_PORT_STATS == OFPC_PORT_STATS);
3374 BUILD_ASSERT_DECL((int) OFPUTIL_C_IP_REASM == OFPC_IP_REASM);
3375 BUILD_ASSERT_DECL((int) OFPUTIL_C_QUEUE_STATS == OFPC_QUEUE_STATS);
3376 BUILD_ASSERT_DECL((int) OFPUTIL_C_ARP_MATCH_IP == OFPC_ARP_MATCH_IP);
3377
3378 struct ofputil_action_bit_translation {
3379 enum ofputil_action_bitmap ofputil_bit;
3380 int of_bit;
3381 };
3382
3383 static const struct ofputil_action_bit_translation of10_action_bits[] = {
3384 { OFPUTIL_A_OUTPUT, OFPAT10_OUTPUT },
3385 { OFPUTIL_A_SET_VLAN_VID, OFPAT10_SET_VLAN_VID },
3386 { OFPUTIL_A_SET_VLAN_PCP, OFPAT10_SET_VLAN_PCP },
3387 { OFPUTIL_A_STRIP_VLAN, OFPAT10_STRIP_VLAN },
3388 { OFPUTIL_A_SET_DL_SRC, OFPAT10_SET_DL_SRC },
3389 { OFPUTIL_A_SET_DL_DST, OFPAT10_SET_DL_DST },
3390 { OFPUTIL_A_SET_NW_SRC, OFPAT10_SET_NW_SRC },
3391 { OFPUTIL_A_SET_NW_DST, OFPAT10_SET_NW_DST },
3392 { OFPUTIL_A_SET_NW_TOS, OFPAT10_SET_NW_TOS },
3393 { OFPUTIL_A_SET_TP_SRC, OFPAT10_SET_TP_SRC },
3394 { OFPUTIL_A_SET_TP_DST, OFPAT10_SET_TP_DST },
3395 { OFPUTIL_A_ENQUEUE, OFPAT10_ENQUEUE },
3396 { 0, 0 },
3397 };
3398
3399 static enum ofputil_action_bitmap
3400 decode_action_bits(ovs_be32 of_actions,
3401 const struct ofputil_action_bit_translation *x)
3402 {
3403 enum ofputil_action_bitmap ofputil_actions;
3404
3405 ofputil_actions = 0;
3406 for (; x->ofputil_bit; x++) {
3407 if (of_actions & htonl(1u << x->of_bit)) {
3408 ofputil_actions |= x->ofputil_bit;
3409 }
3410 }
3411 return ofputil_actions;
3412 }
3413
3414 static uint32_t
3415 ofputil_capabilities_mask(enum ofp_version ofp_version)
3416 {
3417 /* Handle capabilities whose bit is unique for all Open Flow versions */
3418 switch (ofp_version) {
3419 case OFP10_VERSION:
3420 case OFP11_VERSION:
3421 return OFPC_COMMON | OFPC_ARP_MATCH_IP;
3422 case OFP12_VERSION:
3423 case OFP13_VERSION:
3424 return OFPC_COMMON | OFPC12_PORT_BLOCKED;
3425 default:
3426 /* Caller needs to check osf->header.version itself */
3427 return 0;
3428 }
3429 }
3430
3431 /* Decodes an OpenFlow 1.0 or 1.1 "switch_features" structure 'osf' into an
3432 * abstract representation in '*features'. Initializes '*b' to iterate over
3433 * the OpenFlow port structures following 'osf' with later calls to
3434 * ofputil_pull_phy_port(). Returns 0 if successful, otherwise an
3435 * OFPERR_* value. */
3436 enum ofperr
3437 ofputil_decode_switch_features(const struct ofp_header *oh,
3438 struct ofputil_switch_features *features,
3439 struct ofpbuf *b)
3440 {
3441 const struct ofp_switch_features *osf;
3442 enum ofpraw raw;
3443
3444 ofpbuf_use_const(b, oh, ntohs(oh->length));
3445 raw = ofpraw_pull_assert(b);
3446
3447 osf = ofpbuf_pull(b, sizeof *osf);
3448 features->datapath_id = ntohll(osf->datapath_id);
3449 features->n_buffers = ntohl(osf->n_buffers);
3450 features->n_tables = osf->n_tables;
3451 features->auxiliary_id = 0;
3452
3453 features->capabilities = ntohl(osf->capabilities) &
3454 ofputil_capabilities_mask(oh->version);
3455
3456 if (b->size % ofputil_get_phy_port_size(oh->version)) {
3457 return OFPERR_OFPBRC_BAD_LEN;
3458 }
3459
3460 if (raw == OFPRAW_OFPT10_FEATURES_REPLY) {
3461 if (osf->capabilities & htonl(OFPC10_STP)) {
3462 features->capabilities |= OFPUTIL_C_STP;
3463 }
3464 features->actions = decode_action_bits(osf->actions, of10_action_bits);
3465 } else if (raw == OFPRAW_OFPT11_FEATURES_REPLY
3466 || raw == OFPRAW_OFPT13_FEATURES_REPLY) {
3467 if (osf->capabilities & htonl(OFPC11_GROUP_STATS)) {
3468 features->capabilities |= OFPUTIL_C_GROUP_STATS;
3469 }
3470 features->actions = 0;
3471 if (raw == OFPRAW_OFPT13_FEATURES_REPLY) {
3472 features->auxiliary_id = osf->auxiliary_id;
3473 }
3474 } else {
3475 return OFPERR_OFPBRC_BAD_VERSION;
3476 }
3477
3478 return 0;
3479 }
3480
3481 /* Returns true if the maximum number of ports are in 'oh'. */
3482 static bool
3483 max_ports_in_features(const struct ofp_header *oh)
3484 {
3485 size_t pp_size = ofputil_get_phy_port_size(oh->version);
3486 return ntohs(oh->length) + pp_size > UINT16_MAX;
3487 }
3488
3489 /* Given a buffer 'b' that contains a Features Reply message, checks if
3490 * it contains the maximum number of ports that will fit. If so, it
3491 * returns true and removes the ports from the message. The caller
3492 * should then send an OFPST_PORT_DESC stats request to get the ports,
3493 * since the switch may have more ports than could be represented in the
3494 * Features Reply. Otherwise, returns false.
3495 */
3496 bool
3497 ofputil_switch_features_ports_trunc(struct ofpbuf *b)
3498 {
3499 struct ofp_header *oh = b->data;
3500
3501 if (max_ports_in_features(oh)) {
3502 /* Remove all the ports. */
3503 b->size = (sizeof(struct ofp_header)
3504 + sizeof(struct ofp_switch_features));
3505 ofpmsg_update_length(b);
3506
3507 return true;
3508 }
3509
3510 return false;
3511 }
3512
3513 static ovs_be32
3514 encode_action_bits(enum ofputil_action_bitmap ofputil_actions,
3515 const struct ofputil_action_bit_translation *x)
3516 {
3517 uint32_t of_actions;
3518
3519 of_actions = 0;
3520 for (; x->ofputil_bit; x++) {
3521 if (ofputil_actions & x->ofputil_bit) {
3522 of_actions |= 1 << x->of_bit;
3523 }
3524 }
3525 return htonl(of_actions);
3526 }
3527
3528 /* Returns a buffer owned by the caller that encodes 'features' in the format
3529 * required by 'protocol' with the given 'xid'. The caller should append port
3530 * information to the buffer with subsequent calls to
3531 * ofputil_put_switch_features_port(). */
3532 struct ofpbuf *
3533 ofputil_encode_switch_features(const struct ofputil_switch_features *features,
3534 enum ofputil_protocol protocol, ovs_be32 xid)
3535 {
3536 struct ofp_switch_features *osf;
3537 struct ofpbuf *b;
3538 enum ofp_version version;
3539 enum ofpraw raw;
3540
3541 version = ofputil_protocol_to_ofp_version(protocol);
3542 switch (version) {
3543 case OFP10_VERSION:
3544 raw = OFPRAW_OFPT10_FEATURES_REPLY;
3545 break;
3546 case OFP11_VERSION:
3547 case OFP12_VERSION:
3548 raw = OFPRAW_OFPT11_FEATURES_REPLY;
3549 break;
3550 case OFP13_VERSION:
3551 raw = OFPRAW_OFPT13_FEATURES_REPLY;
3552 break;
3553 default:
3554 NOT_REACHED();
3555 }
3556 b = ofpraw_alloc_xid(raw, version, xid, 0);
3557 osf = ofpbuf_put_zeros(b, sizeof *osf);
3558 osf->datapath_id = htonll(features->datapath_id);
3559 osf->n_buffers = htonl(features->n_buffers);
3560 osf->n_tables = features->n_tables;
3561
3562 osf->capabilities = htonl(features->capabilities & OFPC_COMMON);
3563 osf->capabilities = htonl(features->capabilities &
3564 ofputil_capabilities_mask(version));
3565 switch (version) {
3566 case OFP10_VERSION:
3567 if (features->capabilities & OFPUTIL_C_STP) {
3568 osf->capabilities |= htonl(OFPC10_STP);
3569 }
3570 osf->actions = encode_action_bits(features->actions, of10_action_bits);
3571 break;
3572 case OFP13_VERSION:
3573 osf->auxiliary_id = features->auxiliary_id;
3574 /* fall through */
3575 case OFP11_VERSION:
3576 case OFP12_VERSION:
3577 if (features->capabilities & OFPUTIL_C_GROUP_STATS) {
3578 osf->capabilities |= htonl(OFPC11_GROUP_STATS);
3579 }
3580 break;
3581 default:
3582 NOT_REACHED();
3583 }
3584
3585 return b;
3586 }
3587
3588 /* Encodes 'pp' into the format required by the switch_features message already
3589 * in 'b', which should have been returned by ofputil_encode_switch_features(),
3590 * and appends the encoded version to 'b'. */
3591 void
3592 ofputil_put_switch_features_port(const struct ofputil_phy_port *pp,
3593 struct ofpbuf *b)
3594 {
3595 const struct ofp_header *oh = b->data;
3596
3597 if (oh->version < OFP13_VERSION) {
3598 ofputil_put_phy_port(oh->version, pp, b);
3599 }
3600 }
3601 \f
3602 /* ofputil_port_status */
3603
3604 /* Decodes the OpenFlow "port status" message in '*ops' into an abstract form
3605 * in '*ps'. Returns 0 if successful, otherwise an OFPERR_* value. */
3606 enum ofperr
3607 ofputil_decode_port_status(const struct ofp_header *oh,
3608 struct ofputil_port_status *ps)
3609 {
3610 const struct ofp_port_status *ops;
3611 struct ofpbuf b;
3612 int retval;
3613
3614 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3615 ofpraw_pull_assert(&b);
3616 ops = ofpbuf_pull(&b, sizeof *ops);
3617
3618 if (ops->reason != OFPPR_ADD &&
3619 ops->reason != OFPPR_DELETE &&
3620 ops->reason != OFPPR_MODIFY) {
3621 return OFPERR_NXBRC_BAD_REASON;
3622 }
3623 ps->reason = ops->reason;
3624
3625 retval = ofputil_pull_phy_port(oh->version, &b, &ps->desc);
3626 ovs_assert(retval != EOF);
3627 return retval;
3628 }
3629
3630 /* Converts the abstract form of a "port status" message in '*ps' into an
3631 * OpenFlow message suitable for 'protocol', and returns that encoded form in
3632 * a buffer owned by the caller. */
3633 struct ofpbuf *
3634 ofputil_encode_port_status(const struct ofputil_port_status *ps,
3635 enum ofputil_protocol protocol)
3636 {
3637 struct ofp_port_status *ops;
3638 struct ofpbuf *b;
3639 enum ofp_version version;
3640 enum ofpraw raw;
3641
3642 version = ofputil_protocol_to_ofp_version(protocol);
3643 switch (version) {
3644 case OFP10_VERSION:
3645 raw = OFPRAW_OFPT10_PORT_STATUS;
3646 break;
3647
3648 case OFP11_VERSION:
3649 case OFP12_VERSION:
3650 case OFP13_VERSION:
3651 raw = OFPRAW_OFPT11_PORT_STATUS;
3652 break;
3653
3654 default:
3655 NOT_REACHED();
3656 }
3657
3658 b = ofpraw_alloc_xid(raw, version, htonl(0), 0);
3659 ops = ofpbuf_put_zeros(b, sizeof *ops);
3660 ops->reason = ps->reason;
3661 ofputil_put_phy_port(version, &ps->desc, b);
3662 ofpmsg_update_length(b);
3663 return b;
3664 }
3665
3666 /* ofputil_port_mod */
3667
3668 /* Decodes the OpenFlow "port mod" message in '*oh' into an abstract form in
3669 * '*pm'. Returns 0 if successful, otherwise an OFPERR_* value. */
3670 enum ofperr
3671 ofputil_decode_port_mod(const struct ofp_header *oh,
3672 struct ofputil_port_mod *pm)
3673 {
3674 enum ofpraw raw;
3675 struct ofpbuf b;
3676
3677 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3678 raw = ofpraw_pull_assert(&b);
3679
3680 if (raw == OFPRAW_OFPT10_PORT_MOD) {
3681 const struct ofp10_port_mod *opm = b.data;
3682
3683 pm->port_no = u16_to_ofp(ntohs(opm->port_no));
3684 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3685 pm->config = ntohl(opm->config) & OFPPC10_ALL;
3686 pm->mask = ntohl(opm->mask) & OFPPC10_ALL;
3687 pm->advertise = netdev_port_features_from_ofp10(opm->advertise);
3688 } else if (raw == OFPRAW_OFPT11_PORT_MOD) {
3689 const struct ofp11_port_mod *opm = b.data;
3690 enum ofperr error;
3691
3692 error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
3693 if (error) {
3694 return error;
3695 }
3696
3697 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3698 pm->config = ntohl(opm->config) & OFPPC11_ALL;
3699 pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
3700 pm->advertise = netdev_port_features_from_ofp11(opm->advertise);
3701 } else {
3702 return OFPERR_OFPBRC_BAD_TYPE;
3703 }
3704
3705 pm->config &= pm->mask;
3706 return 0;
3707 }
3708
3709 /* Converts the abstract form of a "port mod" message in '*pm' into an OpenFlow
3710 * message suitable for 'protocol', and returns that encoded form in a buffer
3711 * owned by the caller. */
3712 struct ofpbuf *
3713 ofputil_encode_port_mod(const struct ofputil_port_mod *pm,
3714 enum ofputil_protocol protocol)
3715 {
3716 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
3717 struct ofpbuf *b;
3718
3719 switch (ofp_version) {
3720 case OFP10_VERSION: {
3721 struct ofp10_port_mod *opm;
3722
3723 b = ofpraw_alloc(OFPRAW_OFPT10_PORT_MOD, ofp_version, 0);
3724 opm = ofpbuf_put_zeros(b, sizeof *opm);
3725 opm->port_no = htons(ofp_to_u16(pm->port_no));
3726 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3727 opm->config = htonl(pm->config & OFPPC10_ALL);
3728 opm->mask = htonl(pm->mask & OFPPC10_ALL);
3729 opm->advertise = netdev_port_features_to_ofp10(pm->advertise);
3730 break;
3731 }
3732
3733 case OFP11_VERSION:
3734 case OFP12_VERSION:
3735 case OFP13_VERSION: {
3736 struct ofp11_port_mod *opm;
3737
3738 b = ofpraw_alloc(OFPRAW_OFPT11_PORT_MOD, ofp_version, 0);
3739 opm = ofpbuf_put_zeros(b, sizeof *opm);
3740 opm->port_no = ofputil_port_to_ofp11(pm->port_no);
3741 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3742 opm->config = htonl(pm->config & OFPPC11_ALL);
3743 opm->mask = htonl(pm->mask & OFPPC11_ALL);
3744 opm->advertise = netdev_port_features_to_ofp11(pm->advertise);
3745 break;
3746 }
3747 default:
3748 NOT_REACHED();
3749 }
3750
3751 return b;
3752 }
3753
3754 /* ofputil_table_mod */
3755
3756 /* Decodes the OpenFlow "table mod" message in '*oh' into an abstract form in
3757 * '*pm'. Returns 0 if successful, otherwise an OFPERR_* value. */
3758 enum ofperr
3759 ofputil_decode_table_mod(const struct ofp_header *oh,
3760 struct ofputil_table_mod *pm)
3761 {
3762 enum ofpraw raw;
3763 struct ofpbuf b;
3764
3765 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3766 raw = ofpraw_pull_assert(&b);
3767
3768 if (raw == OFPRAW_OFPT11_TABLE_MOD) {
3769 const struct ofp11_table_mod *otm = b.data;
3770
3771 pm->table_id = otm->table_id;
3772 pm->config = ntohl(otm->config);
3773 } else {
3774 return OFPERR_OFPBRC_BAD_TYPE;
3775 }
3776
3777 return 0;
3778 }
3779
3780 /* Converts the abstract form of a "table mod" message in '*pm' into an OpenFlow
3781 * message suitable for 'protocol', and returns that encoded form in a buffer
3782 * owned by the caller. */
3783 struct ofpbuf *
3784 ofputil_encode_table_mod(const struct ofputil_table_mod *pm,
3785 enum ofputil_protocol protocol)
3786 {
3787 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
3788 struct ofpbuf *b;
3789
3790 switch (ofp_version) {
3791 case OFP10_VERSION: {
3792 ovs_fatal(0, "table mod needs OpenFlow 1.1 or later "
3793 "(\'-O OpenFlow11\')");
3794 break;
3795 }
3796 case OFP11_VERSION:
3797 case OFP12_VERSION:
3798 case OFP13_VERSION: {
3799 struct ofp11_table_mod *otm;
3800
3801 b = ofpraw_alloc(OFPRAW_OFPT11_TABLE_MOD, ofp_version, 0);
3802 otm = ofpbuf_put_zeros(b, sizeof *otm);
3803 otm->table_id = pm->table_id;
3804 otm->config = htonl(pm->config);
3805 break;
3806 }
3807 default:
3808 NOT_REACHED();
3809 }
3810
3811 return b;
3812 }
3813 \f
3814 /* ofputil_role_request */
3815
3816 /* Decodes the OpenFlow "role request" or "role reply" message in '*oh' into
3817 * an abstract form in '*rr'. Returns 0 if successful, otherwise an
3818 * OFPERR_* value. */
3819 enum ofperr
3820 ofputil_decode_role_message(const struct ofp_header *oh,
3821 struct ofputil_role_request *rr)
3822 {
3823 struct ofpbuf b;
3824 enum ofpraw raw;
3825
3826 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3827 raw = ofpraw_pull_assert(&b);
3828
3829 if (raw == OFPRAW_OFPT12_ROLE_REQUEST ||
3830 raw == OFPRAW_OFPT12_ROLE_REPLY) {
3831 const struct ofp12_role_request *orr = b.l3;
3832
3833 if (orr->role != htonl(OFPCR12_ROLE_NOCHANGE) &&
3834 orr->role != htonl(OFPCR12_ROLE_EQUAL) &&
3835 orr->role != htonl(OFPCR12_ROLE_MASTER) &&
3836 orr->role != htonl(OFPCR12_ROLE_SLAVE)) {
3837 return OFPERR_OFPRRFC_BAD_ROLE;
3838 }
3839
3840 rr->role = ntohl(orr->role);
3841 if (raw == OFPRAW_OFPT12_ROLE_REQUEST
3842 ? orr->role == htonl(OFPCR12_ROLE_NOCHANGE)
3843 : orr->generation_id == OVS_BE64_MAX) {
3844 rr->have_generation_id = false;
3845 rr->generation_id = 0;
3846 } else {
3847 rr->have_generation_id = true;
3848 rr->generation_id = ntohll(orr->generation_id);
3849 }
3850 } else if (raw == OFPRAW_NXT_ROLE_REQUEST ||
3851 raw == OFPRAW_NXT_ROLE_REPLY) {
3852 const struct nx_role_request *nrr = b.l3;
3853
3854 BUILD_ASSERT(NX_ROLE_OTHER + 1 == OFPCR12_ROLE_EQUAL);
3855 BUILD_ASSERT(NX_ROLE_MASTER + 1 == OFPCR12_ROLE_MASTER);
3856 BUILD_ASSERT(NX_ROLE_SLAVE + 1 == OFPCR12_ROLE_SLAVE);
3857
3858 if (nrr->role != htonl(NX_ROLE_OTHER) &&
3859 nrr->role != htonl(NX_ROLE_MASTER) &&
3860 nrr->role != htonl(NX_ROLE_SLAVE)) {
3861 return OFPERR_OFPRRFC_BAD_ROLE;
3862 }
3863
3864 rr->role = ntohl(nrr->role) + 1;
3865 rr->have_generation_id = false;
3866 rr->generation_id = 0;
3867 } else {
3868 NOT_REACHED();
3869 }
3870
3871 return 0;
3872 }
3873
3874 /* Returns an encoded form of a role reply suitable for the "request" in a
3875 * buffer owned by the caller. */
3876 struct ofpbuf *
3877 ofputil_encode_role_reply(const struct ofp_header *request,
3878 const struct ofputil_role_request *rr)
3879 {
3880 struct ofpbuf *buf;
3881 enum ofpraw raw;
3882
3883 raw = ofpraw_decode_assert(request);
3884 if (raw == OFPRAW_OFPT12_ROLE_REQUEST) {
3885 struct ofp12_role_request *orr;
3886
3887 buf = ofpraw_alloc_reply(OFPRAW_OFPT12_ROLE_REPLY, request, 0);
3888 orr = ofpbuf_put_zeros(buf, sizeof *orr);
3889
3890 orr->role = htonl(rr->role);
3891 orr->generation_id = htonll(rr->have_generation_id
3892 ? rr->generation_id
3893 : UINT64_MAX);
3894 } else if (raw == OFPRAW_NXT_ROLE_REQUEST) {
3895 struct nx_role_request *nrr;
3896
3897 BUILD_ASSERT(NX_ROLE_OTHER == OFPCR12_ROLE_EQUAL - 1);
3898 BUILD_ASSERT(NX_ROLE_MASTER == OFPCR12_ROLE_MASTER - 1);
3899 BUILD_ASSERT(NX_ROLE_SLAVE == OFPCR12_ROLE_SLAVE - 1);
3900
3901 buf = ofpraw_alloc_reply(OFPRAW_NXT_ROLE_REPLY, request, 0);
3902 nrr = ofpbuf_put_zeros(buf, sizeof *nrr);
3903 nrr->role = htonl(rr->role - 1);
3904 } else {
3905 NOT_REACHED();
3906 }
3907
3908 return buf;
3909 }
3910 \f
3911 /* Table stats. */
3912
3913 static void
3914 ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
3915 struct ofpbuf *buf)
3916 {
3917 struct wc_map {
3918 enum ofp10_flow_wildcards wc10;
3919 enum oxm12_ofb_match_fields mf12;
3920 };
3921
3922 static const struct wc_map wc_map[] = {
3923 { OFPFW10_IN_PORT, OFPXMT12_OFB_IN_PORT },
3924 { OFPFW10_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
3925 { OFPFW10_DL_SRC, OFPXMT12_OFB_ETH_SRC },
3926 { OFPFW10_DL_DST, OFPXMT12_OFB_ETH_DST},
3927 { OFPFW10_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
3928 { OFPFW10_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
3929 { OFPFW10_TP_SRC, OFPXMT12_OFB_TCP_SRC },
3930 { OFPFW10_TP_DST, OFPXMT12_OFB_TCP_DST },
3931 { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
3932 { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
3933 { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3934 { OFPFW10_NW_TOS, OFPXMT12_OFB_IP_DSCP },
3935 };
3936
3937 struct ofp10_table_stats *out;
3938 const struct wc_map *p;
3939
3940 out = ofpbuf_put_zeros(buf, sizeof *out);
3941 out->table_id = in->table_id;
3942 ovs_strlcpy(out->name, in->name, sizeof out->name);
3943 out->wildcards = 0;
3944 for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
3945 if (in->wildcards & htonll(1ULL << p->mf12)) {
3946 out->wildcards |= htonl(p->wc10);
3947 }
3948 }
3949 out->max_entries = in->max_entries;
3950 out->active_count = in->active_count;
3951 put_32aligned_be64(&out->lookup_count, in->lookup_count);
3952 put_32aligned_be64(&out->matched_count, in->matched_count);
3953 }
3954
3955 static ovs_be32
3956 oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
3957 {
3958 struct map {
3959 enum ofp11_flow_match_fields fmf11;
3960 enum oxm12_ofb_match_fields mf12;
3961 };
3962
3963 static const struct map map[] = {
3964 { OFPFMF11_IN_PORT, OFPXMT12_OFB_IN_PORT },
3965 { OFPFMF11_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
3966 { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3967 { OFPFMF11_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
3968 { OFPFMF11_NW_TOS, OFPXMT12_OFB_IP_DSCP },
3969 { OFPFMF11_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
3970 { OFPFMF11_TP_SRC, OFPXMT12_OFB_TCP_SRC },
3971 { OFPFMF11_TP_DST, OFPXMT12_OFB_TCP_DST },
3972 { OFPFMF11_MPLS_LABEL, OFPXMT12_OFB_MPLS_LABEL },
3973 { OFPFMF11_MPLS_TC, OFPXMT12_OFB_MPLS_TC },
3974 /* I don't know what OFPFMF11_TYPE means. */
3975 { OFPFMF11_DL_SRC, OFPXMT12_OFB_ETH_SRC },
3976 { OFPFMF11_DL_DST, OFPXMT12_OFB_ETH_DST },
3977 { OFPFMF11_NW_SRC, OFPXMT12_OFB_IPV4_SRC },
3978 { OFPFMF11_NW_DST, OFPXMT12_OFB_IPV4_DST },
3979 { OFPFMF11_METADATA, OFPXMT12_OFB_METADATA },
3980 };
3981
3982 const struct map *p;
3983 uint32_t fmf11;
3984
3985 fmf11 = 0;
3986 for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
3987 if (oxm12 & htonll(1ULL << p->mf12)) {
3988 fmf11 |= p->fmf11;
3989 }
3990 }
3991 return htonl(fmf11);
3992 }
3993
3994 static void
3995 ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
3996 struct ofpbuf *buf)
3997 {
3998 struct ofp11_table_stats *out;
3999
4000 out = ofpbuf_put_zeros(buf, sizeof *out);
4001 out->table_id = in->table_id;
4002 ovs_strlcpy(out->name, in->name, sizeof out->name);
4003 out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
4004 out->match = oxm12_to_ofp11_flow_match_fields(in->match);
4005 out->instructions = in->instructions;
4006 out->write_actions = in->write_actions;
4007 out->apply_actions = in->apply_actions;
4008 out->config = in->config;
4009 out->max_entries = in->max_entries;
4010 out->active_count = in->active_count;
4011 out->lookup_count = in->lookup_count;
4012 out->matched_count = in->matched_count;
4013 }
4014
4015 static void
4016 ofputil_put_ofp12_table_stats(const struct ofp12_table_stats *in,
4017 struct ofpbuf *buf)
4018 {
4019 struct ofp12_table_stats *out = ofpbuf_put(buf, in, sizeof *in);
4020
4021 /* Trim off OF1.3-only capabilities. */
4022 out->match &= htonll(OFPXMT12_MASK);
4023 out->wildcards &= htonll(OFPXMT12_MASK);
4024 out->write_setfields &= htonll(OFPXMT12_MASK);
4025 out->apply_setfields &= htonll(OFPXMT12_MASK);
4026 }
4027
4028 static void
4029 ofputil_put_ofp13_table_stats(const struct ofp12_table_stats *in,
4030 struct ofpbuf *buf)
4031 {
4032 struct ofp13_table_stats *out;
4033
4034 /* OF 1.3 splits table features off the ofp_table_stats,
4035 * so there is not much here. */
4036
4037 out = ofpbuf_put_uninit(buf, sizeof *out);
4038 out->table_id = in->table_id;
4039 out->active_count = in->active_count;
4040 out->lookup_count = in->lookup_count;
4041 out->matched_count = in->matched_count;
4042 }
4043
4044 struct ofpbuf *
4045 ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
4046 const struct ofp_header *request)
4047 {
4048 struct ofpbuf *reply;
4049 int i;
4050
4051 reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
4052
4053 for (i = 0; i < n; i++) {
4054 switch ((enum ofp_version) request->version) {
4055 case OFP10_VERSION:
4056 ofputil_put_ofp10_table_stats(&stats[i], reply);
4057 break;
4058
4059 case OFP11_VERSION:
4060 ofputil_put_ofp11_table_stats(&stats[i], reply);
4061 break;
4062
4063 case OFP12_VERSION:
4064 ofputil_put_ofp12_table_stats(&stats[i], reply);
4065 break;
4066
4067 case OFP13_VERSION:
4068 ofputil_put_ofp13_table_stats(&stats[i], reply);
4069 break;
4070
4071 default:
4072 NOT_REACHED();
4073 }
4074 }
4075
4076 return reply;
4077 }
4078 \f
4079 /* ofputil_flow_monitor_request */
4080
4081 /* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
4082 * ofputil_flow_monitor_request in 'rq'.
4083 *
4084 * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
4085 * message. Calling this function multiple times for a single 'msg' iterates
4086 * through the requests. The caller must initially leave 'msg''s layer
4087 * pointers null and not modify them between calls.
4088 *
4089 * Returns 0 if successful, EOF if no requests were left in this 'msg',
4090 * otherwise an OFPERR_* value. */
4091 int
4092 ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
4093 struct ofpbuf *msg)
4094 {
4095 struct nx_flow_monitor_request *nfmr;
4096 uint16_t flags;
4097
4098 if (!msg->l2) {
4099 msg->l2 = msg->data;
4100 ofpraw_pull_assert(msg);
4101 }
4102
4103 if (!msg->size) {
4104 return EOF;
4105 }
4106
4107 nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
4108 if (!nfmr) {
4109 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %zu "
4110 "leftover bytes at end", msg->size);
4111 return OFPERR_OFPBRC_BAD_LEN;
4112 }
4113
4114 flags = ntohs(nfmr->flags);
4115 if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
4116 || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
4117 | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
4118 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
4119 flags);
4120 return OFPERR_NXBRC_FM_BAD_FLAGS;
4121 }
4122
4123 if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
4124 return OFPERR_NXBRC_MUST_BE_ZERO;
4125 }
4126
4127 rq->id = ntohl(nfmr->id);
4128 rq->flags = flags;
4129 rq->out_port = u16_to_ofp(ntohs(nfmr->out_port));
4130 rq->table_id = nfmr->table_id;
4131
4132 return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
4133 }
4134
4135 void
4136 ofputil_append_flow_monitor_request(
4137 const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
4138 {
4139 struct nx_flow_monitor_request *nfmr;
4140 size_t start_ofs;
4141 int match_len;
4142
4143 if (!msg->size) {
4144 ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
4145 }
4146
4147 start_ofs = msg->size;
4148 ofpbuf_put_zeros(msg, sizeof *nfmr);
4149 match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
4150
4151 nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
4152 nfmr->id = htonl(rq->id);
4153 nfmr->flags = htons(rq->flags);
4154 nfmr->out_port = htons(ofp_to_u16(rq->out_port));
4155 nfmr->match_len = htons(match_len);
4156 nfmr->table_id = rq->table_id;
4157 }
4158
4159 /* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
4160 * into an abstract ofputil_flow_update in 'update'. The caller must have
4161 * initialized update->match to point to space allocated for a match.
4162 *
4163 * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
4164 * actions (except for NXFME_ABBREV, which never includes actions). The caller
4165 * must initialize 'ofpacts' and retains ownership of it. 'update->ofpacts'
4166 * will point into the 'ofpacts' buffer.
4167 *
4168 * Multiple flow updates can be packed into a single OpenFlow message. Calling
4169 * this function multiple times for a single 'msg' iterates through the
4170 * updates. The caller must initially leave 'msg''s layer pointers null and
4171 * not modify them between calls.
4172 *
4173 * Returns 0 if successful, EOF if no updates were left in this 'msg',
4174 * otherwise an OFPERR_* value. */
4175 int
4176 ofputil_decode_flow_update(struct ofputil_flow_update *update,
4177 struct ofpbuf *msg, struct ofpbuf *ofpacts)
4178 {
4179 struct nx_flow_update_header *nfuh;
4180 unsigned int length;
4181
4182 if (!msg->l2) {
4183 msg->l2 = msg->data;
4184 ofpraw_pull_assert(msg);
4185 }
4186
4187 if (!msg->size) {
4188 return EOF;
4189 }
4190
4191 if (msg->size < sizeof(struct nx_flow_update_header)) {
4192 goto bad_len;
4193 }
4194
4195 nfuh = msg->data;
4196 update->event = ntohs(nfuh->event);
4197 length = ntohs(nfuh->length);
4198 if (length > msg->size || length % 8) {
4199 goto bad_len;
4200 }
4201
4202 if (update->event == NXFME_ABBREV) {
4203 struct nx_flow_update_abbrev *nfua;
4204
4205 if (length != sizeof *nfua) {
4206 goto bad_len;
4207 }
4208
4209 nfua = ofpbuf_pull(msg, sizeof *nfua);
4210 update->xid = nfua->xid;
4211 return 0;
4212 } else if (update->event == NXFME_ADDED
4213 || update->event == NXFME_DELETED
4214 || update->event == NXFME_MODIFIED) {
4215 struct nx_flow_update_full *nfuf;
4216 unsigned int actions_len;
4217 unsigned int match_len;
4218 enum ofperr error;
4219
4220 if (length < sizeof *nfuf) {
4221 goto bad_len;
4222 }
4223
4224 nfuf = ofpbuf_pull(msg, sizeof *nfuf);
4225 match_len = ntohs(nfuf->match_len);
4226 if (sizeof *nfuf + match_len > length) {
4227 goto bad_len;
4228 }
4229
4230 update->reason = ntohs(nfuf->reason);
4231 update->idle_timeout = ntohs(nfuf->idle_timeout);
4232 update->hard_timeout = ntohs(nfuf->hard_timeout);
4233 update->table_id = nfuf->table_id;
4234 update->cookie = nfuf->cookie;
4235 update->priority = ntohs(nfuf->priority);
4236
4237 error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
4238 if (error) {
4239 return error;
4240 }
4241
4242 actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
4243 error = ofpacts_pull_openflow10(msg, actions_len, ofpacts);
4244 if (error) {
4245 return error;
4246 }
4247
4248 update->ofpacts = ofpacts->data;
4249 update->ofpacts_len = ofpacts->size;
4250 return 0;
4251 } else {
4252 VLOG_WARN_RL(&bad_ofmsg_rl,
4253 "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
4254 ntohs(nfuh->event));
4255 return OFPERR_NXBRC_FM_BAD_EVENT;
4256 }
4257
4258 bad_len:
4259 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %zu "
4260 "leftover bytes at end", msg->size);
4261 return OFPERR_OFPBRC_BAD_LEN;
4262 }
4263
4264 uint32_t
4265 ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
4266 {
4267 const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
4268
4269 return ntohl(cancel->id);
4270 }
4271
4272 struct ofpbuf *
4273 ofputil_encode_flow_monitor_cancel(uint32_t id)
4274 {
4275 struct nx_flow_monitor_cancel *nfmc;
4276 struct ofpbuf *msg;
4277
4278 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
4279 nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
4280 nfmc->id = htonl(id);
4281 return msg;
4282 }
4283
4284 void
4285 ofputil_start_flow_update(struct list *replies)
4286 {
4287 struct ofpbuf *msg;
4288
4289 msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
4290 htonl(0), 1024);
4291
4292 list_init(replies);
4293 list_push_back(replies, &msg->list_node);
4294 }
4295
4296 void
4297 ofputil_append_flow_update(const struct ofputil_flow_update *update,
4298 struct list *replies)
4299 {
4300 struct nx_flow_update_header *nfuh;
4301 struct ofpbuf *msg;
4302 size_t start_ofs;
4303
4304 msg = ofpbuf_from_list(list_back(replies));
4305 start_ofs = msg->size;
4306
4307 if (update->event == NXFME_ABBREV) {
4308 struct nx_flow_update_abbrev *nfua;
4309
4310 nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
4311 nfua->xid = update->xid;
4312 } else {
4313 struct nx_flow_update_full *nfuf;
4314 int match_len;
4315
4316 ofpbuf_put_zeros(msg, sizeof *nfuf);
4317 match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
4318 ofpacts_put_openflow10(update->ofpacts, update->ofpacts_len, msg);
4319
4320 nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
4321 nfuf->reason = htons(update->reason);
4322 nfuf->priority = htons(update->priority);
4323 nfuf->idle_timeout = htons(update->idle_timeout);
4324 nfuf->hard_timeout = htons(update->hard_timeout);
4325 nfuf->match_len = htons(match_len);
4326 nfuf->table_id = update->table_id;
4327 nfuf->cookie = update->cookie;
4328 }
4329
4330 nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
4331 nfuh->length = htons(msg->size - start_ofs);
4332 nfuh->event = htons(update->event);
4333
4334 ofpmp_postappend(replies, start_ofs);
4335 }
4336 \f
4337 struct ofpbuf *
4338 ofputil_encode_packet_out(const struct ofputil_packet_out *po,
4339 enum ofputil_protocol protocol)
4340 {
4341 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
4342 struct ofpbuf *msg;
4343 size_t size;
4344
4345 size = po->ofpacts_len;
4346 if (po->buffer_id == UINT32_MAX) {
4347 size += po->packet_len;
4348 }
4349
4350 switch (ofp_version) {
4351 case OFP10_VERSION: {
4352 struct ofp10_packet_out *opo;
4353 size_t actions_ofs;
4354
4355 msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
4356 ofpbuf_put_zeros(msg, sizeof *opo);
4357 actions_ofs = msg->size;
4358 ofpacts_put_openflow10(po->ofpacts, po->ofpacts_len, msg);
4359
4360 opo = msg->l3;
4361 opo->buffer_id = htonl(po->buffer_id);
4362 opo->in_port = htons(ofp_to_u16(po->in_port));
4363 opo->actions_len = htons(msg->size - actions_ofs);
4364 break;
4365 }
4366
4367 case OFP11_VERSION:
4368 case OFP12_VERSION:
4369 case OFP13_VERSION: {
4370 struct ofp11_packet_out *opo;
4371 size_t len;
4372
4373 msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
4374 ofpbuf_put_zeros(msg, sizeof *opo);
4375 len = ofpacts_put_openflow11_actions(po->ofpacts, po->ofpacts_len, msg);
4376
4377 opo = msg->l3;
4378 opo->buffer_id = htonl(po->buffer_id);
4379 opo->in_port = ofputil_port_to_ofp11(po->in_port);
4380 opo->actions_len = htons(len);
4381 break;
4382 }
4383
4384 default:
4385 NOT_REACHED();
4386 }
4387
4388 if (po->buffer_id == UINT32_MAX) {
4389 ofpbuf_put(msg, po->packet, po->packet_len);
4390 }
4391
4392 ofpmsg_update_length(msg);
4393
4394 return msg;
4395 }
4396 \f
4397 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
4398 struct ofpbuf *
4399 make_echo_request(enum ofp_version ofp_version)
4400 {
4401 return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
4402 htonl(0), 0);
4403 }
4404
4405 /* Creates and returns an OFPT_ECHO_REPLY message matching the
4406 * OFPT_ECHO_REQUEST message in 'rq'. */
4407 struct ofpbuf *
4408 make_echo_reply(const struct ofp_header *rq)
4409 {
4410 struct ofpbuf rq_buf;
4411 struct ofpbuf *reply;
4412
4413 ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
4414 ofpraw_pull_assert(&rq_buf);
4415
4416 reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, rq_buf.size);
4417 ofpbuf_put(reply, rq_buf.data, rq_buf.size);
4418 return reply;
4419 }
4420
4421 struct ofpbuf *
4422 ofputil_encode_barrier_request(enum ofp_version ofp_version)
4423 {
4424 enum ofpraw type;
4425
4426 switch (ofp_version) {
4427 case OFP13_VERSION:
4428 case OFP12_VERSION:
4429 case OFP11_VERSION:
4430 type = OFPRAW_OFPT11_BARRIER_REQUEST;
4431 break;
4432
4433 case OFP10_VERSION:
4434 type = OFPRAW_OFPT10_BARRIER_REQUEST;
4435 break;
4436
4437 default:
4438 NOT_REACHED();
4439 }
4440
4441 return ofpraw_alloc(type, ofp_version, 0);
4442 }
4443
4444 const char *
4445 ofputil_frag_handling_to_string(enum ofp_config_flags flags)
4446 {
4447 switch (flags & OFPC_FRAG_MASK) {
4448 case OFPC_FRAG_NORMAL: return "normal";
4449 case OFPC_FRAG_DROP: return "drop";
4450 case OFPC_FRAG_REASM: return "reassemble";
4451 case OFPC_FRAG_NX_MATCH: return "nx-match";
4452 }
4453
4454 NOT_REACHED();
4455 }
4456
4457 bool
4458 ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
4459 {
4460 if (!strcasecmp(s, "normal")) {
4461 *flags = OFPC_FRAG_NORMAL;
4462 } else if (!strcasecmp(s, "drop")) {
4463 *flags = OFPC_FRAG_DROP;
4464 } else if (!strcasecmp(s, "reassemble")) {
4465 *flags = OFPC_FRAG_REASM;
4466 } else if (!strcasecmp(s, "nx-match")) {
4467 *flags = OFPC_FRAG_NX_MATCH;
4468 } else {
4469 return false;
4470 }
4471 return true;
4472 }
4473
4474 /* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
4475 * port number and stores the latter in '*ofp10_port', for the purpose of
4476 * decoding OpenFlow 1.1+ protocol messages. Returns 0 if successful,
4477 * otherwise an OFPERR_* number. On error, stores OFPP_NONE in '*ofp10_port'.
4478 *
4479 * See the definition of OFP11_MAX for an explanation of the mapping. */
4480 enum ofperr
4481 ofputil_port_from_ofp11(ovs_be32 ofp11_port, ofp_port_t *ofp10_port)
4482 {
4483 uint32_t ofp11_port_h = ntohl(ofp11_port);
4484
4485 if (ofp11_port_h < ofp_to_u16(OFPP_MAX)) {
4486 *ofp10_port = u16_to_ofp(ofp11_port_h);
4487 return 0;
4488 } else if (ofp11_port_h >= ofp11_to_u32(OFPP11_MAX)) {
4489 *ofp10_port = u16_to_ofp(ofp11_port_h - OFPP11_OFFSET);
4490 return 0;
4491 } else {
4492 *ofp10_port = OFPP_NONE;
4493 VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
4494 "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
4495 ofp11_port_h, ofp_to_u16(OFPP_MAX) - 1,
4496 ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
4497 return OFPERR_OFPBAC_BAD_OUT_PORT;
4498 }
4499 }
4500
4501 /* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
4502 * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
4503 *
4504 * See the definition of OFP11_MAX for an explanation of the mapping. */
4505 ovs_be32
4506 ofputil_port_to_ofp11(ofp_port_t ofp10_port)
4507 {
4508 return htonl(ofp_to_u16(ofp10_port) < ofp_to_u16(OFPP_MAX)
4509 ? ofp_to_u16(ofp10_port)
4510 : ofp_to_u16(ofp10_port) + OFPP11_OFFSET);
4511 }
4512
4513 /* Checks that 'port' is a valid output port for the OFPAT10_OUTPUT action, given
4514 * that the switch will never have more than 'max_ports' ports. Returns 0 if
4515 * 'port' is valid, otherwise an OpenFlow return code. */
4516 enum ofperr
4517 ofputil_check_output_port(ofp_port_t port, ofp_port_t max_ports)
4518 {
4519 switch (port) {
4520 case OFPP_IN_PORT:
4521 case OFPP_TABLE:
4522 case OFPP_NORMAL:
4523 case OFPP_FLOOD:
4524 case OFPP_ALL:
4525 case OFPP_CONTROLLER:
4526 case OFPP_NONE:
4527 case OFPP_LOCAL:
4528 return 0;
4529
4530 default:
4531 if (ofp_to_u16(port) < ofp_to_u16(max_ports)) {
4532 return 0;
4533 }
4534 return OFPERR_OFPBAC_BAD_OUT_PORT;
4535 }
4536 }
4537
4538 #define OFPUTIL_NAMED_PORTS \
4539 OFPUTIL_NAMED_PORT(IN_PORT) \
4540 OFPUTIL_NAMED_PORT(TABLE) \
4541 OFPUTIL_NAMED_PORT(NORMAL) \
4542 OFPUTIL_NAMED_PORT(FLOOD) \
4543 OFPUTIL_NAMED_PORT(ALL) \
4544 OFPUTIL_NAMED_PORT(CONTROLLER) \
4545 OFPUTIL_NAMED_PORT(LOCAL) \
4546 OFPUTIL_NAMED_PORT(ANY)
4547
4548 /* For backwards compatibility, so that "none" is recognized as OFPP_ANY */
4549 #define OFPUTIL_NAMED_PORTS_WITH_NONE \
4550 OFPUTIL_NAMED_PORTS \
4551 OFPUTIL_NAMED_PORT(NONE)
4552
4553 /* Stores the port number represented by 's' into '*portp'. 's' may be an
4554 * integer or, for reserved ports, the standard OpenFlow name for the port
4555 * (e.g. "LOCAL").
4556 *
4557 * Returns true if successful, false if 's' is not a valid OpenFlow port number
4558 * or name. The caller should issue an error message in this case, because
4559 * this function usually does not. (This gives the caller an opportunity to
4560 * look up the port name another way, e.g. by contacting the switch and listing
4561 * the names of all its ports).
4562 *
4563 * This function accepts OpenFlow 1.0 port numbers. It also accepts a subset
4564 * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
4565 * range as described in include/openflow/openflow-1.1.h. */
4566 bool
4567 ofputil_port_from_string(const char *s, ofp_port_t *portp)
4568 {
4569 uint32_t port32;
4570
4571 *portp = 0;
4572 if (str_to_uint(s, 10, &port32)) {
4573 if (port32 < ofp_to_u16(OFPP_MAX)) {
4574 /* Pass. */
4575 } else if (port32 < ofp_to_u16(OFPP_FIRST_RESV)) {
4576 VLOG_WARN("port %u is a reserved OF1.0 port number that will "
4577 "be translated to %u when talking to an OF1.1 or "
4578 "later controller", port32, port32 + OFPP11_OFFSET);
4579 } else if (port32 <= ofp_to_u16(OFPP_LAST_RESV)) {
4580 char name[OFP_MAX_PORT_NAME_LEN];
4581
4582 ofputil_port_to_string(u16_to_ofp(port32), name, sizeof name);
4583 VLOG_WARN_ONCE("referring to port %s as %"PRIu32" is deprecated "
4584 "for compatibility with OpenFlow 1.1 and later",
4585 name, port32);
4586 } else if (port32 < ofp11_to_u32(OFPP11_MAX)) {
4587 VLOG_WARN("port %u is outside the supported range 0 through "
4588 "%"PRIx16" or 0x%x through 0x%"PRIx32, port32,
4589 UINT16_MAX, ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
4590 return false;
4591 } else {
4592 port32 -= OFPP11_OFFSET;
4593 }
4594
4595 *portp = u16_to_ofp(port32);
4596 return true;
4597 } else {
4598 struct pair {
4599 const char *name;
4600 ofp_port_t value;
4601 };
4602 static const struct pair pairs[] = {
4603 #define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
4604 OFPUTIL_NAMED_PORTS_WITH_NONE
4605 #undef OFPUTIL_NAMED_PORT
4606 };
4607 const struct pair *p;
4608
4609 for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
4610 if (!strcasecmp(s, p->name)) {
4611 *portp = p->value;
4612 return true;
4613 }
4614 }
4615 return false;
4616 }
4617 }
4618
4619 /* Appends to 's' a string representation of the OpenFlow port number 'port'.
4620 * Most ports' string representation is just the port number, but for special
4621 * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
4622 void
4623 ofputil_format_port(ofp_port_t port, struct ds *s)
4624 {
4625 char name[OFP_MAX_PORT_NAME_LEN];
4626
4627 ofputil_port_to_string(port, name, sizeof name);
4628 ds_put_cstr(s, name);
4629 }
4630
4631 /* Puts in the 'bufsize' byte in 'namebuf' a null-terminated string
4632 * representation of OpenFlow port number 'port'. Most ports are represented
4633 * as just the port number, but special ports, e.g. OFPP_LOCAL, are represented
4634 * by name, e.g. "LOCAL". */
4635 void
4636 ofputil_port_to_string(ofp_port_t port,
4637 char namebuf[OFP_MAX_PORT_NAME_LEN], size_t bufsize)
4638 {
4639 switch (port) {
4640 #define OFPUTIL_NAMED_PORT(NAME) \
4641 case OFPP_##NAME: \
4642 ovs_strlcpy(namebuf, #NAME, bufsize); \
4643 break;
4644 OFPUTIL_NAMED_PORTS
4645 #undef OFPUTIL_NAMED_PORT
4646
4647 default:
4648 snprintf(namebuf, bufsize, "%"PRIu16, port);
4649 break;
4650 }
4651 }
4652
4653 /* Stores the group id represented by 's' into '*group_idp'. 's' may be an
4654 * integer or, for reserved group IDs, the standard OpenFlow name for the group
4655 * (either "ANY" or "ALL").
4656 *
4657 * Returns true if successful, false if 's' is not a valid OpenFlow group ID or
4658 * name. */
4659 bool
4660 ofputil_group_from_string(const char *s, uint32_t *group_idp)
4661 {
4662 if (!strcasecmp(s, "any")) {
4663 *group_idp = OFPG11_ANY;
4664 } else if (!strcasecmp(s, "all")) {
4665 *group_idp = OFPG11_ALL;
4666 } else if (!str_to_uint(s, 10, group_idp)) {
4667 VLOG_WARN("%s is not a valid group ID. (Valid group IDs are "
4668 "32-bit nonnegative integers or the keywords ANY or "
4669 "ALL.)", s);
4670 return false;
4671 }
4672
4673 return true;
4674 }
4675
4676 /* Appends to 's' a string representation of the OpenFlow group ID 'group_id'.
4677 * Most groups' string representation is just the number, but for special
4678 * groups, e.g. OFPG11_ALL, it is the name, e.g. "ALL". */
4679 void
4680 ofputil_format_group(uint32_t group_id, struct ds *s)
4681 {
4682 char name[MAX_GROUP_NAME_LEN];
4683
4684 ofputil_group_to_string(group_id, name, sizeof name);
4685 ds_put_cstr(s, name);
4686 }
4687
4688
4689 /* Puts in the 'bufsize' byte in 'namebuf' a null-terminated string
4690 * representation of OpenFlow group ID 'group_id'. Most group are represented
4691 * as just their number, but special groups, e.g. OFPG11_ALL, are represented
4692 * by name, e.g. "ALL". */
4693 void
4694 ofputil_group_to_string(uint32_t group_id,
4695 char namebuf[MAX_GROUP_NAME_LEN + 1], size_t bufsize)
4696 {
4697 switch (group_id) {
4698 case OFPG11_ALL:
4699 ovs_strlcpy(namebuf, "ALL", bufsize);
4700 break;
4701
4702 case OFPG11_ANY:
4703 ovs_strlcpy(namebuf, "ANY", bufsize);
4704 break;
4705
4706 default:
4707 snprintf(namebuf, bufsize, "%"PRIu32, group_id);
4708 break;
4709 }
4710 }
4711
4712 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
4713 * 'ofp_version', tries to pull the first element from the array. If
4714 * successful, initializes '*pp' with an abstract representation of the
4715 * port and returns 0. If no ports remain to be decoded, returns EOF.
4716 * On an error, returns a positive OFPERR_* value. */
4717 int
4718 ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
4719 struct ofputil_phy_port *pp)
4720 {
4721 switch (ofp_version) {
4722 case OFP10_VERSION: {
4723 const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
4724 return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
4725 }
4726 case OFP11_VERSION:
4727 case OFP12_VERSION:
4728 case OFP13_VERSION: {
4729 const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
4730 return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
4731 }
4732 default:
4733 NOT_REACHED();
4734 }
4735 }
4736
4737 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
4738 * 'ofp_version', returns the number of elements. */
4739 size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *b)
4740 {
4741 return b->size / ofputil_get_phy_port_size(ofp_version);
4742 }
4743
4744 /* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
4745 * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1 if
4746 * 'name' is not the name of any action.
4747 *
4748 * ofp-util.def lists the mapping from names to action. */
4749 int
4750 ofputil_action_code_from_name(const char *name)
4751 {
4752 static const char *const names[OFPUTIL_N_ACTIONS] = {
4753 NULL,
4754 #define OFPAT10_ACTION(ENUM, STRUCT, NAME) NAME,
4755 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
4756 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
4757 #include "ofp-util.def"
4758 };
4759
4760 const char *const *p;
4761
4762 for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
4763 if (*p && !strcasecmp(name, *p)) {
4764 return p - names;
4765 }
4766 }
4767 return -1;
4768 }
4769
4770 /* Appends an action of the type specified by 'code' to 'buf' and returns the
4771 * action. Initializes the parts of 'action' that identify it as having type
4772 * <ENUM> and length 'sizeof *action' and zeros the rest. For actions that
4773 * have variable length, the length used and cleared is that of struct
4774 * <STRUCT>. */
4775 void *
4776 ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
4777 {
4778 switch (code) {
4779 case OFPUTIL_ACTION_INVALID:
4780 NOT_REACHED();
4781
4782 #define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
4783 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4784 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4785 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4786 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4787 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4788 #include "ofp-util.def"
4789 }
4790 NOT_REACHED();
4791 }
4792
4793 #define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
4794 void \
4795 ofputil_init_##ENUM(struct STRUCT *s) \
4796 { \
4797 memset(s, 0, sizeof *s); \
4798 s->type = htons(ENUM); \
4799 s->len = htons(sizeof *s); \
4800 } \
4801 \
4802 struct STRUCT * \
4803 ofputil_put_##ENUM(struct ofpbuf *buf) \
4804 { \
4805 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
4806 ofputil_init_##ENUM(s); \
4807 return s; \
4808 }
4809 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4810 OFPAT10_ACTION(ENUM, STRUCT, NAME)
4811 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4812 void \
4813 ofputil_init_##ENUM(struct STRUCT *s) \
4814 { \
4815 memset(s, 0, sizeof *s); \
4816 s->type = htons(OFPAT10_VENDOR); \
4817 s->len = htons(sizeof *s); \
4818 s->vendor = htonl(NX_VENDOR_ID); \
4819 s->subtype = htons(ENUM); \
4820 } \
4821 \
4822 struct STRUCT * \
4823 ofputil_put_##ENUM(struct ofpbuf *buf) \
4824 { \
4825 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
4826 ofputil_init_##ENUM(s); \
4827 return s; \
4828 }
4829 #include "ofp-util.def"
4830
4831 static void
4832 ofputil_normalize_match__(struct match *match, bool may_log)
4833 {
4834 enum {
4835 MAY_NW_ADDR = 1 << 0, /* nw_src, nw_dst */
4836 MAY_TP_ADDR = 1 << 1, /* tp_src, tp_dst */
4837 MAY_NW_PROTO = 1 << 2, /* nw_proto */
4838 MAY_IPVx = 1 << 3, /* tos, frag, ttl */
4839 MAY_ARP_SHA = 1 << 4, /* arp_sha */
4840 MAY_ARP_THA = 1 << 5, /* arp_tha */
4841 MAY_IPV6 = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
4842 MAY_ND_TARGET = 1 << 7, /* nd_target */
4843 MAY_MPLS = 1 << 8, /* mpls label and tc */
4844 } may_match;
4845
4846 struct flow_wildcards wc;
4847
4848 /* Figure out what fields may be matched. */
4849 if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
4850 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
4851 if (match->flow.nw_proto == IPPROTO_TCP ||
4852 match->flow.nw_proto == IPPROTO_UDP ||
4853 match->flow.nw_proto == IPPROTO_SCTP ||
4854 match->flow.nw_proto == IPPROTO_ICMP) {
4855 may_match |= MAY_TP_ADDR;
4856 }
4857 } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
4858 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
4859 if (match->flow.nw_proto == IPPROTO_TCP ||
4860 match->flow.nw_proto == IPPROTO_UDP ||
4861 match->flow.nw_proto == IPPROTO_SCTP) {
4862 may_match |= MAY_TP_ADDR;
4863 } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
4864 may_match |= MAY_TP_ADDR;
4865 if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
4866 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
4867 } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
4868 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
4869 }
4870 }
4871 } else if (match->flow.dl_type == htons(ETH_TYPE_ARP) ||
4872 match->flow.dl_type == htons(ETH_TYPE_RARP)) {
4873 may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
4874 } else if (eth_type_mpls(match->flow.dl_type)) {
4875 may_match = MAY_MPLS;
4876 } else {
4877 may_match = 0;
4878 }
4879
4880 /* Clear the fields that may not be matched. */
4881 wc = match->wc;
4882 if (!(may_match & MAY_NW_ADDR)) {
4883 wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
4884 }
4885 if (!(may_match & MAY_TP_ADDR)) {
4886 wc.masks.tp_src = wc.masks.tp_dst = htons(0);
4887 }
4888 if (!(may_match & MAY_NW_PROTO)) {
4889 wc.masks.nw_proto = 0;
4890 }
4891 if (!(may_match & MAY_IPVx)) {
4892 wc.masks.nw_tos = 0;
4893 wc.masks.nw_ttl = 0;
4894 }
4895 if (!(may_match & MAY_ARP_SHA)) {
4896 memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
4897 }
4898 if (!(may_match & MAY_ARP_THA)) {
4899 memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
4900 }
4901 if (!(may_match & MAY_IPV6)) {
4902 wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
4903 wc.masks.ipv6_label = htonl(0);
4904 }
4905 if (!(may_match & MAY_ND_TARGET)) {
4906 wc.masks.nd_target = in6addr_any;
4907 }
4908 if (!(may_match & MAY_MPLS)) {
4909 wc.masks.mpls_lse = htonl(0);
4910 }
4911
4912 /* Log any changes. */
4913 if (!flow_wildcards_equal(&wc, &match->wc)) {
4914 bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
4915 char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
4916
4917 match->wc = wc;
4918 match_zero_wildcarded_fields(match);
4919
4920 if (log) {
4921 char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
4922 VLOG_INFO("normalization changed ofp_match, details:");
4923 VLOG_INFO(" pre: %s", pre);
4924 VLOG_INFO("post: %s", post);
4925 free(pre);
4926 free(post);
4927 }
4928 }
4929 }
4930
4931 /* "Normalizes" the wildcards in 'match'. That means:
4932 *
4933 * 1. If the type of level N is known, then only the valid fields for that
4934 * level may be specified. For example, ARP does not have a TOS field,
4935 * so nw_tos must be wildcarded if 'match' specifies an ARP flow.
4936 * Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
4937 * ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
4938 * IPv4 flow.
4939 *
4940 * 2. If the type of level N is not known (or not understood by Open
4941 * vSwitch), then no fields at all for that level may be specified. For
4942 * example, Open vSwitch does not understand SCTP, an L4 protocol, so the
4943 * L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
4944 * SCTP flow.
4945 *
4946 * If this function changes 'match', it logs a rate-limited informational
4947 * message. */
4948 void
4949 ofputil_normalize_match(struct match *match)
4950 {
4951 ofputil_normalize_match__(match, true);
4952 }
4953
4954 /* Same as ofputil_normalize_match() without the logging. Thus, this function
4955 * is suitable for a program's internal use, whereas ofputil_normalize_match()
4956 * sense for use on flows received from elsewhere (so that a bug in the program
4957 * that sent them can be reported and corrected). */
4958 void
4959 ofputil_normalize_match_quiet(struct match *match)
4960 {
4961 ofputil_normalize_match__(match, false);
4962 }
4963
4964 /* Parses a key or a key-value pair from '*stringp'.
4965 *
4966 * On success: Stores the key into '*keyp'. Stores the value, if present, into
4967 * '*valuep', otherwise an empty string. Advances '*stringp' past the end of
4968 * the key-value pair, preparing it for another call. '*keyp' and '*valuep'
4969 * are substrings of '*stringp' created by replacing some of its bytes by null
4970 * terminators. Returns true.
4971 *
4972 * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
4973 * NULL and returns false. */
4974 bool
4975 ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
4976 {
4977 char *pos, *key, *value;
4978 size_t key_len;
4979
4980 pos = *stringp;
4981 pos += strspn(pos, ", \t\r\n");
4982 if (*pos == '\0') {
4983 *keyp = *valuep = NULL;
4984 return false;
4985 }
4986
4987 key = pos;
4988 key_len = strcspn(pos, ":=(, \t\r\n");
4989 if (key[key_len] == ':' || key[key_len] == '=') {
4990 /* The value can be separated by a colon. */
4991 size_t value_len;
4992
4993 value = key + key_len + 1;
4994 value_len = strcspn(value, ", \t\r\n");
4995 pos = value + value_len + (value[value_len] != '\0');
4996 value[value_len] = '\0';
4997 } else if (key[key_len] == '(') {
4998 /* The value can be surrounded by balanced parentheses. The outermost
4999 * set of parentheses is removed. */
5000 int level = 1;
5001 size_t value_len;
5002
5003 value = key + key_len + 1;
5004 for (value_len = 0; level > 0; value_len++) {
5005 switch (value[value_len]) {
5006 case '\0':
5007 level = 0;
5008 break;
5009
5010 case '(':
5011 level++;
5012 break;
5013
5014 case ')':
5015 level--;
5016 break;
5017 }
5018 }
5019 value[value_len - 1] = '\0';
5020 pos = value + value_len;
5021 } else {
5022 /* There might be no value at all. */
5023 value = key + key_len; /* Will become the empty string below. */
5024 pos = key + key_len + (key[key_len] != '\0');
5025 }
5026 key[key_len] = '\0';
5027
5028 *stringp = pos;
5029 *keyp = key;
5030 *valuep = value;
5031 return true;
5032 }
5033
5034 /* Encode a dump ports request for 'port', the encoded message
5035 * will be for Open Flow version 'ofp_version'. Returns message
5036 * as a struct ofpbuf. Returns encoded message on success, NULL on error */
5037 struct ofpbuf *
5038 ofputil_encode_dump_ports_request(enum ofp_version ofp_version, ofp_port_t port)
5039 {
5040 struct ofpbuf *request;
5041
5042 switch (ofp_version) {
5043 case OFP10_VERSION: {
5044 struct ofp10_port_stats_request *req;
5045 request = ofpraw_alloc(OFPRAW_OFPST10_PORT_REQUEST, ofp_version, 0);
5046 req = ofpbuf_put_zeros(request, sizeof *req);
5047 req->port_no = htons(ofp_to_u16(port));
5048 break;
5049 }
5050 case OFP11_VERSION:
5051 case OFP12_VERSION:
5052 case OFP13_VERSION: {
5053 struct ofp11_port_stats_request *req;
5054 request = ofpraw_alloc(OFPRAW_OFPST11_PORT_REQUEST, ofp_version, 0);
5055 req = ofpbuf_put_zeros(request, sizeof *req);
5056 req->port_no = ofputil_port_to_ofp11(port);
5057 break;
5058 }
5059 default:
5060 NOT_REACHED();
5061 }
5062
5063 return request;
5064 }
5065
5066 static void
5067 ofputil_port_stats_to_ofp10(const struct ofputil_port_stats *ops,
5068 struct ofp10_port_stats *ps10)
5069 {
5070 ps10->port_no = htons(ofp_to_u16(ops->port_no));
5071 memset(ps10->pad, 0, sizeof ps10->pad);
5072 put_32aligned_be64(&ps10->rx_packets, htonll(ops->stats.rx_packets));
5073 put_32aligned_be64(&ps10->tx_packets, htonll(ops->stats.tx_packets));
5074 put_32aligned_be64(&ps10->rx_bytes, htonll(ops->stats.rx_bytes));
5075 put_32aligned_be64(&ps10->tx_bytes, htonll(ops->stats.tx_bytes));
5076 put_32aligned_be64(&ps10->rx_dropped, htonll(ops->stats.rx_dropped));
5077 put_32aligned_be64(&ps10->tx_dropped, htonll(ops->stats.tx_dropped));
5078 put_32aligned_be64(&ps10->rx_errors, htonll(ops->stats.rx_errors));
5079 put_32aligned_be64(&ps10->tx_errors, htonll(ops->stats.tx_errors));
5080 put_32aligned_be64(&ps10->rx_frame_err, htonll(ops->stats.rx_frame_errors));
5081 put_32aligned_be64(&ps10->rx_over_err, htonll(ops->stats.rx_over_errors));
5082 put_32aligned_be64(&ps10->rx_crc_err, htonll(ops->stats.rx_crc_errors));
5083 put_32aligned_be64(&ps10->collisions, htonll(ops->stats.collisions));
5084 }
5085
5086 static void
5087 ofputil_port_stats_to_ofp11(const struct ofputil_port_stats *ops,
5088 struct ofp11_port_stats *ps11)
5089 {
5090 ps11->port_no = ofputil_port_to_ofp11(ops->port_no);
5091 memset(ps11->pad, 0, sizeof ps11->pad);
5092 ps11->rx_packets = htonll(ops->stats.rx_packets);
5093 ps11->tx_packets = htonll(ops->stats.tx_packets);
5094 ps11->rx_bytes = htonll(ops->stats.rx_bytes);
5095 ps11->tx_bytes = htonll(ops->stats.tx_bytes);
5096 ps11->rx_dropped = htonll(ops->stats.rx_dropped);
5097 ps11->tx_dropped = htonll(ops->stats.tx_dropped);
5098 ps11->rx_errors = htonll(ops->stats.rx_errors);
5099 ps11->tx_errors = htonll(ops->stats.tx_errors);
5100 ps11->rx_frame_err = htonll(ops->stats.rx_frame_errors);
5101 ps11->rx_over_err = htonll(ops->stats.rx_over_errors);
5102 ps11->rx_crc_err = htonll(ops->stats.rx_crc_errors);
5103 ps11->collisions = htonll(ops->stats.collisions);
5104 }
5105
5106 static void
5107 ofputil_port_stats_to_ofp13(const struct ofputil_port_stats *ops,
5108 struct ofp13_port_stats *ps13)
5109 {
5110 ofputil_port_stats_to_ofp11(ops, &ps13->ps);
5111 ps13->duration_sec = htonl(ops->duration_sec);
5112 ps13->duration_nsec = htonl(ops->duration_nsec);
5113 }
5114
5115
5116 /* Encode a ports stat for 'ops' and append it to 'replies'. */
5117 void
5118 ofputil_append_port_stat(struct list *replies,
5119 const struct ofputil_port_stats *ops)
5120 {
5121 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5122 struct ofp_header *oh = msg->data;
5123
5124 switch ((enum ofp_version)oh->version) {
5125 case OFP13_VERSION: {
5126 struct ofp13_port_stats *reply = ofpmp_append(replies, sizeof *reply);
5127 ofputil_port_stats_to_ofp13(ops, reply);
5128 break;
5129 }
5130 case OFP12_VERSION:
5131 case OFP11_VERSION: {
5132 struct ofp11_port_stats *reply = ofpmp_append(replies, sizeof *reply);
5133 ofputil_port_stats_to_ofp11(ops, reply);
5134 break;
5135 }
5136
5137 case OFP10_VERSION: {
5138 struct ofp10_port_stats *reply = ofpmp_append(replies, sizeof *reply);
5139 ofputil_port_stats_to_ofp10(ops, reply);
5140 break;
5141 }
5142
5143 default:
5144 NOT_REACHED();
5145 }
5146 }
5147
5148 static enum ofperr
5149 ofputil_port_stats_from_ofp10(struct ofputil_port_stats *ops,
5150 const struct ofp10_port_stats *ps10)
5151 {
5152 memset(ops, 0, sizeof *ops);
5153
5154 ops->port_no = u16_to_ofp(ntohs(ps10->port_no));
5155 ops->stats.rx_packets = ntohll(get_32aligned_be64(&ps10->rx_packets));
5156 ops->stats.tx_packets = ntohll(get_32aligned_be64(&ps10->tx_packets));
5157 ops->stats.rx_bytes = ntohll(get_32aligned_be64(&ps10->rx_bytes));
5158 ops->stats.tx_bytes = ntohll(get_32aligned_be64(&ps10->tx_bytes));
5159 ops->stats.rx_dropped = ntohll(get_32aligned_be64(&ps10->rx_dropped));
5160 ops->stats.tx_dropped = ntohll(get_32aligned_be64(&ps10->tx_dropped));
5161 ops->stats.rx_errors = ntohll(get_32aligned_be64(&ps10->rx_errors));
5162 ops->stats.tx_errors = ntohll(get_32aligned_be64(&ps10->tx_errors));
5163 ops->stats.rx_frame_errors =
5164 ntohll(get_32aligned_be64(&ps10->rx_frame_err));
5165 ops->stats.rx_over_errors = ntohll(get_32aligned_be64(&ps10->rx_over_err));
5166 ops->stats.rx_crc_errors = ntohll(get_32aligned_be64(&ps10->rx_crc_err));
5167 ops->stats.collisions = ntohll(get_32aligned_be64(&ps10->collisions));
5168 ops->duration_sec = ops->duration_nsec = UINT32_MAX;
5169
5170 return 0;
5171 }
5172
5173 static enum ofperr
5174 ofputil_port_stats_from_ofp11(struct ofputil_port_stats *ops,
5175 const struct ofp11_port_stats *ps11)
5176 {
5177 enum ofperr error;
5178
5179 memset(ops, 0, sizeof *ops);
5180 error = ofputil_port_from_ofp11(ps11->port_no, &ops->port_no);
5181 if (error) {
5182 return error;
5183 }
5184
5185 ops->stats.rx_packets = ntohll(ps11->rx_packets);
5186 ops->stats.tx_packets = ntohll(ps11->tx_packets);
5187 ops->stats.rx_bytes = ntohll(ps11->rx_bytes);
5188 ops->stats.tx_bytes = ntohll(ps11->tx_bytes);
5189 ops->stats.rx_dropped = ntohll(ps11->rx_dropped);
5190 ops->stats.tx_dropped = ntohll(ps11->tx_dropped);
5191 ops->stats.rx_errors = ntohll(ps11->rx_errors);
5192 ops->stats.tx_errors = ntohll(ps11->tx_errors);
5193 ops->stats.rx_frame_errors = ntohll(ps11->rx_frame_err);
5194 ops->stats.rx_over_errors = ntohll(ps11->rx_over_err);
5195 ops->stats.rx_crc_errors = ntohll(ps11->rx_crc_err);
5196 ops->stats.collisions = ntohll(ps11->collisions);
5197 ops->duration_sec = ops->duration_nsec = UINT32_MAX;
5198
5199 return 0;
5200 }
5201
5202 static enum ofperr
5203 ofputil_port_stats_from_ofp13(struct ofputil_port_stats *ops,
5204 const struct ofp13_port_stats *ps13)
5205 {
5206 enum ofperr error = ofputil_port_stats_from_ofp11(ops, &ps13->ps);
5207 if (!error) {
5208 ops->duration_sec = ntohl(ps13->duration_sec);
5209 ops->duration_nsec = ntohl(ps13->duration_nsec);
5210 }
5211 return error;
5212 }
5213
5214 static size_t
5215 ofputil_get_port_stats_size(enum ofp_version ofp_version)
5216 {
5217 switch (ofp_version) {
5218 case OFP10_VERSION:
5219 return sizeof(struct ofp10_port_stats);
5220 case OFP11_VERSION:
5221 case OFP12_VERSION:
5222 return sizeof(struct ofp11_port_stats);
5223 case OFP13_VERSION:
5224 return sizeof(struct ofp13_port_stats);
5225 default:
5226 NOT_REACHED();
5227 }
5228 }
5229
5230 /* Returns the number of port stats elements in OFPTYPE_PORT_STATS_REPLY
5231 * message 'oh'. */
5232 size_t
5233 ofputil_count_port_stats(const struct ofp_header *oh)
5234 {
5235 struct ofpbuf b;
5236
5237 ofpbuf_use_const(&b, oh, ntohs(oh->length));
5238 ofpraw_pull_assert(&b);
5239
5240 return b.size / ofputil_get_port_stats_size(oh->version);
5241 }
5242
5243 /* Converts an OFPST_PORT_STATS reply in 'msg' into an abstract
5244 * ofputil_port_stats in 'ps'.
5245 *
5246 * Multiple OFPST_PORT_STATS replies can be packed into a single OpenFlow
5247 * message. Calling this function multiple times for a single 'msg' iterates
5248 * through the replies. The caller must initially leave 'msg''s layer pointers
5249 * null and not modify them between calls.
5250 *
5251 * Returns 0 if successful, EOF if no replies were left in this 'msg',
5252 * otherwise a positive errno value. */
5253 int
5254 ofputil_decode_port_stats(struct ofputil_port_stats *ps, struct ofpbuf *msg)
5255 {
5256 enum ofperr error;
5257 enum ofpraw raw;
5258
5259 error = (msg->l2
5260 ? ofpraw_decode(&raw, msg->l2)
5261 : ofpraw_pull(&raw, msg));
5262 if (error) {
5263 return error;
5264 }
5265
5266 if (!msg->size) {
5267 return EOF;
5268 } else if (raw == OFPRAW_OFPST13_PORT_REPLY) {
5269 const struct ofp13_port_stats *ps13;
5270
5271 ps13 = ofpbuf_try_pull(msg, sizeof *ps13);
5272 if (!ps13) {
5273 goto bad_len;
5274 }
5275 return ofputil_port_stats_from_ofp13(ps, ps13);
5276 } else if (raw == OFPRAW_OFPST11_PORT_REPLY) {
5277 const struct ofp11_port_stats *ps11;
5278
5279 ps11 = ofpbuf_try_pull(msg, sizeof *ps11);
5280 if (!ps11) {
5281 goto bad_len;
5282 }
5283 return ofputil_port_stats_from_ofp11(ps, ps11);
5284 } else if (raw == OFPRAW_OFPST10_PORT_REPLY) {
5285 const struct ofp10_port_stats *ps10;
5286
5287 ps10 = ofpbuf_try_pull(msg, sizeof *ps10);
5288 if (!ps10) {
5289 goto bad_len;
5290 }
5291 return ofputil_port_stats_from_ofp10(ps, ps10);
5292 } else {
5293 NOT_REACHED();
5294 }
5295
5296 bad_len:
5297 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_PORT reply has %zu leftover "
5298 "bytes at end", msg->size);
5299 return OFPERR_OFPBRC_BAD_LEN;
5300 }
5301
5302 /* Parse a port status request message into a 16 bit OpenFlow 1.0
5303 * port number and stores the latter in '*ofp10_port'.
5304 * Returns 0 if successful, otherwise an OFPERR_* number. */
5305 enum ofperr
5306 ofputil_decode_port_stats_request(const struct ofp_header *request,
5307 ofp_port_t *ofp10_port)
5308 {
5309 switch ((enum ofp_version)request->version) {
5310 case OFP13_VERSION:
5311 case OFP12_VERSION:
5312 case OFP11_VERSION: {
5313 const struct ofp11_port_stats_request *psr11 = ofpmsg_body(request);
5314 return ofputil_port_from_ofp11(psr11->port_no, ofp10_port);
5315 }
5316
5317 case OFP10_VERSION: {
5318 const struct ofp10_port_stats_request *psr10 = ofpmsg_body(request);
5319 *ofp10_port = u16_to_ofp(ntohs(psr10->port_no));
5320 return 0;
5321 }
5322
5323 default:
5324 NOT_REACHED();
5325 }
5326 }
5327
5328 /* Frees all of the "struct ofputil_bucket"s in the 'buckets' list. */
5329 void
5330 ofputil_bucket_list_destroy(struct list *buckets)
5331 {
5332 struct ofputil_bucket *bucket, *next_bucket;
5333
5334 LIST_FOR_EACH_SAFE (bucket, next_bucket, list_node, buckets) {
5335 list_remove(&bucket->list_node);
5336 free(bucket->ofpacts);
5337 free(bucket);
5338 }
5339 }
5340
5341 /* Returns an OpenFlow group stats request for OpenFlow version 'ofp_version',
5342 * that requests stats for group 'group_id'. (Use OFPG_ALL to request stats
5343 * for all groups.)
5344 *
5345 * Group statistics include packet and byte counts for each group. */
5346 struct ofpbuf *
5347 ofputil_encode_group_stats_request(enum ofp_version ofp_version,
5348 uint32_t group_id)
5349 {
5350 struct ofpbuf *request;
5351
5352 switch (ofp_version) {
5353 case OFP10_VERSION:
5354 ovs_fatal(0, "dump-group-stats needs OpenFlow 1.1 or later "
5355 "(\'-O OpenFlow11\')");
5356 case OFP11_VERSION:
5357 case OFP12_VERSION:
5358 case OFP13_VERSION: {
5359 struct ofp11_group_stats_request *req;
5360 request = ofpraw_alloc(OFPRAW_OFPST11_GROUP_REQUEST, ofp_version, 0);
5361 req = ofpbuf_put_zeros(request, sizeof *req);
5362 req->group_id = htonl(group_id);
5363 break;
5364 }
5365 default:
5366 NOT_REACHED();
5367 }
5368
5369 return request;
5370 }
5371
5372 /* Returns an OpenFlow group description request for OpenFlow version
5373 * 'ofp_version', that requests stats for group 'group_id'. (Use OFPG_ALL to
5374 * request stats for all groups.)
5375 *
5376 * Group descriptions include the bucket and action configuration for each
5377 * group. */
5378 struct ofpbuf *
5379 ofputil_encode_group_desc_request(enum ofp_version ofp_version)
5380 {
5381 struct ofpbuf *request;
5382
5383 switch (ofp_version) {
5384 case OFP10_VERSION:
5385 ovs_fatal(0, "dump-groups needs OpenFlow 1.1 or later "
5386 "(\'-O OpenFlow11\')");
5387 case OFP11_VERSION:
5388 case OFP12_VERSION:
5389 case OFP13_VERSION: {
5390 request = ofpraw_alloc(OFPRAW_OFPST11_GROUP_DESC_REQUEST, ofp_version, 0);
5391 break;
5392 }
5393 default:
5394 NOT_REACHED();
5395 }
5396
5397 return request;
5398 }
5399
5400 static void *
5401 ofputil_group_stats_to_ofp11(const struct ofputil_group_stats *ogs,
5402 size_t base_len, struct list *replies)
5403 {
5404 struct ofp11_bucket_counter *bc11;
5405 struct ofp11_group_stats *gs11;
5406 size_t length;
5407 int i;
5408
5409 length = base_len + sizeof(struct ofp11_bucket_counter) * ogs->n_buckets;
5410
5411 gs11 = ofpmp_append(replies, length);
5412 memset(gs11, 0, base_len);
5413 gs11->length = htons(length);
5414 gs11->group_id = htonl(ogs->group_id);
5415 gs11->ref_count = htonl(ogs->ref_count);
5416 gs11->packet_count = htonll(ogs->packet_count);
5417 gs11->byte_count = htonll(ogs->byte_count);
5418
5419 bc11 = (void *) (((uint8_t *) gs11) + base_len);
5420 for (i = 0; i < ogs->n_buckets; i++) {
5421 const struct bucket_counter *obc = &ogs->bucket_stats[i];
5422
5423 bc11[i].packet_count = htonll(obc->packet_count);
5424 bc11[i].byte_count = htonll(obc->byte_count);
5425 }
5426
5427 return gs11;
5428 }
5429
5430 static void
5431 ofputil_append_of13_group_stats(const struct ofputil_group_stats *ogs,
5432 struct list *replies)
5433 {
5434 struct ofp13_group_stats *gs13;
5435
5436 gs13 = ofputil_group_stats_to_ofp11(ogs, sizeof *gs13, replies);
5437 gs13->duration_sec = htonl(ogs->duration_sec);
5438 gs13->duration_nsec = htonl(ogs->duration_nsec);
5439 }
5440
5441 /* Encodes 'ogs' properly for the format of the list of group statistics
5442 * replies already begun in 'replies' and appends it to the list. 'replies'
5443 * must have originally been initialized with ofpmp_init(). */
5444 void
5445 ofputil_append_group_stats(struct list *replies,
5446 const struct ofputil_group_stats *ogs)
5447 {
5448 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5449 struct ofp_header *oh = msg->data;
5450
5451 switch ((enum ofp_version)oh->version) {
5452 case OFP11_VERSION:
5453 case OFP12_VERSION:
5454 ofputil_group_stats_to_ofp11(ogs, sizeof(struct ofp11_group_stats),
5455 replies);
5456 break;
5457
5458 case OFP13_VERSION:
5459 ofputil_append_of13_group_stats(ogs, replies);
5460 break;
5461
5462 case OFP10_VERSION:
5463 default:
5464 NOT_REACHED();
5465 }
5466 }
5467
5468 /* Returns an OpenFlow group features request for OpenFlow version
5469 * 'ofp_version'. */
5470 struct ofpbuf *
5471 ofputil_encode_group_features_request(enum ofp_version ofp_version)
5472 {
5473 struct ofpbuf *request = NULL;
5474
5475 switch (ofp_version) {
5476 case OFP10_VERSION:
5477 case OFP11_VERSION:
5478 ovs_fatal(0, "dump-group-features needs OpenFlow 1.2 or later "
5479 "(\'-O OpenFlow12\')");
5480 case OFP12_VERSION:
5481 case OFP13_VERSION: {
5482 request = ofpraw_alloc(OFPRAW_OFPST12_GROUP_FEATURES_REQUEST,
5483 ofp_version, 0);
5484 break;
5485 }
5486 default:
5487 NOT_REACHED();
5488 }
5489
5490 return request;
5491 }
5492
5493 /* Returns a OpenFlow message that encodes 'features' properly as a reply to
5494 * group features request 'request'. */
5495 struct ofpbuf *
5496 ofputil_encode_group_features_reply(
5497 const struct ofputil_group_features *features,
5498 const struct ofp_header *request)
5499 {
5500 struct ofp12_group_features_stats *ogf;
5501 struct ofpbuf *reply;
5502
5503 reply = ofpraw_alloc_xid(OFPRAW_OFPST12_GROUP_FEATURES_REPLY,
5504 request->version, request->xid, 0);
5505 ogf = ofpbuf_put_zeros(reply, sizeof *ogf);
5506 ogf->types = htonl(features->types);
5507 ogf->capabilities = htonl(features->capabilities);
5508 ogf->max_groups[0] = htonl(features->max_groups[0]);
5509 ogf->max_groups[1] = htonl(features->max_groups[1]);
5510 ogf->max_groups[2] = htonl(features->max_groups[2]);
5511 ogf->max_groups[3] = htonl(features->max_groups[3]);
5512 ogf->actions[0] = htonl(features->actions[0]);
5513 ogf->actions[1] = htonl(features->actions[1]);
5514 ogf->actions[2] = htonl(features->actions[2]);
5515 ogf->actions[3] = htonl(features->actions[3]);
5516
5517 return reply;
5518 }
5519
5520 /* Decodes group features reply 'oh' into 'features'. */
5521 void
5522 ofputil_decode_group_features_reply(const struct ofp_header *oh,
5523 struct ofputil_group_features *features)
5524 {
5525 const struct ofp12_group_features_stats *ogf = ofpmsg_body(oh);
5526
5527 features->types = ntohl(ogf->types);
5528 features->capabilities = ntohl(ogf->capabilities);
5529 features->max_groups[0] = ntohl(ogf->max_groups[0]);
5530 features->max_groups[1] = ntohl(ogf->max_groups[1]);
5531 features->max_groups[2] = ntohl(ogf->max_groups[2]);
5532 features->max_groups[3] = ntohl(ogf->max_groups[3]);
5533 features->actions[0] = ntohl(ogf->actions[0]);
5534 features->actions[1] = ntohl(ogf->actions[1]);
5535 features->actions[2] = ntohl(ogf->actions[2]);
5536 features->actions[3] = ntohl(ogf->actions[3]);
5537 }
5538
5539 /* Parse a group status request message into a 32 bit OpenFlow 1.1
5540 * group ID and stores the latter in '*group_id'.
5541 * Returns 0 if successful, otherwise an OFPERR_* number. */
5542 enum ofperr
5543 ofputil_decode_group_stats_request(const struct ofp_header *request,
5544 uint32_t *group_id)
5545 {
5546 const struct ofp11_group_stats_request *gsr11 = ofpmsg_body(request);
5547 *group_id = ntohl(gsr11->group_id);
5548 return 0;
5549 }
5550
5551 /* Converts a group stats reply in 'msg' into an abstract ofputil_group_stats
5552 * in 'gs'. Assigns freshly allocated memory to gs->bucket_stats for the
5553 * caller to eventually free.
5554 *
5555 * Multiple group stats replies can be packed into a single OpenFlow message.
5556 * Calling this function multiple times for a single 'msg' iterates through the
5557 * replies. The caller must initially leave 'msg''s layer pointers null and
5558 * not modify them between calls.
5559 *
5560 * Returns 0 if successful, EOF if no replies were left in this 'msg',
5561 * otherwise a positive errno value. */
5562 int
5563 ofputil_decode_group_stats_reply(struct ofpbuf *msg,
5564 struct ofputil_group_stats *gs)
5565 {
5566 struct ofp11_bucket_counter *obc;
5567 struct ofp11_group_stats *ogs11;
5568 enum ofpraw raw;
5569 enum ofperr error;
5570 size_t base_len;
5571 size_t length;
5572 size_t i;
5573
5574 gs->bucket_stats = NULL;
5575 error = (msg->l2
5576 ? ofpraw_decode(&raw, msg->l2)
5577 : ofpraw_pull(&raw, msg));
5578 if (error) {
5579 return error;
5580 }
5581
5582 if (!msg->size) {
5583 return EOF;
5584 }
5585
5586 if (raw == OFPRAW_OFPST11_GROUP_REPLY) {
5587 base_len = sizeof *ogs11;
5588 ogs11 = ofpbuf_try_pull(msg, sizeof *ogs11);
5589 gs->duration_sec = gs->duration_nsec = UINT32_MAX;
5590 } else if (raw == OFPRAW_OFPST13_GROUP_REPLY) {
5591 struct ofp13_group_stats *ogs13;
5592
5593 base_len = sizeof *ogs13;
5594 ogs13 = ofpbuf_try_pull(msg, sizeof *ogs13);
5595 if (ogs13) {
5596 ogs11 = &ogs13->gs;
5597 gs->duration_sec = ntohl(ogs13->duration_sec);
5598 gs->duration_nsec = ntohl(ogs13->duration_nsec);
5599 } else {
5600 ogs11 = NULL;
5601 }
5602 } else {
5603 NOT_REACHED();
5604 }
5605
5606 if (!ogs11) {
5607 VLOG_WARN_RL(&bad_ofmsg_rl, "%s reply has %zu leftover bytes at end",
5608 ofpraw_get_name(raw), msg->size);
5609 return OFPERR_OFPBRC_BAD_LEN;
5610 }
5611 length = ntohs(ogs11->length);
5612 if (length < sizeof base_len) {
5613 VLOG_WARN_RL(&bad_ofmsg_rl, "%s reply claims invalid length %zu",
5614 ofpraw_get_name(raw), length);
5615 return OFPERR_OFPBRC_BAD_LEN;
5616 }
5617
5618 gs->group_id = ntohl(ogs11->group_id);
5619 gs->ref_count = ntohl(ogs11->ref_count);
5620 gs->packet_count = ntohll(ogs11->packet_count);
5621 gs->byte_count = ntohll(ogs11->byte_count);
5622
5623 gs->n_buckets = (length - base_len) / sizeof *obc;
5624 obc = ofpbuf_try_pull(msg, gs->n_buckets * sizeof *obc);
5625 if (!obc) {
5626 VLOG_WARN_RL(&bad_ofmsg_rl, "%s reply has %zu leftover bytes at end",
5627 ofpraw_get_name(raw), msg->size);
5628 return OFPERR_OFPBRC_BAD_LEN;
5629 }
5630
5631 gs->bucket_stats = xmalloc(gs->n_buckets * sizeof *gs->bucket_stats);
5632 for (i = 0; i < gs->n_buckets; i++) {
5633 gs->bucket_stats[i].packet_count = ntohll(obc[i].packet_count);
5634 gs->bucket_stats[i].byte_count = ntohll(obc[i].byte_count);
5635 }
5636
5637 return 0;
5638 }
5639
5640 /* Appends a group stats reply that contains the data in 'gds' to those already
5641 * present in the list of ofpbufs in 'replies'. 'replies' should have been
5642 * initialized with ofpmp_init(). */
5643 void
5644 ofputil_append_group_desc_reply(const struct ofputil_group_desc *gds,
5645 struct list *buckets,
5646 struct list *replies)
5647 {
5648 struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
5649 struct ofp11_group_desc_stats *ogds;
5650 struct ofputil_bucket *bucket;
5651 size_t start_ogds;
5652
5653 start_ogds = reply->size;
5654 ofpbuf_put_zeros(reply, sizeof *ogds);
5655 LIST_FOR_EACH (bucket, list_node, buckets) {
5656 struct ofp11_bucket *ob;
5657 size_t start_ob;
5658
5659 start_ob = reply->size;
5660 ofpbuf_put_zeros(reply, sizeof *ob);
5661 ofpacts_put_openflow11_actions(bucket->ofpacts,
5662 bucket->ofpacts_len, reply);
5663
5664 ob = ofpbuf_at_assert(reply, start_ob, sizeof *ob);
5665 ob->len = htons(reply->size - start_ob);
5666 ob->weight = htons(bucket->weight);
5667 ob->watch_port = ofputil_port_to_ofp11(bucket->watch_port);
5668 ob->watch_group = htonl(bucket->watch_group);
5669 }
5670 ogds = ofpbuf_at_assert(reply, start_ogds, sizeof *ogds);
5671 ogds->length = htons(reply->size - start_ogds);
5672 ogds->type = gds->type;
5673 ogds->group_id = htonl(gds->group_id);
5674
5675 ofpmp_postappend(replies, start_ogds);
5676 }
5677
5678 static enum ofperr
5679 ofputil_pull_buckets(struct ofpbuf *msg, enum ofp_version version,
5680 size_t buckets_length, struct list *buckets)
5681 {
5682 struct ofp11_bucket *ob;
5683
5684 list_init(buckets);
5685 while (buckets_length > 0) {
5686 struct ofputil_bucket *bucket;
5687 struct ofpbuf ofpacts;
5688 enum ofperr error;
5689 size_t ob_len;
5690
5691 ob = (buckets_length >= sizeof *ob
5692 ? ofpbuf_try_pull(msg, sizeof *ob)
5693 : NULL);
5694 if (!ob) {
5695 VLOG_WARN_RL(&bad_ofmsg_rl, "buckets end with %zu leftover bytes",
5696 buckets_length);
5697 }
5698
5699 ob_len = ntohs(ob->len);
5700 if (ob_len < sizeof *ob) {
5701 VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message bucket length "
5702 "%zu is not valid", ob_len);
5703 return OFPERR_OFPGMFC_BAD_BUCKET;
5704 } else if (ob_len > buckets_length) {
5705 VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message bucket length "
5706 "%zu exceeds remaining buckets data size %zu",
5707 ob_len, buckets_length);
5708 return OFPERR_OFPGMFC_BAD_BUCKET;
5709 }
5710 buckets_length -= ob_len;
5711
5712 ofpbuf_init(&ofpacts, 0);
5713 error = ofpacts_pull_openflow11_actions(msg, version,
5714 ob_len - sizeof *ob, &ofpacts);
5715 if (error) {
5716 ofpbuf_uninit(&ofpacts);
5717 ofputil_bucket_list_destroy(buckets);
5718 return error;
5719 }
5720
5721 bucket = xzalloc(sizeof *bucket);
5722 bucket->weight = ntohs(ob->weight);
5723 error = ofputil_port_from_ofp11(ob->watch_port, &bucket->watch_port);
5724 if (error) {
5725 ofpbuf_uninit(&ofpacts);
5726 ofputil_bucket_list_destroy(buckets);
5727 return OFPERR_OFPGMFC_BAD_WATCH;
5728 }
5729 bucket->watch_group = ntohl(ob->watch_group);
5730 bucket->ofpacts = ofpbuf_steal_data(&ofpacts);
5731 bucket->ofpacts_len = ofpacts.size;
5732 list_push_back(buckets, &bucket->list_node);
5733 }
5734
5735 return 0;
5736 }
5737
5738 /* Converts a group description reply in 'msg' into an abstract
5739 * ofputil_group_desc in 'gd'.
5740 *
5741 * Multiple group description replies can be packed into a single OpenFlow
5742 * message. Calling this function multiple times for a single 'msg' iterates
5743 * through the replies. The caller must initially leave 'msg''s layer pointers
5744 * null and not modify them between calls.
5745 *
5746 * Returns 0 if successful, EOF if no replies were left in this 'msg',
5747 * otherwise a positive errno value. */
5748 int
5749 ofputil_decode_group_desc_reply(struct ofputil_group_desc *gd,
5750 struct ofpbuf *msg, enum ofp_version version)
5751 {
5752 struct ofp11_group_desc_stats *ogds;
5753 size_t length;
5754
5755 if (!msg->l2) {
5756 ofpraw_pull_assert(msg);
5757 }
5758
5759 if (!msg->size) {
5760 return EOF;
5761 }
5762
5763 ogds = ofpbuf_try_pull(msg, sizeof *ogds);
5764 if (!ogds) {
5765 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST11_GROUP_DESC reply has %zu "
5766 "leftover bytes at end", msg->size);
5767 return OFPERR_OFPBRC_BAD_LEN;
5768 }
5769 gd->type = ogds->type;
5770 gd->group_id = ntohl(ogds->group_id);
5771
5772 length = ntohs(ogds->length);
5773 if (length < sizeof *ogds || length - sizeof *ogds > msg->size) {
5774 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST11_GROUP_DESC reply claims invalid "
5775 "length %zu", length);
5776 return OFPERR_OFPBRC_BAD_LEN;
5777 }
5778
5779 return ofputil_pull_buckets(msg, version, length - sizeof *ogds,
5780 &gd->buckets);
5781 }
5782
5783 /* Converts abstract group mod 'gm' into a message for OpenFlow version
5784 * 'ofp_version' and returns the message. */
5785 struct ofpbuf *
5786 ofputil_encode_group_mod(enum ofp_version ofp_version,
5787 const struct ofputil_group_mod *gm)
5788 {
5789 struct ofpbuf *b;
5790 struct ofp11_group_mod *ogm;
5791 size_t start_ogm;
5792 size_t start_bucket;
5793 struct ofputil_bucket *bucket;
5794 struct ofp11_bucket *ob;
5795
5796 switch (ofp_version) {
5797 case OFP10_VERSION: {
5798 if (gm->command == OFPGC11_ADD) {
5799 ovs_fatal(0, "add-group needs OpenFlow 1.1 or later "
5800 "(\'-O OpenFlow11\')");
5801 } else if (gm->command == OFPGC11_MODIFY) {
5802 ovs_fatal(0, "mod-group needs OpenFlow 1.1 or later "
5803 "(\'-O OpenFlow11\')");
5804 } else {
5805 ovs_fatal(0, "del-groups needs OpenFlow 1.1 or later "
5806 "(\'-O OpenFlow11\')");
5807 }
5808 }
5809
5810 case OFP11_VERSION:
5811 case OFP12_VERSION:
5812 case OFP13_VERSION: {
5813 b = ofpraw_alloc(OFPRAW_OFPT11_GROUP_MOD, ofp_version, 0);
5814 start_ogm = b->size;
5815 ofpbuf_put_uninit(b, sizeof *ogm);
5816
5817 LIST_FOR_EACH (bucket, list_node, &gm->buckets) {
5818 start_bucket = b->size;
5819 ofpbuf_put_uninit(b, sizeof *ob);
5820 if (bucket->ofpacts && bucket->ofpacts_len) {
5821 ofpacts_put_openflow11_actions(bucket->ofpacts,
5822 bucket->ofpacts_len, b);
5823 }
5824 ob = ofpbuf_at_assert(b, start_bucket, sizeof *ob);
5825 ob->len = htons(b->size - start_bucket);;
5826 ob->weight = htons(bucket->weight);
5827 ob->watch_port = ofputil_port_to_ofp11(bucket->watch_port);
5828 ob->watch_group = htonl(bucket->watch_group);
5829 }
5830 ogm = ofpbuf_at_assert(b, start_ogm, sizeof *ogm);
5831 ogm->command = htons(gm->command);
5832 ogm->type = gm->type;
5833 ogm->pad = 0;
5834 ogm->group_id = htonl(gm->group_id);
5835
5836 break;
5837 }
5838
5839 default:
5840 NOT_REACHED();
5841 }
5842
5843 return b;
5844 }
5845
5846 /* Converts OpenFlow group mod message 'oh' into an abstract group mod in
5847 * 'gm'. Returns 0 if successful, otherwise an OpenFlow error code. */
5848 enum ofperr
5849 ofputil_decode_group_mod(const struct ofp_header *oh,
5850 struct ofputil_group_mod *gm)
5851 {
5852 const struct ofp11_group_mod *ogm;
5853 struct ofpbuf msg;
5854
5855 ofpbuf_use_const(&msg, oh, ntohs(oh->length));
5856 ofpraw_pull_assert(&msg);
5857
5858 ogm = ofpbuf_pull(&msg, sizeof *ogm);
5859 gm->command = ntohs(ogm->command);
5860 gm->type = ogm->type;
5861 gm->group_id = ntohl(ogm->group_id);
5862
5863 return ofputil_pull_buckets(&msg, oh->version, msg.size, &gm->buckets);
5864 }
5865
5866 /* Parse a queue status request message into 'oqsr'.
5867 * Returns 0 if successful, otherwise an OFPERR_* number. */
5868 enum ofperr
5869 ofputil_decode_queue_stats_request(const struct ofp_header *request,
5870 struct ofputil_queue_stats_request *oqsr)
5871 {
5872 switch ((enum ofp_version)request->version) {
5873 case OFP13_VERSION:
5874 case OFP12_VERSION:
5875 case OFP11_VERSION: {
5876 const struct ofp11_queue_stats_request *qsr11 = ofpmsg_body(request);
5877 oqsr->queue_id = ntohl(qsr11->queue_id);
5878 return ofputil_port_from_ofp11(qsr11->port_no, &oqsr->port_no);
5879 }
5880
5881 case OFP10_VERSION: {
5882 const struct ofp10_queue_stats_request *qsr10 = ofpmsg_body(request);
5883 oqsr->queue_id = ntohl(qsr10->queue_id);
5884 oqsr->port_no = u16_to_ofp(ntohs(qsr10->port_no));
5885 /* OF 1.0 uses OFPP_ALL for OFPP_ANY */
5886 if (oqsr->port_no == OFPP_ALL) {
5887 oqsr->port_no = OFPP_ANY;
5888 }
5889 return 0;
5890 }
5891
5892 default:
5893 NOT_REACHED();
5894 }
5895 }
5896
5897 /* Encode a queue statsrequest for 'oqsr', the encoded message
5898 * will be fore Open Flow version 'ofp_version'. Returns message
5899 * as a struct ofpbuf. Returns encoded message on success, NULL on error */
5900 struct ofpbuf *
5901 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
5902 const struct ofputil_queue_stats_request *oqsr)
5903 {
5904 struct ofpbuf *request;
5905
5906 switch (ofp_version) {
5907 case OFP11_VERSION:
5908 case OFP12_VERSION:
5909 case OFP13_VERSION: {
5910 struct ofp11_queue_stats_request *req;
5911 request = ofpraw_alloc(OFPRAW_OFPST11_QUEUE_REQUEST, ofp_version, 0);
5912 req = ofpbuf_put_zeros(request, sizeof *req);
5913 req->port_no = ofputil_port_to_ofp11(oqsr->port_no);
5914 req->queue_id = htonl(oqsr->queue_id);
5915 break;
5916 }
5917 case OFP10_VERSION: {
5918 struct ofp10_queue_stats_request *req;
5919 request = ofpraw_alloc(OFPRAW_OFPST10_QUEUE_REQUEST, ofp_version, 0);
5920 req = ofpbuf_put_zeros(request, sizeof *req);
5921 /* OpenFlow 1.0 needs OFPP_ALL instead of OFPP_ANY */
5922 req->port_no = htons(ofp_to_u16(oqsr->port_no == OFPP_ANY
5923 ? OFPP_ALL : oqsr->port_no));
5924 req->queue_id = htonl(oqsr->queue_id);
5925 break;
5926 }
5927 default:
5928 NOT_REACHED();
5929 }
5930
5931 return request;
5932 }
5933
5934 static size_t
5935 ofputil_get_queue_stats_size(enum ofp_version ofp_version)
5936 {
5937 switch (ofp_version) {
5938 case OFP10_VERSION:
5939 return sizeof(struct ofp10_queue_stats);
5940 case OFP11_VERSION:
5941 case OFP12_VERSION:
5942 return sizeof(struct ofp11_queue_stats);
5943 case OFP13_VERSION:
5944 return sizeof(struct ofp13_queue_stats);
5945 default:
5946 NOT_REACHED();
5947 }
5948 }
5949
5950 /* Returns the number of queue stats elements in OFPTYPE_QUEUE_STATS_REPLY
5951 * message 'oh'. */
5952 size_t
5953 ofputil_count_queue_stats(const struct ofp_header *oh)
5954 {
5955 struct ofpbuf b;
5956
5957 ofpbuf_use_const(&b, oh, ntohs(oh->length));
5958 ofpraw_pull_assert(&b);
5959
5960 return b.size / ofputil_get_queue_stats_size(oh->version);
5961 }
5962
5963 static enum ofperr
5964 ofputil_queue_stats_from_ofp10(struct ofputil_queue_stats *oqs,
5965 const struct ofp10_queue_stats *qs10)
5966 {
5967 oqs->port_no = u16_to_ofp(ntohs(qs10->port_no));
5968 oqs->queue_id = ntohl(qs10->queue_id);
5969 oqs->tx_bytes = ntohll(get_32aligned_be64(&qs10->tx_bytes));
5970 oqs->tx_packets = ntohll(get_32aligned_be64(&qs10->tx_packets));
5971 oqs->tx_errors = ntohll(get_32aligned_be64(&qs10->tx_errors));
5972 oqs->duration_sec = oqs->duration_nsec = UINT32_MAX;
5973
5974 return 0;
5975 }
5976
5977 static enum ofperr
5978 ofputil_queue_stats_from_ofp11(struct ofputil_queue_stats *oqs,
5979 const struct ofp11_queue_stats *qs11)
5980 {
5981 enum ofperr error;
5982
5983 error = ofputil_port_from_ofp11(qs11->port_no, &oqs->port_no);
5984 if (error) {
5985 return error;
5986 }
5987
5988 oqs->queue_id = ntohl(qs11->queue_id);
5989 oqs->tx_bytes = ntohll(qs11->tx_bytes);
5990 oqs->tx_packets = ntohll(qs11->tx_packets);
5991 oqs->tx_errors = ntohll(qs11->tx_errors);
5992 oqs->duration_sec = oqs->duration_nsec = UINT32_MAX;
5993
5994 return 0;
5995 }
5996
5997 static enum ofperr
5998 ofputil_queue_stats_from_ofp13(struct ofputil_queue_stats *oqs,
5999 const struct ofp13_queue_stats *qs13)
6000 {
6001 enum ofperr error = ofputil_queue_stats_from_ofp11(oqs, &qs13->qs);
6002 if (!error) {
6003 oqs->duration_sec = ntohl(qs13->duration_sec);
6004 oqs->duration_nsec = ntohl(qs13->duration_nsec);
6005 }
6006
6007 return error;
6008 }
6009
6010 /* Converts an OFPST_QUEUE_STATS reply in 'msg' into an abstract
6011 * ofputil_queue_stats in 'qs'.
6012 *
6013 * Multiple OFPST_QUEUE_STATS replies can be packed into a single OpenFlow
6014 * message. Calling this function multiple times for a single 'msg' iterates
6015 * through the replies. The caller must initially leave 'msg''s layer pointers
6016 * null and not modify them between calls.
6017 *
6018 * Returns 0 if successful, EOF if no replies were left in this 'msg',
6019 * otherwise a positive errno value. */
6020 int
6021 ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg)
6022 {
6023 enum ofperr error;
6024 enum ofpraw raw;
6025
6026 error = (msg->l2
6027 ? ofpraw_decode(&raw, msg->l2)
6028 : ofpraw_pull(&raw, msg));
6029 if (error) {
6030 return error;
6031 }
6032
6033 if (!msg->size) {
6034 return EOF;
6035 } else if (raw == OFPRAW_OFPST13_QUEUE_REPLY) {
6036 const struct ofp13_queue_stats *qs13;
6037
6038 qs13 = ofpbuf_try_pull(msg, sizeof *qs13);
6039 if (!qs13) {
6040 goto bad_len;
6041 }
6042 return ofputil_queue_stats_from_ofp13(qs, qs13);
6043 } else if (raw == OFPRAW_OFPST11_QUEUE_REPLY) {
6044 const struct ofp11_queue_stats *qs11;
6045
6046 qs11 = ofpbuf_try_pull(msg, sizeof *qs11);
6047 if (!qs11) {
6048 goto bad_len;
6049 }
6050 return ofputil_queue_stats_from_ofp11(qs, qs11);
6051 } else if (raw == OFPRAW_OFPST10_QUEUE_REPLY) {
6052 const struct ofp10_queue_stats *qs10;
6053
6054 qs10 = ofpbuf_try_pull(msg, sizeof *qs10);
6055 if (!qs10) {
6056 goto bad_len;
6057 }
6058 return ofputil_queue_stats_from_ofp10(qs, qs10);
6059 } else {
6060 NOT_REACHED();
6061 }
6062
6063 bad_len:
6064 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_QUEUE reply has %zu leftover "
6065 "bytes at end", msg->size);
6066 return OFPERR_OFPBRC_BAD_LEN;
6067 }
6068
6069 static void
6070 ofputil_queue_stats_to_ofp10(const struct ofputil_queue_stats *oqs,
6071 struct ofp10_queue_stats *qs10)
6072 {
6073 qs10->port_no = htons(ofp_to_u16(oqs->port_no));
6074 memset(qs10->pad, 0, sizeof qs10->pad);
6075 qs10->queue_id = htonl(oqs->queue_id);
6076 put_32aligned_be64(&qs10->tx_bytes, htonll(oqs->tx_bytes));
6077 put_32aligned_be64(&qs10->tx_packets, htonll(oqs->tx_packets));
6078 put_32aligned_be64(&qs10->tx_errors, htonll(oqs->tx_errors));
6079 }
6080
6081 static void
6082 ofputil_queue_stats_to_ofp11(const struct ofputil_queue_stats *oqs,
6083 struct ofp11_queue_stats *qs11)
6084 {
6085 qs11->port_no = ofputil_port_to_ofp11(oqs->port_no);
6086 qs11->queue_id = htonl(oqs->queue_id);
6087 qs11->tx_bytes = htonll(oqs->tx_bytes);
6088 qs11->tx_packets = htonll(oqs->tx_packets);
6089 qs11->tx_errors = htonll(oqs->tx_errors);
6090 }
6091
6092 static void
6093 ofputil_queue_stats_to_ofp13(const struct ofputil_queue_stats *oqs,
6094 struct ofp13_queue_stats *qs13)
6095 {
6096 ofputil_queue_stats_to_ofp11(oqs, &qs13->qs);
6097 if (oqs->duration_sec != UINT32_MAX) {
6098 qs13->duration_sec = htonl(oqs->duration_sec);
6099 qs13->duration_nsec = htonl(oqs->duration_nsec);
6100 } else {
6101 qs13->duration_sec = OVS_BE32_MAX;
6102 qs13->duration_nsec = OVS_BE32_MAX;
6103 }
6104 }
6105
6106 /* Encode a queue stat for 'oqs' and append it to 'replies'. */
6107 void
6108 ofputil_append_queue_stat(struct list *replies,
6109 const struct ofputil_queue_stats *oqs)
6110 {
6111 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
6112 struct ofp_header *oh = msg->data;
6113
6114 switch ((enum ofp_version)oh->version) {
6115 case OFP13_VERSION: {
6116 struct ofp13_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
6117 ofputil_queue_stats_to_ofp13(oqs, reply);
6118 break;
6119 }
6120
6121 case OFP12_VERSION:
6122 case OFP11_VERSION: {
6123 struct ofp11_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
6124 ofputil_queue_stats_to_ofp11(oqs, reply);
6125 break;
6126 }
6127
6128 case OFP10_VERSION: {
6129 struct ofp10_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
6130 ofputil_queue_stats_to_ofp10(oqs, reply);
6131 break;
6132 }
6133
6134 default:
6135 NOT_REACHED();
6136 }
6137 }