2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include "ofp-print.h"
21 #include <sys/types.h>
22 #include <netinet/in.h>
23 #include <netinet/icmp6.h>
27 #include "byte-order.h"
28 #include "classifier.h"
29 #include "dynamic-string.h"
31 #include "multipath.h"
33 #include "ofp-errors.h"
38 #include "unaligned.h"
39 #include "type-props.h"
42 VLOG_DEFINE_THIS_MODULE(ofp_util);
44 /* Rate limit for OpenFlow message parse errors. These always indicate a bug
45 * in the peer and so there's not much point in showing a lot of them. */
46 static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
48 /* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
49 * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
52 * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
53 * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
54 * ..., 32 and higher wildcard the entire field. This is the *opposite* of the
55 * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
58 ofputil_wcbits_to_netmask(int wcbits)
61 return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
64 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
65 * that it wildcards, that is, the number of 0-bits in 'netmask'. 'netmask'
66 * must be a CIDR netmask (see ip_is_cidr()). */
68 ofputil_netmask_to_wcbits(ovs_be32 netmask)
70 return 32 - ip_count_cidr_bits(netmask);
73 /* A list of the FWW_* and OFPFW_ bits that have the same value, meaning, and
75 #define WC_INVARIANT_LIST \
76 WC_INVARIANT_BIT(IN_PORT) \
77 WC_INVARIANT_BIT(DL_SRC) \
78 WC_INVARIANT_BIT(DL_DST) \
79 WC_INVARIANT_BIT(DL_TYPE) \
80 WC_INVARIANT_BIT(NW_PROTO) \
81 WC_INVARIANT_BIT(TP_SRC) \
82 WC_INVARIANT_BIT(TP_DST)
84 /* Verify that all of the invariant bits (as defined on WC_INVARIANT_LIST)
85 * actually have the same names and values. */
86 #define WC_INVARIANT_BIT(NAME) BUILD_ASSERT_DECL(FWW_##NAME == OFPFW_##NAME);
88 #undef WC_INVARIANT_BIT
90 /* WC_INVARIANTS is the invariant bits (as defined on WC_INVARIANT_LIST) all
92 static const flow_wildcards_t WC_INVARIANTS = 0
93 #define WC_INVARIANT_BIT(NAME) | FWW_##NAME
95 #undef WC_INVARIANT_BIT
98 /* Converts the wildcard in 'ofpfw' into a flow_wildcards in 'wc' for use in
99 * struct cls_rule. It is the caller's responsibility to handle the special
100 * case where the flow match's dl_vlan is set to OFP_VLAN_NONE. */
102 ofputil_wildcard_from_openflow(uint32_t ofpfw, struct flow_wildcards *wc)
104 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 7);
106 /* Initialize most of rule->wc. */
107 flow_wildcards_init_catchall(wc);
108 wc->wildcards = (OVS_FORCE flow_wildcards_t) ofpfw & WC_INVARIANTS;
110 /* Wildcard fields that aren't defined by ofp_match or tun_id. */
111 wc->wildcards |= (FWW_ARP_SHA | FWW_ARP_THA | FWW_NW_ECN | FWW_NW_TTL
112 | FWW_ND_TARGET | FWW_IPV6_LABEL);
114 if (ofpfw & OFPFW_NW_TOS) {
115 /* OpenFlow 1.0 defines a TOS wildcard, but it's much later in
116 * the enum than we can use. */
117 wc->wildcards |= FWW_NW_DSCP;
120 wc->nw_src_mask = ofputil_wcbits_to_netmask(ofpfw >> OFPFW_NW_SRC_SHIFT);
121 wc->nw_dst_mask = ofputil_wcbits_to_netmask(ofpfw >> OFPFW_NW_DST_SHIFT);
123 if (ofpfw & OFPFW_DL_DST) {
124 /* OpenFlow 1.0 OFPFW_DL_DST covers the whole Ethernet destination, but
125 * Open vSwitch breaks the Ethernet destination into bits as FWW_DL_DST
126 * and FWW_ETH_MCAST. */
127 wc->wildcards |= FWW_ETH_MCAST;
131 if (!(ofpfw & OFPFW_DL_VLAN_PCP)) {
132 wc->vlan_tci_mask |= htons(VLAN_PCP_MASK | VLAN_CFI);
134 if (!(ofpfw & OFPFW_DL_VLAN)) {
135 wc->vlan_tci_mask |= htons(VLAN_VID_MASK | VLAN_CFI);
139 /* Converts the ofp_match in 'match' into a cls_rule in 'rule', with the given
142 ofputil_cls_rule_from_match(const struct ofp_match *match,
143 unsigned int priority, struct cls_rule *rule)
145 uint32_t ofpfw = ntohl(match->wildcards) & OFPFW_ALL;
147 /* Initialize rule->priority, rule->wc. */
148 rule->priority = !ofpfw ? UINT16_MAX : priority;
149 ofputil_wildcard_from_openflow(ofpfw, &rule->wc);
151 /* Initialize most of rule->flow. */
152 rule->flow.nw_src = match->nw_src;
153 rule->flow.nw_dst = match->nw_dst;
154 rule->flow.in_port = ntohs(match->in_port);
155 rule->flow.dl_type = ofputil_dl_type_from_openflow(match->dl_type);
156 rule->flow.tp_src = match->tp_src;
157 rule->flow.tp_dst = match->tp_dst;
158 memcpy(rule->flow.dl_src, match->dl_src, ETH_ADDR_LEN);
159 memcpy(rule->flow.dl_dst, match->dl_dst, ETH_ADDR_LEN);
160 rule->flow.nw_tos = match->nw_tos & IP_DSCP_MASK;
161 rule->flow.nw_proto = match->nw_proto;
163 /* Translate VLANs. */
164 if (!(ofpfw & OFPFW_DL_VLAN) && match->dl_vlan == htons(OFP_VLAN_NONE)) {
165 /* Match only packets without 802.1Q header.
167 * When OFPFW_DL_VLAN_PCP is wildcarded, this is obviously correct.
169 * If OFPFW_DL_VLAN_PCP is matched, the flow match is contradictory,
170 * because we can't have a specific PCP without an 802.1Q header.
171 * However, older versions of OVS treated this as matching packets
172 * withut an 802.1Q header, so we do here too. */
173 rule->flow.vlan_tci = htons(0);
174 rule->wc.vlan_tci_mask = htons(0xffff);
176 ovs_be16 vid, pcp, tci;
178 vid = match->dl_vlan & htons(VLAN_VID_MASK);
179 pcp = htons((match->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
180 tci = vid | pcp | htons(VLAN_CFI);
181 rule->flow.vlan_tci = tci & rule->wc.vlan_tci_mask;
185 cls_rule_zero_wildcarded_fields(rule);
188 /* Convert 'rule' into the OpenFlow match structure 'match'. */
190 ofputil_cls_rule_to_match(const struct cls_rule *rule, struct ofp_match *match)
192 const struct flow_wildcards *wc = &rule->wc;
195 /* Figure out most OpenFlow wildcards. */
196 ofpfw = (OVS_FORCE uint32_t) (wc->wildcards & WC_INVARIANTS);
197 ofpfw |= ofputil_netmask_to_wcbits(wc->nw_src_mask) << OFPFW_NW_SRC_SHIFT;
198 ofpfw |= ofputil_netmask_to_wcbits(wc->nw_dst_mask) << OFPFW_NW_DST_SHIFT;
199 if (wc->wildcards & FWW_NW_DSCP) {
200 ofpfw |= OFPFW_NW_TOS;
203 /* Translate VLANs. */
204 match->dl_vlan = htons(0);
205 match->dl_vlan_pcp = 0;
206 if (rule->wc.vlan_tci_mask == htons(0)) {
207 ofpfw |= OFPFW_DL_VLAN | OFPFW_DL_VLAN_PCP;
208 } else if (rule->wc.vlan_tci_mask & htons(VLAN_CFI)
209 && !(rule->flow.vlan_tci & htons(VLAN_CFI))) {
210 match->dl_vlan = htons(OFP_VLAN_NONE);
212 if (!(rule->wc.vlan_tci_mask & htons(VLAN_VID_MASK))) {
213 ofpfw |= OFPFW_DL_VLAN;
215 match->dl_vlan = htons(vlan_tci_to_vid(rule->flow.vlan_tci));
218 if (!(rule->wc.vlan_tci_mask & htons(VLAN_PCP_MASK))) {
219 ofpfw |= OFPFW_DL_VLAN_PCP;
221 match->dl_vlan_pcp = vlan_tci_to_pcp(rule->flow.vlan_tci);
225 /* Compose most of the match structure. */
226 match->wildcards = htonl(ofpfw);
227 match->in_port = htons(rule->flow.in_port);
228 memcpy(match->dl_src, rule->flow.dl_src, ETH_ADDR_LEN);
229 memcpy(match->dl_dst, rule->flow.dl_dst, ETH_ADDR_LEN);
230 match->dl_type = ofputil_dl_type_to_openflow(rule->flow.dl_type);
231 match->nw_src = rule->flow.nw_src;
232 match->nw_dst = rule->flow.nw_dst;
233 match->nw_tos = rule->flow.nw_tos & IP_DSCP_MASK;
234 match->nw_proto = rule->flow.nw_proto;
235 match->tp_src = rule->flow.tp_src;
236 match->tp_dst = rule->flow.tp_dst;
237 memset(match->pad1, '\0', sizeof match->pad1);
238 memset(match->pad2, '\0', sizeof match->pad2);
241 /* Given a 'dl_type' value in the format used in struct flow, returns the
242 * corresponding 'dl_type' value for use in an OpenFlow ofp_match structure. */
244 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
246 return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
247 ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
251 /* Given a 'dl_type' value in the format used in an OpenFlow ofp_match
252 * structure, returns the corresponding 'dl_type' value for use in struct
255 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
257 return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
258 ? htons(FLOW_DL_TYPE_NONE)
262 /* Returns a transaction ID to use for an outgoing OpenFlow message. */
266 static uint32_t next_xid = 1;
267 return htonl(next_xid++);
270 /* Basic parsing of OpenFlow messages. */
272 struct ofputil_msg_type {
273 enum ofputil_msg_code code; /* OFPUTIL_*. */
274 uint32_t value; /* OFPT_*, OFPST_*, NXT_*, or NXST_*. */
275 const char *name; /* e.g. "OFPT_FLOW_REMOVED". */
276 unsigned int min_size; /* Minimum total message size in bytes. */
277 /* 0 if 'min_size' is the exact size that the message must be. Otherwise,
278 * the message may exceed 'min_size' by an even multiple of this value. */
279 unsigned int extra_multiple;
282 /* Represents a malformed OpenFlow message. */
283 static const struct ofputil_msg_type ofputil_invalid_type = {
284 OFPUTIL_MSG_INVALID, 0, "OFPUTIL_MSG_INVALID", 0, 0
287 struct ofputil_msg_category {
288 const char *name; /* e.g. "OpenFlow message" */
289 const struct ofputil_msg_type *types;
291 int missing_error; /* ofp_mkerr() value for missing type. */
295 ofputil_check_length(const struct ofputil_msg_type *type, unsigned int size)
297 switch (type->extra_multiple) {
299 if (size != type->min_size) {
300 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s with incorrect "
301 "length %u (expected length %u)",
302 type->name, size, type->min_size);
303 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
308 if (size < type->min_size) {
309 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s with incorrect "
310 "length %u (expected length at least %u bytes)",
311 type->name, size, type->min_size);
312 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
317 if (size < type->min_size
318 || (size - type->min_size) % type->extra_multiple) {
319 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s with incorrect "
320 "length %u (must be exactly %u bytes or longer "
321 "by an integer multiple of %u bytes)",
323 type->min_size, type->extra_multiple);
324 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
331 ofputil_lookup_openflow_message(const struct ofputil_msg_category *cat,
333 const struct ofputil_msg_type **typep)
335 const struct ofputil_msg_type *type;
337 for (type = cat->types; type < &cat->types[cat->n_types]; type++) {
338 if (type->value == value) {
344 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s of unknown type %"PRIu32,
346 return cat->missing_error;
350 ofputil_decode_vendor(const struct ofp_header *oh, size_t length,
351 const struct ofputil_msg_type **typep)
353 static const struct ofputil_msg_type nxt_messages[] = {
354 { OFPUTIL_NXT_ROLE_REQUEST,
355 NXT_ROLE_REQUEST, "NXT_ROLE_REQUEST",
356 sizeof(struct nx_role_request), 0 },
358 { OFPUTIL_NXT_ROLE_REPLY,
359 NXT_ROLE_REPLY, "NXT_ROLE_REPLY",
360 sizeof(struct nx_role_request), 0 },
362 { OFPUTIL_NXT_SET_FLOW_FORMAT,
363 NXT_SET_FLOW_FORMAT, "NXT_SET_FLOW_FORMAT",
364 sizeof(struct nxt_set_flow_format), 0 },
366 { OFPUTIL_NXT_FLOW_MOD,
367 NXT_FLOW_MOD, "NXT_FLOW_MOD",
368 sizeof(struct nx_flow_mod), 8 },
370 { OFPUTIL_NXT_FLOW_REMOVED,
371 NXT_FLOW_REMOVED, "NXT_FLOW_REMOVED",
372 sizeof(struct nx_flow_removed), 8 },
374 { OFPUTIL_NXT_FLOW_MOD_TABLE_ID,
375 NXT_FLOW_MOD_TABLE_ID, "NXT_FLOW_MOD_TABLE_ID",
376 sizeof(struct nxt_flow_mod_table_id), 0 },
379 static const struct ofputil_msg_category nxt_category = {
380 "Nicira extension message",
381 nxt_messages, ARRAY_SIZE(nxt_messages),
382 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
385 const struct ofp_vendor_header *ovh;
386 const struct nicira_header *nh;
388 if (length < sizeof(struct ofp_vendor_header)) {
389 if (length == ntohs(oh->length)) {
390 VLOG_WARN_RL(&bad_ofmsg_rl, "truncated vendor message");
392 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
395 ovh = (const struct ofp_vendor_header *) oh;
396 if (ovh->vendor != htonl(NX_VENDOR_ID)) {
397 VLOG_WARN_RL(&bad_ofmsg_rl, "received vendor message for unknown "
398 "vendor %"PRIx32, ntohl(ovh->vendor));
399 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
402 if (length < sizeof(struct nicira_header)) {
403 if (length == ntohs(oh->length)) {
404 VLOG_WARN_RL(&bad_ofmsg_rl, "received Nicira vendor message of "
405 "length %u (expected at least %zu)",
406 ntohs(ovh->header.length),
407 sizeof(struct nicira_header));
409 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
412 nh = (const struct nicira_header *) oh;
413 return ofputil_lookup_openflow_message(&nxt_category, ntohl(nh->subtype),
418 check_nxstats_msg(const struct ofp_header *oh, size_t length)
420 const struct ofp_stats_msg *osm = (const struct ofp_stats_msg *) oh;
423 if (length < sizeof(struct ofp_vendor_stats_msg)) {
424 if (length == ntohs(oh->length)) {
425 VLOG_WARN_RL(&bad_ofmsg_rl, "truncated vendor stats message");
427 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
430 memcpy(&vendor, osm + 1, sizeof vendor);
431 if (vendor != htonl(NX_VENDOR_ID)) {
432 VLOG_WARN_RL(&bad_ofmsg_rl, "received vendor stats message for "
433 "unknown vendor %"PRIx32, ntohl(vendor));
434 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
437 if (length < sizeof(struct nicira_stats_msg)) {
438 if (length == ntohs(osm->header.length)) {
439 VLOG_WARN_RL(&bad_ofmsg_rl, "truncated Nicira stats message");
441 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
448 ofputil_decode_nxst_request(const struct ofp_header *oh, size_t length,
449 const struct ofputil_msg_type **typep)
451 static const struct ofputil_msg_type nxst_requests[] = {
452 { OFPUTIL_NXST_FLOW_REQUEST,
453 NXST_FLOW, "NXST_FLOW request",
454 sizeof(struct nx_flow_stats_request), 8 },
456 { OFPUTIL_NXST_AGGREGATE_REQUEST,
457 NXST_AGGREGATE, "NXST_AGGREGATE request",
458 sizeof(struct nx_aggregate_stats_request), 8 },
461 static const struct ofputil_msg_category nxst_request_category = {
462 "Nicira extension statistics request",
463 nxst_requests, ARRAY_SIZE(nxst_requests),
464 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
467 const struct nicira_stats_msg *nsm;
470 error = check_nxstats_msg(oh, length);
475 nsm = (struct nicira_stats_msg *) oh;
476 return ofputil_lookup_openflow_message(&nxst_request_category,
477 ntohl(nsm->subtype), typep);
481 ofputil_decode_nxst_reply(const struct ofp_header *oh, size_t length,
482 const struct ofputil_msg_type **typep)
484 static const struct ofputil_msg_type nxst_replies[] = {
485 { OFPUTIL_NXST_FLOW_REPLY,
486 NXST_FLOW, "NXST_FLOW reply",
487 sizeof(struct nicira_stats_msg), 8 },
489 { OFPUTIL_NXST_AGGREGATE_REPLY,
490 NXST_AGGREGATE, "NXST_AGGREGATE reply",
491 sizeof(struct nx_aggregate_stats_reply), 0 },
494 static const struct ofputil_msg_category nxst_reply_category = {
495 "Nicira extension statistics reply",
496 nxst_replies, ARRAY_SIZE(nxst_replies),
497 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
500 const struct nicira_stats_msg *nsm;
503 error = check_nxstats_msg(oh, length);
508 nsm = (struct nicira_stats_msg *) oh;
509 return ofputil_lookup_openflow_message(&nxst_reply_category,
510 ntohl(nsm->subtype), typep);
514 check_stats_msg(const struct ofp_header *oh, size_t length)
516 if (length < sizeof(struct ofp_stats_msg)) {
517 if (length == ntohs(oh->length)) {
518 VLOG_WARN_RL(&bad_ofmsg_rl, "truncated stats message");
520 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
527 ofputil_decode_ofpst_request(const struct ofp_header *oh, size_t length,
528 const struct ofputil_msg_type **typep)
530 static const struct ofputil_msg_type ofpst_requests[] = {
531 { OFPUTIL_OFPST_DESC_REQUEST,
532 OFPST_DESC, "OFPST_DESC request",
533 sizeof(struct ofp_stats_msg), 0 },
535 { OFPUTIL_OFPST_FLOW_REQUEST,
536 OFPST_FLOW, "OFPST_FLOW request",
537 sizeof(struct ofp_flow_stats_request), 0 },
539 { OFPUTIL_OFPST_AGGREGATE_REQUEST,
540 OFPST_AGGREGATE, "OFPST_AGGREGATE request",
541 sizeof(struct ofp_flow_stats_request), 0 },
543 { OFPUTIL_OFPST_TABLE_REQUEST,
544 OFPST_TABLE, "OFPST_TABLE request",
545 sizeof(struct ofp_stats_msg), 0 },
547 { OFPUTIL_OFPST_PORT_REQUEST,
548 OFPST_PORT, "OFPST_PORT request",
549 sizeof(struct ofp_port_stats_request), 0 },
551 { OFPUTIL_OFPST_QUEUE_REQUEST,
552 OFPST_QUEUE, "OFPST_QUEUE request",
553 sizeof(struct ofp_queue_stats_request), 0 },
556 OFPST_VENDOR, "OFPST_VENDOR request",
557 sizeof(struct ofp_vendor_stats_msg), 1 },
560 static const struct ofputil_msg_category ofpst_request_category = {
561 "OpenFlow statistics",
562 ofpst_requests, ARRAY_SIZE(ofpst_requests),
563 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT)
566 const struct ofp_stats_msg *request = (const struct ofp_stats_msg *) oh;
569 error = check_stats_msg(oh, length);
574 error = ofputil_lookup_openflow_message(&ofpst_request_category,
575 ntohs(request->type), typep);
576 if (!error && request->type == htons(OFPST_VENDOR)) {
577 error = ofputil_decode_nxst_request(oh, length, typep);
583 ofputil_decode_ofpst_reply(const struct ofp_header *oh, size_t length,
584 const struct ofputil_msg_type **typep)
586 static const struct ofputil_msg_type ofpst_replies[] = {
587 { OFPUTIL_OFPST_DESC_REPLY,
588 OFPST_DESC, "OFPST_DESC reply",
589 sizeof(struct ofp_desc_stats), 0 },
591 { OFPUTIL_OFPST_FLOW_REPLY,
592 OFPST_FLOW, "OFPST_FLOW reply",
593 sizeof(struct ofp_stats_msg), 1 },
595 { OFPUTIL_OFPST_AGGREGATE_REPLY,
596 OFPST_AGGREGATE, "OFPST_AGGREGATE reply",
597 sizeof(struct ofp_aggregate_stats_reply), 0 },
599 { OFPUTIL_OFPST_TABLE_REPLY,
600 OFPST_TABLE, "OFPST_TABLE reply",
601 sizeof(struct ofp_stats_msg), sizeof(struct ofp_table_stats) },
603 { OFPUTIL_OFPST_PORT_REPLY,
604 OFPST_PORT, "OFPST_PORT reply",
605 sizeof(struct ofp_stats_msg), sizeof(struct ofp_port_stats) },
607 { OFPUTIL_OFPST_QUEUE_REPLY,
608 OFPST_QUEUE, "OFPST_QUEUE reply",
609 sizeof(struct ofp_stats_msg), sizeof(struct ofp_queue_stats) },
612 OFPST_VENDOR, "OFPST_VENDOR reply",
613 sizeof(struct ofp_vendor_stats_msg), 1 },
616 static const struct ofputil_msg_category ofpst_reply_category = {
617 "OpenFlow statistics",
618 ofpst_replies, ARRAY_SIZE(ofpst_replies),
619 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT)
622 const struct ofp_stats_msg *reply = (const struct ofp_stats_msg *) oh;
625 error = check_stats_msg(oh, length);
630 error = ofputil_lookup_openflow_message(&ofpst_reply_category,
631 ntohs(reply->type), typep);
632 if (!error && reply->type == htons(OFPST_VENDOR)) {
633 error = ofputil_decode_nxst_reply(oh, length, typep);
639 ofputil_decode_msg_type__(const struct ofp_header *oh, size_t length,
640 const struct ofputil_msg_type **typep)
642 static const struct ofputil_msg_type ofpt_messages[] = {
643 { OFPUTIL_OFPT_HELLO,
644 OFPT_HELLO, "OFPT_HELLO",
645 sizeof(struct ofp_hello), 1 },
647 { OFPUTIL_OFPT_ERROR,
648 OFPT_ERROR, "OFPT_ERROR",
649 sizeof(struct ofp_error_msg), 1 },
651 { OFPUTIL_OFPT_ECHO_REQUEST,
652 OFPT_ECHO_REQUEST, "OFPT_ECHO_REQUEST",
653 sizeof(struct ofp_header), 1 },
655 { OFPUTIL_OFPT_ECHO_REPLY,
656 OFPT_ECHO_REPLY, "OFPT_ECHO_REPLY",
657 sizeof(struct ofp_header), 1 },
659 { OFPUTIL_OFPT_FEATURES_REQUEST,
660 OFPT_FEATURES_REQUEST, "OFPT_FEATURES_REQUEST",
661 sizeof(struct ofp_header), 0 },
663 { OFPUTIL_OFPT_FEATURES_REPLY,
664 OFPT_FEATURES_REPLY, "OFPT_FEATURES_REPLY",
665 sizeof(struct ofp_switch_features), sizeof(struct ofp_phy_port) },
667 { OFPUTIL_OFPT_GET_CONFIG_REQUEST,
668 OFPT_GET_CONFIG_REQUEST, "OFPT_GET_CONFIG_REQUEST",
669 sizeof(struct ofp_header), 0 },
671 { OFPUTIL_OFPT_GET_CONFIG_REPLY,
672 OFPT_GET_CONFIG_REPLY, "OFPT_GET_CONFIG_REPLY",
673 sizeof(struct ofp_switch_config), 0 },
675 { OFPUTIL_OFPT_SET_CONFIG,
676 OFPT_SET_CONFIG, "OFPT_SET_CONFIG",
677 sizeof(struct ofp_switch_config), 0 },
679 { OFPUTIL_OFPT_PACKET_IN,
680 OFPT_PACKET_IN, "OFPT_PACKET_IN",
681 offsetof(struct ofp_packet_in, data), 1 },
683 { OFPUTIL_OFPT_FLOW_REMOVED,
684 OFPT_FLOW_REMOVED, "OFPT_FLOW_REMOVED",
685 sizeof(struct ofp_flow_removed), 0 },
687 { OFPUTIL_OFPT_PORT_STATUS,
688 OFPT_PORT_STATUS, "OFPT_PORT_STATUS",
689 sizeof(struct ofp_port_status), 0 },
691 { OFPUTIL_OFPT_PACKET_OUT,
692 OFPT_PACKET_OUT, "OFPT_PACKET_OUT",
693 sizeof(struct ofp_packet_out), 1 },
695 { OFPUTIL_OFPT_FLOW_MOD,
696 OFPT_FLOW_MOD, "OFPT_FLOW_MOD",
697 sizeof(struct ofp_flow_mod), 1 },
699 { OFPUTIL_OFPT_PORT_MOD,
700 OFPT_PORT_MOD, "OFPT_PORT_MOD",
701 sizeof(struct ofp_port_mod), 0 },
704 OFPT_STATS_REQUEST, "OFPT_STATS_REQUEST",
705 sizeof(struct ofp_stats_msg), 1 },
708 OFPT_STATS_REPLY, "OFPT_STATS_REPLY",
709 sizeof(struct ofp_stats_msg), 1 },
711 { OFPUTIL_OFPT_BARRIER_REQUEST,
712 OFPT_BARRIER_REQUEST, "OFPT_BARRIER_REQUEST",
713 sizeof(struct ofp_header), 0 },
715 { OFPUTIL_OFPT_BARRIER_REPLY,
716 OFPT_BARRIER_REPLY, "OFPT_BARRIER_REPLY",
717 sizeof(struct ofp_header), 0 },
720 OFPT_VENDOR, "OFPT_VENDOR",
721 sizeof(struct ofp_vendor_header), 1 },
724 static const struct ofputil_msg_category ofpt_category = {
726 ofpt_messages, ARRAY_SIZE(ofpt_messages),
727 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE)
732 error = ofputil_lookup_openflow_message(&ofpt_category, oh->type, typep);
736 error = ofputil_decode_vendor(oh, length, typep);
739 case OFPT_STATS_REQUEST:
740 error = ofputil_decode_ofpst_request(oh, length, typep);
743 case OFPT_STATS_REPLY:
744 error = ofputil_decode_ofpst_reply(oh, length, typep);
753 /* Decodes the message type represented by 'oh'. Returns 0 if successful or
754 * an OpenFlow error code constructed with ofp_mkerr() on failure. Either
755 * way, stores in '*typep' a type structure that can be inspected with the
756 * ofputil_msg_type_*() functions.
758 * oh->length must indicate the correct length of the message (and must be at
759 * least sizeof(struct ofp_header)).
761 * Success indicates that 'oh' is at least as long as the minimum-length
762 * message of its type. */
764 ofputil_decode_msg_type(const struct ofp_header *oh,
765 const struct ofputil_msg_type **typep)
767 size_t length = ntohs(oh->length);
770 error = ofputil_decode_msg_type__(oh, length, typep);
772 error = ofputil_check_length(*typep, length);
775 *typep = &ofputil_invalid_type;
780 /* Decodes the message type represented by 'oh', of which only the first
781 * 'length' bytes are available. Returns 0 if successful or an OpenFlow error
782 * code constructed with ofp_mkerr() on failure. Either way, stores in
783 * '*typep' a type structure that can be inspected with the
784 * ofputil_msg_type_*() functions. */
786 ofputil_decode_msg_type_partial(const struct ofp_header *oh, size_t length,
787 const struct ofputil_msg_type **typep)
791 error = (length >= sizeof *oh
792 ? ofputil_decode_msg_type__(oh, length, typep)
793 : ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN));
795 *typep = &ofputil_invalid_type;
800 /* Returns an OFPUTIL_* message type code for 'type'. */
801 enum ofputil_msg_code
802 ofputil_msg_type_code(const struct ofputil_msg_type *type)
810 ofputil_flow_format_is_valid(enum nx_flow_format flow_format)
812 switch (flow_format) {
813 case NXFF_OPENFLOW10:
822 ofputil_flow_format_to_string(enum nx_flow_format flow_format)
824 switch (flow_format) {
825 case NXFF_OPENFLOW10:
835 ofputil_flow_format_from_string(const char *s)
837 return (!strcmp(s, "openflow10") ? NXFF_OPENFLOW10
838 : !strcmp(s, "nxm") ? NXFF_NXM
843 regs_fully_wildcarded(const struct flow_wildcards *wc)
847 for (i = 0; i < FLOW_N_REGS; i++) {
848 if (wc->reg_masks[i] != 0) {
855 /* Returns the minimum nx_flow_format to use for sending 'rule' to a switch
856 * (e.g. to add or remove a flow). Only NXM can handle tunnel IDs, registers,
857 * or fixing the Ethernet multicast bit. Otherwise, it's better to use
858 * NXFF_OPENFLOW10 for backward compatibility. */
860 ofputil_min_flow_format(const struct cls_rule *rule)
862 const struct flow_wildcards *wc = &rule->wc;
864 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 7);
866 /* Only NXM supports separately wildcards the Ethernet multicast bit. */
867 if (!(wc->wildcards & FWW_DL_DST) != !(wc->wildcards & FWW_ETH_MCAST)) {
871 /* Only NXM supports matching ARP hardware addresses. */
872 if (!(wc->wildcards & FWW_ARP_SHA) || !(wc->wildcards & FWW_ARP_THA)) {
876 /* Only NXM supports matching IPv6 traffic. */
877 if (!(wc->wildcards & FWW_DL_TYPE)
878 && (rule->flow.dl_type == htons(ETH_TYPE_IPV6))) {
882 /* Only NXM supports matching registers. */
883 if (!regs_fully_wildcarded(wc)) {
887 /* Only NXM supports matching tun_id. */
888 if (wc->tun_id_mask != htonll(0)) {
892 /* Only NXM supports matching fragments. */
893 if (wc->nw_frag_mask) {
897 /* Only NXM supports matching IPv6 flow label. */
898 if (!(wc->wildcards & FWW_IPV6_LABEL)) {
902 /* Only NXM supports matching IP ECN bits. */
903 if (!(wc->wildcards & FWW_NW_ECN)) {
907 /* Only NXM supports matching IP TTL/hop limit. */
908 if (!(wc->wildcards & FWW_NW_TTL)) {
912 /* Other formats can express this rule. */
913 return NXFF_OPENFLOW10;
916 /* Returns an OpenFlow message that can be used to set the flow format to
919 ofputil_make_set_flow_format(enum nx_flow_format flow_format)
921 struct nxt_set_flow_format *sff;
924 sff = make_nxmsg(sizeof *sff, NXT_SET_FLOW_FORMAT, &msg);
925 sff->format = htonl(flow_format);
930 /* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
931 * extension on or off (according to 'flow_mod_table_id'). */
933 ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
935 struct nxt_flow_mod_table_id *nfmti;
938 nfmti = make_nxmsg(sizeof *nfmti, NXT_FLOW_MOD_TABLE_ID, &msg);
939 nfmti->set = flow_mod_table_id;
943 /* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
944 * flow_mod in 'fm'. Returns 0 if successful, otherwise an OpenFlow error
947 * 'flow_mod_table_id' should be true if the NXT_FLOW_MOD_TABLE_ID extension is
948 * enabled, false otherwise.
950 * Does not validate the flow_mod actions. */
952 ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
953 const struct ofp_header *oh, bool flow_mod_table_id)
955 const struct ofputil_msg_type *type;
959 ofpbuf_use_const(&b, oh, ntohs(oh->length));
961 ofputil_decode_msg_type(oh, &type);
962 if (ofputil_msg_type_code(type) == OFPUTIL_OFPT_FLOW_MOD) {
963 /* Standard OpenFlow flow_mod. */
964 const struct ofp_flow_mod *ofm;
968 /* Dissect the message. */
969 ofm = ofpbuf_pull(&b, sizeof *ofm);
970 error = ofputil_pull_actions(&b, b.size, &fm->actions, &fm->n_actions);
975 /* Set priority based on original wildcards. Normally we'd allow
976 * ofputil_cls_rule_from_match() to do this for us, but
977 * ofputil_normalize_rule() can put wildcards where the original flow
978 * didn't have them. */
979 priority = ntohs(ofm->priority);
980 if (!(ofm->match.wildcards & htonl(OFPFW_ALL))) {
981 priority = UINT16_MAX;
984 /* Translate the rule. */
985 ofputil_cls_rule_from_match(&ofm->match, priority, &fm->cr);
986 ofputil_normalize_rule(&fm->cr, NXFF_OPENFLOW10);
988 /* Translate the message. */
989 fm->cookie = ofm->cookie;
990 fm->cookie_mask = htonll(UINT64_MAX);
991 command = ntohs(ofm->command);
992 fm->idle_timeout = ntohs(ofm->idle_timeout);
993 fm->hard_timeout = ntohs(ofm->hard_timeout);
994 fm->buffer_id = ntohl(ofm->buffer_id);
995 fm->out_port = ntohs(ofm->out_port);
996 fm->flags = ntohs(ofm->flags);
997 } else if (ofputil_msg_type_code(type) == OFPUTIL_NXT_FLOW_MOD) {
998 /* Nicira extended flow_mod. */
999 const struct nx_flow_mod *nfm;
1002 /* Dissect the message. */
1003 nfm = ofpbuf_pull(&b, sizeof *nfm);
1004 error = nx_pull_match(&b, ntohs(nfm->match_len), ntohs(nfm->priority),
1005 &fm->cr, &fm->cookie, &fm->cookie_mask);
1009 error = ofputil_pull_actions(&b, b.size, &fm->actions, &fm->n_actions);
1014 /* Translate the message. */
1015 command = ntohs(nfm->command);
1016 if (command == OFPFC_ADD) {
1017 if (fm->cookie_mask) {
1018 /* The "NXM_NX_COOKIE*" matches are not valid for flow
1019 * additions. Additions must use the "cookie" field of
1020 * the "nx_flow_mod" structure. */
1021 return ofp_mkerr(OFPET_BAD_REQUEST, NXBRC_NXM_INVALID);
1023 fm->cookie = nfm->cookie;
1024 fm->cookie_mask = htonll(UINT64_MAX);
1027 fm->idle_timeout = ntohs(nfm->idle_timeout);
1028 fm->hard_timeout = ntohs(nfm->hard_timeout);
1029 fm->buffer_id = ntohl(nfm->buffer_id);
1030 fm->out_port = ntohs(nfm->out_port);
1031 fm->flags = ntohs(nfm->flags);
1036 if (flow_mod_table_id) {
1037 fm->command = command & 0xff;
1038 fm->table_id = command >> 8;
1040 fm->command = command;
1041 fm->table_id = 0xff;
1047 /* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
1048 * 'flow_format' and returns the message.
1050 * 'flow_mod_table_id' should be true if the NXT_FLOW_MOD_TABLE_ID extension is
1051 * enabled, false otherwise. */
1053 ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
1054 enum nx_flow_format flow_format,
1055 bool flow_mod_table_id)
1057 size_t actions_len = fm->n_actions * sizeof *fm->actions;
1061 command = (flow_mod_table_id
1062 ? (fm->command & 0xff) | (fm->table_id << 8)
1065 if (flow_format == NXFF_OPENFLOW10) {
1066 struct ofp_flow_mod *ofm;
1068 msg = ofpbuf_new(sizeof *ofm + actions_len);
1069 ofm = put_openflow(sizeof *ofm, OFPT_FLOW_MOD, msg);
1070 ofputil_cls_rule_to_match(&fm->cr, &ofm->match);
1071 ofm->cookie = fm->cookie;
1072 ofm->command = htons(command);
1073 ofm->idle_timeout = htons(fm->idle_timeout);
1074 ofm->hard_timeout = htons(fm->hard_timeout);
1075 ofm->priority = htons(fm->cr.priority);
1076 ofm->buffer_id = htonl(fm->buffer_id);
1077 ofm->out_port = htons(fm->out_port);
1078 ofm->flags = htons(fm->flags);
1079 } else if (flow_format == NXFF_NXM) {
1080 struct nx_flow_mod *nfm;
1083 msg = ofpbuf_new(sizeof *nfm + NXM_TYPICAL_LEN + actions_len);
1084 put_nxmsg(sizeof *nfm, NXT_FLOW_MOD, msg);
1086 nfm->command = htons(command);
1087 if (command == OFPFC_ADD) {
1088 nfm->cookie = fm->cookie;
1089 match_len = nx_put_match(msg, &fm->cr, 0, 0);
1092 match_len = nx_put_match(msg, &fm->cr,
1093 fm->cookie, fm->cookie_mask);
1095 nfm->idle_timeout = htons(fm->idle_timeout);
1096 nfm->hard_timeout = htons(fm->hard_timeout);
1097 nfm->priority = htons(fm->cr.priority);
1098 nfm->buffer_id = htonl(fm->buffer_id);
1099 nfm->out_port = htons(fm->out_port);
1100 nfm->flags = htons(fm->flags);
1101 nfm->match_len = htons(match_len);
1106 ofpbuf_put(msg, fm->actions, actions_len);
1107 update_openflow_length(msg);
1112 ofputil_decode_ofpst_flow_request(struct ofputil_flow_stats_request *fsr,
1113 const struct ofp_header *oh,
1116 const struct ofp_flow_stats_request *ofsr =
1117 (const struct ofp_flow_stats_request *) oh;
1119 fsr->aggregate = aggregate;
1120 ofputil_cls_rule_from_match(&ofsr->match, 0, &fsr->match);
1121 fsr->out_port = ntohs(ofsr->out_port);
1122 fsr->table_id = ofsr->table_id;
1123 fsr->cookie = fsr->cookie_mask = htonll(0);
1129 ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
1130 const struct ofp_header *oh,
1133 const struct nx_flow_stats_request *nfsr;
1137 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1139 nfsr = ofpbuf_pull(&b, sizeof *nfsr);
1140 error = nx_pull_match(&b, ntohs(nfsr->match_len), 0, &fsr->match,
1141 &fsr->cookie, &fsr->cookie_mask);
1146 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
1149 fsr->aggregate = aggregate;
1150 fsr->out_port = ntohs(nfsr->out_port);
1151 fsr->table_id = nfsr->table_id;
1156 /* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
1157 * request 'oh', into an abstract flow_stats_request in 'fsr'. Returns 0 if
1158 * successful, otherwise an OpenFlow error code. */
1160 ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
1161 const struct ofp_header *oh)
1163 const struct ofputil_msg_type *type;
1167 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1169 ofputil_decode_msg_type(oh, &type);
1170 code = ofputil_msg_type_code(type);
1172 case OFPUTIL_OFPST_FLOW_REQUEST:
1173 return ofputil_decode_ofpst_flow_request(fsr, oh, false);
1175 case OFPUTIL_OFPST_AGGREGATE_REQUEST:
1176 return ofputil_decode_ofpst_flow_request(fsr, oh, true);
1178 case OFPUTIL_NXST_FLOW_REQUEST:
1179 return ofputil_decode_nxst_flow_request(fsr, oh, false);
1181 case OFPUTIL_NXST_AGGREGATE_REQUEST:
1182 return ofputil_decode_nxst_flow_request(fsr, oh, true);
1185 /* Hey, the caller lied. */
1190 /* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
1191 * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
1192 * 'flow_format', and returns the message. */
1194 ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
1195 enum nx_flow_format flow_format)
1199 if (flow_format == NXFF_OPENFLOW10) {
1200 struct ofp_flow_stats_request *ofsr;
1203 type = fsr->aggregate ? OFPST_AGGREGATE : OFPST_FLOW;
1204 ofsr = ofputil_make_stats_request(sizeof *ofsr, type, 0, &msg);
1205 ofputil_cls_rule_to_match(&fsr->match, &ofsr->match);
1206 ofsr->table_id = fsr->table_id;
1207 ofsr->out_port = htons(fsr->out_port);
1208 } else if (flow_format == NXFF_NXM) {
1209 struct nx_flow_stats_request *nfsr;
1213 subtype = fsr->aggregate ? NXST_AGGREGATE : NXST_FLOW;
1214 ofputil_make_stats_request(sizeof *nfsr, OFPST_VENDOR, subtype, &msg);
1215 match_len = nx_put_match(msg, &fsr->match,
1216 fsr->cookie, fsr->cookie_mask);
1219 nfsr->out_port = htons(fsr->out_port);
1220 nfsr->match_len = htons(match_len);
1221 nfsr->table_id = fsr->table_id;
1229 /* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
1230 * ofputil_flow_stats in 'fs'.
1232 * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
1233 * OpenFlow message. Calling this function multiple times for a single 'msg'
1234 * iterates through the replies. The caller must initially leave 'msg''s layer
1235 * pointers null and not modify them between calls.
1237 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1238 * otherwise a positive errno value. */
1240 ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
1243 const struct ofputil_msg_type *type;
1246 ofputil_decode_msg_type(msg->l2 ? msg->l2 : msg->data, &type);
1247 code = ofputil_msg_type_code(type);
1249 msg->l2 = msg->data;
1250 if (code == OFPUTIL_OFPST_FLOW_REPLY) {
1251 ofpbuf_pull(msg, sizeof(struct ofp_stats_msg));
1252 } else if (code == OFPUTIL_NXST_FLOW_REPLY) {
1253 ofpbuf_pull(msg, sizeof(struct nicira_stats_msg));
1261 } else if (code == OFPUTIL_OFPST_FLOW_REPLY) {
1262 const struct ofp_flow_stats *ofs;
1265 ofs = ofpbuf_try_pull(msg, sizeof *ofs);
1267 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
1268 "bytes at end", msg->size);
1272 length = ntohs(ofs->length);
1273 if (length < sizeof *ofs) {
1274 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
1275 "length %zu", length);
1279 if (ofputil_pull_actions(msg, length - sizeof *ofs,
1280 &fs->actions, &fs->n_actions)) {
1284 fs->cookie = get_32aligned_be64(&ofs->cookie);
1285 ofputil_cls_rule_from_match(&ofs->match, ntohs(ofs->priority),
1287 fs->table_id = ofs->table_id;
1288 fs->duration_sec = ntohl(ofs->duration_sec);
1289 fs->duration_nsec = ntohl(ofs->duration_nsec);
1290 fs->idle_timeout = ntohs(ofs->idle_timeout);
1291 fs->hard_timeout = ntohs(ofs->hard_timeout);
1292 fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
1293 fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
1294 } else if (code == OFPUTIL_NXST_FLOW_REPLY) {
1295 const struct nx_flow_stats *nfs;
1296 size_t match_len, length;
1298 nfs = ofpbuf_try_pull(msg, sizeof *nfs);
1300 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %zu leftover "
1301 "bytes at end", msg->size);
1305 length = ntohs(nfs->length);
1306 match_len = ntohs(nfs->match_len);
1307 if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
1308 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%zu "
1309 "claims invalid length %zu", match_len, length);
1312 if (nx_pull_match(msg, match_len, ntohs(nfs->priority), &fs->rule,
1317 if (ofputil_pull_actions(msg,
1318 length - sizeof *nfs - ROUND_UP(match_len, 8),
1319 &fs->actions, &fs->n_actions)) {
1323 fs->cookie = nfs->cookie;
1324 fs->table_id = nfs->table_id;
1325 fs->duration_sec = ntohl(nfs->duration_sec);
1326 fs->duration_nsec = ntohl(nfs->duration_nsec);
1327 fs->idle_timeout = ntohs(nfs->idle_timeout);
1328 fs->hard_timeout = ntohs(nfs->hard_timeout);
1329 fs->packet_count = ntohll(nfs->packet_count);
1330 fs->byte_count = ntohll(nfs->byte_count);
1338 /* Returns 'count' unchanged except that UINT64_MAX becomes 0.
1340 * We use this in situations where OVS internally uses UINT64_MAX to mean
1341 * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
1343 unknown_to_zero(uint64_t count)
1345 return count != UINT64_MAX ? count : 0;
1348 /* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
1349 * those already present in the list of ofpbufs in 'replies'. 'replies' should
1350 * have been initialized with ofputil_start_stats_reply(). */
1352 ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
1353 struct list *replies)
1355 size_t act_len = fs->n_actions * sizeof *fs->actions;
1356 const struct ofp_stats_msg *osm;
1358 osm = ofpbuf_from_list(list_back(replies))->data;
1359 if (osm->type == htons(OFPST_FLOW)) {
1360 size_t len = offsetof(struct ofp_flow_stats, actions) + act_len;
1361 struct ofp_flow_stats *ofs;
1363 ofs = ofputil_append_stats_reply(len, replies);
1364 ofs->length = htons(len);
1365 ofs->table_id = fs->table_id;
1367 ofputil_cls_rule_to_match(&fs->rule, &ofs->match);
1368 ofs->duration_sec = htonl(fs->duration_sec);
1369 ofs->duration_nsec = htonl(fs->duration_nsec);
1370 ofs->priority = htons(fs->rule.priority);
1371 ofs->idle_timeout = htons(fs->idle_timeout);
1372 ofs->hard_timeout = htons(fs->hard_timeout);
1373 memset(ofs->pad2, 0, sizeof ofs->pad2);
1374 put_32aligned_be64(&ofs->cookie, fs->cookie);
1375 put_32aligned_be64(&ofs->packet_count,
1376 htonll(unknown_to_zero(fs->packet_count)));
1377 put_32aligned_be64(&ofs->byte_count,
1378 htonll(unknown_to_zero(fs->byte_count)));
1379 memcpy(ofs->actions, fs->actions, act_len);
1380 } else if (osm->type == htons(OFPST_VENDOR)) {
1381 struct nx_flow_stats *nfs;
1385 msg = ofputil_reserve_stats_reply(
1386 sizeof *nfs + NXM_MAX_LEN + act_len, replies);
1387 start_len = msg->size;
1389 nfs = ofpbuf_put_uninit(msg, sizeof *nfs);
1390 nfs->table_id = fs->table_id;
1392 nfs->duration_sec = htonl(fs->duration_sec);
1393 nfs->duration_nsec = htonl(fs->duration_nsec);
1394 nfs->priority = htons(fs->rule.priority);
1395 nfs->idle_timeout = htons(fs->idle_timeout);
1396 nfs->hard_timeout = htons(fs->hard_timeout);
1397 nfs->match_len = htons(nx_put_match(msg, &fs->rule, 0, 0));
1398 memset(nfs->pad2, 0, sizeof nfs->pad2);
1399 nfs->cookie = fs->cookie;
1400 nfs->packet_count = htonll(fs->packet_count);
1401 nfs->byte_count = htonll(fs->byte_count);
1402 ofpbuf_put(msg, fs->actions, act_len);
1403 nfs->length = htons(msg->size - start_len);
1409 /* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
1410 * NXST_AGGREGATE reply according to 'flow_format', and returns the message. */
1412 ofputil_encode_aggregate_stats_reply(
1413 const struct ofputil_aggregate_stats *stats,
1414 const struct ofp_stats_msg *request)
1418 if (request->type == htons(OFPST_AGGREGATE)) {
1419 struct ofp_aggregate_stats_reply *asr;
1421 asr = ofputil_make_stats_reply(sizeof *asr, request, &msg);
1422 put_32aligned_be64(&asr->packet_count,
1423 htonll(unknown_to_zero(stats->packet_count)));
1424 put_32aligned_be64(&asr->byte_count,
1425 htonll(unknown_to_zero(stats->byte_count)));
1426 asr->flow_count = htonl(stats->flow_count);
1427 } else if (request->type == htons(OFPST_VENDOR)) {
1428 struct nx_aggregate_stats_reply *nasr;
1430 nasr = ofputil_make_stats_reply(sizeof *nasr, request, &msg);
1431 assert(nasr->nsm.subtype == htonl(NXST_AGGREGATE));
1432 nasr->packet_count = htonll(stats->packet_count);
1433 nasr->byte_count = htonll(stats->byte_count);
1434 nasr->flow_count = htonl(stats->flow_count);
1442 /* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
1443 * abstract ofputil_flow_removed in 'fr'. Returns 0 if successful, otherwise
1444 * an OpenFlow error code. */
1446 ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
1447 const struct ofp_header *oh)
1449 const struct ofputil_msg_type *type;
1450 enum ofputil_msg_code code;
1452 ofputil_decode_msg_type(oh, &type);
1453 code = ofputil_msg_type_code(type);
1454 if (code == OFPUTIL_OFPT_FLOW_REMOVED) {
1455 const struct ofp_flow_removed *ofr;
1457 ofr = (const struct ofp_flow_removed *) oh;
1458 ofputil_cls_rule_from_match(&ofr->match, ntohs(ofr->priority),
1460 fr->cookie = ofr->cookie;
1461 fr->reason = ofr->reason;
1462 fr->duration_sec = ntohl(ofr->duration_sec);
1463 fr->duration_nsec = ntohl(ofr->duration_nsec);
1464 fr->idle_timeout = ntohs(ofr->idle_timeout);
1465 fr->packet_count = ntohll(ofr->packet_count);
1466 fr->byte_count = ntohll(ofr->byte_count);
1467 } else if (code == OFPUTIL_NXT_FLOW_REMOVED) {
1468 struct nx_flow_removed *nfr;
1472 ofpbuf_use_const(&b, oh, ntohs(oh->length));
1474 nfr = ofpbuf_pull(&b, sizeof *nfr);
1475 error = nx_pull_match(&b, ntohs(nfr->match_len), ntohs(nfr->priority),
1476 &fr->rule, NULL, NULL);
1481 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
1484 fr->cookie = nfr->cookie;
1485 fr->reason = nfr->reason;
1486 fr->duration_sec = ntohl(nfr->duration_sec);
1487 fr->duration_nsec = ntohl(nfr->duration_nsec);
1488 fr->idle_timeout = ntohs(nfr->idle_timeout);
1489 fr->packet_count = ntohll(nfr->packet_count);
1490 fr->byte_count = ntohll(nfr->byte_count);
1498 /* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
1499 * NXT_FLOW_REMOVED message 'oh' according to 'flow_format', and returns the
1502 ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
1503 enum nx_flow_format flow_format)
1507 if (flow_format == NXFF_OPENFLOW10) {
1508 struct ofp_flow_removed *ofr;
1510 ofr = make_openflow_xid(sizeof *ofr, OFPT_FLOW_REMOVED, htonl(0),
1512 ofputil_cls_rule_to_match(&fr->rule, &ofr->match);
1513 ofr->cookie = fr->cookie;
1514 ofr->priority = htons(fr->rule.priority);
1515 ofr->reason = fr->reason;
1516 ofr->duration_sec = htonl(fr->duration_sec);
1517 ofr->duration_nsec = htonl(fr->duration_nsec);
1518 ofr->idle_timeout = htons(fr->idle_timeout);
1519 ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
1520 ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
1521 } else if (flow_format == NXFF_NXM) {
1522 struct nx_flow_removed *nfr;
1525 make_nxmsg_xid(sizeof *nfr, NXT_FLOW_REMOVED, htonl(0), &msg);
1526 match_len = nx_put_match(msg, &fr->rule, 0, 0);
1529 nfr->cookie = fr->cookie;
1530 nfr->priority = htons(fr->rule.priority);
1531 nfr->reason = fr->reason;
1532 nfr->duration_sec = htonl(fr->duration_sec);
1533 nfr->duration_nsec = htonl(fr->duration_nsec);
1534 nfr->idle_timeout = htons(fr->idle_timeout);
1535 nfr->match_len = htons(match_len);
1536 nfr->packet_count = htonll(fr->packet_count);
1537 nfr->byte_count = htonll(fr->byte_count);
1545 /* Converts abstract ofputil_packet_in 'pin' into an OFPT_PACKET_IN message
1546 * and returns the message.
1548 * If 'rw_packet' is NULL, the caller takes ownership of the newly allocated
1551 * If 'rw_packet' is nonnull, then it must contain the same data as
1552 * pin->packet. 'rw_packet' is allowed to be the same ofpbuf as pin->packet.
1553 * It is modified in-place into an OFPT_PACKET_IN message according to 'pin',
1554 * and then ofputil_encode_packet_in() returns 'rw_packet'. If 'rw_packet' has
1555 * enough headroom to insert a "struct ofp_packet_in", this is more efficient
1556 * than ofputil_encode_packet_in() because it does not copy the packet
1559 ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
1560 struct ofpbuf *rw_packet)
1562 int total_len = pin->packet->size;
1563 struct ofp_packet_in opi;
1566 if (pin->send_len < rw_packet->size) {
1567 rw_packet->size = pin->send_len;
1570 rw_packet = ofpbuf_clone_data_with_headroom(
1571 pin->packet->data, MIN(pin->send_len, pin->packet->size),
1572 offsetof(struct ofp_packet_in, data));
1575 /* Add OFPT_PACKET_IN. */
1576 memset(&opi, 0, sizeof opi);
1577 opi.header.version = OFP_VERSION;
1578 opi.header.type = OFPT_PACKET_IN;
1579 opi.total_len = htons(total_len);
1580 opi.in_port = htons(pin->in_port);
1581 opi.reason = pin->reason;
1582 opi.buffer_id = htonl(pin->buffer_id);
1583 ofpbuf_push(rw_packet, &opi, offsetof(struct ofp_packet_in, data));
1584 update_openflow_length(rw_packet);
1589 /* Returns a string representing the message type of 'type'. The string is the
1590 * enumeration constant for the type, e.g. "OFPT_HELLO". For statistics
1591 * messages, the constant is followed by "request" or "reply",
1592 * e.g. "OFPST_AGGREGATE reply". */
1594 ofputil_msg_type_name(const struct ofputil_msg_type *type)
1599 /* Allocates and stores in '*bufferp' a new ofpbuf with a size of
1600 * 'openflow_len', starting with an OpenFlow header with the given 'type' and
1601 * an arbitrary transaction id. Allocated bytes beyond the header, if any, are
1604 * The caller is responsible for freeing '*bufferp' when it is no longer
1607 * The OpenFlow header length is initially set to 'openflow_len'; if the
1608 * message is later extended, the length should be updated with
1609 * update_openflow_length() before sending.
1611 * Returns the header. */
1613 make_openflow(size_t openflow_len, uint8_t type, struct ofpbuf **bufferp)
1615 *bufferp = ofpbuf_new(openflow_len);
1616 return put_openflow_xid(openflow_len, type, alloc_xid(), *bufferp);
1619 /* Similar to make_openflow() but creates a Nicira vendor extension message
1620 * with the specific 'subtype'. 'subtype' should be in host byte order. */
1622 make_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf **bufferp)
1624 return make_nxmsg_xid(openflow_len, subtype, alloc_xid(), bufferp);
1627 /* Allocates and stores in '*bufferp' a new ofpbuf with a size of
1628 * 'openflow_len', starting with an OpenFlow header with the given 'type' and
1629 * transaction id 'xid'. Allocated bytes beyond the header, if any, are
1632 * The caller is responsible for freeing '*bufferp' when it is no longer
1635 * The OpenFlow header length is initially set to 'openflow_len'; if the
1636 * message is later extended, the length should be updated with
1637 * update_openflow_length() before sending.
1639 * Returns the header. */
1641 make_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
1642 struct ofpbuf **bufferp)
1644 *bufferp = ofpbuf_new(openflow_len);
1645 return put_openflow_xid(openflow_len, type, xid, *bufferp);
1648 /* Similar to make_openflow_xid() but creates a Nicira vendor extension message
1649 * with the specific 'subtype'. 'subtype' should be in host byte order. */
1651 make_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
1652 struct ofpbuf **bufferp)
1654 *bufferp = ofpbuf_new(openflow_len);
1655 return put_nxmsg_xid(openflow_len, subtype, xid, *bufferp);
1658 /* Appends 'openflow_len' bytes to 'buffer', starting with an OpenFlow header
1659 * with the given 'type' and an arbitrary transaction id. Allocated bytes
1660 * beyond the header, if any, are zeroed.
1662 * The OpenFlow header length is initially set to 'openflow_len'; if the
1663 * message is later extended, the length should be updated with
1664 * update_openflow_length() before sending.
1666 * Returns the header. */
1668 put_openflow(size_t openflow_len, uint8_t type, struct ofpbuf *buffer)
1670 return put_openflow_xid(openflow_len, type, alloc_xid(), buffer);
1673 /* Appends 'openflow_len' bytes to 'buffer', starting with an OpenFlow header
1674 * with the given 'type' and an transaction id 'xid'. Allocated bytes beyond
1675 * the header, if any, are zeroed.
1677 * The OpenFlow header length is initially set to 'openflow_len'; if the
1678 * message is later extended, the length should be updated with
1679 * update_openflow_length() before sending.
1681 * Returns the header. */
1683 put_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
1684 struct ofpbuf *buffer)
1686 struct ofp_header *oh;
1688 assert(openflow_len >= sizeof *oh);
1689 assert(openflow_len <= UINT16_MAX);
1691 oh = ofpbuf_put_uninit(buffer, openflow_len);
1692 oh->version = OFP_VERSION;
1694 oh->length = htons(openflow_len);
1696 memset(oh + 1, 0, openflow_len - sizeof *oh);
1700 /* Similar to put_openflow() but append a Nicira vendor extension message with
1701 * the specific 'subtype'. 'subtype' should be in host byte order. */
1703 put_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf *buffer)
1705 return put_nxmsg_xid(openflow_len, subtype, alloc_xid(), buffer);
1708 /* Similar to put_openflow_xid() but append a Nicira vendor extension message
1709 * with the specific 'subtype'. 'subtype' should be in host byte order. */
1711 put_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
1712 struct ofpbuf *buffer)
1714 struct nicira_header *nxh;
1716 nxh = put_openflow_xid(openflow_len, OFPT_VENDOR, xid, buffer);
1717 nxh->vendor = htonl(NX_VENDOR_ID);
1718 nxh->subtype = htonl(subtype);
1722 /* Updates the 'length' field of the OpenFlow message in 'buffer' to
1723 * 'buffer->size'. */
1725 update_openflow_length(struct ofpbuf *buffer)
1727 struct ofp_header *oh = ofpbuf_at_assert(buffer, 0, sizeof *oh);
1728 oh->length = htons(buffer->size);
1732 put_stats__(ovs_be32 xid, uint8_t ofp_type,
1733 ovs_be16 ofpst_type, ovs_be32 nxst_subtype,
1736 if (ofpst_type == htons(OFPST_VENDOR)) {
1737 struct nicira_stats_msg *nsm;
1739 nsm = put_openflow_xid(sizeof *nsm, ofp_type, xid, msg);
1740 nsm->vsm.osm.type = ofpst_type;
1741 nsm->vsm.vendor = htonl(NX_VENDOR_ID);
1742 nsm->subtype = nxst_subtype;
1744 struct ofp_stats_msg *osm;
1746 osm = put_openflow_xid(sizeof *osm, ofp_type, xid, msg);
1747 osm->type = ofpst_type;
1751 /* Creates a statistics request message with total length 'openflow_len'
1752 * (including all headers) and the given 'ofpst_type', and stores the buffer
1753 * containing the new message in '*bufferp'. If 'ofpst_type' is OFPST_VENDOR
1754 * then 'nxst_subtype' is used as the Nicira vendor extension statistics
1755 * subtype (otherwise 'nxst_subtype' is ignored).
1757 * Initializes bytes following the headers to all-bits-zero.
1759 * Returns the first byte of the new message. */
1761 ofputil_make_stats_request(size_t openflow_len, uint16_t ofpst_type,
1762 uint32_t nxst_subtype, struct ofpbuf **bufferp)
1766 msg = *bufferp = ofpbuf_new(openflow_len);
1767 put_stats__(alloc_xid(), OFPT_STATS_REQUEST,
1768 htons(ofpst_type), htonl(nxst_subtype), msg);
1769 ofpbuf_padto(msg, openflow_len);
1775 put_stats_reply__(const struct ofp_stats_msg *request, struct ofpbuf *msg)
1777 assert(request->header.type == OFPT_STATS_REQUEST ||
1778 request->header.type == OFPT_STATS_REPLY);
1779 put_stats__(request->header.xid, OFPT_STATS_REPLY, request->type,
1780 (request->type != htons(OFPST_VENDOR)
1782 : ((const struct nicira_stats_msg *) request)->subtype),
1786 /* Creates a statistics reply message with total length 'openflow_len'
1787 * (including all headers) and the same type (either a standard OpenFlow
1788 * statistics type or a Nicira extension type and subtype) as 'request', and
1789 * stores the buffer containing the new message in '*bufferp'.
1791 * Initializes bytes following the headers to all-bits-zero.
1793 * Returns the first byte of the new message. */
1795 ofputil_make_stats_reply(size_t openflow_len,
1796 const struct ofp_stats_msg *request,
1797 struct ofpbuf **bufferp)
1801 msg = *bufferp = ofpbuf_new(openflow_len);
1802 put_stats_reply__(request, msg);
1803 ofpbuf_padto(msg, openflow_len);
1808 /* Initializes 'replies' as a list of ofpbufs that will contain a series of
1809 * replies to 'request', which should be an OpenFlow or Nicira extension
1810 * statistics request. Initially 'replies' will have a single reply message
1811 * that has only a header. The functions ofputil_reserve_stats_reply() and
1812 * ofputil_append_stats_reply() may be used to add to the reply. */
1814 ofputil_start_stats_reply(const struct ofp_stats_msg *request,
1815 struct list *replies)
1819 msg = ofpbuf_new(1024);
1820 put_stats_reply__(request, msg);
1823 list_push_back(replies, &msg->list_node);
1826 /* Prepares to append up to 'len' bytes to the series of statistics replies in
1827 * 'replies', which should have been initialized with
1828 * ofputil_start_stats_reply(). Returns an ofpbuf with at least 'len' bytes of
1829 * tailroom. (The 'len' bytes have not actually be allocated; the caller must
1830 * do so with e.g. ofpbuf_put_uninit().) */
1832 ofputil_reserve_stats_reply(size_t len, struct list *replies)
1834 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
1835 struct ofp_stats_msg *osm = msg->data;
1837 if (msg->size + len <= UINT16_MAX) {
1838 ofpbuf_prealloc_tailroom(msg, len);
1840 osm->flags |= htons(OFPSF_REPLY_MORE);
1842 msg = ofpbuf_new(MAX(1024, sizeof(struct nicira_stats_msg) + len));
1843 put_stats_reply__(osm, msg);
1844 list_push_back(replies, &msg->list_node);
1849 /* Appends 'len' bytes to the series of statistics replies in 'replies', and
1850 * returns the first byte. */
1852 ofputil_append_stats_reply(size_t len, struct list *replies)
1854 return ofpbuf_put_uninit(ofputil_reserve_stats_reply(len, replies), len);
1857 /* Returns the first byte past the ofp_stats_msg header in 'oh'. */
1859 ofputil_stats_body(const struct ofp_header *oh)
1861 assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1862 return (const struct ofp_stats_msg *) oh + 1;
1865 /* Returns the number of bytes past the ofp_stats_msg header in 'oh'. */
1867 ofputil_stats_body_len(const struct ofp_header *oh)
1869 assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1870 return ntohs(oh->length) - sizeof(struct ofp_stats_msg);
1873 /* Returns the first byte past the nicira_stats_msg header in 'oh'. */
1875 ofputil_nxstats_body(const struct ofp_header *oh)
1877 assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1878 return ((const struct nicira_stats_msg *) oh) + 1;
1881 /* Returns the number of bytes past the nicira_stats_msg header in 'oh'. */
1883 ofputil_nxstats_body_len(const struct ofp_header *oh)
1885 assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1886 return ntohs(oh->length) - sizeof(struct nicira_stats_msg);
1890 make_flow_mod(uint16_t command, const struct cls_rule *rule,
1893 struct ofp_flow_mod *ofm;
1894 size_t size = sizeof *ofm + actions_len;
1895 struct ofpbuf *out = ofpbuf_new(size);
1896 ofm = ofpbuf_put_zeros(out, sizeof *ofm);
1897 ofm->header.version = OFP_VERSION;
1898 ofm->header.type = OFPT_FLOW_MOD;
1899 ofm->header.length = htons(size);
1901 ofm->priority = htons(MIN(rule->priority, UINT16_MAX));
1902 ofputil_cls_rule_to_match(rule, &ofm->match);
1903 ofm->command = htons(command);
1908 make_add_flow(const struct cls_rule *rule, uint32_t buffer_id,
1909 uint16_t idle_timeout, size_t actions_len)
1911 struct ofpbuf *out = make_flow_mod(OFPFC_ADD, rule, actions_len);
1912 struct ofp_flow_mod *ofm = out->data;
1913 ofm->idle_timeout = htons(idle_timeout);
1914 ofm->hard_timeout = htons(OFP_FLOW_PERMANENT);
1915 ofm->buffer_id = htonl(buffer_id);
1920 make_del_flow(const struct cls_rule *rule)
1922 struct ofpbuf *out = make_flow_mod(OFPFC_DELETE_STRICT, rule, 0);
1923 struct ofp_flow_mod *ofm = out->data;
1924 ofm->out_port = htons(OFPP_NONE);
1929 make_add_simple_flow(const struct cls_rule *rule,
1930 uint32_t buffer_id, uint16_t out_port,
1931 uint16_t idle_timeout)
1933 if (out_port != OFPP_NONE) {
1934 struct ofp_action_output *oao;
1935 struct ofpbuf *buffer;
1937 buffer = make_add_flow(rule, buffer_id, idle_timeout, sizeof *oao);
1938 ofputil_put_OFPAT_OUTPUT(buffer)->port = htons(out_port);
1941 return make_add_flow(rule, buffer_id, idle_timeout, 0);
1946 make_packet_in(uint32_t buffer_id, uint16_t in_port, uint8_t reason,
1947 const struct ofpbuf *payload, int max_send_len)
1949 struct ofp_packet_in *opi;
1953 send_len = MIN(max_send_len, payload->size);
1954 buf = ofpbuf_new(sizeof *opi + send_len);
1955 opi = put_openflow_xid(offsetof(struct ofp_packet_in, data),
1956 OFPT_PACKET_IN, 0, buf);
1957 opi->buffer_id = htonl(buffer_id);
1958 opi->total_len = htons(payload->size);
1959 opi->in_port = htons(in_port);
1960 opi->reason = reason;
1961 ofpbuf_put(buf, payload->data, send_len);
1962 update_openflow_length(buf);
1968 make_packet_out(const struct ofpbuf *packet, uint32_t buffer_id,
1970 const struct ofp_action_header *actions, size_t n_actions)
1972 size_t actions_len = n_actions * sizeof *actions;
1973 struct ofp_packet_out *opo;
1974 size_t size = sizeof *opo + actions_len + (packet ? packet->size : 0);
1975 struct ofpbuf *out = ofpbuf_new(size);
1977 opo = ofpbuf_put_uninit(out, sizeof *opo);
1978 opo->header.version = OFP_VERSION;
1979 opo->header.type = OFPT_PACKET_OUT;
1980 opo->header.length = htons(size);
1981 opo->header.xid = htonl(0);
1982 opo->buffer_id = htonl(buffer_id);
1983 opo->in_port = htons(in_port);
1984 opo->actions_len = htons(actions_len);
1985 ofpbuf_put(out, actions, actions_len);
1987 ofpbuf_put(out, packet->data, packet->size);
1993 make_unbuffered_packet_out(const struct ofpbuf *packet,
1994 uint16_t in_port, uint16_t out_port)
1996 struct ofp_action_output action;
1997 action.type = htons(OFPAT_OUTPUT);
1998 action.len = htons(sizeof action);
1999 action.port = htons(out_port);
2000 return make_packet_out(packet, UINT32_MAX, in_port,
2001 (struct ofp_action_header *) &action, 1);
2005 make_buffered_packet_out(uint32_t buffer_id,
2006 uint16_t in_port, uint16_t out_port)
2008 if (out_port != OFPP_NONE) {
2009 struct ofp_action_output action;
2010 action.type = htons(OFPAT_OUTPUT);
2011 action.len = htons(sizeof action);
2012 action.port = htons(out_port);
2013 return make_packet_out(NULL, buffer_id, in_port,
2014 (struct ofp_action_header *) &action, 1);
2016 return make_packet_out(NULL, buffer_id, in_port, NULL, 0);
2020 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
2022 make_echo_request(void)
2024 struct ofp_header *rq;
2025 struct ofpbuf *out = ofpbuf_new(sizeof *rq);
2026 rq = ofpbuf_put_uninit(out, sizeof *rq);
2027 rq->version = OFP_VERSION;
2028 rq->type = OFPT_ECHO_REQUEST;
2029 rq->length = htons(sizeof *rq);
2034 /* Creates and returns an OFPT_ECHO_REPLY message matching the
2035 * OFPT_ECHO_REQUEST message in 'rq'. */
2037 make_echo_reply(const struct ofp_header *rq)
2039 size_t size = ntohs(rq->length);
2040 struct ofpbuf *out = ofpbuf_new(size);
2041 struct ofp_header *reply = ofpbuf_put(out, rq, size);
2042 reply->type = OFPT_ECHO_REPLY;
2047 ofputil_frag_handling_to_string(enum ofp_config_flags flags)
2049 switch (flags & OFPC_FRAG_MASK) {
2050 case OFPC_FRAG_NORMAL: return "normal";
2051 case OFPC_FRAG_DROP: return "drop";
2052 case OFPC_FRAG_REASM: return "reassemble";
2053 case OFPC_FRAG_NX_MATCH: return "nx-match";
2060 ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
2062 if (!strcasecmp(s, "normal")) {
2063 *flags = OFPC_FRAG_NORMAL;
2064 } else if (!strcasecmp(s, "drop")) {
2065 *flags = OFPC_FRAG_DROP;
2066 } else if (!strcasecmp(s, "reassemble")) {
2067 *flags = OFPC_FRAG_REASM;
2068 } else if (!strcasecmp(s, "nx-match")) {
2069 *flags = OFPC_FRAG_NX_MATCH;
2076 /* Checks that 'port' is a valid output port for the OFPAT_OUTPUT action, given
2077 * that the switch will never have more than 'max_ports' ports. Returns 0 if
2078 * 'port' is valid, otherwise an ofp_mkerr() return code. */
2080 ofputil_check_output_port(uint16_t port, int max_ports)
2088 case OFPP_CONTROLLER:
2093 if (port < max_ports) {
2096 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT);
2100 #define OFPUTIL_NAMED_PORTS \
2101 OFPUTIL_NAMED_PORT(IN_PORT) \
2102 OFPUTIL_NAMED_PORT(TABLE) \
2103 OFPUTIL_NAMED_PORT(NORMAL) \
2104 OFPUTIL_NAMED_PORT(FLOOD) \
2105 OFPUTIL_NAMED_PORT(ALL) \
2106 OFPUTIL_NAMED_PORT(CONTROLLER) \
2107 OFPUTIL_NAMED_PORT(LOCAL) \
2108 OFPUTIL_NAMED_PORT(NONE)
2110 /* Checks whether 's' is the string representation of an OpenFlow port number,
2111 * either as an integer or a string name (e.g. "LOCAL"). If it is, stores the
2112 * number in '*port' and returns true. Otherwise, returns false. */
2114 ofputil_port_from_string(const char *name, uint16_t *port)
2120 static const struct pair pairs[] = {
2121 #define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
2123 #undef OFPUTIL_NAMED_PORT
2125 static const int n_pairs = ARRAY_SIZE(pairs);
2128 if (str_to_int(name, 0, &i) && i >= 0 && i < UINT16_MAX) {
2133 for (i = 0; i < n_pairs; i++) {
2134 if (!strcasecmp(name, pairs[i].name)) {
2135 *port = pairs[i].value;
2142 /* Appends to 's' a string representation of the OpenFlow port number 'port'.
2143 * Most ports' string representation is just the port number, but for special
2144 * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
2146 ofputil_format_port(uint16_t port, struct ds *s)
2151 #define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: name = #NAME; break;
2153 #undef OFPUTIL_NAMED_PORT
2156 ds_put_format(s, "%"PRIu16, port);
2159 ds_put_cstr(s, name);
2163 check_resubmit_table(const struct nx_action_resubmit *nar)
2165 if (nar->pad[0] || nar->pad[1] || nar->pad[2]) {
2166 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2172 check_output_reg(const struct nx_action_output_reg *naor,
2173 const struct flow *flow)
2177 for (i = 0; i < sizeof naor->zero; i++) {
2178 if (naor->zero[i]) {
2179 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2183 return nxm_src_check(naor->src, nxm_decode_ofs(naor->ofs_nbits),
2184 nxm_decode_n_bits(naor->ofs_nbits), flow);
2188 validate_actions(const union ofp_action *actions, size_t n_actions,
2189 const struct flow *flow, int max_ports)
2191 const union ofp_action *a;
2194 OFPUTIL_ACTION_FOR_EACH (a, left, actions, n_actions) {
2199 code = ofputil_decode_action(a);
2204 msg = ofputil_error_to_string(error);
2205 VLOG_WARN_RL(&bad_ofmsg_rl,
2206 "action decoding error at offset %td (%s)",
2207 (a - actions) * sizeof *a, msg);
2214 switch ((enum ofputil_action_code) code) {
2215 case OFPUTIL_OFPAT_OUTPUT:
2216 error = ofputil_check_output_port(ntohs(a->output.port),
2220 case OFPUTIL_OFPAT_SET_VLAN_VID:
2221 if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
2222 error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2226 case OFPUTIL_OFPAT_SET_VLAN_PCP:
2227 if (a->vlan_pcp.vlan_pcp & ~7) {
2228 error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2232 case OFPUTIL_OFPAT_ENQUEUE:
2233 port = ntohs(((const struct ofp_action_enqueue *) a)->port);
2234 if (port >= max_ports && port != OFPP_IN_PORT
2235 && port != OFPP_LOCAL) {
2236 error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT);
2240 case OFPUTIL_NXAST_REG_MOVE:
2241 error = nxm_check_reg_move((const struct nx_action_reg_move *) a,
2245 case OFPUTIL_NXAST_REG_LOAD:
2246 error = nxm_check_reg_load((const struct nx_action_reg_load *) a,
2250 case OFPUTIL_NXAST_MULTIPATH:
2251 error = multipath_check((const struct nx_action_multipath *) a,
2255 case OFPUTIL_NXAST_AUTOPATH:
2256 error = autopath_check((const struct nx_action_autopath *) a,
2260 case OFPUTIL_NXAST_BUNDLE:
2261 case OFPUTIL_NXAST_BUNDLE_LOAD:
2262 error = bundle_check((const struct nx_action_bundle *) a,
2266 case OFPUTIL_NXAST_OUTPUT_REG:
2267 error = check_output_reg((const struct nx_action_output_reg *) a,
2271 case OFPUTIL_NXAST_RESUBMIT_TABLE:
2272 error = check_resubmit_table(
2273 (const struct nx_action_resubmit *) a);
2276 case OFPUTIL_NXAST_LEARN:
2277 error = learn_check((const struct nx_action_learn *) a, flow);
2280 case OFPUTIL_OFPAT_STRIP_VLAN:
2281 case OFPUTIL_OFPAT_SET_NW_SRC:
2282 case OFPUTIL_OFPAT_SET_NW_DST:
2283 case OFPUTIL_OFPAT_SET_NW_TOS:
2284 case OFPUTIL_OFPAT_SET_TP_SRC:
2285 case OFPUTIL_OFPAT_SET_TP_DST:
2286 case OFPUTIL_OFPAT_SET_DL_SRC:
2287 case OFPUTIL_OFPAT_SET_DL_DST:
2288 case OFPUTIL_NXAST_RESUBMIT:
2289 case OFPUTIL_NXAST_SET_TUNNEL:
2290 case OFPUTIL_NXAST_SET_QUEUE:
2291 case OFPUTIL_NXAST_POP_QUEUE:
2292 case OFPUTIL_NXAST_NOTE:
2293 case OFPUTIL_NXAST_SET_TUNNEL64:
2294 case OFPUTIL_NXAST_EXIT:
2299 char *msg = ofputil_error_to_string(error);
2300 VLOG_WARN_RL(&bad_ofmsg_rl, "bad action at offset %td (%s)",
2301 (a - actions) * sizeof *a, msg);
2307 VLOG_WARN_RL(&bad_ofmsg_rl, "bad action format at offset %zu",
2308 (n_actions - left) * sizeof *a);
2309 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
2314 struct ofputil_action {
2316 unsigned int min_len;
2317 unsigned int max_len;
2320 static const struct ofputil_action action_bad_type
2321 = { -OFP_MKERR(OFPET_BAD_ACTION, OFPBAC_BAD_TYPE), 0, UINT_MAX };
2322 static const struct ofputil_action action_bad_len
2323 = { -OFP_MKERR(OFPET_BAD_ACTION, OFPBAC_BAD_LEN), 0, UINT_MAX };
2324 static const struct ofputil_action action_bad_vendor
2325 = { -OFP_MKERR(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR), 0, UINT_MAX };
2327 static const struct ofputil_action *
2328 ofputil_decode_ofpat_action(const union ofp_action *a)
2330 enum ofp_action_type type = ntohs(a->type);
2333 #define OFPAT_ACTION(ENUM, STRUCT, NAME) \
2335 static const struct ofputil_action action = { \
2337 sizeof(struct STRUCT), \
2338 sizeof(struct STRUCT) \
2342 #include "ofp-util.def"
2346 return &action_bad_type;
2350 static const struct ofputil_action *
2351 ofputil_decode_nxast_action(const union ofp_action *a)
2353 const struct nx_action_header *nah = (const struct nx_action_header *) a;
2354 enum nx_action_subtype subtype = ntohs(nah->subtype);
2357 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
2359 static const struct ofputil_action action = { \
2361 sizeof(struct STRUCT), \
2362 EXTENSIBLE ? UINT_MAX : sizeof(struct STRUCT) \
2366 #include "ofp-util.def"
2368 case NXAST_SNAT__OBSOLETE:
2369 case NXAST_DROP_SPOOFED_ARP__OBSOLETE:
2371 return &action_bad_type;
2375 /* Parses 'a' to determine its type. Returns a nonnegative OFPUTIL_OFPAT_* or
2376 * OFPUTIL_NXAST_* constant if successful, otherwise a negative OpenFlow error
2377 * code (as returned by ofp_mkerr()).
2379 * The caller must have already verified that 'a''s length is correct (that is,
2380 * a->header.len is nonzero and a multiple of sizeof(union ofp_action) and no
2381 * longer than the amount of space allocated to 'a').
2383 * This function verifies that 'a''s length is correct for the type of action
2384 * that it represents. */
2386 ofputil_decode_action(const union ofp_action *a)
2388 const struct ofputil_action *action;
2389 uint16_t len = ntohs(a->header.len);
2391 if (a->type != htons(OFPAT_VENDOR)) {
2392 action = ofputil_decode_ofpat_action(a);
2394 switch (ntohl(a->vendor.vendor)) {
2396 if (len < sizeof(struct nx_action_header)) {
2397 return -ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
2399 action = ofputil_decode_nxast_action(a);
2402 action = &action_bad_vendor;
2407 return (len >= action->min_len && len <= action->max_len
2409 : -ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN));
2412 /* Parses 'a' and returns its type as an OFPUTIL_OFPAT_* or OFPUTIL_NXAST_*
2413 * constant. The caller must have already validated that 'a' is a valid action
2414 * understood by Open vSwitch (e.g. by a previous successful call to
2415 * ofputil_decode_action()). */
2416 enum ofputil_action_code
2417 ofputil_decode_action_unsafe(const union ofp_action *a)
2419 const struct ofputil_action *action;
2421 if (a->type != htons(OFPAT_VENDOR)) {
2422 action = ofputil_decode_ofpat_action(a);
2424 action = ofputil_decode_nxast_action(a);
2427 return action->code;
2430 /* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
2431 * 'name' is "output" then the return value is OFPUTIL_OFPAT_OUTPUT), or -1 if
2432 * 'name' is not the name of any action.
2434 * ofp-util.def lists the mapping from names to action. */
2436 ofputil_action_code_from_name(const char *name)
2438 static const char *names[OFPUTIL_N_ACTIONS] = {
2439 #define OFPAT_ACTION(ENUM, STRUCT, NAME) NAME,
2440 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
2441 #include "ofp-util.def"
2446 for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
2447 if (*p && !strcasecmp(name, *p)) {
2454 /* Appends an action of the type specified by 'code' to 'buf' and returns the
2455 * action. Initializes the parts of 'action' that identify it as having type
2456 * <ENUM> and length 'sizeof *action' and zeros the rest. For actions that
2457 * have variable length, the length used and cleared is that of struct
2460 ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
2463 #define OFPAT_ACTION(ENUM, STRUCT, NAME) \
2464 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
2465 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
2466 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
2467 #include "ofp-util.def"
2472 #define OFPAT_ACTION(ENUM, STRUCT, NAME) \
2474 ofputil_init_##ENUM(struct STRUCT *s) \
2476 memset(s, 0, sizeof *s); \
2477 s->type = htons(ENUM); \
2478 s->len = htons(sizeof *s); \
2482 ofputil_put_##ENUM(struct ofpbuf *buf) \
2484 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
2485 ofputil_init_##ENUM(s); \
2488 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
2490 ofputil_init_##ENUM(struct STRUCT *s) \
2492 memset(s, 0, sizeof *s); \
2493 s->type = htons(OFPAT_VENDOR); \
2494 s->len = htons(sizeof *s); \
2495 s->vendor = htonl(NX_VENDOR_ID); \
2496 s->subtype = htons(ENUM); \
2500 ofputil_put_##ENUM(struct ofpbuf *buf) \
2502 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
2503 ofputil_init_##ENUM(s); \
2506 #include "ofp-util.def"
2508 /* Returns true if 'action' outputs to 'port', false otherwise. */
2510 action_outputs_to_port(const union ofp_action *action, ovs_be16 port)
2512 switch (ntohs(action->type)) {
2514 return action->output.port == port;
2516 return ((const struct ofp_action_enqueue *) action)->port == port;
2522 /* "Normalizes" the wildcards in 'rule'. That means:
2524 * 1. If the type of level N is known, then only the valid fields for that
2525 * level may be specified. For example, ARP does not have a TOS field,
2526 * so nw_tos must be wildcarded if 'rule' specifies an ARP flow.
2527 * Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
2528 * ipv6_dst (and other fields) must be wildcarded if 'rule' specifies an
2531 * 2. If the type of level N is not known (or not understood by Open
2532 * vSwitch), then no fields at all for that level may be specified. For
2533 * example, Open vSwitch does not understand SCTP, an L4 protocol, so the
2534 * L4 fields tp_src and tp_dst must be wildcarded if 'rule' specifies an
2537 * 'flow_format' specifies the format of the flow as received or as intended to
2538 * be sent. This is important for IPv6 and ARP, for which NXM supports more
2539 * detailed matching. */
2541 ofputil_normalize_rule(struct cls_rule *rule, enum nx_flow_format flow_format)
2544 MAY_NW_ADDR = 1 << 0, /* nw_src, nw_dst */
2545 MAY_TP_ADDR = 1 << 1, /* tp_src, tp_dst */
2546 MAY_NW_PROTO = 1 << 2, /* nw_proto */
2547 MAY_IPVx = 1 << 3, /* tos, frag, ttl */
2548 MAY_ARP_SHA = 1 << 4, /* arp_sha */
2549 MAY_ARP_THA = 1 << 5, /* arp_tha */
2550 MAY_IPV6 = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
2551 MAY_ND_TARGET = 1 << 7 /* nd_target */
2554 struct flow_wildcards wc;
2556 /* Figure out what fields may be matched. */
2557 if (rule->flow.dl_type == htons(ETH_TYPE_IP)) {
2558 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
2559 if (rule->flow.nw_proto == IPPROTO_TCP ||
2560 rule->flow.nw_proto == IPPROTO_UDP ||
2561 rule->flow.nw_proto == IPPROTO_ICMP) {
2562 may_match |= MAY_TP_ADDR;
2564 } else if (rule->flow.dl_type == htons(ETH_TYPE_IPV6)
2565 && flow_format == NXFF_NXM) {
2566 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
2567 if (rule->flow.nw_proto == IPPROTO_TCP ||
2568 rule->flow.nw_proto == IPPROTO_UDP) {
2569 may_match |= MAY_TP_ADDR;
2570 } else if (rule->flow.nw_proto == IPPROTO_ICMPV6) {
2571 may_match |= MAY_TP_ADDR;
2572 if (rule->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
2573 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
2574 } else if (rule->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
2575 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
2578 } else if (rule->flow.dl_type == htons(ETH_TYPE_ARP)) {
2579 may_match = MAY_NW_PROTO | MAY_NW_ADDR;
2580 if (flow_format == NXFF_NXM) {
2581 may_match |= MAY_ARP_SHA | MAY_ARP_THA;
2587 /* Clear the fields that may not be matched. */
2589 if (!(may_match & MAY_NW_ADDR)) {
2590 wc.nw_src_mask = wc.nw_dst_mask = htonl(0);
2592 if (!(may_match & MAY_TP_ADDR)) {
2593 wc.wildcards |= FWW_TP_SRC | FWW_TP_DST;
2595 if (!(may_match & MAY_NW_PROTO)) {
2596 wc.wildcards |= FWW_NW_PROTO;
2598 if (!(may_match & MAY_IPVx)) {
2599 wc.wildcards |= FWW_NW_DSCP;
2600 wc.wildcards |= FWW_NW_ECN;
2601 wc.wildcards |= FWW_NW_TTL;
2603 if (!(may_match & MAY_ARP_SHA)) {
2604 wc.wildcards |= FWW_ARP_SHA;
2606 if (!(may_match & MAY_ARP_THA)) {
2607 wc.wildcards |= FWW_ARP_THA;
2609 if (!(may_match & MAY_IPV6)) {
2610 wc.ipv6_src_mask = wc.ipv6_dst_mask = in6addr_any;
2611 wc.wildcards |= FWW_IPV6_LABEL;
2613 if (!(may_match & MAY_ND_TARGET)) {
2614 wc.wildcards |= FWW_ND_TARGET;
2617 /* Log any changes. */
2618 if (!flow_wildcards_equal(&wc, &rule->wc)) {
2619 bool log = !VLOG_DROP_INFO(&bad_ofmsg_rl);
2620 char *pre = log ? cls_rule_to_string(rule) : NULL;
2623 cls_rule_zero_wildcarded_fields(rule);
2626 char *post = cls_rule_to_string(rule);
2627 VLOG_INFO("normalization changed ofp_match, details:");
2628 VLOG_INFO(" pre: %s", pre);
2629 VLOG_INFO("post: %s", post);
2637 vendor_code_to_id(uint8_t code)
2640 #define OFPUTIL_VENDOR(NAME, VENDOR_ID) case NAME: return VENDOR_ID;
2642 #undef OFPUTIL_VENDOR
2649 vendor_id_to_code(uint32_t id)
2652 #define OFPUTIL_VENDOR(NAME, VENDOR_ID) case VENDOR_ID: return NAME;
2654 #undef OFPUTIL_VENDOR
2660 /* Creates and returns an OpenFlow message of type OFPT_ERROR with the error
2661 * information taken from 'error', whose encoding must be as described in the
2662 * large comment in ofp-util.h. If 'oh' is nonnull, then the error will use
2663 * oh->xid as its transaction ID, and it will include up to the first 64 bytes
2666 * Returns NULL if 'error' is not an OpenFlow error code. */
2668 ofputil_encode_error_msg(int error, const struct ofp_header *oh)
2670 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2680 if (!is_ofp_error(error)) {
2681 /* We format 'error' with strerror() here since it seems likely to be
2682 * a system errno value. */
2683 VLOG_WARN_RL(&rl, "invalid OpenFlow error code %d (%s)",
2684 error, strerror(error));
2691 len = ntohs(oh->length);
2701 vendor = get_ofp_err_vendor(error);
2702 type = get_ofp_err_type(error);
2703 code = get_ofp_err_code(error);
2704 if (vendor == OFPUTIL_VENDOR_OPENFLOW) {
2705 struct ofp_error_msg *oem;
2707 oem = make_openflow_xid(len + sizeof *oem, OFPT_ERROR, xid, &buf);
2708 oem->type = htons(type);
2709 oem->code = htons(code);
2711 struct ofp_error_msg *oem;
2712 struct nx_vendor_error *nve;
2715 vendor_id = vendor_code_to_id(vendor);
2716 if (vendor_id == UINT32_MAX) {
2717 VLOG_WARN_RL(&rl, "error %x contains invalid vendor code %d",
2722 oem = make_openflow_xid(len + sizeof *oem + sizeof *nve,
2723 OFPT_ERROR, xid, &buf);
2724 oem->type = htons(NXET_VENDOR);
2725 oem->code = htons(NXVC_VENDOR_ERROR);
2727 nve = (struct nx_vendor_error *)oem->data;
2728 nve->vendor = htonl(vendor_id);
2729 nve->type = htons(type);
2730 nve->code = htons(code);
2735 ofpbuf_put(buf, data, len);
2741 /* Decodes 'oh', which should be an OpenFlow OFPT_ERROR message, and returns an
2742 * Open vSwitch internal error code in the format described in the large
2743 * comment in ofp-util.h.
2745 * If 'payload_ofs' is nonnull, on success '*payload_ofs' is set to the offset
2746 * to the payload starting from 'oh' and on failure it is set to 0. */
2748 ofputil_decode_error_msg(const struct ofp_header *oh, size_t *payload_ofs)
2750 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2752 const struct ofp_error_msg *oem;
2753 uint16_t type, code;
2760 if (oh->type != OFPT_ERROR) {
2764 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2765 oem = ofpbuf_try_pull(&b, sizeof *oem);
2770 type = ntohs(oem->type);
2771 code = ntohs(oem->code);
2772 if (type == NXET_VENDOR && code == NXVC_VENDOR_ERROR) {
2773 const struct nx_vendor_error *nve = ofpbuf_try_pull(&b, sizeof *nve);
2778 vendor = vendor_id_to_code(ntohl(nve->vendor));
2780 VLOG_WARN_RL(&rl, "error contains unknown vendor ID %#"PRIx32,
2781 ntohl(nve->vendor));
2784 type = ntohs(nve->type);
2785 code = ntohs(nve->code);
2787 vendor = OFPUTIL_VENDOR_OPENFLOW;
2791 VLOG_WARN_RL(&rl, "error contains type %"PRIu16" greater than "
2792 "supported maximum value 1023", type);
2797 *payload_ofs = (uint8_t *) b.data - (uint8_t *) oh;
2799 return ofp_mkerr_vendor(vendor, type, code);
2803 ofputil_format_error(struct ds *s, int error)
2805 if (is_errno(error)) {
2806 ds_put_cstr(s, strerror(error));
2808 uint16_t type = get_ofp_err_type(error);
2809 uint16_t code = get_ofp_err_code(error);
2810 const char *type_s = ofp_error_type_to_string(type);
2811 const char *code_s = ofp_error_code_to_string(type, code);
2813 ds_put_format(s, "type ");
2815 ds_put_cstr(s, type_s);
2817 ds_put_format(s, "%"PRIu16, type);
2820 ds_put_cstr(s, ", code ");
2822 ds_put_cstr(s, code_s);
2824 ds_put_format(s, "%"PRIu16, code);
2830 ofputil_error_to_string(int error)
2832 struct ds s = DS_EMPTY_INITIALIZER;
2833 ofputil_format_error(&s, error);
2834 return ds_steal_cstr(&s);
2837 /* Attempts to pull 'actions_len' bytes from the front of 'b'. Returns 0 if
2838 * successful, otherwise an OpenFlow error.
2840 * If successful, the first action is stored in '*actionsp' and the number of
2841 * "union ofp_action" size elements into '*n_actionsp'. Otherwise NULL and 0
2842 * are stored, respectively.
2844 * This function does not check that the actions are valid (the caller should
2845 * do so, with validate_actions()). The caller is also responsible for making
2846 * sure that 'b->data' is initially aligned appropriately for "union
2849 ofputil_pull_actions(struct ofpbuf *b, unsigned int actions_len,
2850 union ofp_action **actionsp, size_t *n_actionsp)
2852 if (actions_len % OFP_ACTION_ALIGN != 0) {
2853 VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message actions length %u "
2854 "is not a multiple of %d", actions_len, OFP_ACTION_ALIGN);
2858 *actionsp = ofpbuf_try_pull(b, actions_len);
2859 if (*actionsp == NULL) {
2860 VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message actions length %u "
2861 "exceeds remaining message length (%zu)",
2862 actions_len, b->size);
2866 *n_actionsp = actions_len / OFP_ACTION_ALIGN;
2872 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
2876 ofputil_actions_equal(const union ofp_action *a, size_t n_a,
2877 const union ofp_action *b, size_t n_b)
2879 return n_a == n_b && (!n_a || !memcmp(a, b, n_a * sizeof *a));
2883 ofputil_actions_clone(const union ofp_action *actions, size_t n)
2885 return n ? xmemdup(actions, n * sizeof *actions) : NULL;
2888 /* Parses a key or a key-value pair from '*stringp'.
2890 * On success: Stores the key into '*keyp'. Stores the value, if present, into
2891 * '*valuep', otherwise an empty string. Advances '*stringp' past the end of
2892 * the key-value pair, preparing it for another call. '*keyp' and '*valuep'
2893 * are substrings of '*stringp' created by replacing some of its bytes by null
2894 * terminators. Returns true.
2896 * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
2897 * NULL and returns false. */
2899 ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
2901 char *pos, *key, *value;
2905 pos += strspn(pos, ", \t\r\n");
2907 *keyp = *valuep = NULL;
2912 key_len = strcspn(pos, ":=(, \t\r\n");
2913 if (key[key_len] == ':' || key[key_len] == '=') {
2914 /* The value can be separated by a colon. */
2917 value = key + key_len + 1;
2918 value_len = strcspn(value, ", \t\r\n");
2919 pos = value + value_len + (value[value_len] != '\0');
2920 value[value_len] = '\0';
2921 } else if (key[key_len] == '(') {
2922 /* The value can be surrounded by balanced parentheses. The outermost
2923 * set of parentheses is removed. */
2927 value = key + key_len + 1;
2928 for (value_len = 0; level > 0; value_len++) {
2929 switch (value[value_len]) {
2931 ovs_fatal(0, "unbalanced parentheses in argument to %s", key);
2942 value[value_len - 1] = '\0';
2943 pos = value + value_len;
2945 /* There might be no value at all. */
2946 value = key + key_len; /* Will become the empty string below. */
2947 pos = key + key_len + (key[key_len] != '\0');
2949 key[key_len] = '\0';