2 * Copyright (c) 2008, 2009, 2010 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 "byte-order.h"
22 #include "classifier.h"
30 VLOG_DEFINE_THIS_MODULE(ofp_util);
32 /* Rate limit for OpenFlow message parse errors. These always indicate a bug
33 * in the peer and so there's not much point in showing a lot of them. */
34 static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
36 /* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
37 * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
40 * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
41 * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
42 * ..., 32 and higher wildcard the entire field. This is the *opposite* of the
43 * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
46 ofputil_wcbits_to_netmask(int wcbits)
49 return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
52 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
53 * that it wildcards. 'netmask' must be a CIDR netmask (see ip_is_cidr()). */
55 ofputil_netmask_to_wcbits(ovs_be32 netmask)
57 assert(ip_is_cidr(netmask));
59 return netmask == htonl(0) ? 32 : __builtin_ctz(ntohl(netmask));
63 for (wcbits = 32; netmask; wcbits--) {
64 netmask &= netmask - 1;
71 /* A list of the FWW_* and OFPFW_ bits that have the same value, meaning, and
73 #define WC_INVARIANT_LIST \
74 WC_INVARIANT_BIT(IN_PORT) \
75 WC_INVARIANT_BIT(DL_SRC) \
76 WC_INVARIANT_BIT(DL_DST) \
77 WC_INVARIANT_BIT(DL_TYPE) \
78 WC_INVARIANT_BIT(NW_PROTO) \
79 WC_INVARIANT_BIT(TP_SRC) \
80 WC_INVARIANT_BIT(TP_DST)
82 /* Verify that all of the invariant bits (as defined on WC_INVARIANT_LIST)
83 * actually have the same names and values. */
84 #define WC_INVARIANT_BIT(NAME) BUILD_ASSERT_DECL(FWW_##NAME == OFPFW_##NAME);
86 #undef WC_INVARIANT_BIT
88 /* WC_INVARIANTS is the invariant bits (as defined on WC_INVARIANT_LIST) all
92 #define WC_INVARIANT_BIT(NAME) | FWW_##NAME
94 #undef WC_INVARIANT_BIT
97 /* Converts the ofp_match in 'match' into a cls_rule in 'rule', with the given
100 * 'flow_format' must either NXFF_OPENFLOW10 or NXFF_TUN_ID_FROM_COOKIE. In
101 * the latter case only, 'flow''s tun_id field will be taken from the high bits
102 * of 'cookie', if 'match''s wildcards do not indicate that tun_id is
105 ofputil_cls_rule_from_match(const struct ofp_match *match,
106 unsigned int priority,
107 enum nx_flow_format flow_format,
108 uint64_t cookie, struct cls_rule *rule)
110 struct flow_wildcards *wc = &rule->wc;
114 /* Initialize rule->priority. */
115 ofpfw = ntohl(match->wildcards);
116 ofpfw &= flow_format == NXFF_TUN_ID_FROM_COOKIE ? OVSFW_ALL : OFPFW_ALL;
117 rule->priority = !ofpfw ? UINT16_MAX : priority;
119 /* Initialize most of rule->wc. */
120 wc->wildcards = ofpfw & WC_INVARIANTS;
121 if (ofpfw & OFPFW_NW_TOS) {
122 wc->wildcards |= FWW_NW_TOS;
124 memset(wc->reg_masks, 0, sizeof wc->reg_masks);
125 wc->nw_src_mask = ofputil_wcbits_to_netmask(ofpfw >> OFPFW_NW_SRC_SHIFT);
126 wc->nw_dst_mask = ofputil_wcbits_to_netmask(ofpfw >> OFPFW_NW_DST_SHIFT);
128 if (flow_format == NXFF_TUN_ID_FROM_COOKIE && !(ofpfw & NXFW_TUN_ID)) {
129 rule->flow.tun_id = htonl(ntohll(cookie) >> 32);
131 wc->wildcards |= FWW_TUN_ID;
132 rule->flow.tun_id = 0;
135 if (ofpfw & OFPFW_DL_DST) {
136 /* OpenFlow 1.0 OFPFW_DL_DST covers the whole Ethernet destination, but
137 * Open vSwitch breaks the Ethernet destination into bits as FWW_DL_DST
138 * and FWW_ETH_MCAST. */
139 wc->wildcards |= FWW_ETH_MCAST;
142 /* Initialize most of rule->flow. */
143 rule->flow.nw_src = match->nw_src;
144 rule->flow.nw_dst = match->nw_dst;
145 rule->flow.in_port = (match->in_port == htons(OFPP_LOCAL) ? ODPP_LOCAL
146 : ntohs(match->in_port));
147 rule->flow.dl_type = match->dl_type;
148 rule->flow.tp_src = match->tp_src;
149 rule->flow.tp_dst = match->tp_dst;
150 memcpy(rule->flow.dl_src, match->dl_src, ETH_ADDR_LEN);
151 memcpy(rule->flow.dl_dst, match->dl_dst, ETH_ADDR_LEN);
152 rule->flow.nw_tos = match->nw_tos;
153 rule->flow.nw_proto = match->nw_proto;
155 /* Translate VLANs. */
156 vid = match->dl_vlan & htons(VLAN_VID_MASK);
157 pcp = htons((match->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
158 switch (ofpfw & (OFPFW_DL_VLAN | OFPFW_DL_VLAN_PCP)) {
159 case OFPFW_DL_VLAN | OFPFW_DL_VLAN_PCP:
160 /* Wildcard everything. */
161 rule->flow.vlan_tci = htons(0);
162 rule->wc.vlan_tci_mask = htons(0);
165 case OFPFW_DL_VLAN_PCP:
166 if (match->dl_vlan == htons(OFP_VLAN_NONE)) {
167 /* Match only packets without 802.1Q header. */
168 rule->flow.vlan_tci = htons(0);
169 rule->wc.vlan_tci_mask = htons(0xffff);
171 /* Wildcard PCP, specific VID. */
172 rule->flow.vlan_tci = vid | htons(VLAN_CFI);
173 rule->wc.vlan_tci_mask = htons(VLAN_VID_MASK | VLAN_CFI);
178 /* Wildcard VID, specific PCP. */
179 rule->flow.vlan_tci = pcp | htons(VLAN_CFI);
180 rule->wc.vlan_tci_mask = htons(VLAN_PCP_MASK | VLAN_CFI);
184 if (match->dl_vlan == htons(OFP_VLAN_NONE)) {
185 /* This case is odd, since we can't have a specific PCP without an
186 * 802.1Q header. However, older versions of OVS treated this as
187 * matching packets withut an 802.1Q header, so we do here too. */
188 rule->flow.vlan_tci = htons(0);
189 rule->wc.vlan_tci_mask = htons(0xffff);
191 /* Specific VID and PCP. */
192 rule->flow.vlan_tci = vid | pcp | htons(VLAN_CFI);
193 rule->wc.vlan_tci_mask = htons(0xffff);
199 cls_rule_zero_wildcarded_fields(rule);
202 /* Extract 'flow' with 'wildcards' into the OpenFlow match structure
205 * 'flow_format' must either NXFF_OPENFLOW10 or NXFF_TUN_ID_FROM_COOKIE. In
206 * the latter case only, 'match''s NXFW_TUN_ID bit will be filled in; otherwise
207 * it is always set to 0. */
209 ofputil_cls_rule_to_match(const struct cls_rule *rule,
210 enum nx_flow_format flow_format,
211 struct ofp_match *match)
213 const struct flow_wildcards *wc = &rule->wc;
216 /* Figure out most OpenFlow wildcards. */
217 ofpfw = wc->wildcards & WC_INVARIANTS;
218 ofpfw |= ofputil_netmask_to_wcbits(wc->nw_src_mask) << OFPFW_NW_SRC_SHIFT;
219 ofpfw |= ofputil_netmask_to_wcbits(wc->nw_dst_mask) << OFPFW_NW_DST_SHIFT;
220 if (wc->wildcards & FWW_NW_TOS) {
221 ofpfw |= OFPFW_NW_TOS;
223 if (flow_format == NXFF_TUN_ID_FROM_COOKIE && wc->wildcards & FWW_TUN_ID) {
224 ofpfw |= NXFW_TUN_ID;
227 /* Translate VLANs. */
228 match->dl_vlan = htons(0);
229 match->dl_vlan_pcp = 0;
230 if (rule->wc.vlan_tci_mask == htons(0)) {
231 ofpfw |= OFPFW_DL_VLAN | OFPFW_DL_VLAN_PCP;
232 } else if (rule->wc.vlan_tci_mask & htons(VLAN_CFI)
233 && !(rule->flow.vlan_tci & htons(VLAN_CFI))) {
234 match->dl_vlan = htons(OFP_VLAN_NONE);
236 if (!(rule->wc.vlan_tci_mask & htons(VLAN_VID_MASK))) {
237 ofpfw |= OFPFW_DL_VLAN;
239 match->dl_vlan = htons(vlan_tci_to_vid(rule->flow.vlan_tci));
242 if (!(rule->wc.vlan_tci_mask & htons(VLAN_PCP_MASK))) {
243 ofpfw |= OFPFW_DL_VLAN_PCP;
245 match->dl_vlan_pcp = vlan_tci_to_pcp(rule->flow.vlan_tci);
249 /* Compose most of the match structure. */
250 match->wildcards = htonl(ofpfw);
251 match->in_port = htons(rule->flow.in_port == ODPP_LOCAL ? OFPP_LOCAL
252 : rule->flow.in_port);
253 memcpy(match->dl_src, rule->flow.dl_src, ETH_ADDR_LEN);
254 memcpy(match->dl_dst, rule->flow.dl_dst, ETH_ADDR_LEN);
255 match->dl_type = rule->flow.dl_type;
256 match->nw_src = rule->flow.nw_src;
257 match->nw_dst = rule->flow.nw_dst;
258 match->nw_tos = rule->flow.nw_tos;
259 match->nw_proto = rule->flow.nw_proto;
260 match->tp_src = rule->flow.tp_src;
261 match->tp_dst = rule->flow.tp_dst;
262 memset(match->pad1, '\0', sizeof match->pad1);
263 memset(match->pad2, '\0', sizeof match->pad2);
266 /* Returns a transaction ID to use for an outgoing OpenFlow message. */
270 static uint32_t next_xid = 1;
271 return htonl(next_xid++);
274 /* Basic parsing of OpenFlow messages. */
276 struct ofputil_msg_type {
277 enum ofputil_msg_code code; /* OFPUTIL_*. */
278 uint32_t value; /* OFPT_*, OFPST_*, NXT_*, or NXST_*. */
279 const char *name; /* e.g. "OFPT_FLOW_REMOVED". */
280 unsigned int min_size; /* Minimum total message size in bytes. */
281 /* 0 if 'min_size' is the exact size that the message must be. Otherwise,
282 * the message may exceed 'min_size' by an even multiple of this value. */
283 unsigned int extra_multiple;
286 struct ofputil_msg_category {
287 const char *name; /* e.g. "OpenFlow message" */
288 const struct ofputil_msg_type *types;
290 int missing_error; /* ofp_mkerr() value for missing type. */
294 ofputil_length_ok(const struct ofputil_msg_category *cat,
295 const struct ofputil_msg_type *type,
298 switch (type->extra_multiple) {
300 if (size != type->min_size) {
301 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s %s with incorrect "
302 "length %u (expected length %u)",
303 cat->name, type->name, size, type->min_size);
309 if (size < type->min_size) {
310 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s %s with incorrect "
311 "length %u (expected length at least %u bytes)",
312 cat->name, type->name, size, type->min_size);
318 if (size < type->min_size
319 || (size - type->min_size) % type->extra_multiple) {
320 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s %s with incorrect "
321 "length %u (must be exactly %u bytes or longer "
322 "by an integer multiple of %u bytes)",
323 cat->name, type->name, size,
324 type->min_size, type->extra_multiple);
332 ofputil_lookup_openflow_message(const struct ofputil_msg_category *cat,
333 uint32_t value, unsigned int size,
334 const struct ofputil_msg_type **typep)
336 const struct ofputil_msg_type *type;
338 for (type = cat->types; type < &cat->types[cat->n_types]; type++) {
339 if (type->value == value) {
340 if (!ofputil_length_ok(cat, type, size)) {
341 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
348 VLOG_WARN_RL(&bad_ofmsg_rl, "received %s of unknown type %u",
350 return cat->missing_error;
354 ofputil_decode_vendor(const struct ofp_header *oh,
355 const struct ofputil_msg_type **typep)
357 static const struct ofputil_msg_type nxt_messages[] = {
358 { OFPUTIL_NXT_STATUS_REQUEST,
359 NXT_STATUS_REQUEST, "NXT_STATUS_REQUEST",
360 sizeof(struct nicira_header), 1 },
362 { OFPUTIL_NXT_STATUS_REPLY,
363 NXT_STATUS_REPLY, "NXT_STATUS_REPLY",
364 sizeof(struct nicira_header), 1 },
366 { OFPUTIL_NXT_TUN_ID_FROM_COOKIE,
367 NXT_TUN_ID_FROM_COOKIE, "NXT_TUN_ID_FROM_COOKIE",
368 sizeof(struct nxt_tun_id_cookie), 0 },
370 { OFPUTIL_NXT_ROLE_REQUEST,
371 NXT_ROLE_REQUEST, "NXT_ROLE_REQUEST",
372 sizeof(struct nx_role_request), 0 },
374 { OFPUTIL_NXT_ROLE_REPLY,
375 NXT_ROLE_REPLY, "NXT_ROLE_REPLY",
376 sizeof(struct nx_role_request), 0 },
378 { OFPUTIL_NXT_SET_FLOW_FORMAT,
379 NXT_SET_FLOW_FORMAT, "NXT_SET_FLOW_FORMAT",
380 sizeof(struct nxt_set_flow_format), 0 },
382 { OFPUTIL_NXT_FLOW_MOD,
383 NXT_FLOW_MOD, "NXT_FLOW_MOD",
384 sizeof(struct nx_flow_mod), 8 },
386 { OFPUTIL_NXT_FLOW_REMOVED,
387 NXT_FLOW_REMOVED, "NXT_FLOW_REMOVED",
388 sizeof(struct nx_flow_removed), 8 },
391 static const struct ofputil_msg_category nxt_category = {
392 "Nicira extension message",
393 nxt_messages, ARRAY_SIZE(nxt_messages),
394 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
397 const struct ofp_vendor_header *ovh;
398 const struct nicira_header *nh;
400 ovh = (const struct ofp_vendor_header *) oh;
401 if (ovh->vendor != htonl(NX_VENDOR_ID)) {
402 VLOG_WARN_RL(&bad_ofmsg_rl, "received vendor message for unknown "
403 "vendor %"PRIx32, ntohl(ovh->vendor));
404 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
407 if (ntohs(ovh->header.length) < sizeof(struct nicira_header)) {
408 VLOG_WARN_RL(&bad_ofmsg_rl, "received Nicira vendor message of "
409 "length %u (expected at least %zu)",
410 ntohs(ovh->header.length), sizeof(struct nicira_header));
411 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
414 nh = (const struct nicira_header *) oh;
415 return ofputil_lookup_openflow_message(&nxt_category, ntohl(nh->subtype),
416 ntohs(oh->length), typep);
420 check_nxstats_msg(const struct ofp_header *oh)
422 const struct ofp_stats_request *osr;
425 osr = (const struct ofp_stats_request *) oh;
427 memcpy(&vendor, osr->body, sizeof vendor);
428 if (vendor != htonl(NX_VENDOR_ID)) {
429 VLOG_WARN_RL(&bad_ofmsg_rl, "received vendor stats message for "
430 "unknown vendor %"PRIx32, ntohl(vendor));
431 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
434 if (ntohs(osr->header.length) < sizeof(struct nicira_stats_msg)) {
435 VLOG_WARN_RL(&bad_ofmsg_rl, "truncated Nicira stats message");
436 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
443 ofputil_decode_nxst_request(const struct ofp_header *oh,
444 const struct ofputil_msg_type **typep)
446 static const struct ofputil_msg_type nxst_requests[] = {
447 { OFPUTIL_NXST_FLOW_REQUEST,
448 NXST_FLOW, "NXST_FLOW request",
449 sizeof(struct nx_flow_stats_request), 8 },
451 { OFPUTIL_NXST_AGGREGATE_REQUEST,
452 NXST_AGGREGATE, "NXST_AGGREGATE request",
453 sizeof(struct nx_aggregate_stats_request), 8 },
456 static const struct ofputil_msg_category nxst_request_category = {
457 "Nicira extension statistics",
458 nxst_requests, ARRAY_SIZE(nxst_requests),
459 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
462 const struct nicira_stats_msg *nsm;
465 error = check_nxstats_msg(oh);
470 nsm = (struct nicira_stats_msg *) oh;
471 return ofputil_lookup_openflow_message(&nxst_request_category,
473 ntohs(oh->length), typep);
477 ofputil_decode_nxst_reply(const struct ofp_header *oh,
478 const struct ofputil_msg_type **typep)
480 static const struct ofputil_msg_type nxst_replies[] = {
481 { OFPUTIL_NXST_FLOW_REPLY,
482 NXST_FLOW, "NXST_FLOW reply",
483 sizeof(struct nicira_stats_msg), 8 },
485 { OFPUTIL_NXST_AGGREGATE_REPLY,
486 NXST_AGGREGATE, "NXST_AGGREGATE reply",
487 sizeof(struct nx_aggregate_stats_reply), 0 },
490 static const struct ofputil_msg_category nxst_reply_category = {
491 "Nicira extension statistics",
492 nxst_replies, ARRAY_SIZE(nxst_replies),
493 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
496 const struct nicira_stats_msg *nsm;
499 error = check_nxstats_msg(oh);
504 nsm = (struct nicira_stats_msg *) oh;
505 return ofputil_lookup_openflow_message(&nxst_reply_category,
507 ntohs(oh->length), typep);
511 ofputil_decode_ofpst_request(const struct ofp_header *oh,
512 const struct ofputil_msg_type **typep)
514 enum { OSR_SIZE = sizeof(struct ofp_stats_request) };
515 static const struct ofputil_msg_type ofpst_requests[] = {
516 { OFPUTIL_OFPST_DESC_REQUEST,
517 OFPST_DESC, "OFPST_DESC request",
520 { OFPUTIL_OFPST_FLOW_REQUEST,
521 OFPST_FLOW, "OFPST_FLOW request",
522 OSR_SIZE + sizeof(struct ofp_flow_stats_request), 0 },
524 { OFPUTIL_OFPST_AGGREGATE_REQUEST,
525 OFPST_AGGREGATE, "OFPST_AGGREGATE request",
526 OSR_SIZE + sizeof(struct ofp_aggregate_stats_request), 0 },
528 { OFPUTIL_OFPST_TABLE_REQUEST,
529 OFPST_TABLE, "OFPST_TABLE request",
532 { OFPUTIL_OFPST_PORT_REQUEST,
533 OFPST_PORT, "OFPST_PORT request",
534 OSR_SIZE + sizeof(struct ofp_port_stats_request), 0 },
536 { OFPUTIL_OFPST_QUEUE_REQUEST,
537 OFPST_QUEUE, "OFPST_QUEUE request",
538 OSR_SIZE + sizeof(struct ofp_queue_stats_request), 0 },
541 OFPST_VENDOR, "OFPST_VENDOR request",
542 OSR_SIZE + sizeof(uint32_t), 1 },
545 static const struct ofputil_msg_category ofpst_request_category = {
546 "OpenFlow statistics",
547 ofpst_requests, ARRAY_SIZE(ofpst_requests),
548 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT)
551 const struct ofp_stats_request *osr;
554 osr = (const struct ofp_stats_request *) oh;
555 error = ofputil_lookup_openflow_message(&ofpst_request_category,
557 ntohs(oh->length), typep);
558 if (!error && osr->type == htons(OFPST_VENDOR)) {
559 error = ofputil_decode_nxst_request(oh, typep);
565 ofputil_decode_ofpst_reply(const struct ofp_header *oh,
566 const struct ofputil_msg_type **typep)
568 enum { OSR_SIZE = sizeof(struct ofp_stats_reply) };
569 static const struct ofputil_msg_type ofpst_replies[] = {
570 { OFPUTIL_OFPST_DESC_REPLY,
571 OFPST_DESC, "OFPST_DESC reply",
572 OSR_SIZE + sizeof(struct ofp_desc_stats), 0 },
574 { OFPUTIL_OFPST_FLOW_REPLY,
575 OFPST_FLOW, "OFPST_FLOW reply",
578 { OFPUTIL_OFPST_AGGREGATE_REPLY,
579 OFPST_AGGREGATE, "OFPST_AGGREGATE reply",
580 OSR_SIZE + sizeof(struct ofp_aggregate_stats_reply), 0 },
582 { OFPUTIL_OFPST_TABLE_REPLY,
583 OFPST_TABLE, "OFPST_TABLE reply",
584 OSR_SIZE, sizeof(struct ofp_table_stats) },
586 { OFPUTIL_OFPST_PORT_REPLY,
587 OFPST_PORT, "OFPST_PORT reply",
588 OSR_SIZE, sizeof(struct ofp_port_stats) },
590 { OFPUTIL_OFPST_QUEUE_REPLY,
591 OFPST_QUEUE, "OFPST_QUEUE reply",
592 OSR_SIZE, sizeof(struct ofp_queue_stats) },
595 OFPST_VENDOR, "OFPST_VENDOR reply",
596 OSR_SIZE + sizeof(uint32_t), 1 },
599 static const struct ofputil_msg_category ofpst_reply_category = {
600 "OpenFlow statistics",
601 ofpst_replies, ARRAY_SIZE(ofpst_replies),
602 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT)
605 const struct ofp_stats_reply *osr = (const struct ofp_stats_reply *) oh;
608 error = ofputil_lookup_openflow_message(&ofpst_reply_category,
610 ntohs(oh->length), typep);
611 if (!error && osr->type == htons(OFPST_VENDOR)) {
612 error = ofputil_decode_nxst_reply(oh, typep);
617 /* Decodes the message type represented by 'oh'. Returns 0 if successful or
618 * an OpenFlow error code constructed with ofp_mkerr() on failure. Either
619 * way, stores in '*typep' a type structure that can be inspected with the
620 * ofputil_msg_type_*() functions.
622 * oh->length must indicate the correct length of the message (and must be at
623 * least sizeof(struct ofp_header)).
625 * Success indicates that 'oh' is at least as long as the minimum-length
626 * message of its type. */
628 ofputil_decode_msg_type(const struct ofp_header *oh,
629 const struct ofputil_msg_type **typep)
631 static const struct ofputil_msg_type ofpt_messages[] = {
632 { OFPUTIL_OFPT_HELLO,
633 OFPT_HELLO, "OFPT_HELLO",
634 sizeof(struct ofp_hello), 1 },
636 { OFPUTIL_OFPT_ERROR,
637 OFPT_ERROR, "OFPT_ERROR",
638 sizeof(struct ofp_error_msg), 1 },
640 { OFPUTIL_OFPT_ECHO_REQUEST,
641 OFPT_ECHO_REQUEST, "OFPT_ECHO_REQUEST",
642 sizeof(struct ofp_header), 1 },
644 { OFPUTIL_OFPT_ECHO_REPLY,
645 OFPT_ECHO_REPLY, "OFPT_ECHO_REPLY",
646 sizeof(struct ofp_header), 1 },
648 { OFPUTIL_OFPT_FEATURES_REQUEST,
649 OFPT_FEATURES_REQUEST, "OFPT_FEATURES_REQUEST",
650 sizeof(struct ofp_header), 0 },
652 { OFPUTIL_OFPT_FEATURES_REPLY,
653 OFPT_FEATURES_REPLY, "OFPT_FEATURES_REPLY",
654 sizeof(struct ofp_switch_features), sizeof(struct ofp_phy_port) },
656 { OFPUTIL_OFPT_GET_CONFIG_REQUEST,
657 OFPT_GET_CONFIG_REQUEST, "OFPT_GET_CONFIG_REQUEST",
658 sizeof(struct ofp_header), 0 },
660 { OFPUTIL_OFPT_GET_CONFIG_REPLY,
661 OFPT_GET_CONFIG_REPLY, "OFPT_GET_CONFIG_REPLY",
662 sizeof(struct ofp_switch_config), 0 },
664 { OFPUTIL_OFPT_SET_CONFIG,
665 OFPT_SET_CONFIG, "OFPT_SET_CONFIG",
666 sizeof(struct ofp_switch_config), 0 },
668 { OFPUTIL_OFPT_PACKET_IN,
669 OFPT_PACKET_IN, "OFPT_PACKET_IN",
670 offsetof(struct ofp_packet_in, data), 1 },
672 { OFPUTIL_OFPT_FLOW_REMOVED,
673 OFPT_FLOW_REMOVED, "OFPT_FLOW_REMOVED",
674 sizeof(struct ofp_flow_removed), 0 },
676 { OFPUTIL_OFPT_PORT_STATUS,
677 OFPT_PORT_STATUS, "OFPT_PORT_STATUS",
678 sizeof(struct ofp_port_status), 0 },
680 { OFPUTIL_OFPT_PACKET_OUT,
681 OFPT_PACKET_OUT, "OFPT_PACKET_OUT",
682 sizeof(struct ofp_packet_out), 1 },
684 { OFPUTIL_OFPT_FLOW_MOD,
685 OFPT_FLOW_MOD, "OFPT_FLOW_MOD",
686 sizeof(struct ofp_flow_mod), 1 },
688 { OFPUTIL_OFPT_PORT_MOD,
689 OFPT_PORT_MOD, "OFPT_PORT_MOD",
690 sizeof(struct ofp_port_mod), 0 },
693 OFPT_STATS_REQUEST, "OFPT_STATS_REQUEST",
694 sizeof(struct ofp_stats_request), 1 },
697 OFPT_STATS_REPLY, "OFPT_STATS_REPLY",
698 sizeof(struct ofp_stats_reply), 1 },
700 { OFPUTIL_OFPT_BARRIER_REQUEST,
701 OFPT_BARRIER_REQUEST, "OFPT_BARRIER_REQUEST",
702 sizeof(struct ofp_header), 0 },
704 { OFPUTIL_OFPT_BARRIER_REPLY,
705 OFPT_BARRIER_REPLY, "OFPT_BARRIER_REPLY",
706 sizeof(struct ofp_header), 0 },
709 OFPT_VENDOR, "OFPT_VENDOR",
710 sizeof(struct ofp_vendor_header), 1 },
713 static const struct ofputil_msg_category ofpt_category = {
715 ofpt_messages, ARRAY_SIZE(ofpt_messages),
716 OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE)
721 error = ofputil_lookup_openflow_message(&ofpt_category, oh->type,
722 ntohs(oh->length), typep);
726 error = ofputil_decode_vendor(oh, typep);
729 case OFPT_STATS_REQUEST:
730 error = ofputil_decode_ofpst_request(oh, typep);
733 case OFPT_STATS_REPLY:
734 error = ofputil_decode_ofpst_reply(oh, typep);
741 static const struct ofputil_msg_type ofputil_invalid_type = {
743 0, "OFPUTIL_INVALID",
747 *typep = &ofputil_invalid_type;
752 /* Returns an OFPUTIL_* message type code for 'type'. */
753 enum ofputil_msg_code
754 ofputil_msg_type_code(const struct ofputil_msg_type *type)
759 /* Returns a string representing the message type of 'type'. The string is the
760 * enumeration constant for the type, e.g. "OFPT_HELLO". For statistics
761 * messages, the constant is followed by "request" or "reply",
762 * e.g. "OFPST_AGGREGATE reply". */
764 ofputil_msg_type_name(const struct ofputil_msg_type *type)
769 /* Allocates and stores in '*bufferp' a new ofpbuf with a size of
770 * 'openflow_len', starting with an OpenFlow header with the given 'type' and
771 * an arbitrary transaction id. Allocated bytes beyond the header, if any, are
774 * The caller is responsible for freeing '*bufferp' when it is no longer
777 * The OpenFlow header length is initially set to 'openflow_len'; if the
778 * message is later extended, the length should be updated with
779 * update_openflow_length() before sending.
781 * Returns the header. */
783 make_openflow(size_t openflow_len, uint8_t type, struct ofpbuf **bufferp)
785 *bufferp = ofpbuf_new(openflow_len);
786 return put_openflow_xid(openflow_len, type, alloc_xid(), *bufferp);
789 /* Similar to make_openflow() but creates a Nicira vendor extension message
790 * with the specific 'subtype'. 'subtype' should be in host byte order. */
792 make_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf **bufferp)
794 return make_nxmsg_xid(openflow_len, subtype, alloc_xid(), bufferp);
797 /* Allocates and stores in '*bufferp' a new ofpbuf with a size of
798 * 'openflow_len', starting with an OpenFlow header with the given 'type' and
799 * transaction id 'xid'. Allocated bytes beyond the header, if any, are
802 * The caller is responsible for freeing '*bufferp' when it is no longer
805 * The OpenFlow header length is initially set to 'openflow_len'; if the
806 * message is later extended, the length should be updated with
807 * update_openflow_length() before sending.
809 * Returns the header. */
811 make_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
812 struct ofpbuf **bufferp)
814 *bufferp = ofpbuf_new(openflow_len);
815 return put_openflow_xid(openflow_len, type, xid, *bufferp);
818 /* Similar to make_openflow_xid() but creates a Nicira vendor extension message
819 * with the specific 'subtype'. 'subtype' should be in host byte order. */
821 make_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
822 struct ofpbuf **bufferp)
824 struct nicira_header *nxh = make_openflow_xid(openflow_len, OFPT_VENDOR,
826 nxh->vendor = htonl(NX_VENDOR_ID);
827 nxh->subtype = htonl(subtype);
831 /* Appends 'openflow_len' bytes to 'buffer', starting with an OpenFlow header
832 * with the given 'type' and an arbitrary transaction id. Allocated bytes
833 * beyond the header, if any, are zeroed.
835 * The OpenFlow header length is initially set to 'openflow_len'; if the
836 * message is later extended, the length should be updated with
837 * update_openflow_length() before sending.
839 * Returns the header. */
841 put_openflow(size_t openflow_len, uint8_t type, struct ofpbuf *buffer)
843 return put_openflow_xid(openflow_len, type, alloc_xid(), buffer);
846 /* Appends 'openflow_len' bytes to 'buffer', starting with an OpenFlow header
847 * with the given 'type' and an transaction id 'xid'. Allocated bytes beyond
848 * the header, if any, are zeroed.
850 * The OpenFlow header length is initially set to 'openflow_len'; if the
851 * message is later extended, the length should be updated with
852 * update_openflow_length() before sending.
854 * Returns the header. */
856 put_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
857 struct ofpbuf *buffer)
859 struct ofp_header *oh;
861 assert(openflow_len >= sizeof *oh);
862 assert(openflow_len <= UINT16_MAX);
864 oh = ofpbuf_put_uninit(buffer, openflow_len);
865 oh->version = OFP_VERSION;
867 oh->length = htons(openflow_len);
869 memset(oh + 1, 0, openflow_len - sizeof *oh);
873 /* Updates the 'length' field of the OpenFlow message in 'buffer' to
876 update_openflow_length(struct ofpbuf *buffer)
878 struct ofp_header *oh = ofpbuf_at_assert(buffer, 0, sizeof *oh);
879 oh->length = htons(buffer->size);
882 /* Returns the first byte of the 'body' member of the ofp_stats_request or
883 * ofp_stats_reply in 'oh'. */
885 ofputil_stats_body(const struct ofp_header *oh)
887 assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
888 return ((const struct ofp_stats_request *) oh)->body;
891 /* Returns the length of the 'body' member of the ofp_stats_request or
892 * ofp_stats_reply in 'oh'. */
894 ofputil_stats_body_len(const struct ofp_header *oh)
896 assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
897 return ntohs(oh->length) - sizeof(struct ofp_stats_request);
901 make_flow_mod(uint16_t command, const struct cls_rule *rule,
904 struct ofp_flow_mod *ofm;
905 size_t size = sizeof *ofm + actions_len;
906 struct ofpbuf *out = ofpbuf_new(size);
907 ofm = ofpbuf_put_zeros(out, sizeof *ofm);
908 ofm->header.version = OFP_VERSION;
909 ofm->header.type = OFPT_FLOW_MOD;
910 ofm->header.length = htons(size);
912 ofm->priority = htons(MIN(rule->priority, UINT16_MAX));
913 ofputil_cls_rule_to_match(rule, NXFF_OPENFLOW10, &ofm->match);
914 ofm->command = htons(command);
919 make_add_flow(const struct cls_rule *rule, uint32_t buffer_id,
920 uint16_t idle_timeout, size_t actions_len)
922 struct ofpbuf *out = make_flow_mod(OFPFC_ADD, rule, actions_len);
923 struct ofp_flow_mod *ofm = out->data;
924 ofm->idle_timeout = htons(idle_timeout);
925 ofm->hard_timeout = htons(OFP_FLOW_PERMANENT);
926 ofm->buffer_id = htonl(buffer_id);
931 make_del_flow(const struct cls_rule *rule)
933 struct ofpbuf *out = make_flow_mod(OFPFC_DELETE_STRICT, rule, 0);
934 struct ofp_flow_mod *ofm = out->data;
935 ofm->out_port = htons(OFPP_NONE);
940 make_add_simple_flow(const struct cls_rule *rule,
941 uint32_t buffer_id, uint16_t out_port,
942 uint16_t idle_timeout)
944 if (out_port != OFPP_NONE) {
945 struct ofp_action_output *oao;
946 struct ofpbuf *buffer;
948 buffer = make_add_flow(rule, buffer_id, idle_timeout, sizeof *oao);
949 oao = ofpbuf_put_zeros(buffer, sizeof *oao);
950 oao->type = htons(OFPAT_OUTPUT);
951 oao->len = htons(sizeof *oao);
952 oao->port = htons(out_port);
955 return make_add_flow(rule, buffer_id, idle_timeout, 0);
960 make_packet_in(uint32_t buffer_id, uint16_t in_port, uint8_t reason,
961 const struct ofpbuf *payload, int max_send_len)
963 struct ofp_packet_in *opi;
967 send_len = MIN(max_send_len, payload->size);
968 buf = ofpbuf_new(sizeof *opi + send_len);
969 opi = put_openflow_xid(offsetof(struct ofp_packet_in, data),
970 OFPT_PACKET_IN, 0, buf);
971 opi->buffer_id = htonl(buffer_id);
972 opi->total_len = htons(payload->size);
973 opi->in_port = htons(in_port);
974 opi->reason = reason;
975 ofpbuf_put(buf, payload->data, send_len);
976 update_openflow_length(buf);
982 make_packet_out(const struct ofpbuf *packet, uint32_t buffer_id,
984 const struct ofp_action_header *actions, size_t n_actions)
986 size_t actions_len = n_actions * sizeof *actions;
987 struct ofp_packet_out *opo;
988 size_t size = sizeof *opo + actions_len + (packet ? packet->size : 0);
989 struct ofpbuf *out = ofpbuf_new(size);
991 opo = ofpbuf_put_uninit(out, sizeof *opo);
992 opo->header.version = OFP_VERSION;
993 opo->header.type = OFPT_PACKET_OUT;
994 opo->header.length = htons(size);
995 opo->header.xid = htonl(0);
996 opo->buffer_id = htonl(buffer_id);
997 opo->in_port = htons(in_port == ODPP_LOCAL ? OFPP_LOCAL : in_port);
998 opo->actions_len = htons(actions_len);
999 ofpbuf_put(out, actions, actions_len);
1001 ofpbuf_put(out, packet->data, packet->size);
1007 make_unbuffered_packet_out(const struct ofpbuf *packet,
1008 uint16_t in_port, uint16_t out_port)
1010 struct ofp_action_output action;
1011 action.type = htons(OFPAT_OUTPUT);
1012 action.len = htons(sizeof action);
1013 action.port = htons(out_port);
1014 return make_packet_out(packet, UINT32_MAX, in_port,
1015 (struct ofp_action_header *) &action, 1);
1019 make_buffered_packet_out(uint32_t buffer_id,
1020 uint16_t in_port, uint16_t out_port)
1022 if (out_port != OFPP_NONE) {
1023 struct ofp_action_output action;
1024 action.type = htons(OFPAT_OUTPUT);
1025 action.len = htons(sizeof action);
1026 action.port = htons(out_port);
1027 return make_packet_out(NULL, buffer_id, in_port,
1028 (struct ofp_action_header *) &action, 1);
1030 return make_packet_out(NULL, buffer_id, in_port, NULL, 0);
1034 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
1036 make_echo_request(void)
1038 struct ofp_header *rq;
1039 struct ofpbuf *out = ofpbuf_new(sizeof *rq);
1040 rq = ofpbuf_put_uninit(out, sizeof *rq);
1041 rq->version = OFP_VERSION;
1042 rq->type = OFPT_ECHO_REQUEST;
1043 rq->length = htons(sizeof *rq);
1048 /* Creates and returns an OFPT_ECHO_REPLY message matching the
1049 * OFPT_ECHO_REQUEST message in 'rq'. */
1051 make_echo_reply(const struct ofp_header *rq)
1053 size_t size = ntohs(rq->length);
1054 struct ofpbuf *out = ofpbuf_new(size);
1055 struct ofp_header *reply = ofpbuf_put(out, rq, size);
1056 reply->type = OFPT_ECHO_REPLY;
1060 const struct ofp_flow_stats *
1061 flow_stats_first(struct flow_stats_iterator *iter,
1062 const struct ofp_stats_reply *osr)
1064 iter->pos = osr->body;
1065 iter->end = osr->body + (ntohs(osr->header.length)
1066 - offsetof(struct ofp_stats_reply, body));
1067 return flow_stats_next(iter);
1070 const struct ofp_flow_stats *
1071 flow_stats_next(struct flow_stats_iterator *iter)
1073 ptrdiff_t bytes_left = iter->end - iter->pos;
1074 const struct ofp_flow_stats *fs;
1077 if (bytes_left < sizeof *fs) {
1078 if (bytes_left != 0) {
1079 VLOG_WARN_RL(&bad_ofmsg_rl,
1080 "%td leftover bytes in flow stats reply", bytes_left);
1085 fs = (const void *) iter->pos;
1086 length = ntohs(fs->length);
1087 if (length < sizeof *fs) {
1088 VLOG_WARN_RL(&bad_ofmsg_rl, "flow stats length %zu is shorter than "
1089 "min %zu", length, sizeof *fs);
1091 } else if (length > bytes_left) {
1092 VLOG_WARN_RL(&bad_ofmsg_rl, "flow stats length %zu but only %td "
1093 "bytes left", length, bytes_left);
1095 } else if ((length - sizeof *fs) % sizeof fs->actions[0]) {
1096 VLOG_WARN_RL(&bad_ofmsg_rl, "flow stats length %zu has %zu bytes "
1097 "left over in final action", length,
1098 (length - sizeof *fs) % sizeof fs->actions[0]);
1101 iter->pos += length;
1106 check_action_exact_len(const union ofp_action *a, unsigned int len,
1107 unsigned int required_len)
1109 if (len != required_len) {
1110 VLOG_DBG_RL(&bad_ofmsg_rl,
1111 "action %u has invalid length %"PRIu16" (must be %u)\n",
1112 a->type, ntohs(a->header.len), required_len);
1113 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
1118 /* Checks that 'port' is a valid output port for the OFPAT_OUTPUT action, given
1119 * that the switch will never have more than 'max_ports' ports. Returns 0 if
1120 * 'port' is valid, otherwise an ofp_mkerr() return code. */
1122 check_output_port(uint16_t port, int max_ports)
1130 case OFPP_CONTROLLER:
1135 if (port < max_ports) {
1138 VLOG_WARN_RL(&bad_ofmsg_rl, "unknown output port %x", port);
1139 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT);
1143 /* Checks that 'action' is a valid OFPAT_ENQUEUE action, given that the switch
1144 * will never have more than 'max_ports' ports. Returns 0 if 'port' is valid,
1145 * otherwise an ofp_mkerr() return code. */
1147 check_enqueue_action(const union ofp_action *a, unsigned int len,
1150 const struct ofp_action_enqueue *oae;
1154 error = check_action_exact_len(a, len, 16);
1159 oae = (const struct ofp_action_enqueue *) a;
1160 port = ntohs(oae->port);
1161 if (port < max_ports || port == OFPP_IN_PORT) {
1164 VLOG_WARN_RL(&bad_ofmsg_rl, "unknown enqueue port %x", port);
1165 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT);
1169 check_nicira_action(const union ofp_action *a, unsigned int len,
1170 const struct flow *flow)
1172 const struct nx_action_header *nah;
1176 VLOG_DBG_RL(&bad_ofmsg_rl,
1177 "Nicira vendor action only %u bytes", len);
1178 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
1180 nah = (const struct nx_action_header *) a;
1182 switch (ntohs(nah->subtype)) {
1183 case NXAST_RESUBMIT:
1184 case NXAST_SET_TUNNEL:
1185 case NXAST_DROP_SPOOFED_ARP:
1186 case NXAST_SET_QUEUE:
1187 case NXAST_POP_QUEUE:
1188 return check_action_exact_len(a, len, 16);
1190 case NXAST_REG_MOVE:
1191 error = check_action_exact_len(a, len,
1192 sizeof(struct nx_action_reg_move));
1196 return nxm_check_reg_move((const struct nx_action_reg_move *) a, flow);
1198 case NXAST_REG_LOAD:
1199 error = check_action_exact_len(a, len,
1200 sizeof(struct nx_action_reg_load));
1204 return nxm_check_reg_load((const struct nx_action_reg_load *) a, flow);
1210 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR_TYPE);
1215 check_action(const union ofp_action *a, unsigned int len,
1216 const struct flow *flow, int max_ports)
1220 switch (ntohs(a->type)) {
1222 error = check_action_exact_len(a, len, 8);
1226 return check_output_port(ntohs(a->output.port), max_ports);
1228 case OFPAT_SET_VLAN_VID:
1229 error = check_action_exact_len(a, len, 8);
1233 if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
1234 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
1238 case OFPAT_SET_VLAN_PCP:
1239 error = check_action_exact_len(a, len, 8);
1243 if (a->vlan_vid.vlan_vid & ~7) {
1244 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
1248 case OFPAT_STRIP_VLAN:
1249 case OFPAT_SET_NW_SRC:
1250 case OFPAT_SET_NW_DST:
1251 case OFPAT_SET_NW_TOS:
1252 case OFPAT_SET_TP_SRC:
1253 case OFPAT_SET_TP_DST:
1254 return check_action_exact_len(a, len, 8);
1256 case OFPAT_SET_DL_SRC:
1257 case OFPAT_SET_DL_DST:
1258 return check_action_exact_len(a, len, 16);
1261 return (a->vendor.vendor == htonl(NX_VENDOR_ID)
1262 ? check_nicira_action(a, len, flow)
1263 : ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR));
1266 return check_enqueue_action(a, len, max_ports);
1269 VLOG_WARN_RL(&bad_ofmsg_rl, "unknown action type %"PRIu16,
1271 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_TYPE);
1276 validate_actions(const union ofp_action *actions, size_t n_actions,
1277 const struct flow *flow, int max_ports)
1281 for (i = 0; i < n_actions; ) {
1282 const union ofp_action *a = &actions[i];
1283 unsigned int len = ntohs(a->header.len);
1284 unsigned int n_slots = len / OFP_ACTION_ALIGN;
1285 unsigned int slots_left = &actions[n_actions] - a;
1288 if (n_slots > slots_left) {
1289 VLOG_DBG_RL(&bad_ofmsg_rl,
1290 "action requires %u slots but only %u remain",
1291 n_slots, slots_left);
1292 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
1294 VLOG_DBG_RL(&bad_ofmsg_rl, "action has invalid length 0");
1295 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
1296 } else if (len % OFP_ACTION_ALIGN) {
1297 VLOG_DBG_RL(&bad_ofmsg_rl, "action length %u is not a multiple "
1298 "of %d", len, OFP_ACTION_ALIGN);
1299 return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
1302 error = check_action(a, len, flow, max_ports);
1311 /* Returns true if 'action' outputs to 'port' (which must be in network byte
1312 * order), false otherwise. */
1314 action_outputs_to_port(const union ofp_action *action, uint16_t port)
1316 switch (ntohs(action->type)) {
1318 return action->output.port == port;
1320 return ((const struct ofp_action_enqueue *) action)->port == port;
1326 /* The set of actions must either come from a trusted source or have been
1327 * previously validated with validate_actions(). */
1328 const union ofp_action *
1329 actions_first(struct actions_iterator *iter,
1330 const union ofp_action *oa, size_t n_actions)
1333 iter->end = oa + n_actions;
1334 return actions_next(iter);
1337 const union ofp_action *
1338 actions_next(struct actions_iterator *iter)
1340 if (iter->pos != iter->end) {
1341 const union ofp_action *a = iter->pos;
1342 unsigned int len = ntohs(a->header.len);
1343 iter->pos += len / OFP_ACTION_ALIGN;
1351 normalize_match(struct ofp_match *m)
1353 enum { OFPFW_NW = (OFPFW_NW_SRC_MASK | OFPFW_NW_DST_MASK | OFPFW_NW_PROTO
1355 enum { OFPFW_TP = OFPFW_TP_SRC | OFPFW_TP_DST };
1358 wc = ntohl(m->wildcards) & OVSFW_ALL;
1359 if (wc & OFPFW_DL_TYPE) {
1362 /* Can't sensibly match on network or transport headers if the
1363 * data link type is unknown. */
1364 wc |= OFPFW_NW | OFPFW_TP;
1365 m->nw_src = m->nw_dst = m->nw_proto = m->nw_tos = 0;
1366 m->tp_src = m->tp_dst = 0;
1367 } else if (m->dl_type == htons(ETH_TYPE_IP)) {
1368 if (wc & OFPFW_NW_PROTO) {
1371 /* Can't sensibly match on transport headers if the network
1372 * protocol is unknown. */
1374 m->tp_src = m->tp_dst = 0;
1375 } else if (m->nw_proto == IPPROTO_TCP ||
1376 m->nw_proto == IPPROTO_UDP ||
1377 m->nw_proto == IPPROTO_ICMP) {
1378 if (wc & OFPFW_TP_SRC) {
1381 if (wc & OFPFW_TP_DST) {
1385 /* Transport layer fields will always be extracted as zeros, so we
1386 * can do an exact-match on those values. */
1388 m->tp_src = m->tp_dst = 0;
1390 if (wc & OFPFW_NW_SRC_MASK) {
1391 m->nw_src &= ofputil_wcbits_to_netmask(wc >> OFPFW_NW_SRC_SHIFT);
1393 if (wc & OFPFW_NW_DST_MASK) {
1394 m->nw_dst &= ofputil_wcbits_to_netmask(wc >> OFPFW_NW_DST_SHIFT);
1396 if (wc & OFPFW_NW_TOS) {
1399 m->nw_tos &= IP_DSCP_MASK;
1401 } else if (m->dl_type == htons(ETH_TYPE_ARP)) {
1402 if (wc & OFPFW_NW_PROTO) {
1405 if (wc & OFPFW_NW_SRC_MASK) {
1406 m->nw_src &= ofputil_wcbits_to_netmask(wc >> OFPFW_NW_SRC_SHIFT);
1408 if (wc & OFPFW_NW_DST_MASK) {
1409 m->nw_dst &= ofputil_wcbits_to_netmask(wc >> OFPFW_NW_DST_SHIFT);
1411 m->tp_src = m->tp_dst = m->nw_tos = 0;
1413 /* Network and transport layer fields will always be extracted as
1414 * zeros, so we can do an exact-match on those values. */
1415 wc &= ~(OFPFW_NW | OFPFW_TP);
1416 m->nw_proto = m->nw_src = m->nw_dst = m->nw_tos = 0;
1417 m->tp_src = m->tp_dst = 0;
1419 if (wc & OFPFW_DL_SRC) {
1420 memset(m->dl_src, 0, sizeof m->dl_src);
1422 if (wc & OFPFW_DL_DST) {
1423 memset(m->dl_dst, 0, sizeof m->dl_dst);
1425 m->wildcards = htonl(wc);
1428 /* Returns a string that describes 'match' in a very literal way, without
1429 * interpreting its contents except in a very basic fashion. The returned
1430 * string is intended to be fixed-length, so that it is easy to see differences
1431 * between two such strings if one is put above another. This is useful for
1432 * describing changes made by normalize_match().
1434 * The caller must free the returned string (with free()). */
1436 ofp_match_to_literal_string(const struct ofp_match *match)
1438 return xasprintf("wildcards=%#10"PRIx32" "
1439 " in_port=%5"PRId16" "
1440 " dl_src="ETH_ADDR_FMT" "
1441 " dl_dst="ETH_ADDR_FMT" "
1442 " dl_vlan=%5"PRId16" "
1443 " dl_vlan_pcp=%3"PRId8" "
1444 " dl_type=%#6"PRIx16" "
1445 " nw_tos=%#4"PRIx8" "
1446 " nw_proto=%#4"PRIx16" "
1447 " nw_src=%#10"PRIx32" "
1448 " nw_dst=%#10"PRIx32" "
1449 " tp_src=%5"PRId16" "
1451 ntohl(match->wildcards),
1452 ntohs(match->in_port),
1453 ETH_ADDR_ARGS(match->dl_src),
1454 ETH_ADDR_ARGS(match->dl_dst),
1455 ntohs(match->dl_vlan),
1457 ntohs(match->dl_type),
1460 ntohl(match->nw_src),
1461 ntohl(match->nw_dst),
1462 ntohs(match->tp_src),
1463 ntohs(match->tp_dst));
1467 vendor_code_to_id(uint8_t code)
1470 #define OFPUTIL_VENDOR(NAME, VENDOR_ID) case NAME: return VENDOR_ID;
1472 #undef OFPUTIL_VENDOR
1478 /* Creates and returns an OpenFlow message of type OFPT_ERROR with the error
1479 * information taken from 'error', whose encoding must be as described in the
1480 * large comment in ofp-util.h. If 'oh' is nonnull, then the error will use
1481 * oh->xid as its transaction ID, and it will include up to the first 64 bytes
1484 * Returns NULL if 'error' is not an OpenFlow error code. */
1486 make_ofp_error_msg(int error, const struct ofp_header *oh)
1488 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1498 if (!is_ofp_error(error)) {
1499 /* We format 'error' with strerror() here since it seems likely to be
1500 * a system errno value. */
1501 VLOG_WARN_RL(&rl, "invalid OpenFlow error code %d (%s)",
1502 error, strerror(error));
1509 len = ntohs(oh->length);
1519 vendor = get_ofp_err_vendor(error);
1520 type = get_ofp_err_type(error);
1521 code = get_ofp_err_code(error);
1522 if (vendor == OFPUTIL_VENDOR_OPENFLOW) {
1523 struct ofp_error_msg *oem;
1525 oem = make_openflow_xid(len + sizeof *oem, OFPT_ERROR, xid, &buf);
1526 oem->type = htons(type);
1527 oem->code = htons(code);
1529 struct ofp_error_msg *oem;
1530 struct nx_vendor_error *nve;
1533 vendor_id = vendor_code_to_id(vendor);
1534 if (vendor_id == UINT32_MAX) {
1535 VLOG_WARN_RL(&rl, "error %x contains invalid vendor code %d",
1540 oem = make_openflow_xid(len + sizeof *oem + sizeof *nve,
1541 OFPT_ERROR, xid, &buf);
1542 oem->type = htons(NXET_VENDOR);
1543 oem->code = htons(NXVC_VENDOR_ERROR);
1545 nve = ofpbuf_put_uninit(buf, sizeof *nve);
1546 nve->vendor = htonl(vendor_id);
1547 nve->type = htons(type);
1548 nve->code = htons(code);
1552 ofpbuf_put(buf, data, len);
1558 /* Attempts to pull 'actions_len' bytes from the front of 'b'. Returns 0 if
1559 * successful, otherwise an OpenFlow error.
1561 * If successful, the first action is stored in '*actionsp' and the number of
1562 * "union ofp_action" size elements into '*n_actionsp'. Otherwise NULL and 0
1563 * are stored, respectively.
1565 * This function does not check that the actions are valid (the caller should
1566 * do so, with validate_actions()). The caller is also responsible for making
1567 * sure that 'b->data' is initially aligned appropriately for "union
1570 ofputil_pull_actions(struct ofpbuf *b, unsigned int actions_len,
1571 union ofp_action **actionsp, size_t *n_actionsp)
1573 if (actions_len % OFP_ACTION_ALIGN != 0) {
1574 VLOG_DBG_RL(&bad_ofmsg_rl, "OpenFlow message actions length %u "
1575 "is not a multiple of %d", actions_len, OFP_ACTION_ALIGN);
1579 *actionsp = ofpbuf_try_pull(b, actions_len);
1580 if (*actionsp == NULL) {
1581 VLOG_DBG_RL(&bad_ofmsg_rl, "OpenFlow message actions length %u "
1582 "exceeds remaining message length (%zu)",
1583 actions_len, b->size);
1587 *n_actionsp = actions_len / OFP_ACTION_ALIGN;
1593 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);