2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
3 * Copyright (c) 2010 Jean Tourrilhes - HP-Labs.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
22 #include <sys/socket.h>
24 #include <netinet/in.h>
28 #include "byte-order.h"
30 #include "classifier.h"
34 #include "dynamic-string.h"
35 #include "fail-open.h"
39 #include "mac-learning.h"
40 #include "multipath.h"
46 #include "ofp-print.h"
48 #include "ofproto-sflow.h"
50 #include "openflow/nicira-ext.h"
51 #include "openflow/openflow.h"
52 #include "openvswitch/datapath-protocol.h"
56 #include "poll-loop.h"
60 #include "stream-ssl.h"
64 #include "unaligned.h"
69 VLOG_DEFINE_THIS_MODULE(ofproto);
71 COVERAGE_DEFINE(facet_changed_rule);
72 COVERAGE_DEFINE(facet_revalidate);
73 COVERAGE_DEFINE(odp_overflow);
74 COVERAGE_DEFINE(ofproto_agg_request);
75 COVERAGE_DEFINE(ofproto_costly_flags);
76 COVERAGE_DEFINE(ofproto_ctlr_action);
77 COVERAGE_DEFINE(ofproto_del_rule);
78 COVERAGE_DEFINE(ofproto_error);
79 COVERAGE_DEFINE(ofproto_expiration);
80 COVERAGE_DEFINE(ofproto_expired);
81 COVERAGE_DEFINE(ofproto_flows_req);
82 COVERAGE_DEFINE(ofproto_flush);
83 COVERAGE_DEFINE(ofproto_invalidated);
84 COVERAGE_DEFINE(ofproto_no_packet_in);
85 COVERAGE_DEFINE(ofproto_ofp2odp);
86 COVERAGE_DEFINE(ofproto_packet_in);
87 COVERAGE_DEFINE(ofproto_packet_out);
88 COVERAGE_DEFINE(ofproto_queue_req);
89 COVERAGE_DEFINE(ofproto_recv_openflow);
90 COVERAGE_DEFINE(ofproto_reinit_ports);
91 COVERAGE_DEFINE(ofproto_unexpected_rule);
92 COVERAGE_DEFINE(ofproto_uninstallable);
93 COVERAGE_DEFINE(ofproto_update_port);
95 /* Maximum depth of flow table recursion (due to NXAST_RESUBMIT actions) in a
96 * flow translation. */
97 #define MAX_RESUBMIT_RECURSION 16
102 struct hmap_node hmap_node; /* In struct ofproto's "ports" hmap. */
103 struct netdev *netdev;
104 struct ofp_phy_port opp; /* In host byte order. */
106 struct cfm *cfm; /* Connectivity Fault Management, if any. */
109 static void ofport_free(struct ofport *);
110 static void ofport_run(struct ofproto *, struct ofport *);
111 static void ofport_wait(struct ofport *);
113 struct action_xlate_ctx {
114 /* action_xlate_ctx_init() initializes these members. */
117 struct ofproto *ofproto;
119 /* Flow to which the OpenFlow actions apply. xlate_actions() will modify
120 * this flow when actions change header fields. */
123 /* The packet corresponding to 'flow', or a null pointer if we are
124 * revalidating without a packet to refer to. */
125 const struct ofpbuf *packet;
127 /* If nonnull, called just before executing a resubmit action.
129 * This is normally null so the client has to set it manually after
130 * calling action_xlate_ctx_init(). */
131 void (*resubmit_hook)(struct action_xlate_ctx *, struct rule *);
133 /* If true, the speciality of 'flow' should be checked before executing
134 * its actions. If special_cb returns false on 'flow' rendered
135 * uninstallable and no actions will be executed. */
138 /* xlate_actions() initializes and uses these members. The client might want
139 * to look at them after it returns. */
141 struct ofpbuf *odp_actions; /* Datapath actions. */
142 tag_type tags; /* Tags associated with OFPP_NORMAL actions. */
143 bool may_set_up_flow; /* True ordinarily; false if the actions must
144 * be reassessed for every packet. */
145 uint16_t nf_output_iface; /* Output interface index for NetFlow. */
147 /* xlate_actions() initializes and uses these members, but the client has no
148 * reason to look at them. */
150 int recurse; /* Recursion level, via xlate_table_action. */
151 int last_pop_priority; /* Offset in 'odp_actions' just past most
152 * recent ODP_ACTION_ATTR_SET_PRIORITY. */
155 static void action_xlate_ctx_init(struct action_xlate_ctx *,
156 struct ofproto *, const struct flow *,
157 const struct ofpbuf *);
158 static struct ofpbuf *xlate_actions(struct action_xlate_ctx *,
159 const union ofp_action *in, size_t n_in);
161 /* An OpenFlow flow. */
163 long long int used; /* Time last used; time created if not used. */
164 long long int created; /* Creation time. */
168 * - Do include packets and bytes from facets that have been deleted or
169 * whose own statistics have been folded into the rule.
171 * - Do include packets and bytes sent "by hand" that were accounted to
172 * the rule without any facet being involved (this is a rare corner
173 * case in rule_execute()).
175 * - Do not include packet or bytes that can be obtained from any facet's
176 * packet_count or byte_count member or that can be obtained from the
177 * datapath by, e.g., dpif_flow_get() for any facet.
179 uint64_t packet_count; /* Number of packets received. */
180 uint64_t byte_count; /* Number of bytes received. */
182 ovs_be64 flow_cookie; /* Controller-issued identifier. */
184 struct cls_rule cr; /* In owning ofproto's classifier. */
185 uint16_t idle_timeout; /* In seconds from time of last use. */
186 uint16_t hard_timeout; /* In seconds from time of creation. */
187 bool send_flow_removed; /* Send a flow removed message? */
188 int n_actions; /* Number of elements in actions[]. */
189 union ofp_action *actions; /* OpenFlow actions. */
190 struct list facets; /* List of "struct facet"s. */
193 static struct rule *rule_from_cls_rule(const struct cls_rule *);
194 static bool rule_is_hidden(const struct rule *);
196 static struct rule *rule_create(const struct cls_rule *,
197 const union ofp_action *, size_t n_actions,
198 uint16_t idle_timeout, uint16_t hard_timeout,
199 ovs_be64 flow_cookie, bool send_flow_removed);
200 static void rule_destroy(struct ofproto *, struct rule *);
201 static void rule_free(struct rule *);
203 static struct rule *rule_lookup(struct ofproto *, const struct flow *);
204 static void rule_insert(struct ofproto *, struct rule *);
205 static void rule_remove(struct ofproto *, struct rule *);
207 static void rule_send_removed(struct ofproto *, struct rule *, uint8_t reason);
208 static void rule_get_stats(const struct rule *, uint64_t *packets,
211 /* An exact-match instantiation of an OpenFlow flow. */
213 long long int used; /* Time last used; time created if not used. */
217 * - Do include packets and bytes sent "by hand", e.g. with
220 * - Do include packets and bytes that were obtained from the datapath
221 * when a flow was deleted (e.g. dpif_flow_del()) or when its
222 * statistics were reset (e.g. dpif_flow_put() with
223 * DPIF_FP_ZERO_STATS).
225 * - Do not include any packets or bytes that can currently be obtained
226 * from the datapath by, e.g., dpif_flow_get().
228 uint64_t packet_count; /* Number of packets received. */
229 uint64_t byte_count; /* Number of bytes received. */
231 uint64_t dp_packet_count; /* Last known packet count in the datapath. */
232 uint64_t dp_byte_count; /* Last known byte count in the datapath. */
234 uint64_t rs_packet_count; /* Packets pushed to resubmit children. */
235 uint64_t rs_byte_count; /* Bytes pushed to resubmit children. */
236 long long int rs_used; /* Used time pushed to resubmit children. */
238 /* Number of bytes passed to account_cb. This may include bytes that can
239 * currently obtained from the datapath (thus, it can be greater than
241 uint64_t accounted_bytes;
243 struct hmap_node hmap_node; /* In owning ofproto's 'facets' hmap. */
244 struct list list_node; /* In owning rule's 'facets' list. */
245 struct rule *rule; /* Owning rule. */
246 struct flow flow; /* Exact-match flow. */
247 bool installed; /* Installed in datapath? */
248 bool may_install; /* True ordinarily; false if actions must
249 * be reassessed for every packet. */
250 size_t actions_len; /* Number of bytes in actions[]. */
251 struct nlattr *actions; /* Datapath actions. */
252 tag_type tags; /* Tags (set only by hooks). */
253 struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
256 static struct facet *facet_create(struct ofproto *, struct rule *,
258 const struct ofpbuf *packet);
259 static void facet_remove(struct ofproto *, struct facet *);
260 static void facet_free(struct facet *);
262 static struct facet *facet_lookup_valid(struct ofproto *, const struct flow *);
263 static bool facet_revalidate(struct ofproto *, struct facet *);
265 static void facet_install(struct ofproto *, struct facet *, bool zero_stats);
266 static void facet_uninstall(struct ofproto *, struct facet *);
267 static void facet_flush_stats(struct ofproto *, struct facet *);
269 static void facet_make_actions(struct ofproto *, struct facet *,
270 const struct ofpbuf *packet);
271 static void facet_reset_dp_stats(struct facet *, struct dpif_flow_stats *);
272 static void facet_update_stats(struct ofproto *, struct facet *,
273 const struct dpif_flow_stats *);
274 static void facet_push_stats(struct ofproto *, struct facet *);
276 static void send_packet_in(struct ofproto *, struct dpif_upcall *,
277 const struct flow *, bool clone);
281 uint64_t datapath_id; /* Datapath ID. */
282 uint64_t fallback_dpid; /* Datapath ID if no better choice found. */
283 char *mfr_desc; /* Manufacturer. */
284 char *hw_desc; /* Hardware. */
285 char *sw_desc; /* Software version. */
286 char *serial_desc; /* Serial number. */
287 char *dp_desc; /* Datapath description. */
291 struct netdev_monitor *netdev_monitor;
292 struct hmap ports; /* Contains "struct ofport"s. */
293 struct shash port_by_name;
297 struct netflow *netflow;
298 struct ofproto_sflow *sflow;
301 struct classifier cls;
302 struct timer next_expiration;
306 bool need_revalidate;
307 struct tag_set revalidate_set;
309 /* OpenFlow connections. */
310 struct connmgr *connmgr;
312 /* Hooks for ovs-vswitchd. */
313 const struct ofhooks *ofhooks;
316 /* Used by default ofhooks. */
317 struct mac_learning *ml;
320 /* Map from dpif name to struct ofproto, for use by unixctl commands. */
321 static struct shash all_ofprotos = SHASH_INITIALIZER(&all_ofprotos);
323 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
325 static const struct ofhooks default_ofhooks;
327 static uint64_t pick_datapath_id(const struct ofproto *);
328 static uint64_t pick_fallback_dpid(void);
330 static void ofproto_flush_flows__(struct ofproto *);
331 static int ofproto_expire(struct ofproto *);
332 static void flow_push_stats(struct ofproto *, const struct rule *,
333 struct flow *, uint64_t packets, uint64_t bytes,
336 static void handle_upcall(struct ofproto *, struct dpif_upcall *);
338 static void handle_openflow(struct ofconn *, struct ofpbuf *);
340 static struct ofport *get_port(const struct ofproto *, uint16_t odp_port);
341 static void update_port(struct ofproto *, const char *devname);
342 static int init_ports(struct ofproto *);
343 static void reinit_ports(struct ofproto *);
345 static void ofproto_unixctl_init(void);
348 ofproto_create(const char *datapath, const char *datapath_type,
349 const struct ofhooks *ofhooks, void *aux,
350 struct ofproto **ofprotop)
352 char local_name[IF_NAMESIZE];
359 ofproto_unixctl_init();
361 /* Connect to datapath and start listening for messages. */
362 error = dpif_open(datapath, datapath_type, &dpif);
364 VLOG_ERR("failed to open datapath %s: %s", datapath, strerror(error));
367 error = dpif_recv_set_mask(dpif,
368 ((1u << DPIF_UC_MISS) |
369 (1u << DPIF_UC_ACTION) |
370 (1u << DPIF_UC_SAMPLE)));
372 VLOG_ERR("failed to listen on datapath %s: %s",
373 datapath, strerror(error));
377 dpif_flow_flush(dpif);
378 dpif_recv_purge(dpif);
380 error = dpif_port_get_name(dpif, ODPP_LOCAL,
381 local_name, sizeof local_name);
383 VLOG_ERR("%s: cannot get name of datapath local port (%s)",
384 datapath, strerror(error));
388 /* Initialize settings. */
389 p = xzalloc(sizeof *p);
390 p->fallback_dpid = pick_fallback_dpid();
391 p->datapath_id = p->fallback_dpid;
392 p->mfr_desc = xstrdup(DEFAULT_MFR_DESC);
393 p->hw_desc = xstrdup(DEFAULT_HW_DESC);
394 p->sw_desc = xstrdup(DEFAULT_SW_DESC);
395 p->serial_desc = xstrdup(DEFAULT_SERIAL_DESC);
396 p->dp_desc = xstrdup(DEFAULT_DP_DESC);
398 /* Initialize datapath. */
400 p->netdev_monitor = netdev_monitor_create();
401 hmap_init(&p->ports);
402 shash_init(&p->port_by_name);
403 p->max_ports = dpif_get_max_ports(dpif);
405 /* Initialize submodules. */
409 /* Initialize flow table. */
410 classifier_init(&p->cls);
411 timer_set_duration(&p->next_expiration, 1000);
413 /* Initialize facet table. */
414 hmap_init(&p->facets);
415 p->need_revalidate = false;
416 tag_set_init(&p->revalidate_set);
418 /* Initialize hooks. */
420 p->ofhooks = ofhooks;
424 p->ofhooks = &default_ofhooks;
426 p->ml = mac_learning_create();
429 /* Pick final datapath ID. */
430 p->datapath_id = pick_datapath_id(p);
431 VLOG_INFO("using datapath ID %016"PRIx64, p->datapath_id);
433 shash_add_once(&all_ofprotos, dpif_name(p->dpif), p);
435 /* Initialize OpenFlow connections. */
436 p->connmgr = connmgr_create(p, datapath, local_name);
443 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
445 uint64_t old_dpid = p->datapath_id;
446 p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
447 if (p->datapath_id != old_dpid) {
448 VLOG_INFO("datapath ID changed to %016"PRIx64, p->datapath_id);
450 /* Force all active connections to reconnect, since there is no way to
451 * notify a controller that the datapath ID has changed. */
452 ofproto_reconnect_controllers(p);
457 ofproto_set_controllers(struct ofproto *p,
458 const struct ofproto_controller *controllers,
459 size_t n_controllers)
461 connmgr_set_controllers(p->connmgr, controllers, n_controllers);
465 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
467 connmgr_set_fail_mode(p->connmgr, fail_mode);
470 /* Drops the connections between 'ofproto' and all of its controllers, forcing
471 * them to reconnect. */
473 ofproto_reconnect_controllers(struct ofproto *ofproto)
475 connmgr_reconnect(ofproto->connmgr);
478 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
479 * in-band control should guarantee access, in the same way that in-band
480 * control guarantees access to OpenFlow controllers. */
482 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
483 const struct sockaddr_in *extras, size_t n)
485 connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
488 /* Sets the OpenFlow queue used by flows set up by in-band control on
489 * 'ofproto' to 'queue_id'. If 'queue_id' is negative, then in-band control
490 * flows will use the default queue. */
492 ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
494 connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
498 ofproto_set_desc(struct ofproto *p,
499 const char *mfr_desc, const char *hw_desc,
500 const char *sw_desc, const char *serial_desc,
503 struct ofp_desc_stats *ods;
506 if (strlen(mfr_desc) >= sizeof ods->mfr_desc) {
507 VLOG_WARN("truncating mfr_desc, must be less than %zu characters",
508 sizeof ods->mfr_desc);
511 p->mfr_desc = xstrdup(mfr_desc);
514 if (strlen(hw_desc) >= sizeof ods->hw_desc) {
515 VLOG_WARN("truncating hw_desc, must be less than %zu characters",
516 sizeof ods->hw_desc);
519 p->hw_desc = xstrdup(hw_desc);
522 if (strlen(sw_desc) >= sizeof ods->sw_desc) {
523 VLOG_WARN("truncating sw_desc, must be less than %zu characters",
524 sizeof ods->sw_desc);
527 p->sw_desc = xstrdup(sw_desc);
530 if (strlen(serial_desc) >= sizeof ods->serial_num) {
531 VLOG_WARN("truncating serial_desc, must be less than %zu "
533 sizeof ods->serial_num);
535 free(p->serial_desc);
536 p->serial_desc = xstrdup(serial_desc);
539 if (strlen(dp_desc) >= sizeof ods->dp_desc) {
540 VLOG_WARN("truncating dp_desc, must be less than %zu characters",
541 sizeof ods->dp_desc);
544 p->dp_desc = xstrdup(dp_desc);
549 ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
551 return connmgr_set_snoops(ofproto->connmgr, snoops);
555 ofproto_set_netflow(struct ofproto *ofproto,
556 const struct netflow_options *nf_options)
558 if (nf_options && !sset_is_empty(&nf_options->collectors)) {
559 if (!ofproto->netflow) {
560 ofproto->netflow = netflow_create();
562 return netflow_set_options(ofproto->netflow, nf_options);
564 netflow_destroy(ofproto->netflow);
565 ofproto->netflow = NULL;
571 ofproto_set_sflow(struct ofproto *ofproto,
572 const struct ofproto_sflow_options *oso)
574 struct ofproto_sflow *os = ofproto->sflow;
577 struct ofport *ofport;
579 os = ofproto->sflow = ofproto_sflow_create(ofproto->dpif);
580 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
581 ofproto_sflow_add_port(os, ofport->odp_port,
582 netdev_get_name(ofport->netdev));
585 ofproto_sflow_set_options(os, oso);
587 ofproto_sflow_destroy(os);
588 ofproto->sflow = NULL;
592 /* Connectivity Fault Management configuration. */
594 /* Clears the CFM configuration from 'port_no' on 'ofproto'. */
596 ofproto_iface_clear_cfm(struct ofproto *ofproto, uint32_t port_no)
598 struct ofport *ofport = get_port(ofproto, port_no);
599 if (ofport && ofport->cfm){
600 cfm_destroy(ofport->cfm);
605 /* Configures connectivity fault management on 'port_no' in 'ofproto'. Takes
606 * basic configuration from the configuration members in 'cfm', and the set of
607 * remote maintenance points from the 'n_remote_mps' elements in 'remote_mps'.
608 * Ignores the statistics members of 'cfm'.
610 * This function has no effect if 'ofproto' does not have a port 'port_no'. */
612 ofproto_iface_set_cfm(struct ofproto *ofproto, uint32_t port_no,
613 const struct cfm *cfm,
614 const uint16_t *remote_mps, size_t n_remote_mps)
616 struct ofport *ofport;
618 ofport = get_port(ofproto, port_no);
620 VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu32,
621 dpif_name(ofproto->dpif), port_no);
626 ofport->cfm = cfm_create();
629 ofport->cfm->mpid = cfm->mpid;
630 ofport->cfm->interval = cfm->interval;
631 memcpy(ofport->cfm->maid, cfm->maid, CCM_MAID_LEN);
633 cfm_update_remote_mps(ofport->cfm, remote_mps, n_remote_mps);
635 if (!cfm_configure(ofport->cfm)) {
636 VLOG_WARN("%s: CFM configuration on port %"PRIu32" (%s) failed",
637 dpif_name(ofproto->dpif), port_no,
638 netdev_get_name(ofport->netdev));
639 cfm_destroy(ofport->cfm);
644 /* Returns the connectivity fault management object associated with 'port_no'
645 * within 'ofproto', or a null pointer if 'ofproto' does not have a port
646 * 'port_no' or if that port does not have CFM configured. The caller must not
647 * modify or destroy the returned object. */
649 ofproto_iface_get_cfm(struct ofproto *ofproto, uint32_t port_no)
651 struct ofport *ofport = get_port(ofproto, port_no);
652 return ofport ? ofport->cfm : NULL;
656 ofproto_get_datapath_id(const struct ofproto *ofproto)
658 return ofproto->datapath_id;
662 ofproto_has_primary_controller(const struct ofproto *ofproto)
664 return connmgr_has_controllers(ofproto->connmgr);
667 enum ofproto_fail_mode
668 ofproto_get_fail_mode(const struct ofproto *p)
670 return connmgr_get_fail_mode(p->connmgr);
674 ofproto_has_snoops(const struct ofproto *ofproto)
676 return connmgr_has_snoops(ofproto->connmgr);
680 ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
682 connmgr_get_snoops(ofproto->connmgr, snoops);
686 ofproto_destroy(struct ofproto *p)
688 struct ofport *ofport, *next_ofport;
694 shash_find_and_delete(&all_ofprotos, dpif_name(p->dpif));
696 ofproto_flush_flows__(p);
697 connmgr_destroy(p->connmgr);
698 classifier_destroy(&p->cls);
699 hmap_destroy(&p->facets);
702 netdev_monitor_destroy(p->netdev_monitor);
703 HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
704 hmap_remove(&p->ports, &ofport->hmap_node);
707 shash_destroy(&p->port_by_name);
709 netflow_destroy(p->netflow);
710 ofproto_sflow_destroy(p->sflow);
712 mac_learning_destroy(p->ml);
717 free(p->serial_desc);
720 hmap_destroy(&p->ports);
726 ofproto_run(struct ofproto *p)
728 int error = ofproto_run1(p);
730 error = ofproto_run2(p, false);
736 process_port_change(struct ofproto *ofproto, int error, char *devname)
738 if (error == ENOBUFS) {
739 reinit_ports(ofproto);
741 update_port(ofproto, devname);
747 ofproto_run1(struct ofproto *p)
749 struct ofport *ofport;
754 if (shash_is_empty(&p->port_by_name)) {
758 for (i = 0; i < 50; i++) {
759 struct dpif_upcall packet;
761 error = dpif_recv(p->dpif, &packet);
763 if (error == ENODEV) {
764 /* Someone destroyed the datapath behind our back. The caller
765 * better destroy us and give up, because we're just going to
766 * spin from here on out. */
767 static struct vlog_rate_limit rl2 = VLOG_RATE_LIMIT_INIT(1, 5);
768 VLOG_ERR_RL(&rl2, "%s: datapath was destroyed externally",
775 handle_upcall(p, &packet);
778 while ((error = dpif_port_poll(p->dpif, &devname)) != EAGAIN) {
779 process_port_change(p, error, devname);
781 while ((error = netdev_monitor_poll(p->netdev_monitor,
782 &devname)) != EAGAIN) {
783 process_port_change(p, error, devname);
786 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
787 ofport_run(p, ofport);
790 connmgr_run(p->connmgr, handle_openflow);
792 if (timer_expired(&p->next_expiration)) {
793 int delay = ofproto_expire(p);
794 timer_set_duration(&p->next_expiration, delay);
795 COVERAGE_INC(ofproto_expiration);
799 netflow_run(p->netflow);
802 ofproto_sflow_run(p->sflow);
809 ofproto_run2(struct ofproto *p, bool revalidate_all)
811 /* Figure out what we need to revalidate now, if anything. */
812 struct tag_set revalidate_set = p->revalidate_set;
813 if (p->need_revalidate) {
814 revalidate_all = true;
817 /* Clear the revalidation flags. */
818 tag_set_init(&p->revalidate_set);
819 p->need_revalidate = false;
821 /* Now revalidate if there's anything to do. */
822 if (revalidate_all || !tag_set_is_empty(&revalidate_set)) {
823 struct facet *facet, *next;
825 HMAP_FOR_EACH_SAFE (facet, next, hmap_node, &p->facets) {
827 || tag_set_intersects(&revalidate_set, facet->tags)) {
828 facet_revalidate(p, facet);
837 ofproto_wait(struct ofproto *p)
839 struct ofport *ofport;
841 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
844 dpif_recv_wait(p->dpif);
845 dpif_port_poll_wait(p->dpif);
846 netdev_monitor_poll_wait(p->netdev_monitor);
848 ofproto_sflow_wait(p->sflow);
850 if (!tag_set_is_empty(&p->revalidate_set)) {
851 poll_immediate_wake();
853 if (p->need_revalidate) {
854 /* Shouldn't happen, but if it does just go around again. */
855 VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
856 poll_immediate_wake();
858 timer_wait(&p->next_expiration);
860 connmgr_wait(p->connmgr);
864 ofproto_revalidate(struct ofproto *ofproto, tag_type tag)
866 tag_set_add(&ofproto->revalidate_set, tag);
870 ofproto_get_revalidate_set(struct ofproto *ofproto)
872 return &ofproto->revalidate_set;
876 ofproto_is_alive(const struct ofproto *p)
878 return connmgr_has_controllers(p->connmgr);
882 ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
885 connmgr_get_controller_info(ofproto->connmgr, info);
889 ofproto_free_ofproto_controller_info(struct shash *info)
891 struct shash_node *node;
893 SHASH_FOR_EACH (node, info) {
894 struct ofproto_controller_info *cinfo = node->data;
895 while (cinfo->pairs.n) {
896 free((char *) cinfo->pairs.values[--cinfo->pairs.n]);
903 /* Deletes port number 'odp_port' from the datapath for 'ofproto'.
905 * This is almost the same as calling dpif_port_del() directly on the
906 * datapath, but it also makes 'ofproto' close its open netdev for the port
907 * (if any). This makes it possible to create a new netdev of a different
908 * type under the same name, which otherwise the netdev library would refuse
909 * to do because of the conflict. (The netdev would eventually get closed on
910 * the next trip through ofproto_run(), but this interface is more direct.)
912 * Returns 0 if successful, otherwise a positive errno. */
914 ofproto_port_del(struct ofproto *ofproto, uint16_t odp_port)
916 struct ofport *ofport = get_port(ofproto, odp_port);
917 const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
920 error = dpif_port_del(ofproto->dpif, odp_port);
922 VLOG_ERR("%s: failed to remove port %"PRIu16" (%s) interface (%s)",
923 dpif_name(ofproto->dpif), odp_port, name, strerror(error));
925 /* 'name' is the netdev's name and update_port() is going to close the
926 * netdev. Just in case update_port() refers to 'name' after it
927 * destroys 'ofport', make a copy of it around the update_port()
929 char *devname = xstrdup(name);
930 update_port(ofproto, devname);
936 /* Checks if 'ofproto' thinks 'odp_port' should be included in floods. Returns
937 * true if 'odp_port' exists and should be included, false otherwise. */
939 ofproto_port_is_floodable(struct ofproto *ofproto, uint16_t odp_port)
941 struct ofport *ofport = get_port(ofproto, odp_port);
942 return ofport && !(ofport->opp.config & OFPPC_NO_FLOOD);
945 /* Sends 'packet' out of port 'port_no' within 'p'.
947 * Returns 0 if successful, otherwise a positive errno value. */
949 ofproto_send_packet(struct ofproto *ofproto,
950 uint32_t port_no, const struct ofpbuf *packet)
952 struct ofpbuf odp_actions;
955 ofpbuf_init(&odp_actions, 32);
956 nl_msg_put_u32(&odp_actions, ODP_ACTION_ATTR_OUTPUT, port_no);
957 error = dpif_execute(ofproto->dpif, odp_actions.data, odp_actions.size,
959 ofpbuf_uninit(&odp_actions);
962 VLOG_WARN_RL(&rl, "%s: failed to send packet on port %"PRIu32" (%s)",
963 dpif_name(ofproto->dpif), port_no, strerror(error));
968 /* Adds a flow to the OpenFlow flow table in 'p' that matches 'cls_rule' and
969 * performs the 'n_actions' actions in 'actions'. The new flow will not
972 * If cls_rule->priority is in the range of priorities supported by OpenFlow
973 * (0...65535, inclusive) then the flow will be visible to OpenFlow
974 * controllers; otherwise, it will be hidden.
976 * The caller retains ownership of 'cls_rule' and 'actions'. */
978 ofproto_add_flow(struct ofproto *p, const struct cls_rule *cls_rule,
979 const union ofp_action *actions, size_t n_actions)
982 rule = rule_create(cls_rule, actions, n_actions, 0, 0, 0, false);
983 rule_insert(p, rule);
987 ofproto_delete_flow(struct ofproto *ofproto, const struct cls_rule *target)
991 rule = rule_from_cls_rule(classifier_find_rule_exactly(&ofproto->cls,
994 rule_remove(ofproto, rule);
999 ofproto_flush_flows__(struct ofproto *ofproto)
1001 struct facet *facet, *next_facet;
1002 struct rule *rule, *next_rule;
1003 struct cls_cursor cursor;
1005 COVERAGE_INC(ofproto_flush);
1007 HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
1008 /* Mark the facet as not installed so that facet_remove() doesn't
1009 * bother trying to uninstall it. There is no point in uninstalling it
1010 * individually since we are about to blow away all the facets with
1011 * dpif_flow_flush(). */
1012 facet->installed = false;
1013 facet->dp_packet_count = 0;
1014 facet->dp_byte_count = 0;
1015 facet_remove(ofproto, facet);
1018 cls_cursor_init(&cursor, &ofproto->cls, NULL);
1019 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
1020 rule_remove(ofproto, rule);
1023 dpif_flow_flush(ofproto->dpif);
1027 ofproto_flush_flows(struct ofproto *ofproto)
1029 ofproto_flush_flows__(ofproto);
1030 connmgr_flushed(ofproto->connmgr);
1034 reinit_ports(struct ofproto *p)
1036 struct dpif_port_dump dump;
1037 struct sset devnames;
1038 struct ofport *ofport;
1039 struct dpif_port dpif_port;
1040 const char *devname;
1042 COVERAGE_INC(ofproto_reinit_ports);
1044 sset_init(&devnames);
1045 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1046 sset_add(&devnames, netdev_get_name(ofport->netdev));
1048 DPIF_PORT_FOR_EACH (&dpif_port, &dump, p->dpif) {
1049 sset_add(&devnames, dpif_port.name);
1052 SSET_FOR_EACH (devname, &devnames) {
1053 update_port(p, devname);
1055 sset_destroy(&devnames);
1058 /* Opens and returns a netdev for 'dpif_port', or a null pointer if the netdev
1059 * cannot be opened. On success, also fills in 'opp', in *HOST* byte order. */
1060 static struct netdev *
1061 ofport_open(const struct dpif_port *dpif_port, struct ofp_phy_port *opp)
1063 struct netdev_options netdev_options;
1064 enum netdev_flags flags;
1065 struct netdev *netdev;
1068 memset(&netdev_options, 0, sizeof netdev_options);
1069 netdev_options.name = dpif_port->name;
1070 netdev_options.type = dpif_port->type;
1071 netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
1073 error = netdev_open(&netdev_options, &netdev);
1075 VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1076 "cannot be opened (%s)",
1077 dpif_port->name, dpif_port->port_no,
1078 dpif_port->name, strerror(error));
1082 netdev_get_flags(netdev, &flags);
1084 opp->port_no = odp_port_to_ofp_port(dpif_port->port_no);
1085 netdev_get_etheraddr(netdev, opp->hw_addr);
1086 ovs_strzcpy(opp->name, dpif_port->name, sizeof opp->name);
1087 opp->config = flags & NETDEV_UP ? 0 : OFPPC_PORT_DOWN;
1088 opp->state = netdev_get_carrier(netdev) ? 0 : OFPPS_LINK_DOWN;
1089 netdev_get_features(netdev, &opp->curr, &opp->advertised,
1090 &opp->supported, &opp->peer);
1095 ofport_conflicts(const struct ofproto *p, const struct dpif_port *dpif_port)
1097 if (get_port(p, dpif_port->port_no)) {
1098 VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1099 dpif_port->port_no);
1101 } else if (shash_find(&p->port_by_name, dpif_port->name)) {
1102 VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1110 /* Returns true if most fields of 'a' and 'b' are equal. Differences in name,
1111 * port number, and 'config' bits other than OFPPC_PORT_DOWN are
1114 ofport_equal(const struct ofp_phy_port *a, const struct ofp_phy_port *b)
1116 BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
1117 return (!memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
1118 && a->state == b->state
1119 && !((a->config ^ b->config) & OFPPC_PORT_DOWN)
1120 && a->curr == b->curr
1121 && a->advertised == b->advertised
1122 && a->supported == b->supported
1123 && a->peer == b->peer);
1126 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
1127 * The caller must ensure that 'p' does not have a conflicting ofport (that is,
1128 * one with the same name or port number). */
1130 ofport_install(struct ofproto *p,
1131 struct netdev *netdev, const struct ofp_phy_port *opp)
1133 const char *netdev_name = netdev_get_name(netdev);
1134 struct ofport *ofport;
1136 connmgr_send_port_status(p->connmgr, opp, OFPPR_ADD);
1138 /* Create ofport. */
1139 ofport = xmalloc(sizeof *ofport);
1140 ofport->netdev = netdev;
1142 ofport->odp_port = ofp_port_to_odp_port(opp->port_no);
1145 /* Add port to 'p'. */
1146 netdev_monitor_add(p->netdev_monitor, ofport->netdev);
1147 hmap_insert(&p->ports, &ofport->hmap_node, hash_int(ofport->odp_port, 0));
1148 shash_add(&p->port_by_name, netdev_name, ofport);
1150 ofproto_sflow_add_port(p->sflow, ofport->odp_port, netdev_name);
1154 /* Removes 'ofport' from 'p' and destroys it. */
1156 ofport_remove(struct ofproto *p, struct ofport *ofport)
1158 connmgr_send_port_status(p->connmgr, &ofport->opp, OFPPR_DELETE);
1160 netdev_monitor_remove(p->netdev_monitor, ofport->netdev);
1161 hmap_remove(&p->ports, &ofport->hmap_node);
1162 shash_delete(&p->port_by_name,
1163 shash_find(&p->port_by_name,
1164 netdev_get_name(ofport->netdev)));
1166 ofproto_sflow_del_port(p->sflow, ofport->odp_port);
1169 ofport_free(ofport);
1172 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
1175 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
1177 struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
1179 ofport_remove(ofproto, port);
1183 /* Updates 'port' within 'ofproto' with the new 'netdev' and 'opp'.
1185 * Does not handle a name or port number change. The caller must implement
1186 * such a change as a delete followed by an add. */
1188 ofport_modified(struct ofproto *ofproto, struct ofport *port,
1189 struct netdev *netdev, struct ofp_phy_port *opp)
1191 memcpy(port->opp.hw_addr, opp->hw_addr, ETH_ADDR_LEN);
1192 port->opp.config = ((port->opp.config & ~OFPPC_PORT_DOWN)
1193 | (opp->config & OFPPC_PORT_DOWN));
1194 port->opp.state = opp->state;
1195 port->opp.curr = opp->curr;
1196 port->opp.advertised = opp->advertised;
1197 port->opp.supported = opp->supported;
1198 port->opp.peer = opp->peer;
1200 netdev_monitor_remove(ofproto->netdev_monitor, port->netdev);
1201 netdev_monitor_add(ofproto->netdev_monitor, netdev);
1203 netdev_close(port->netdev);
1204 port->netdev = netdev;
1206 connmgr_send_port_status(ofproto->connmgr, &port->opp, OFPPR_MODIFY);
1210 ofport_run(struct ofproto *ofproto, struct ofport *ofport)
1213 cfm_run(ofport->cfm);
1215 if (cfm_should_send_ccm(ofport->cfm)) {
1216 struct ofpbuf packet;
1219 ofpbuf_init(&packet, 0);
1220 ccm = eth_compose(&packet, eth_addr_ccm, ofport->opp.hw_addr,
1221 ETH_TYPE_CFM, sizeof *ccm);
1222 cfm_compose_ccm(ofport->cfm, ccm);
1223 ofproto_send_packet(ofproto, ofport->odp_port, &packet);
1224 ofpbuf_uninit(&packet);
1230 ofport_wait(struct ofport *ofport)
1233 cfm_wait(ofport->cfm);
1238 ofport_free(struct ofport *ofport)
1241 cfm_destroy(ofport->cfm);
1242 netdev_close(ofport->netdev);
1247 static struct ofport *
1248 get_port(const struct ofproto *ofproto, uint16_t odp_port)
1250 struct ofport *port;
1252 HMAP_FOR_EACH_IN_BUCKET (port, hmap_node,
1253 hash_int(odp_port, 0), &ofproto->ports) {
1254 if (port->odp_port == odp_port) {
1262 update_port(struct ofproto *ofproto, const char *name)
1264 struct dpif_port dpif_port;
1265 struct ofp_phy_port opp;
1266 struct netdev *netdev;
1267 struct ofport *port;
1269 COVERAGE_INC(ofproto_update_port);
1271 /* Fetch 'name''s location and properties from the datapath. */
1272 netdev = (!dpif_port_query_by_name(ofproto->dpif, name, &dpif_port)
1273 ? ofport_open(&dpif_port, &opp)
1276 port = get_port(ofproto, dpif_port.port_no);
1277 if (port && !strcmp(netdev_get_name(port->netdev), name)) {
1278 /* 'name' hasn't changed location. Any properties changed? */
1279 if (!ofport_equal(&port->opp, &opp)) {
1280 ofport_modified(ofproto, port, netdev, &opp);
1282 netdev_close(netdev);
1285 /* If 'port' is nonnull then its name differs from 'name' and thus
1286 * we should delete it. If we think there's a port named 'name'
1287 * then its port number must be wrong now so delete it too. */
1289 ofport_remove(ofproto, port);
1291 ofport_remove_with_name(ofproto, name);
1292 ofport_install(ofproto, netdev, &opp);
1295 /* Any port named 'name' is gone now. */
1296 ofport_remove_with_name(ofproto, name);
1298 dpif_port_destroy(&dpif_port);
1302 init_ports(struct ofproto *p)
1304 struct dpif_port_dump dump;
1305 struct dpif_port dpif_port;
1307 DPIF_PORT_FOR_EACH (&dpif_port, &dump, p->dpif) {
1308 if (!ofport_conflicts(p, &dpif_port)) {
1309 struct ofp_phy_port opp;
1310 struct netdev *netdev;
1312 netdev = ofport_open(&dpif_port, &opp);
1314 ofport_install(p, netdev, &opp);
1322 /* Returns true if 'rule' should be hidden from the controller.
1324 * Rules with priority higher than UINT16_MAX are set up by ofproto itself
1325 * (e.g. by in-band control) and are intentionally hidden from the
1328 rule_is_hidden(const struct rule *rule)
1330 return rule->cr.priority > UINT16_MAX;
1333 /* Creates and returns a new rule initialized as specified.
1335 * The caller is responsible for inserting the rule into the classifier (with
1336 * rule_insert()). */
1337 static struct rule *
1338 rule_create(const struct cls_rule *cls_rule,
1339 const union ofp_action *actions, size_t n_actions,
1340 uint16_t idle_timeout, uint16_t hard_timeout,
1341 ovs_be64 flow_cookie, bool send_flow_removed)
1343 struct rule *rule = xzalloc(sizeof *rule);
1344 rule->cr = *cls_rule;
1345 rule->idle_timeout = idle_timeout;
1346 rule->hard_timeout = hard_timeout;
1347 rule->flow_cookie = flow_cookie;
1348 rule->used = rule->created = time_msec();
1349 rule->send_flow_removed = send_flow_removed;
1350 list_init(&rule->facets);
1351 if (n_actions > 0) {
1352 rule->n_actions = n_actions;
1353 rule->actions = xmemdup(actions, n_actions * sizeof *actions);
1359 static struct rule *
1360 rule_from_cls_rule(const struct cls_rule *cls_rule)
1362 return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
1366 rule_free(struct rule *rule)
1368 free(rule->actions);
1372 /* Destroys 'rule' and iterates through all of its facets and revalidates them,
1373 * destroying any that no longer has a rule (which is probably all of them).
1375 * The caller must have already removed 'rule' from the classifier. */
1377 rule_destroy(struct ofproto *ofproto, struct rule *rule)
1379 struct facet *facet, *next_facet;
1380 LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
1381 facet_revalidate(ofproto, facet);
1386 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
1387 * that outputs to 'out_port' (output to OFPP_FLOOD and OFPP_ALL doesn't
1390 rule_has_out_port(const struct rule *rule, ovs_be16 out_port)
1392 const union ofp_action *oa;
1393 struct actions_iterator i;
1395 if (out_port == htons(OFPP_NONE)) {
1398 for (oa = actions_first(&i, rule->actions, rule->n_actions); oa;
1399 oa = actions_next(&i)) {
1400 if (action_outputs_to_port(oa, out_port)) {
1407 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
1408 * 'packet', which arrived on 'in_port'.
1410 * Takes ownership of 'packet'. */
1412 execute_odp_actions(struct ofproto *ofproto, const struct flow *flow,
1413 const struct nlattr *odp_actions, size_t actions_len,
1414 struct ofpbuf *packet)
1416 if (actions_len == NLA_ALIGN(NLA_HDRLEN + sizeof(uint64_t))
1417 && odp_actions->nla_type == ODP_ACTION_ATTR_CONTROLLER) {
1418 /* As an optimization, avoid a round-trip from userspace to kernel to
1419 * userspace. This also avoids possibly filling up kernel packet
1420 * buffers along the way. */
1421 struct dpif_upcall upcall;
1423 upcall.type = DPIF_UC_ACTION;
1424 upcall.packet = packet;
1427 upcall.userdata = nl_attr_get_u64(odp_actions);
1428 upcall.sample_pool = 0;
1429 upcall.actions = NULL;
1430 upcall.actions_len = 0;
1432 send_packet_in(ofproto, &upcall, flow, false);
1438 error = dpif_execute(ofproto->dpif, odp_actions, actions_len, packet);
1439 ofpbuf_delete(packet);
1444 /* Executes the actions indicated by 'facet' on 'packet' and credits 'facet''s
1445 * statistics appropriately. 'packet' must have at least sizeof(struct
1446 * ofp_packet_in) bytes of headroom.
1448 * For correct results, 'packet' must actually be in 'facet''s flow; that is,
1449 * applying flow_extract() to 'packet' would yield the same flow as
1452 * 'facet' must have accurately composed ODP actions; that is, it must not be
1453 * in need of revalidation.
1455 * Takes ownership of 'packet'. */
1457 facet_execute(struct ofproto *ofproto, struct facet *facet,
1458 struct ofpbuf *packet)
1460 struct dpif_flow_stats stats;
1462 assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
1464 flow_extract_stats(&facet->flow, packet, &stats);
1465 stats.used = time_msec();
1466 if (execute_odp_actions(ofproto, &facet->flow,
1467 facet->actions, facet->actions_len, packet)) {
1468 facet_update_stats(ofproto, facet, &stats);
1472 /* Executes the actions indicated by 'rule' on 'packet' and credits 'rule''s
1473 * statistics (or the statistics for one of its facets) appropriately.
1474 * 'packet' must have at least sizeof(struct ofp_packet_in) bytes of headroom.
1476 * 'packet' doesn't necessarily have to match 'rule'. 'rule' will be credited
1477 * with statistics for 'packet' either way.
1479 * Takes ownership of 'packet'. */
1481 rule_execute(struct ofproto *ofproto, struct rule *rule, uint16_t in_port,
1482 struct ofpbuf *packet)
1484 struct action_xlate_ctx ctx;
1485 struct ofpbuf *odp_actions;
1486 struct facet *facet;
1490 assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
1492 flow_extract(packet, 0, in_port, &flow);
1494 /* First look for a related facet. If we find one, account it to that. */
1495 facet = facet_lookup_valid(ofproto, &flow);
1496 if (facet && facet->rule == rule) {
1497 facet_execute(ofproto, facet, packet);
1501 /* Otherwise, if 'rule' is in fact the correct rule for 'packet', then
1502 * create a new facet for it and use that. */
1503 if (rule_lookup(ofproto, &flow) == rule) {
1504 facet = facet_create(ofproto, rule, &flow, packet);
1505 facet_execute(ofproto, facet, packet);
1506 facet_install(ofproto, facet, true);
1510 /* We can't account anything to a facet. If we were to try, then that
1511 * facet would have a non-matching rule, busting our invariants. */
1512 action_xlate_ctx_init(&ctx, ofproto, &flow, packet);
1513 odp_actions = xlate_actions(&ctx, rule->actions, rule->n_actions);
1514 size = packet->size;
1515 if (execute_odp_actions(ofproto, &flow, odp_actions->data,
1516 odp_actions->size, packet)) {
1517 rule->used = time_msec();
1518 rule->packet_count++;
1519 rule->byte_count += size;
1520 flow_push_stats(ofproto, rule, &flow, 1, size, rule->used);
1522 ofpbuf_delete(odp_actions);
1525 /* Inserts 'rule' into 'p''s flow table. */
1527 rule_insert(struct ofproto *p, struct rule *rule)
1529 struct rule *displaced_rule;
1531 displaced_rule = rule_from_cls_rule(classifier_insert(&p->cls, &rule->cr));
1532 if (displaced_rule) {
1533 rule_destroy(p, displaced_rule);
1535 p->need_revalidate = true;
1538 /* Creates and returns a new facet within 'ofproto' owned by 'rule', given a
1539 * 'flow' and an example 'packet' within that flow.
1541 * The caller must already have determined that no facet with an identical
1542 * 'flow' exists in 'ofproto' and that 'flow' is the best match for 'rule' in
1543 * 'ofproto''s classifier table. */
1544 static struct facet *
1545 facet_create(struct ofproto *ofproto, struct rule *rule,
1546 const struct flow *flow, const struct ofpbuf *packet)
1548 struct facet *facet;
1550 facet = xzalloc(sizeof *facet);
1551 facet->used = time_msec();
1552 hmap_insert(&ofproto->facets, &facet->hmap_node, flow_hash(flow, 0));
1553 list_push_back(&rule->facets, &facet->list_node);
1555 facet->flow = *flow;
1556 netflow_flow_init(&facet->nf_flow);
1557 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
1559 facet_make_actions(ofproto, facet, packet);
1565 facet_free(struct facet *facet)
1567 free(facet->actions);
1571 /* Remove 'rule' from 'ofproto' and free up the associated memory:
1573 * - Removes 'rule' from the classifier.
1575 * - If 'rule' has facets, revalidates them (and possibly uninstalls and
1576 * destroys them), via rule_destroy().
1579 rule_remove(struct ofproto *ofproto, struct rule *rule)
1581 COVERAGE_INC(ofproto_del_rule);
1582 ofproto->need_revalidate = true;
1583 classifier_remove(&ofproto->cls, &rule->cr);
1584 rule_destroy(ofproto, rule);
1587 /* Remove 'facet' from 'ofproto' and free up the associated memory:
1589 * - If 'facet' was installed in the datapath, uninstalls it and updates its
1590 * rule's statistics, via facet_uninstall().
1592 * - Removes 'facet' from its rule and from ofproto->facets.
1595 facet_remove(struct ofproto *ofproto, struct facet *facet)
1597 facet_uninstall(ofproto, facet);
1598 facet_flush_stats(ofproto, facet);
1599 hmap_remove(&ofproto->facets, &facet->hmap_node);
1600 list_remove(&facet->list_node);
1604 /* Composes the ODP actions for 'facet' based on its rule's actions. */
1606 facet_make_actions(struct ofproto *p, struct facet *facet,
1607 const struct ofpbuf *packet)
1609 const struct rule *rule = facet->rule;
1610 struct ofpbuf *odp_actions;
1611 struct action_xlate_ctx ctx;
1613 action_xlate_ctx_init(&ctx, p, &facet->flow, packet);
1614 odp_actions = xlate_actions(&ctx, rule->actions, rule->n_actions);
1615 facet->tags = ctx.tags;
1616 facet->may_install = ctx.may_set_up_flow;
1617 facet->nf_flow.output_iface = ctx.nf_output_iface;
1619 if (facet->actions_len != odp_actions->size
1620 || memcmp(facet->actions, odp_actions->data, odp_actions->size)) {
1621 free(facet->actions);
1622 facet->actions_len = odp_actions->size;
1623 facet->actions = xmemdup(odp_actions->data, odp_actions->size);
1626 ofpbuf_delete(odp_actions);
1629 /* Updates 'facet''s flow in the datapath setting its actions to 'actions_len'
1630 * bytes of actions in 'actions'. If 'stats' is non-null, statistics counters
1631 * in the datapath will be zeroed and 'stats' will be updated with traffic new
1632 * since 'facet' was last updated.
1634 * Returns 0 if successful, otherwise a positive errno value.*/
1636 facet_put__(struct ofproto *ofproto, struct facet *facet,
1637 const struct nlattr *actions, size_t actions_len,
1638 struct dpif_flow_stats *stats)
1640 struct odputil_keybuf keybuf;
1641 enum dpif_flow_put_flags flags;
1645 flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
1647 flags |= DPIF_FP_ZERO_STATS;
1650 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1651 odp_flow_key_from_flow(&key, &facet->flow);
1653 ret = dpif_flow_put(ofproto->dpif, flags, key.data, key.size,
1654 actions, actions_len, stats);
1657 facet_reset_dp_stats(facet, stats);
1663 /* If 'facet' is installable, inserts or re-inserts it into 'p''s datapath. If
1664 * 'zero_stats' is true, clears any existing statistics from the datapath for
1667 facet_install(struct ofproto *p, struct facet *facet, bool zero_stats)
1669 struct dpif_flow_stats stats;
1671 if (facet->may_install
1672 && !facet_put__(p, facet, facet->actions, facet->actions_len,
1673 zero_stats ? &stats : NULL)) {
1674 facet->installed = true;
1678 /* Ensures that the bytes in 'facet', plus 'extra_bytes', have been passed up
1679 * to the accounting hook function in the ofhooks structure. */
1681 facet_account(struct ofproto *ofproto,
1682 struct facet *facet, uint64_t extra_bytes)
1684 uint64_t total_bytes = facet->byte_count + extra_bytes;
1686 if (ofproto->ofhooks->account_flow_cb
1687 && total_bytes > facet->accounted_bytes)
1689 ofproto->ofhooks->account_flow_cb(
1690 &facet->flow, facet->tags, facet->actions, facet->actions_len,
1691 total_bytes - facet->accounted_bytes, ofproto->aux);
1692 facet->accounted_bytes = total_bytes;
1696 /* If 'rule' is installed in the datapath, uninstalls it. */
1698 facet_uninstall(struct ofproto *p, struct facet *facet)
1700 if (facet->installed) {
1701 struct odputil_keybuf keybuf;
1702 struct dpif_flow_stats stats;
1706 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1707 odp_flow_key_from_flow(&key, &facet->flow);
1709 error = dpif_flow_del(p->dpif, key.data, key.size, &stats);
1710 facet_reset_dp_stats(facet, &stats);
1712 facet_update_stats(p, facet, &stats);
1715 facet->installed = false;
1717 assert(facet->dp_packet_count == 0);
1718 assert(facet->dp_byte_count == 0);
1722 /* Returns true if the only action for 'facet' is to send to the controller.
1723 * (We don't report NetFlow expiration messages for such facets because they
1724 * are just part of the control logic for the network, not real traffic). */
1726 facet_is_controller_flow(struct facet *facet)
1729 && facet->rule->n_actions == 1
1730 && action_outputs_to_port(&facet->rule->actions[0],
1731 htons(OFPP_CONTROLLER)));
1734 /* Resets 'facet''s datapath statistics counters. This should be called when
1735 * 'facet''s statistics are cleared in the datapath. If 'stats' is non-null,
1736 * it should contain the statistics returned by dpif when 'facet' was reset in
1737 * the datapath. 'stats' will be modified to only included statistics new
1738 * since 'facet' was last updated. */
1740 facet_reset_dp_stats(struct facet *facet, struct dpif_flow_stats *stats)
1742 if (stats && facet->dp_packet_count < stats->n_packets
1743 && facet->dp_byte_count < stats->n_bytes) {
1744 stats->n_packets -= facet->dp_packet_count;
1745 stats->n_bytes -= facet->dp_byte_count;
1748 facet->dp_packet_count = 0;
1749 facet->dp_byte_count = 0;
1752 /* Folds all of 'facet''s statistics into its rule. Also updates the
1753 * accounting ofhook and emits a NetFlow expiration if appropriate. All of
1754 * 'facet''s statistics in the datapath should have been zeroed and folded into
1755 * its packet and byte counts before this function is called. */
1757 facet_flush_stats(struct ofproto *ofproto, struct facet *facet)
1759 assert(!facet->dp_byte_count);
1760 assert(!facet->dp_packet_count);
1762 facet_push_stats(ofproto, facet);
1763 facet_account(ofproto, facet, 0);
1765 if (ofproto->netflow && !facet_is_controller_flow(facet)) {
1766 struct ofexpired expired;
1767 expired.flow = facet->flow;
1768 expired.packet_count = facet->packet_count;
1769 expired.byte_count = facet->byte_count;
1770 expired.used = facet->used;
1771 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
1774 facet->rule->packet_count += facet->packet_count;
1775 facet->rule->byte_count += facet->byte_count;
1777 /* Reset counters to prevent double counting if 'facet' ever gets
1779 facet->packet_count = 0;
1780 facet->byte_count = 0;
1781 facet->rs_packet_count = 0;
1782 facet->rs_byte_count = 0;
1783 facet->accounted_bytes = 0;
1785 netflow_flow_clear(&facet->nf_flow);
1788 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
1789 * Returns it if found, otherwise a null pointer.
1791 * The returned facet might need revalidation; use facet_lookup_valid()
1792 * instead if that is important. */
1793 static struct facet *
1794 facet_find(struct ofproto *ofproto, const struct flow *flow)
1796 struct facet *facet;
1798 HMAP_FOR_EACH_WITH_HASH (facet, hmap_node, flow_hash(flow, 0),
1800 if (flow_equal(flow, &facet->flow)) {
1808 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
1809 * Returns it if found, otherwise a null pointer.
1811 * The returned facet is guaranteed to be valid. */
1812 static struct facet *
1813 facet_lookup_valid(struct ofproto *ofproto, const struct flow *flow)
1815 struct facet *facet = facet_find(ofproto, flow);
1817 /* The facet we found might not be valid, since we could be in need of
1818 * revalidation. If it is not valid, don't return it. */
1820 && ofproto->need_revalidate
1821 && !facet_revalidate(ofproto, facet)) {
1822 COVERAGE_INC(ofproto_invalidated);
1829 /* Re-searches 'ofproto''s classifier for a rule matching 'facet':
1831 * - If the rule found is different from 'facet''s current rule, moves
1832 * 'facet' to the new rule and recompiles its actions.
1834 * - If the rule found is the same as 'facet''s current rule, leaves 'facet'
1835 * where it is and recompiles its actions anyway.
1837 * - If there is none, destroys 'facet'.
1839 * Returns true if 'facet' still exists, false if it has been destroyed. */
1841 facet_revalidate(struct ofproto *ofproto, struct facet *facet)
1843 struct action_xlate_ctx ctx;
1844 struct ofpbuf *odp_actions;
1845 struct rule *new_rule;
1846 bool actions_changed;
1848 COVERAGE_INC(facet_revalidate);
1850 /* Determine the new rule. */
1851 new_rule = rule_lookup(ofproto, &facet->flow);
1853 /* No new rule, so delete the facet. */
1854 facet_remove(ofproto, facet);
1858 /* Calculate new ODP actions.
1860 * We do not modify any 'facet' state yet, because we might need to, e.g.,
1861 * emit a NetFlow expiration and, if so, we need to have the old state
1862 * around to properly compose it. */
1863 action_xlate_ctx_init(&ctx, ofproto, &facet->flow, NULL);
1864 odp_actions = xlate_actions(&ctx, new_rule->actions, new_rule->n_actions);
1865 actions_changed = (facet->actions_len != odp_actions->size
1866 || memcmp(facet->actions, odp_actions->data,
1867 facet->actions_len));
1869 /* If the ODP actions changed or the installability changed, then we need
1870 * to talk to the datapath. */
1871 if (actions_changed || ctx.may_set_up_flow != facet->installed) {
1872 if (ctx.may_set_up_flow) {
1873 struct dpif_flow_stats stats;
1875 facet_put__(ofproto, facet,
1876 odp_actions->data, odp_actions->size, &stats);
1877 facet_update_stats(ofproto, facet, &stats);
1879 facet_uninstall(ofproto, facet);
1882 /* The datapath flow is gone or has zeroed stats, so push stats out of
1883 * 'facet' into 'rule'. */
1884 facet_flush_stats(ofproto, facet);
1887 /* Update 'facet' now that we've taken care of all the old state. */
1888 facet->tags = ctx.tags;
1889 facet->nf_flow.output_iface = ctx.nf_output_iface;
1890 facet->may_install = ctx.may_set_up_flow;
1891 if (actions_changed) {
1892 free(facet->actions);
1893 facet->actions_len = odp_actions->size;
1894 facet->actions = xmemdup(odp_actions->data, odp_actions->size);
1896 if (facet->rule != new_rule) {
1897 COVERAGE_INC(facet_changed_rule);
1898 list_remove(&facet->list_node);
1899 list_push_back(&new_rule->facets, &facet->list_node);
1900 facet->rule = new_rule;
1901 facet->used = new_rule->created;
1902 facet->rs_used = facet->used;
1905 ofpbuf_delete(odp_actions);
1911 send_error_oh(const struct ofconn *ofconn, const struct ofp_header *oh,
1914 struct ofpbuf *buf = ofputil_encode_error_msg(error, oh);
1916 COVERAGE_INC(ofproto_error);
1917 ofconn_send_reply(ofconn, buf);
1922 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
1924 ofconn_send_reply(ofconn, make_echo_reply(oh));
1929 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
1931 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1932 struct ofp_switch_features *osf;
1934 struct ofport *port;
1936 osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
1937 osf->datapath_id = htonll(ofproto->datapath_id);
1938 osf->n_buffers = htonl(pktbuf_capacity());
1940 osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
1941 OFPC_PORT_STATS | OFPC_ARP_MATCH_IP);
1942 osf->actions = htonl((1u << OFPAT_OUTPUT) |
1943 (1u << OFPAT_SET_VLAN_VID) |
1944 (1u << OFPAT_SET_VLAN_PCP) |
1945 (1u << OFPAT_STRIP_VLAN) |
1946 (1u << OFPAT_SET_DL_SRC) |
1947 (1u << OFPAT_SET_DL_DST) |
1948 (1u << OFPAT_SET_NW_SRC) |
1949 (1u << OFPAT_SET_NW_DST) |
1950 (1u << OFPAT_SET_NW_TOS) |
1951 (1u << OFPAT_SET_TP_SRC) |
1952 (1u << OFPAT_SET_TP_DST) |
1953 (1u << OFPAT_ENQUEUE));
1955 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
1956 hton_ofp_phy_port(ofpbuf_put(buf, &port->opp, sizeof port->opp));
1959 ofconn_send_reply(ofconn, buf);
1964 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
1966 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1968 struct ofp_switch_config *osc;
1972 /* Figure out flags. */
1973 dpif_get_drop_frags(ofproto->dpif, &drop_frags);
1974 flags = drop_frags ? OFPC_FRAG_DROP : OFPC_FRAG_NORMAL;
1977 osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
1978 osc->flags = htons(flags);
1979 osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
1980 ofconn_send_reply(ofconn, buf);
1986 handle_set_config(struct ofconn *ofconn, const struct ofp_switch_config *osc)
1988 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1989 uint16_t flags = ntohs(osc->flags);
1991 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
1992 && ofconn_get_role(ofconn) != NX_ROLE_SLAVE) {
1993 switch (flags & OFPC_FRAG_MASK) {
1994 case OFPC_FRAG_NORMAL:
1995 dpif_set_drop_frags(ofproto->dpif, false);
1997 case OFPC_FRAG_DROP:
1998 dpif_set_drop_frags(ofproto->dpif, true);
2001 VLOG_WARN_RL(&rl, "requested bad fragment mode (flags=%"PRIx16")",
2007 ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
2012 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
2013 struct action_xlate_ctx *ctx);
2016 add_output_action(struct action_xlate_ctx *ctx, uint16_t port)
2018 const struct ofport *ofport = get_port(ctx->ofproto, port);
2021 if (ofport->opp.config & OFPPC_NO_FWD) {
2022 /* Forwarding disabled on port. */
2027 * We don't have an ofport record for this port, but it doesn't hurt to
2028 * allow forwarding to it anyhow. Maybe such a port will appear later
2029 * and we're pre-populating the flow table.
2033 nl_msg_put_u32(ctx->odp_actions, ODP_ACTION_ATTR_OUTPUT, port);
2034 ctx->nf_output_iface = port;
2037 static struct rule *
2038 rule_lookup(struct ofproto *ofproto, const struct flow *flow)
2040 return rule_from_cls_rule(classifier_lookup(&ofproto->cls, flow));
2044 xlate_table_action(struct action_xlate_ctx *ctx, uint16_t in_port)
2046 if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
2047 uint16_t old_in_port;
2050 /* Look up a flow with 'in_port' as the input port. Then restore the
2051 * original input port (otherwise OFPP_NORMAL and OFPP_IN_PORT will
2052 * have surprising behavior). */
2053 old_in_port = ctx->flow.in_port;
2054 ctx->flow.in_port = in_port;
2055 rule = rule_lookup(ctx->ofproto, &ctx->flow);
2056 ctx->flow.in_port = old_in_port;
2058 if (ctx->resubmit_hook) {
2059 ctx->resubmit_hook(ctx, rule);
2064 do_xlate_actions(rule->actions, rule->n_actions, ctx);
2068 static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
2070 VLOG_ERR_RL(&recurse_rl, "NXAST_RESUBMIT recursed over %d times",
2071 MAX_RESUBMIT_RECURSION);
2076 flood_packets(struct ofproto *ofproto, uint16_t odp_in_port, uint32_t mask,
2077 uint16_t *nf_output_iface, struct ofpbuf *odp_actions)
2079 struct ofport *ofport;
2081 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
2082 uint16_t odp_port = ofport->odp_port;
2083 if (odp_port != odp_in_port && !(ofport->opp.config & mask)) {
2084 nl_msg_put_u32(odp_actions, ODP_ACTION_ATTR_OUTPUT, odp_port);
2087 *nf_output_iface = NF_OUT_FLOOD;
2091 xlate_output_action__(struct action_xlate_ctx *ctx,
2092 uint16_t port, uint16_t max_len)
2095 uint16_t prev_nf_output_iface = ctx->nf_output_iface;
2097 ctx->nf_output_iface = NF_OUT_DROP;
2101 add_output_action(ctx, ctx->flow.in_port);
2104 xlate_table_action(ctx, ctx->flow.in_port);
2107 if (!ctx->ofproto->ofhooks->normal_cb(&ctx->flow, ctx->packet,
2108 ctx->odp_actions, &ctx->tags,
2109 &ctx->nf_output_iface,
2110 ctx->ofproto->aux)) {
2111 COVERAGE_INC(ofproto_uninstallable);
2112 ctx->may_set_up_flow = false;
2116 flood_packets(ctx->ofproto, ctx->flow.in_port, OFPPC_NO_FLOOD,
2117 &ctx->nf_output_iface, ctx->odp_actions);
2120 flood_packets(ctx->ofproto, ctx->flow.in_port, 0,
2121 &ctx->nf_output_iface, ctx->odp_actions);
2123 case OFPP_CONTROLLER:
2124 nl_msg_put_u64(ctx->odp_actions, ODP_ACTION_ATTR_CONTROLLER, max_len);
2127 add_output_action(ctx, ODPP_LOCAL);
2130 odp_port = ofp_port_to_odp_port(port);
2131 if (odp_port != ctx->flow.in_port) {
2132 add_output_action(ctx, odp_port);
2137 if (prev_nf_output_iface == NF_OUT_FLOOD) {
2138 ctx->nf_output_iface = NF_OUT_FLOOD;
2139 } else if (ctx->nf_output_iface == NF_OUT_DROP) {
2140 ctx->nf_output_iface = prev_nf_output_iface;
2141 } else if (prev_nf_output_iface != NF_OUT_DROP &&
2142 ctx->nf_output_iface != NF_OUT_FLOOD) {
2143 ctx->nf_output_iface = NF_OUT_MULTI;
2148 xlate_output_action(struct action_xlate_ctx *ctx,
2149 const struct ofp_action_output *oao)
2151 xlate_output_action__(ctx, ntohs(oao->port), ntohs(oao->max_len));
2154 /* If the final ODP action in 'ctx' is "pop priority", drop it, as an
2155 * optimization, because we're going to add another action that sets the
2156 * priority immediately after, or because there are no actions following the
2159 remove_pop_action(struct action_xlate_ctx *ctx)
2161 if (ctx->odp_actions->size == ctx->last_pop_priority) {
2162 ctx->odp_actions->size -= NLA_ALIGN(NLA_HDRLEN);
2163 ctx->last_pop_priority = -1;
2168 add_pop_action(struct action_xlate_ctx *ctx)
2170 if (ctx->odp_actions->size != ctx->last_pop_priority) {
2171 nl_msg_put_flag(ctx->odp_actions, ODP_ACTION_ATTR_POP_PRIORITY);
2172 ctx->last_pop_priority = ctx->odp_actions->size;
2177 xlate_enqueue_action(struct action_xlate_ctx *ctx,
2178 const struct ofp_action_enqueue *oae)
2180 uint16_t ofp_port, odp_port;
2184 error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(oae->queue_id),
2187 /* Fall back to ordinary output action. */
2188 xlate_output_action__(ctx, ntohs(oae->port), 0);
2192 /* Figure out ODP output port. */
2193 ofp_port = ntohs(oae->port);
2194 if (ofp_port != OFPP_IN_PORT) {
2195 odp_port = ofp_port_to_odp_port(ofp_port);
2197 odp_port = ctx->flow.in_port;
2200 /* Add ODP actions. */
2201 remove_pop_action(ctx);
2202 nl_msg_put_u32(ctx->odp_actions, ODP_ACTION_ATTR_SET_PRIORITY, priority);
2203 add_output_action(ctx, odp_port);
2204 add_pop_action(ctx);
2206 /* Update NetFlow output port. */
2207 if (ctx->nf_output_iface == NF_OUT_DROP) {
2208 ctx->nf_output_iface = odp_port;
2209 } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
2210 ctx->nf_output_iface = NF_OUT_MULTI;
2215 xlate_set_queue_action(struct action_xlate_ctx *ctx,
2216 const struct nx_action_set_queue *nasq)
2221 error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(nasq->queue_id),
2224 /* Couldn't translate queue to a priority, so ignore. A warning
2225 * has already been logged. */
2229 remove_pop_action(ctx);
2230 nl_msg_put_u32(ctx->odp_actions, ODP_ACTION_ATTR_SET_PRIORITY, priority);
2234 xlate_set_dl_tci(struct action_xlate_ctx *ctx)
2236 ovs_be16 tci = ctx->flow.vlan_tci;
2237 if (!(tci & htons(VLAN_CFI))) {
2238 nl_msg_put_flag(ctx->odp_actions, ODP_ACTION_ATTR_STRIP_VLAN);
2240 nl_msg_put_be16(ctx->odp_actions, ODP_ACTION_ATTR_SET_DL_TCI,
2241 tci & ~htons(VLAN_CFI));
2245 struct xlate_reg_state {
2251 save_reg_state(const struct action_xlate_ctx *ctx,
2252 struct xlate_reg_state *state)
2254 state->vlan_tci = ctx->flow.vlan_tci;
2255 state->tun_id = ctx->flow.tun_id;
2259 update_reg_state(struct action_xlate_ctx *ctx,
2260 const struct xlate_reg_state *state)
2262 if (ctx->flow.vlan_tci != state->vlan_tci) {
2263 xlate_set_dl_tci(ctx);
2265 if (ctx->flow.tun_id != state->tun_id) {
2266 nl_msg_put_be64(ctx->odp_actions,
2267 ODP_ACTION_ATTR_SET_TUNNEL, ctx->flow.tun_id);
2272 xlate_nicira_action(struct action_xlate_ctx *ctx,
2273 const struct nx_action_header *nah)
2275 const struct nx_action_resubmit *nar;
2276 const struct nx_action_set_tunnel *nast;
2277 const struct nx_action_set_queue *nasq;
2278 const struct nx_action_multipath *nam;
2279 const struct nx_action_autopath *naa;
2280 enum nx_action_subtype subtype = ntohs(nah->subtype);
2281 const struct ofhooks *ofhooks = ctx->ofproto->ofhooks;
2282 struct xlate_reg_state state;
2283 uint16_t autopath_port;
2286 assert(nah->vendor == htonl(NX_VENDOR_ID));
2288 case NXAST_RESUBMIT:
2289 nar = (const struct nx_action_resubmit *) nah;
2290 xlate_table_action(ctx, ofp_port_to_odp_port(ntohs(nar->in_port)));
2293 case NXAST_SET_TUNNEL:
2294 nast = (const struct nx_action_set_tunnel *) nah;
2295 tun_id = htonll(ntohl(nast->tun_id));
2296 nl_msg_put_be64(ctx->odp_actions, ODP_ACTION_ATTR_SET_TUNNEL, tun_id);
2297 ctx->flow.tun_id = tun_id;
2300 case NXAST_DROP_SPOOFED_ARP:
2301 if (ctx->flow.dl_type == htons(ETH_TYPE_ARP)) {
2302 nl_msg_put_flag(ctx->odp_actions,
2303 ODP_ACTION_ATTR_DROP_SPOOFED_ARP);
2307 case NXAST_SET_QUEUE:
2308 nasq = (const struct nx_action_set_queue *) nah;
2309 xlate_set_queue_action(ctx, nasq);
2312 case NXAST_POP_QUEUE:
2313 add_pop_action(ctx);
2316 case NXAST_REG_MOVE:
2317 save_reg_state(ctx, &state);
2318 nxm_execute_reg_move((const struct nx_action_reg_move *) nah,
2320 update_reg_state(ctx, &state);
2323 case NXAST_REG_LOAD:
2324 save_reg_state(ctx, &state);
2325 nxm_execute_reg_load((const struct nx_action_reg_load *) nah,
2327 update_reg_state(ctx, &state);
2331 /* Nothing to do. */
2334 case NXAST_SET_TUNNEL64:
2335 tun_id = ((const struct nx_action_set_tunnel64 *) nah)->tun_id;
2336 nl_msg_put_be64(ctx->odp_actions, ODP_ACTION_ATTR_SET_TUNNEL, tun_id);
2337 ctx->flow.tun_id = tun_id;
2340 case NXAST_MULTIPATH:
2341 nam = (const struct nx_action_multipath *) nah;
2342 multipath_execute(nam, &ctx->flow);
2345 case NXAST_AUTOPATH:
2346 naa = (const struct nx_action_autopath *) nah;
2347 autopath_port = (ofhooks->autopath_cb
2348 ? ofhooks->autopath_cb(&ctx->flow, ntohl(naa->id),
2349 &ctx->tags, ctx->ofproto->aux)
2351 autopath_execute(naa, &ctx->flow, autopath_port);
2354 /* If you add a new action here that modifies flow data, don't forget to
2355 * update the flow key in ctx->flow at the same time. */
2357 case NXAST_SNAT__OBSOLETE:
2359 VLOG_DBG_RL(&rl, "unknown Nicira action type %d", (int) subtype);
2365 do_xlate_actions(const union ofp_action *in, size_t n_in,
2366 struct action_xlate_ctx *ctx)
2368 struct actions_iterator iter;
2369 const union ofp_action *ia;
2370 const struct ofport *port;
2372 port = get_port(ctx->ofproto, ctx->flow.in_port);
2373 if (port && port->opp.config & (OFPPC_NO_RECV | OFPPC_NO_RECV_STP) &&
2374 port->opp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
2375 ? OFPPC_NO_RECV_STP : OFPPC_NO_RECV)) {
2376 /* Drop this flow. */
2380 for (ia = actions_first(&iter, in, n_in); ia; ia = actions_next(&iter)) {
2381 enum ofp_action_type type = ntohs(ia->type);
2382 const struct ofp_action_dl_addr *oada;
2386 xlate_output_action(ctx, &ia->output);
2389 case OFPAT_SET_VLAN_VID:
2390 ctx->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
2391 ctx->flow.vlan_tci |= ia->vlan_vid.vlan_vid | htons(VLAN_CFI);
2392 xlate_set_dl_tci(ctx);
2395 case OFPAT_SET_VLAN_PCP:
2396 ctx->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
2397 ctx->flow.vlan_tci |= htons(
2398 (ia->vlan_pcp.vlan_pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
2399 xlate_set_dl_tci(ctx);
2402 case OFPAT_STRIP_VLAN:
2403 ctx->flow.vlan_tci = htons(0);
2404 xlate_set_dl_tci(ctx);
2407 case OFPAT_SET_DL_SRC:
2408 oada = ((struct ofp_action_dl_addr *) ia);
2409 nl_msg_put_unspec(ctx->odp_actions, ODP_ACTION_ATTR_SET_DL_SRC,
2410 oada->dl_addr, ETH_ADDR_LEN);
2411 memcpy(ctx->flow.dl_src, oada->dl_addr, ETH_ADDR_LEN);
2414 case OFPAT_SET_DL_DST:
2415 oada = ((struct ofp_action_dl_addr *) ia);
2416 nl_msg_put_unspec(ctx->odp_actions, ODP_ACTION_ATTR_SET_DL_DST,
2417 oada->dl_addr, ETH_ADDR_LEN);
2418 memcpy(ctx->flow.dl_dst, oada->dl_addr, ETH_ADDR_LEN);
2421 case OFPAT_SET_NW_SRC:
2422 nl_msg_put_be32(ctx->odp_actions, ODP_ACTION_ATTR_SET_NW_SRC,
2423 ia->nw_addr.nw_addr);
2424 ctx->flow.nw_src = ia->nw_addr.nw_addr;
2427 case OFPAT_SET_NW_DST:
2428 nl_msg_put_be32(ctx->odp_actions, ODP_ACTION_ATTR_SET_NW_DST,
2429 ia->nw_addr.nw_addr);
2430 ctx->flow.nw_dst = ia->nw_addr.nw_addr;
2433 case OFPAT_SET_NW_TOS:
2434 nl_msg_put_u8(ctx->odp_actions, ODP_ACTION_ATTR_SET_NW_TOS,
2436 ctx->flow.nw_tos = ia->nw_tos.nw_tos;
2439 case OFPAT_SET_TP_SRC:
2440 nl_msg_put_be16(ctx->odp_actions, ODP_ACTION_ATTR_SET_TP_SRC,
2441 ia->tp_port.tp_port);
2442 ctx->flow.tp_src = ia->tp_port.tp_port;
2445 case OFPAT_SET_TP_DST:
2446 nl_msg_put_be16(ctx->odp_actions, ODP_ACTION_ATTR_SET_TP_DST,
2447 ia->tp_port.tp_port);
2448 ctx->flow.tp_dst = ia->tp_port.tp_port;
2452 xlate_nicira_action(ctx, (const struct nx_action_header *) ia);
2456 xlate_enqueue_action(ctx, (const struct ofp_action_enqueue *) ia);
2460 VLOG_DBG_RL(&rl, "unknown action type %d", (int) type);
2467 action_xlate_ctx_init(struct action_xlate_ctx *ctx,
2468 struct ofproto *ofproto, const struct flow *flow,
2469 const struct ofpbuf *packet)
2471 ctx->ofproto = ofproto;
2473 ctx->packet = packet;
2474 ctx->resubmit_hook = NULL;
2475 ctx->check_special = true;
2479 ofproto_process_cfm(struct ofproto *ofproto, const struct flow *flow,
2480 const struct ofpbuf *packet)
2482 struct ofport *ofport;
2484 ofport = get_port(ofproto, flow->in_port);
2485 if (ofport && ofport->cfm) {
2486 cfm_process_heartbeat(ofport->cfm, packet);
2490 static struct ofpbuf *
2491 xlate_actions(struct action_xlate_ctx *ctx,
2492 const union ofp_action *in, size_t n_in)
2494 COVERAGE_INC(ofproto_ofp2odp);
2496 ctx->odp_actions = ofpbuf_new(512);
2498 ctx->may_set_up_flow = true;
2499 ctx->nf_output_iface = NF_OUT_DROP;
2501 ctx->last_pop_priority = -1;
2503 if (ctx->check_special && cfm_should_process_flow(&ctx->flow)) {
2505 ofproto_process_cfm(ctx->ofproto, &ctx->flow, ctx->packet);
2507 ctx->may_set_up_flow = false;
2508 } else if (ctx->check_special
2509 && ctx->ofproto->ofhooks->special_cb
2510 && !ctx->ofproto->ofhooks->special_cb(&ctx->flow, ctx->packet,
2511 ctx->ofproto->aux)) {
2512 ctx->may_set_up_flow = false;
2514 do_xlate_actions(in, n_in, ctx);
2517 remove_pop_action(ctx);
2519 /* Check with in-band control to see if we're allowed to set up this
2521 if (!connmgr_may_set_up_flow(ctx->ofproto->connmgr, &ctx->flow,
2522 ctx->odp_actions->data,
2523 ctx->odp_actions->size)) {
2524 ctx->may_set_up_flow = false;
2527 return ctx->odp_actions;
2530 /* Checks whether 'ofconn' is a slave controller. If so, returns an OpenFlow
2531 * error message code (composed with ofp_mkerr()) for the caller to propagate
2532 * upward. Otherwise, returns 0.
2534 * The log message mentions 'msg_type'. */
2536 reject_slave_controller(struct ofconn *ofconn, const const char *msg_type)
2538 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
2539 && ofconn_get_role(ofconn) == NX_ROLE_SLAVE) {
2540 static struct vlog_rate_limit perm_rl = VLOG_RATE_LIMIT_INIT(1, 5);
2541 VLOG_WARN_RL(&perm_rl, "rejecting %s message from slave controller",
2544 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2551 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
2553 struct ofproto *p = ofconn_get_ofproto(ofconn);
2554 struct ofp_packet_out *opo;
2555 struct ofpbuf payload, *buffer;
2556 union ofp_action *ofp_actions;
2557 struct action_xlate_ctx ctx;
2558 struct ofpbuf *odp_actions;
2559 struct ofpbuf request;
2561 size_t n_ofp_actions;
2565 COVERAGE_INC(ofproto_packet_out);
2567 error = reject_slave_controller(ofconn, "OFPT_PACKET_OUT");
2572 /* Get ofp_packet_out. */
2573 ofpbuf_use_const(&request, oh, ntohs(oh->length));
2574 opo = ofpbuf_pull(&request, offsetof(struct ofp_packet_out, actions));
2577 error = ofputil_pull_actions(&request, ntohs(opo->actions_len),
2578 &ofp_actions, &n_ofp_actions);
2584 if (opo->buffer_id != htonl(UINT32_MAX)) {
2585 error = ofconn_pktbuf_retrieve(ofconn, ntohl(opo->buffer_id),
2587 if (error || !buffer) {
2596 /* Extract flow, check actions. */
2597 flow_extract(&payload, 0, ofp_port_to_odp_port(ntohs(opo->in_port)),
2599 error = validate_actions(ofp_actions, n_ofp_actions, &flow, p->max_ports);
2605 action_xlate_ctx_init(&ctx, p, &flow, &payload);
2606 odp_actions = xlate_actions(&ctx, ofp_actions, n_ofp_actions);
2607 dpif_execute(p->dpif, odp_actions->data, odp_actions->size, &payload);
2608 ofpbuf_delete(odp_actions);
2611 ofpbuf_delete(buffer);
2616 update_port_config(struct ofproto *p, struct ofport *port,
2617 uint32_t config, uint32_t mask)
2619 mask &= config ^ port->opp.config;
2620 if (mask & OFPPC_PORT_DOWN) {
2621 if (config & OFPPC_PORT_DOWN) {
2622 netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
2624 netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
2627 #define REVALIDATE_BITS (OFPPC_NO_RECV | OFPPC_NO_RECV_STP | \
2628 OFPPC_NO_FWD | OFPPC_NO_FLOOD)
2629 if (mask & REVALIDATE_BITS) {
2630 COVERAGE_INC(ofproto_costly_flags);
2631 port->opp.config ^= mask & REVALIDATE_BITS;
2632 p->need_revalidate = true;
2634 #undef REVALIDATE_BITS
2635 if (mask & OFPPC_NO_PACKET_IN) {
2636 port->opp.config ^= OFPPC_NO_PACKET_IN;
2641 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
2643 struct ofproto *p = ofconn_get_ofproto(ofconn);
2644 const struct ofp_port_mod *opm = (const struct ofp_port_mod *) oh;
2645 struct ofport *port;
2648 error = reject_slave_controller(ofconn, "OFPT_PORT_MOD");
2653 port = get_port(p, ofp_port_to_odp_port(ntohs(opm->port_no)));
2655 return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
2656 } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
2657 return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
2659 update_port_config(p, port, ntohl(opm->config), ntohl(opm->mask));
2660 if (opm->advertise) {
2661 netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
2667 static struct ofpbuf *
2668 make_ofp_stats_reply(ovs_be32 xid, ovs_be16 type, size_t body_len)
2670 struct ofp_stats_reply *osr;
2673 msg = ofpbuf_new(MIN(sizeof *osr + body_len, UINT16_MAX));
2674 osr = put_openflow_xid(sizeof *osr, OFPT_STATS_REPLY, xid, msg);
2676 osr->flags = htons(0);
2680 static struct ofpbuf *
2681 start_ofp_stats_reply(const struct ofp_header *request, size_t body_len)
2683 const struct ofp_stats_request *osr
2684 = (const struct ofp_stats_request *) request;
2685 return make_ofp_stats_reply(osr->header.xid, osr->type, body_len);
2689 append_ofp_stats_reply(size_t nbytes, struct ofconn *ofconn,
2690 struct ofpbuf **msgp)
2692 struct ofpbuf *msg = *msgp;
2693 assert(nbytes <= UINT16_MAX - sizeof(struct ofp_stats_reply));
2694 if (nbytes + msg->size > UINT16_MAX) {
2695 struct ofp_stats_reply *reply = msg->data;
2696 reply->flags = htons(OFPSF_REPLY_MORE);
2697 *msgp = make_ofp_stats_reply(reply->header.xid, reply->type, nbytes);
2698 ofconn_send_reply(ofconn, msg);
2700 return ofpbuf_put_uninit(*msgp, nbytes);
2703 static struct ofpbuf *
2704 make_nxstats_reply(ovs_be32 xid, ovs_be32 subtype, size_t body_len)
2706 struct nicira_stats_msg *nsm;
2709 msg = ofpbuf_new(MIN(sizeof *nsm + body_len, UINT16_MAX));
2710 nsm = put_openflow_xid(sizeof *nsm, OFPT_STATS_REPLY, xid, msg);
2711 nsm->type = htons(OFPST_VENDOR);
2712 nsm->flags = htons(0);
2713 nsm->vendor = htonl(NX_VENDOR_ID);
2714 nsm->subtype = subtype;
2718 static struct ofpbuf *
2719 start_nxstats_reply(const struct nicira_stats_msg *request, size_t body_len)
2721 return make_nxstats_reply(request->header.xid, request->subtype, body_len);
2725 append_nxstats_reply(size_t nbytes, struct ofconn *ofconn,
2726 struct ofpbuf **msgp)
2728 struct ofpbuf *msg = *msgp;
2729 assert(nbytes <= UINT16_MAX - sizeof(struct nicira_stats_msg));
2730 if (nbytes + msg->size > UINT16_MAX) {
2731 struct nicira_stats_msg *reply = msg->data;
2732 reply->flags = htons(OFPSF_REPLY_MORE);
2733 *msgp = make_nxstats_reply(reply->header.xid, reply->subtype, nbytes);
2734 ofconn_send_reply(ofconn, msg);
2736 ofpbuf_prealloc_tailroom(*msgp, nbytes);
2740 handle_desc_stats_request(struct ofconn *ofconn,
2741 const struct ofp_header *request)
2743 struct ofproto *p = ofconn_get_ofproto(ofconn);
2744 struct ofp_desc_stats *ods;
2747 msg = start_ofp_stats_reply(request, sizeof *ods);
2748 ods = append_ofp_stats_reply(sizeof *ods, ofconn, &msg);
2749 memset(ods, 0, sizeof *ods);
2750 ovs_strlcpy(ods->mfr_desc, p->mfr_desc, sizeof ods->mfr_desc);
2751 ovs_strlcpy(ods->hw_desc, p->hw_desc, sizeof ods->hw_desc);
2752 ovs_strlcpy(ods->sw_desc, p->sw_desc, sizeof ods->sw_desc);
2753 ovs_strlcpy(ods->serial_num, p->serial_desc, sizeof ods->serial_num);
2754 ovs_strlcpy(ods->dp_desc, p->dp_desc, sizeof ods->dp_desc);
2755 ofconn_send_reply(ofconn, msg);
2761 handle_table_stats_request(struct ofconn *ofconn,
2762 const struct ofp_header *request)
2764 struct ofproto *p = ofconn_get_ofproto(ofconn);
2765 struct ofp_table_stats *ots;
2768 msg = start_ofp_stats_reply(request, sizeof *ots * 2);
2770 /* Classifier table. */
2771 ots = append_ofp_stats_reply(sizeof *ots, ofconn, &msg);
2772 memset(ots, 0, sizeof *ots);
2773 strcpy(ots->name, "classifier");
2774 ots->wildcards = htonl(OFPFW_ALL);
2775 ots->max_entries = htonl(1024 * 1024); /* An arbitrary big number. */
2776 ots->active_count = htonl(classifier_count(&p->cls));
2777 put_32aligned_be64(&ots->lookup_count, htonll(0)); /* XXX */
2778 put_32aligned_be64(&ots->matched_count, htonll(0)); /* XXX */
2780 ofconn_send_reply(ofconn, msg);
2785 append_port_stat(struct ofport *port, struct ofconn *ofconn,
2786 struct ofpbuf **msgp)
2788 struct netdev_stats stats;
2789 struct ofp_port_stats *ops;
2791 /* Intentionally ignore return value, since errors will set
2792 * 'stats' to all-1s, which is correct for OpenFlow, and
2793 * netdev_get_stats() will log errors. */
2794 netdev_get_stats(port->netdev, &stats);
2796 ops = append_ofp_stats_reply(sizeof *ops, ofconn, msgp);
2797 ops->port_no = htons(port->opp.port_no);
2798 memset(ops->pad, 0, sizeof ops->pad);
2799 put_32aligned_be64(&ops->rx_packets, htonll(stats.rx_packets));
2800 put_32aligned_be64(&ops->tx_packets, htonll(stats.tx_packets));
2801 put_32aligned_be64(&ops->rx_bytes, htonll(stats.rx_bytes));
2802 put_32aligned_be64(&ops->tx_bytes, htonll(stats.tx_bytes));
2803 put_32aligned_be64(&ops->rx_dropped, htonll(stats.rx_dropped));
2804 put_32aligned_be64(&ops->tx_dropped, htonll(stats.tx_dropped));
2805 put_32aligned_be64(&ops->rx_errors, htonll(stats.rx_errors));
2806 put_32aligned_be64(&ops->tx_errors, htonll(stats.tx_errors));
2807 put_32aligned_be64(&ops->rx_frame_err, htonll(stats.rx_frame_errors));
2808 put_32aligned_be64(&ops->rx_over_err, htonll(stats.rx_over_errors));
2809 put_32aligned_be64(&ops->rx_crc_err, htonll(stats.rx_crc_errors));
2810 put_32aligned_be64(&ops->collisions, htonll(stats.collisions));
2814 handle_port_stats_request(struct ofconn *ofconn, const struct ofp_header *oh)
2816 struct ofproto *p = ofconn_get_ofproto(ofconn);
2817 const struct ofp_port_stats_request *psr = ofputil_stats_body(oh);
2818 struct ofp_port_stats *ops;
2820 struct ofport *port;
2822 msg = start_ofp_stats_reply(oh, sizeof *ops * 16);
2823 if (psr->port_no != htons(OFPP_NONE)) {
2824 port = get_port(p, ofp_port_to_odp_port(ntohs(psr->port_no)));
2826 append_port_stat(port, ofconn, &msg);
2829 HMAP_FOR_EACH (port, hmap_node, &p->ports) {
2830 append_port_stat(port, ofconn, &msg);
2834 ofconn_send_reply(ofconn, msg);
2839 calc_flow_duration__(long long int start, uint32_t *sec, uint32_t *nsec)
2841 long long int msecs = time_msec() - start;
2842 *sec = msecs / 1000;
2843 *nsec = (msecs % 1000) * (1000 * 1000);
2847 calc_flow_duration(long long int start, ovs_be32 *sec_be, ovs_be32 *nsec_be)
2851 calc_flow_duration__(start, &sec, &nsec);
2852 *sec_be = htonl(sec);
2853 *nsec_be = htonl(nsec);
2857 put_ofp_flow_stats(struct ofconn *ofconn, struct rule *rule,
2858 ovs_be16 out_port, struct ofpbuf **replyp)
2860 struct ofp_flow_stats *ofs;
2861 uint64_t packet_count, byte_count;
2862 size_t act_len, len;
2864 if (rule_is_hidden(rule) || !rule_has_out_port(rule, out_port)) {
2868 act_len = sizeof *rule->actions * rule->n_actions;
2869 len = offsetof(struct ofp_flow_stats, actions) + act_len;
2871 rule_get_stats(rule, &packet_count, &byte_count);
2873 ofs = append_ofp_stats_reply(len, ofconn, replyp);
2874 ofs->length = htons(len);
2877 ofputil_cls_rule_to_match(&rule->cr, &ofs->match);
2878 put_32aligned_be64(&ofs->cookie, rule->flow_cookie);
2879 calc_flow_duration(rule->created, &ofs->duration_sec, &ofs->duration_nsec);
2880 ofs->priority = htons(rule->cr.priority);
2881 ofs->idle_timeout = htons(rule->idle_timeout);
2882 ofs->hard_timeout = htons(rule->hard_timeout);
2883 memset(ofs->pad2, 0, sizeof ofs->pad2);
2884 put_32aligned_be64(&ofs->packet_count, htonll(packet_count));
2885 put_32aligned_be64(&ofs->byte_count, htonll(byte_count));
2886 if (rule->n_actions > 0) {
2887 memcpy(ofs->actions, rule->actions, act_len);
2892 is_valid_table(uint8_t table_id)
2894 if (table_id == 0 || table_id == 0xff) {
2897 /* It would probably be better to reply with an error but there doesn't
2898 * seem to be any appropriate value, so that might just be
2900 VLOG_WARN_RL(&rl, "controller asked for invalid table %"PRIu8,
2907 handle_flow_stats_request(struct ofconn *ofconn, const struct ofp_header *oh)
2909 const struct ofp_flow_stats_request *fsr = ofputil_stats_body(oh);
2910 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2911 struct ofpbuf *reply;
2913 COVERAGE_INC(ofproto_flows_req);
2914 reply = start_ofp_stats_reply(oh, 1024);
2915 if (is_valid_table(fsr->table_id)) {
2916 struct cls_cursor cursor;
2917 struct cls_rule target;
2920 ofputil_cls_rule_from_match(&fsr->match, 0, &target);
2921 cls_cursor_init(&cursor, &ofproto->cls, &target);
2922 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
2923 put_ofp_flow_stats(ofconn, rule, fsr->out_port, &reply);
2926 ofconn_send_reply(ofconn, reply);
2932 put_nx_flow_stats(struct ofconn *ofconn, struct rule *rule,
2933 ovs_be16 out_port, struct ofpbuf **replyp)
2935 struct nx_flow_stats *nfs;
2936 uint64_t packet_count, byte_count;
2937 size_t act_len, start_len;
2938 struct ofpbuf *reply;
2940 if (rule_is_hidden(rule) || !rule_has_out_port(rule, out_port)) {
2944 rule_get_stats(rule, &packet_count, &byte_count);
2946 act_len = sizeof *rule->actions * rule->n_actions;
2948 append_nxstats_reply(sizeof *nfs + NXM_MAX_LEN + act_len, ofconn, replyp);
2949 start_len = (*replyp)->size;
2952 nfs = ofpbuf_put_uninit(reply, sizeof *nfs);
2955 calc_flow_duration(rule->created, &nfs->duration_sec, &nfs->duration_nsec);
2956 nfs->cookie = rule->flow_cookie;
2957 nfs->priority = htons(rule->cr.priority);
2958 nfs->idle_timeout = htons(rule->idle_timeout);
2959 nfs->hard_timeout = htons(rule->hard_timeout);
2960 nfs->match_len = htons(nx_put_match(reply, &rule->cr));
2961 memset(nfs->pad2, 0, sizeof nfs->pad2);
2962 nfs->packet_count = htonll(packet_count);
2963 nfs->byte_count = htonll(byte_count);
2964 if (rule->n_actions > 0) {
2965 ofpbuf_put(reply, rule->actions, act_len);
2967 nfs->length = htons(reply->size - start_len);
2971 handle_nxst_flow(struct ofconn *ofconn, const struct ofp_header *oh)
2973 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2974 struct nx_flow_stats_request *nfsr;
2975 struct cls_rule target;
2976 struct ofpbuf *reply;
2980 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2982 /* Dissect the message. */
2983 nfsr = ofpbuf_pull(&b, sizeof *nfsr);
2984 error = nx_pull_match(&b, ntohs(nfsr->match_len), 0, &target);
2989 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
2992 COVERAGE_INC(ofproto_flows_req);
2993 reply = start_nxstats_reply(&nfsr->nsm, 1024);
2994 if (is_valid_table(nfsr->table_id)) {
2995 struct cls_cursor cursor;
2998 cls_cursor_init(&cursor, &ofproto->cls, &target);
2999 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3000 put_nx_flow_stats(ofconn, rule, nfsr->out_port, &reply);
3003 ofconn_send_reply(ofconn, reply);
3009 flow_stats_ds(struct rule *rule, struct ds *results)
3011 uint64_t packet_count, byte_count;
3012 size_t act_len = sizeof *rule->actions * rule->n_actions;
3014 rule_get_stats(rule, &packet_count, &byte_count);
3016 ds_put_format(results, "duration=%llds, ",
3017 (time_msec() - rule->created) / 1000);
3018 ds_put_format(results, "idle=%.3fs, ", (time_msec() - rule->used) / 1000.0);
3019 ds_put_format(results, "priority=%u, ", rule->cr.priority);
3020 ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
3021 ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
3022 cls_rule_format(&rule->cr, results);
3023 ds_put_char(results, ',');
3025 ofp_print_actions(results, &rule->actions->header, act_len);
3027 ds_put_cstr(results, "drop");
3029 ds_put_cstr(results, "\n");
3032 /* Adds a pretty-printed description of all flows to 'results', including
3033 * hidden flows (e.g., set up by in-band control). */
3035 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3037 struct cls_cursor cursor;
3040 cls_cursor_init(&cursor, &p->cls, NULL);
3041 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3042 flow_stats_ds(rule, results);
3047 query_aggregate_stats(struct ofproto *ofproto, struct cls_rule *target,
3048 ovs_be16 out_port, uint8_t table_id,
3049 struct ofp_aggregate_stats_reply *oasr)
3051 uint64_t total_packets = 0;
3052 uint64_t total_bytes = 0;
3055 COVERAGE_INC(ofproto_agg_request);
3057 if (is_valid_table(table_id)) {
3058 struct cls_cursor cursor;
3061 cls_cursor_init(&cursor, &ofproto->cls, target);
3062 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3063 if (!rule_is_hidden(rule) && rule_has_out_port(rule, out_port)) {
3064 uint64_t packet_count;
3065 uint64_t byte_count;
3067 rule_get_stats(rule, &packet_count, &byte_count);
3069 total_packets += packet_count;
3070 total_bytes += byte_count;
3076 oasr->flow_count = htonl(n_flows);
3077 put_32aligned_be64(&oasr->packet_count, htonll(total_packets));
3078 put_32aligned_be64(&oasr->byte_count, htonll(total_bytes));
3079 memset(oasr->pad, 0, sizeof oasr->pad);
3083 handle_aggregate_stats_request(struct ofconn *ofconn,
3084 const struct ofp_header *oh)
3086 const struct ofp_aggregate_stats_request *request = ofputil_stats_body(oh);
3087 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3088 struct ofp_aggregate_stats_reply *reply;
3089 struct cls_rule target;
3092 ofputil_cls_rule_from_match(&request->match, 0, &target);
3094 msg = start_ofp_stats_reply(oh, sizeof *reply);
3095 reply = append_ofp_stats_reply(sizeof *reply, ofconn, &msg);
3096 query_aggregate_stats(ofproto, &target, request->out_port,
3097 request->table_id, reply);
3098 ofconn_send_reply(ofconn, msg);
3103 handle_nxst_aggregate(struct ofconn *ofconn, const struct ofp_header *oh)
3105 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3106 struct nx_aggregate_stats_request *request;
3107 struct ofp_aggregate_stats_reply *reply;
3108 struct cls_rule target;
3113 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3115 /* Dissect the message. */
3116 request = ofpbuf_pull(&b, sizeof *request);
3117 error = nx_pull_match(&b, ntohs(request->match_len), 0, &target);
3122 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3126 COVERAGE_INC(ofproto_flows_req);
3127 buf = start_nxstats_reply(&request->nsm, sizeof *reply);
3128 reply = ofpbuf_put_uninit(buf, sizeof *reply);
3129 query_aggregate_stats(ofproto, &target, request->out_port,
3130 request->table_id, reply);
3131 ofconn_send_reply(ofconn, buf);
3136 struct queue_stats_cbdata {
3137 struct ofconn *ofconn;
3138 struct ofport *ofport;
3143 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
3144 const struct netdev_queue_stats *stats)
3146 struct ofp_queue_stats *reply;
3148 reply = append_ofp_stats_reply(sizeof *reply, cbdata->ofconn, &cbdata->msg);
3149 reply->port_no = htons(cbdata->ofport->opp.port_no);
3150 memset(reply->pad, 0, sizeof reply->pad);
3151 reply->queue_id = htonl(queue_id);
3152 put_32aligned_be64(&reply->tx_bytes, htonll(stats->tx_bytes));
3153 put_32aligned_be64(&reply->tx_packets, htonll(stats->tx_packets));
3154 put_32aligned_be64(&reply->tx_errors, htonll(stats->tx_errors));
3158 handle_queue_stats_dump_cb(uint32_t queue_id,
3159 struct netdev_queue_stats *stats,
3162 struct queue_stats_cbdata *cbdata = cbdata_;
3164 put_queue_stats(cbdata, queue_id, stats);
3168 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
3169 struct queue_stats_cbdata *cbdata)
3171 cbdata->ofport = port;
3172 if (queue_id == OFPQ_ALL) {
3173 netdev_dump_queue_stats(port->netdev,
3174 handle_queue_stats_dump_cb, cbdata);
3176 struct netdev_queue_stats stats;
3178 if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
3179 put_queue_stats(cbdata, queue_id, &stats);
3185 handle_queue_stats_request(struct ofconn *ofconn, const struct ofp_header *oh)
3187 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3188 const struct ofp_queue_stats_request *qsr;
3189 struct queue_stats_cbdata cbdata;
3190 struct ofport *port;
3191 unsigned int port_no;
3194 qsr = ofputil_stats_body(oh);
3196 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3199 COVERAGE_INC(ofproto_queue_req);
3201 cbdata.ofconn = ofconn;
3202 cbdata.msg = start_ofp_stats_reply(oh, 128);
3204 port_no = ntohs(qsr->port_no);
3205 queue_id = ntohl(qsr->queue_id);
3206 if (port_no == OFPP_ALL) {
3207 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3208 handle_queue_stats_for_port(port, queue_id, &cbdata);
3210 } else if (port_no < ofproto->max_ports) {
3211 port = get_port(ofproto, ofp_port_to_odp_port(port_no));
3213 handle_queue_stats_for_port(port, queue_id, &cbdata);
3216 ofpbuf_delete(cbdata.msg);
3217 return ofp_mkerr(OFPET_QUEUE_OP_FAILED, OFPQOFC_BAD_PORT);
3219 ofconn_send_reply(ofconn, cbdata.msg);
3224 /* Updates 'facet''s used time. Caller is responsible for calling
3225 * facet_push_stats() to update the flows which 'facet' resubmits into. */
3227 facet_update_time(struct ofproto *ofproto, struct facet *facet,
3230 if (used > facet->used) {
3232 if (used > facet->rule->used) {
3233 facet->rule->used = used;
3235 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, used);
3239 /* Folds the statistics from 'stats' into the counters in 'facet'.
3241 * Because of the meaning of a facet's counters, it only makes sense to do this
3242 * if 'stats' are not tracked in the datapath, that is, if 'stats' represents a
3243 * packet that was sent by hand or if it represents statistics that have been
3244 * cleared out of the datapath. */
3246 facet_update_stats(struct ofproto *ofproto, struct facet *facet,
3247 const struct dpif_flow_stats *stats)
3249 if (stats->n_packets || stats->used > facet->used) {
3250 facet_update_time(ofproto, facet, stats->used);
3251 facet->packet_count += stats->n_packets;
3252 facet->byte_count += stats->n_bytes;
3253 facet_push_stats(ofproto, facet);
3254 netflow_flow_update_flags(&facet->nf_flow, stats->tcp_flags);
3259 facet_push_stats(struct ofproto *ofproto, struct facet *facet)
3261 uint64_t rs_packets, rs_bytes;
3263 assert(facet->packet_count >= facet->rs_packet_count);
3264 assert(facet->byte_count >= facet->rs_byte_count);
3265 assert(facet->used >= facet->rs_used);
3267 rs_packets = facet->packet_count - facet->rs_packet_count;
3268 rs_bytes = facet->byte_count - facet->rs_byte_count;
3270 if (rs_packets || rs_bytes || facet->used > facet->rs_used) {
3271 facet->rs_packet_count = facet->packet_count;
3272 facet->rs_byte_count = facet->byte_count;
3273 facet->rs_used = facet->used;
3275 flow_push_stats(ofproto, facet->rule, &facet->flow,
3276 rs_packets, rs_bytes, facet->used);
3280 struct ofproto_push {
3281 struct action_xlate_ctx ctx;
3288 push_resubmit(struct action_xlate_ctx *ctx, struct rule *rule)
3290 struct ofproto_push *push = CONTAINER_OF(ctx, struct ofproto_push, ctx);
3293 rule->packet_count += push->packets;
3294 rule->byte_count += push->bytes;
3295 rule->used = MAX(push->used, rule->used);
3299 /* Pushes flow statistics to the rules which 'flow' resubmits into given
3300 * 'rule''s actions. */
3302 flow_push_stats(struct ofproto *ofproto, const struct rule *rule,
3303 struct flow *flow, uint64_t packets, uint64_t bytes,
3306 struct ofproto_push push;
3308 push.packets = packets;
3312 action_xlate_ctx_init(&push.ctx, ofproto, flow, NULL);
3313 push.ctx.resubmit_hook = push_resubmit;
3314 ofpbuf_delete(xlate_actions(&push.ctx, rule->actions, rule->n_actions));
3317 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
3318 * in which no matching flow already exists in the flow table.
3320 * Adds the flow specified by 'ofm', which is followed by 'n_actions'
3321 * ofp_actions, to the ofproto's flow table. Returns 0 on success or an
3322 * OpenFlow error code as encoded by ofp_mkerr() on failure.
3324 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3327 add_flow(struct ofconn *ofconn, struct flow_mod *fm)
3329 struct ofproto *p = ofconn_get_ofproto(ofconn);
3330 struct ofpbuf *packet;
3335 if (fm->flags & OFPFF_CHECK_OVERLAP
3336 && classifier_rule_overlaps(&p->cls, &fm->cr)) {
3337 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP);
3341 if (fm->buffer_id != UINT32_MAX) {
3342 error = ofconn_pktbuf_retrieve(ofconn, fm->buffer_id,
3346 in_port = UINT16_MAX;
3349 rule = rule_create(&fm->cr, fm->actions, fm->n_actions,
3350 fm->idle_timeout, fm->hard_timeout, fm->cookie,
3351 fm->flags & OFPFF_SEND_FLOW_REM);
3352 rule_insert(p, rule);
3354 rule_execute(p, rule, in_port, packet);
3359 static struct rule *
3360 find_flow_strict(struct ofproto *p, const struct flow_mod *fm)
3362 return rule_from_cls_rule(classifier_find_rule_exactly(&p->cls, &fm->cr));
3366 send_buffered_packet(struct ofconn *ofconn,
3367 struct rule *rule, uint32_t buffer_id)
3369 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3370 struct ofpbuf *packet;
3374 if (buffer_id == UINT32_MAX) {
3378 error = ofconn_pktbuf_retrieve(ofconn, buffer_id, &packet, &in_port);
3383 rule_execute(ofproto, rule, in_port, packet);
3388 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
3390 struct modify_flows_cbdata {
3391 struct ofproto *ofproto;
3392 const struct flow_mod *fm;
3396 static int modify_flow(struct ofproto *, const struct flow_mod *,
3399 /* Implements OFPFC_MODIFY. Returns 0 on success or an OpenFlow error code as
3400 * encoded by ofp_mkerr() on failure.
3402 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3405 modify_flows_loose(struct ofconn *ofconn, struct flow_mod *fm)
3407 struct ofproto *p = ofconn_get_ofproto(ofconn);
3408 struct rule *match = NULL;
3409 struct cls_cursor cursor;
3412 cls_cursor_init(&cursor, &p->cls, &fm->cr);
3413 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3414 if (!rule_is_hidden(rule)) {
3416 modify_flow(p, fm, rule);
3421 /* This credits the packet to whichever flow happened to match last.
3422 * That's weird. Maybe we should do a lookup for the flow that
3423 * actually matches the packet? Who knows. */
3424 send_buffered_packet(ofconn, match, fm->buffer_id);
3427 return add_flow(ofconn, fm);
3431 /* Implements OFPFC_MODIFY_STRICT. Returns 0 on success or an OpenFlow error
3432 * code as encoded by ofp_mkerr() on failure.
3434 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3437 modify_flow_strict(struct ofconn *ofconn, struct flow_mod *fm)
3439 struct ofproto *p = ofconn_get_ofproto(ofconn);
3440 struct rule *rule = find_flow_strict(p, fm);
3441 if (rule && !rule_is_hidden(rule)) {
3442 modify_flow(p, fm, rule);
3443 return send_buffered_packet(ofconn, rule, fm->buffer_id);
3445 return add_flow(ofconn, fm);
3449 /* Implements core of OFPFC_MODIFY and OFPFC_MODIFY_STRICT where 'rule' has
3450 * been identified as a flow in 'p''s flow table to be modified, by changing
3451 * the rule's actions to match those in 'ofm' (which is followed by 'n_actions'
3452 * ofp_action[] structures). */
3454 modify_flow(struct ofproto *p, const struct flow_mod *fm, struct rule *rule)
3456 size_t actions_len = fm->n_actions * sizeof *rule->actions;
3458 rule->flow_cookie = fm->cookie;
3460 /* If the actions are the same, do nothing. */
3461 if (fm->n_actions == rule->n_actions
3463 || !memcmp(fm->actions, rule->actions, actions_len))) {
3467 /* Replace actions. */
3468 free(rule->actions);
3469 rule->actions = fm->n_actions ? xmemdup(fm->actions, actions_len) : NULL;
3470 rule->n_actions = fm->n_actions;
3472 p->need_revalidate = true;
3477 /* OFPFC_DELETE implementation. */
3479 static void delete_flow(struct ofproto *, struct rule *, ovs_be16 out_port);
3481 /* Implements OFPFC_DELETE. */
3483 delete_flows_loose(struct ofproto *p, const struct flow_mod *fm)
3485 struct rule *rule, *next_rule;
3486 struct cls_cursor cursor;
3488 cls_cursor_init(&cursor, &p->cls, &fm->cr);
3489 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
3490 delete_flow(p, rule, htons(fm->out_port));
3494 /* Implements OFPFC_DELETE_STRICT. */
3496 delete_flow_strict(struct ofproto *p, struct flow_mod *fm)
3498 struct rule *rule = find_flow_strict(p, fm);
3500 delete_flow(p, rule, htons(fm->out_port));
3504 /* Implements core of OFPFC_DELETE and OFPFC_DELETE_STRICT where 'rule' has
3505 * been identified as a flow to delete from 'p''s flow table, by deleting the
3506 * flow and sending out a OFPT_FLOW_REMOVED message to any interested
3509 * Will not delete 'rule' if it is hidden. Will delete 'rule' only if
3510 * 'out_port' is htons(OFPP_NONE) or if 'rule' actually outputs to the
3511 * specified 'out_port'. */
3513 delete_flow(struct ofproto *p, struct rule *rule, ovs_be16 out_port)
3515 if (rule_is_hidden(rule)) {
3519 if (out_port != htons(OFPP_NONE) && !rule_has_out_port(rule, out_port)) {
3523 rule_send_removed(p, rule, OFPRR_DELETE);
3524 rule_remove(p, rule);
3528 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3530 struct ofproto *p = ofconn_get_ofproto(ofconn);
3534 error = reject_slave_controller(ofconn, "flow_mod");
3539 error = ofputil_decode_flow_mod(&fm, oh);
3544 /* We do not support the emergency flow cache. It will hopefully get
3545 * dropped from OpenFlow in the near future. */
3546 if (fm.flags & OFPFF_EMERG) {
3547 /* There isn't a good fit for an error code, so just state that the
3548 * flow table is full. */
3549 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL);
3552 error = validate_actions(fm.actions, fm.n_actions,
3553 &fm.cr.flow, p->max_ports);
3558 switch (fm.command) {
3560 return add_flow(ofconn, &fm);
3563 return modify_flows_loose(ofconn, &fm);
3565 case OFPFC_MODIFY_STRICT:
3566 return modify_flow_strict(ofconn, &fm);
3569 delete_flows_loose(p, &fm);
3572 case OFPFC_DELETE_STRICT:
3573 delete_flow_strict(p, &fm);
3577 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
3582 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
3584 struct nx_role_request *nrr = (struct nx_role_request *) oh;
3585 struct nx_role_request *reply;
3589 if (ofconn_get_type(ofconn) != OFCONN_PRIMARY) {
3590 VLOG_WARN_RL(&rl, "ignoring role request on service connection");
3591 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
3594 role = ntohl(nrr->role);
3595 if (role != NX_ROLE_OTHER && role != NX_ROLE_MASTER
3596 && role != NX_ROLE_SLAVE) {
3597 VLOG_WARN_RL(&rl, "received request for unknown role %"PRIu32, role);
3599 /* There's no good error code for this. */
3600 return ofp_mkerr(OFPET_BAD_REQUEST, -1);
3603 ofconn_set_role(ofconn, role);
3605 reply = make_nxmsg_xid(sizeof *reply, NXT_ROLE_REPLY, oh->xid, &buf);
3606 reply->role = htonl(role);
3607 ofconn_send_reply(ofconn, buf);
3613 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
3615 const struct nxt_set_flow_format *msg
3616 = (const struct nxt_set_flow_format *) oh;
3619 format = ntohl(msg->format);
3620 if (format == NXFF_OPENFLOW10
3621 || format == NXFF_NXM) {
3622 ofconn_set_flow_format(ofconn, format);
3625 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
3630 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
3632 struct ofp_header *ob;
3635 /* Currently, everything executes synchronously, so we can just
3636 * immediately send the barrier reply. */
3637 ob = make_openflow_xid(sizeof *ob, OFPT_BARRIER_REPLY, oh->xid, &buf);
3638 ofconn_send_reply(ofconn, buf);
3643 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
3645 const struct ofp_header *oh = msg->data;
3646 const struct ofputil_msg_type *type;
3649 error = ofputil_decode_msg_type(oh, &type);
3654 switch (ofputil_msg_type_code(type)) {
3655 /* OpenFlow requests. */
3656 case OFPUTIL_OFPT_ECHO_REQUEST:
3657 return handle_echo_request(ofconn, oh);
3659 case OFPUTIL_OFPT_FEATURES_REQUEST:
3660 return handle_features_request(ofconn, oh);
3662 case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
3663 return handle_get_config_request(ofconn, oh);
3665 case OFPUTIL_OFPT_SET_CONFIG:
3666 return handle_set_config(ofconn, msg->data);
3668 case OFPUTIL_OFPT_PACKET_OUT:
3669 return handle_packet_out(ofconn, oh);
3671 case OFPUTIL_OFPT_PORT_MOD:
3672 return handle_port_mod(ofconn, oh);
3674 case OFPUTIL_OFPT_FLOW_MOD:
3675 return handle_flow_mod(ofconn, oh);
3677 case OFPUTIL_OFPT_BARRIER_REQUEST:
3678 return handle_barrier_request(ofconn, oh);
3680 /* OpenFlow replies. */
3681 case OFPUTIL_OFPT_ECHO_REPLY:
3684 /* Nicira extension requests. */
3685 case OFPUTIL_NXT_ROLE_REQUEST:
3686 return handle_role_request(ofconn, oh);
3688 case OFPUTIL_NXT_SET_FLOW_FORMAT:
3689 return handle_nxt_set_flow_format(ofconn, oh);
3691 case OFPUTIL_NXT_FLOW_MOD:
3692 return handle_flow_mod(ofconn, oh);
3694 /* OpenFlow statistics requests. */
3695 case OFPUTIL_OFPST_DESC_REQUEST:
3696 return handle_desc_stats_request(ofconn, oh);
3698 case OFPUTIL_OFPST_FLOW_REQUEST:
3699 return handle_flow_stats_request(ofconn, oh);
3701 case OFPUTIL_OFPST_AGGREGATE_REQUEST:
3702 return handle_aggregate_stats_request(ofconn, oh);
3704 case OFPUTIL_OFPST_TABLE_REQUEST:
3705 return handle_table_stats_request(ofconn, oh);
3707 case OFPUTIL_OFPST_PORT_REQUEST:
3708 return handle_port_stats_request(ofconn, oh);
3710 case OFPUTIL_OFPST_QUEUE_REQUEST:
3711 return handle_queue_stats_request(ofconn, oh);
3713 /* Nicira extension statistics requests. */
3714 case OFPUTIL_NXST_FLOW_REQUEST:
3715 return handle_nxst_flow(ofconn, oh);
3717 case OFPUTIL_NXST_AGGREGATE_REQUEST:
3718 return handle_nxst_aggregate(ofconn, oh);
3720 case OFPUTIL_INVALID:
3721 case OFPUTIL_OFPT_HELLO:
3722 case OFPUTIL_OFPT_ERROR:
3723 case OFPUTIL_OFPT_FEATURES_REPLY:
3724 case OFPUTIL_OFPT_GET_CONFIG_REPLY:
3725 case OFPUTIL_OFPT_PACKET_IN:
3726 case OFPUTIL_OFPT_FLOW_REMOVED:
3727 case OFPUTIL_OFPT_PORT_STATUS:
3728 case OFPUTIL_OFPT_BARRIER_REPLY:
3729 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
3730 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
3731 case OFPUTIL_OFPST_DESC_REPLY:
3732 case OFPUTIL_OFPST_FLOW_REPLY:
3733 case OFPUTIL_OFPST_QUEUE_REPLY:
3734 case OFPUTIL_OFPST_PORT_REPLY:
3735 case OFPUTIL_OFPST_TABLE_REPLY:
3736 case OFPUTIL_OFPST_AGGREGATE_REPLY:
3737 case OFPUTIL_NXT_ROLE_REPLY:
3738 case OFPUTIL_NXT_FLOW_REMOVED:
3739 case OFPUTIL_NXST_FLOW_REPLY:
3740 case OFPUTIL_NXST_AGGREGATE_REPLY:
3742 if (VLOG_IS_WARN_ENABLED()) {
3743 char *s = ofp_to_string(oh, ntohs(oh->length), 2);
3744 VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
3747 if (oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY) {
3748 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
3750 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
3756 handle_openflow(struct ofconn *ofconn, struct ofpbuf *ofp_msg)
3758 int error = handle_openflow__(ofconn, ofp_msg);
3760 send_error_oh(ofconn, ofp_msg->data, error);
3762 COVERAGE_INC(ofproto_recv_openflow);
3766 handle_miss_upcall(struct ofproto *p, struct dpif_upcall *upcall)
3768 struct facet *facet;
3771 /* Obtain in_port and tun_id, at least. */
3772 odp_flow_key_to_flow(upcall->key, upcall->key_len, &flow);
3774 /* Set header pointers in 'flow'. */
3775 flow_extract(upcall->packet, flow.tun_id, flow.in_port, &flow);
3777 if (cfm_should_process_flow(&flow)) {
3778 ofproto_process_cfm(p, &flow, upcall->packet);
3779 ofpbuf_delete(upcall->packet);
3781 } else if (p->ofhooks->special_cb
3782 && !p->ofhooks->special_cb(&flow, upcall->packet, p->aux)) {
3783 ofpbuf_delete(upcall->packet);
3787 /* Check with in-band control to see if this packet should be sent
3788 * to the local port regardless of the flow table. */
3789 if (connmgr_msg_in_hook(p->connmgr, &flow, upcall->packet)) {
3790 ofproto_send_packet(p, ODPP_LOCAL, upcall->packet);
3793 facet = facet_lookup_valid(p, &flow);
3795 struct rule *rule = rule_lookup(p, &flow);
3797 /* Don't send a packet-in if OFPPC_NO_PACKET_IN asserted. */
3798 struct ofport *port = get_port(p, flow.in_port);
3800 if (port->opp.config & OFPPC_NO_PACKET_IN) {
3801 COVERAGE_INC(ofproto_no_packet_in);
3802 /* XXX install 'drop' flow entry */
3803 ofpbuf_delete(upcall->packet);
3807 VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16,
3811 COVERAGE_INC(ofproto_packet_in);
3812 send_packet_in(p, upcall, &flow, false);
3816 facet = facet_create(p, rule, &flow, upcall->packet);
3817 } else if (!facet->may_install) {
3818 /* The facet is not installable, that is, we need to process every
3819 * packet, so process the current packet's actions into 'facet'. */
3820 facet_make_actions(p, facet, upcall->packet);
3823 if (facet->rule->cr.priority == FAIL_OPEN_PRIORITY) {
3825 * Extra-special case for fail-open mode.
3827 * We are in fail-open mode and the packet matched the fail-open rule,
3828 * but we are connected to a controller too. We should send the packet
3829 * up to the controller in the hope that it will try to set up a flow
3830 * and thereby allow us to exit fail-open.
3832 * See the top-level comment in fail-open.c for more information.
3834 send_packet_in(p, upcall, &flow, true);
3837 facet_execute(p, facet, upcall->packet);
3838 facet_install(p, facet, false);
3842 handle_upcall(struct ofproto *p, struct dpif_upcall *upcall)
3846 switch (upcall->type) {
3847 case DPIF_UC_ACTION:
3848 COVERAGE_INC(ofproto_ctlr_action);
3849 odp_flow_key_to_flow(upcall->key, upcall->key_len, &flow);
3850 send_packet_in(p, upcall, &flow, false);
3853 case DPIF_UC_SAMPLE:
3855 odp_flow_key_to_flow(upcall->key, upcall->key_len, &flow);
3856 ofproto_sflow_received(p->sflow, upcall, &flow);
3858 ofpbuf_delete(upcall->packet);
3862 handle_miss_upcall(p, upcall);
3865 case DPIF_N_UC_TYPES:
3867 VLOG_WARN_RL(&rl, "upcall has unexpected type %"PRIu32, upcall->type);
3872 /* Flow expiration. */
3874 static int ofproto_dp_max_idle(const struct ofproto *);
3875 static void ofproto_update_stats(struct ofproto *);
3876 static void rule_expire(struct ofproto *, struct rule *);
3877 static void ofproto_expire_facets(struct ofproto *, int dp_max_idle);
3879 /* This function is called periodically by ofproto_run(). Its job is to
3880 * collect updates for the flows that have been installed into the datapath,
3881 * most importantly when they last were used, and then use that information to
3882 * expire flows that have not been used recently.
3884 * Returns the number of milliseconds after which it should be called again. */
3886 ofproto_expire(struct ofproto *ofproto)
3888 struct rule *rule, *next_rule;
3889 struct cls_cursor cursor;
3892 /* Update stats for each flow in the datapath. */
3893 ofproto_update_stats(ofproto);
3895 /* Expire facets that have been idle too long. */
3896 dp_max_idle = ofproto_dp_max_idle(ofproto);
3897 ofproto_expire_facets(ofproto, dp_max_idle);
3899 /* Expire OpenFlow flows whose idle_timeout or hard_timeout has passed. */
3900 cls_cursor_init(&cursor, &ofproto->cls, NULL);
3901 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
3902 rule_expire(ofproto, rule);
3905 /* Let the hook know that we're at a stable point: all outstanding data
3906 * in existing flows has been accounted to the account_cb. Thus, the
3907 * hook can now reasonably do operations that depend on having accurate
3908 * flow volume accounting (currently, that's just bond rebalancing). */
3909 if (ofproto->ofhooks->account_checkpoint_cb) {
3910 ofproto->ofhooks->account_checkpoint_cb(ofproto->aux);
3913 return MIN(dp_max_idle, 1000);
3916 /* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
3918 * This function also pushes statistics updates to rules which each facet
3919 * resubmits into. Generally these statistics will be accurate. However, if a
3920 * facet changes the rule it resubmits into at some time in between
3921 * ofproto_update_stats() runs, it is possible that statistics accrued to the
3922 * old rule will be incorrectly attributed to the new rule. This could be
3923 * avoided by calling ofproto_update_stats() whenever rules are created or
3924 * deleted. However, the performance impact of making so many calls to the
3925 * datapath do not justify the benefit of having perfectly accurate statistics.
3928 ofproto_update_stats(struct ofproto *p)
3930 const struct dpif_flow_stats *stats;
3931 struct dpif_flow_dump dump;
3932 const struct nlattr *key;
3935 dpif_flow_dump_start(&dump, p->dpif);
3936 while (dpif_flow_dump_next(&dump, &key, &key_len, NULL, NULL, &stats)) {
3937 struct facet *facet;
3940 if (odp_flow_key_to_flow(key, key_len, &flow)) {
3944 odp_flow_key_format(key, key_len, &s);
3945 VLOG_WARN_RL(&rl, "failed to convert ODP flow key to flow: %s",
3951 facet = facet_find(p, &flow);
3953 if (facet && facet->installed) {
3955 if (stats->n_packets >= facet->dp_packet_count) {
3956 facet->packet_count += stats->n_packets - facet->dp_packet_count;
3958 VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
3961 if (stats->n_bytes >= facet->dp_byte_count) {
3962 facet->byte_count += stats->n_bytes - facet->dp_byte_count;
3964 VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
3967 facet->dp_packet_count = stats->n_packets;
3968 facet->dp_byte_count = stats->n_bytes;
3970 facet_update_time(p, facet, stats->used);
3971 facet_account(p, facet, stats->n_bytes);
3972 facet_push_stats(p, facet);
3974 /* There's a flow in the datapath that we know nothing about.
3976 COVERAGE_INC(ofproto_unexpected_rule);
3977 dpif_flow_del(p->dpif, key, key_len, NULL);
3980 dpif_flow_dump_done(&dump);
3983 /* Calculates and returns the number of milliseconds of idle time after which
3984 * facets should expire from the datapath and we should fold their statistics
3985 * into their parent rules in userspace. */
3987 ofproto_dp_max_idle(const struct ofproto *ofproto)
3990 * Idle time histogram.
3992 * Most of the time a switch has a relatively small number of facets. When
3993 * this is the case we might as well keep statistics for all of them in
3994 * userspace and to cache them in the kernel datapath for performance as
3997 * As the number of facets increases, the memory required to maintain
3998 * statistics about them in userspace and in the kernel becomes
3999 * significant. However, with a large number of facets it is likely that
4000 * only a few of them are "heavy hitters" that consume a large amount of
4001 * bandwidth. At this point, only heavy hitters are worth caching in the
4002 * kernel and maintaining in userspaces; other facets we can discard.
4004 * The technique used to compute the idle time is to build a histogram with
4005 * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each. Each facet
4006 * that is installed in the kernel gets dropped in the appropriate bucket.
4007 * After the histogram has been built, we compute the cutoff so that only
4008 * the most-recently-used 1% of facets (but at least 1000 flows) are kept
4009 * cached. At least the most-recently-used bucket of facets is kept, so
4010 * actually an arbitrary number of facets can be kept in any given
4011 * expiration run (though the next run will delete most of those unless
4012 * they receive additional data).
4014 * This requires a second pass through the facets, in addition to the pass
4015 * made by ofproto_update_stats(), because the former function never looks
4016 * at uninstallable facets.
4018 enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
4019 enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
4020 int buckets[N_BUCKETS] = { 0 };
4021 struct facet *facet;
4026 total = hmap_count(&ofproto->facets);
4027 if (total <= 1000) {
4028 return N_BUCKETS * BUCKET_WIDTH;
4031 /* Build histogram. */
4033 HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
4034 long long int idle = now - facet->used;
4035 int bucket = (idle <= 0 ? 0
4036 : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
4037 : (unsigned int) idle / BUCKET_WIDTH);
4041 /* Find the first bucket whose flows should be expired. */
4042 for (bucket = 0; bucket < N_BUCKETS; bucket++) {
4043 if (buckets[bucket]) {
4046 subtotal += buckets[bucket++];
4047 } while (bucket < N_BUCKETS && subtotal < MAX(1000, total / 100));
4052 if (VLOG_IS_DBG_ENABLED()) {
4056 ds_put_cstr(&s, "keep");
4057 for (i = 0; i < N_BUCKETS; i++) {
4059 ds_put_cstr(&s, ", drop");
4062 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
4065 VLOG_INFO("%s: %s (msec:count)",
4066 dpif_name(ofproto->dpif), ds_cstr(&s));
4070 return bucket * BUCKET_WIDTH;
4074 facet_active_timeout(struct ofproto *ofproto, struct facet *facet)
4076 if (ofproto->netflow && !facet_is_controller_flow(facet) &&
4077 netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
4078 struct ofexpired expired;
4080 if (facet->installed) {
4081 struct dpif_flow_stats stats;
4083 facet_put__(ofproto, facet, facet->actions, facet->actions_len,
4085 facet_update_stats(ofproto, facet, &stats);
4088 expired.flow = facet->flow;
4089 expired.packet_count = facet->packet_count;
4090 expired.byte_count = facet->byte_count;
4091 expired.used = facet->used;
4092 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4097 ofproto_expire_facets(struct ofproto *ofproto, int dp_max_idle)
4099 long long int cutoff = time_msec() - dp_max_idle;
4100 struct facet *facet, *next_facet;
4102 HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
4103 facet_active_timeout(ofproto, facet);
4104 if (facet->used < cutoff) {
4105 facet_remove(ofproto, facet);
4110 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
4111 * then delete it entirely. */
4113 rule_expire(struct ofproto *ofproto, struct rule *rule)
4115 struct facet *facet, *next_facet;
4119 /* Has 'rule' expired? */
4121 if (rule->hard_timeout
4122 && now > rule->created + rule->hard_timeout * 1000) {
4123 reason = OFPRR_HARD_TIMEOUT;
4124 } else if (rule->idle_timeout && list_is_empty(&rule->facets)
4125 && now >rule->used + rule->idle_timeout * 1000) {
4126 reason = OFPRR_IDLE_TIMEOUT;
4131 COVERAGE_INC(ofproto_expired);
4133 /* Update stats. (This is a no-op if the rule expired due to an idle
4134 * timeout, because that only happens when the rule has no facets left.) */
4135 LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
4136 facet_remove(ofproto, facet);
4139 /* Get rid of the rule. */
4140 if (!rule_is_hidden(rule)) {
4141 rule_send_removed(ofproto, rule, reason);
4143 rule_remove(ofproto, rule);
4147 rule_send_removed(struct ofproto *p, struct rule *rule, uint8_t reason)
4149 struct ofputil_flow_removed fr;
4151 if (!rule->send_flow_removed) {
4156 fr.cookie = rule->flow_cookie;
4158 calc_flow_duration__(rule->created, &fr.duration_sec, &fr.duration_nsec);
4159 fr.idle_timeout = rule->idle_timeout;
4160 fr.packet_count = rule->packet_count;
4161 fr.byte_count = rule->byte_count;
4163 connmgr_send_flow_removed(p->connmgr, &fr);
4166 /* Obtains statistics for 'rule' and stores them in '*packets' and '*bytes'.
4167 * The returned statistics include statistics for all of 'rule''s facets. */
4169 rule_get_stats(const struct rule *rule, uint64_t *packets, uint64_t *bytes)
4172 struct facet *facet;
4174 /* Start from historical data for 'rule' itself that are no longer tracked
4175 * in facets. This counts, for example, facets that have expired. */
4176 p = rule->packet_count;
4177 b = rule->byte_count;
4179 /* Add any statistics that are tracked by facets. This includes
4180 * statistical data recently updated by ofproto_update_stats() as well as
4181 * stats for packets that were executed "by hand" via dpif_execute(). */
4182 LIST_FOR_EACH (facet, list_node, &rule->facets) {
4183 p += facet->packet_count;
4184 b += facet->byte_count;
4191 /* Given 'upcall', of type DPIF_UC_ACTION or DPIF_UC_MISS, sends an
4192 * OFPT_PACKET_IN message to each OpenFlow controller as necessary according to
4193 * their individual configurations.
4195 * If 'clone' is true, the caller retains ownership of 'upcall->packet'.
4196 * Otherwise, ownership is transferred to this function. */
4198 send_packet_in(struct ofproto *ofproto, struct dpif_upcall *upcall,
4199 const struct flow *flow, bool clone)
4201 connmgr_send_packet_in(ofproto->connmgr, upcall, flow,
4202 clone ? NULL : upcall->packet);
4206 pick_datapath_id(const struct ofproto *ofproto)
4208 const struct ofport *port;
4210 port = get_port(ofproto, ODPP_LOCAL);
4212 uint8_t ea[ETH_ADDR_LEN];
4215 error = netdev_get_etheraddr(port->netdev, ea);
4217 return eth_addr_to_uint64(ea);
4219 VLOG_WARN("could not get MAC address for %s (%s)",
4220 netdev_get_name(port->netdev), strerror(error));
4222 return ofproto->fallback_dpid;
4226 pick_fallback_dpid(void)
4228 uint8_t ea[ETH_ADDR_LEN];
4229 eth_addr_nicira_random(ea);
4230 return eth_addr_to_uint64(ea);
4234 ofproto_unixctl_list(struct unixctl_conn *conn, const char *arg OVS_UNUSED,
4235 void *aux OVS_UNUSED)
4237 const struct shash_node *node;
4241 SHASH_FOR_EACH (node, &all_ofprotos) {
4242 ds_put_format(&results, "%s\n", node->name);
4244 unixctl_command_reply(conn, 200, ds_cstr(&results));
4245 ds_destroy(&results);
4248 struct ofproto_trace {
4249 struct action_xlate_ctx ctx;
4255 trace_format_rule(struct ds *result, int level, const struct rule *rule)
4257 ds_put_char_multiple(result, '\t', level);
4259 ds_put_cstr(result, "No match\n");
4263 ds_put_format(result, "Rule: cookie=%#"PRIx64" ",
4264 ntohll(rule->flow_cookie));
4265 cls_rule_format(&rule->cr, result);
4266 ds_put_char(result, '\n');
4268 ds_put_char_multiple(result, '\t', level);
4269 ds_put_cstr(result, "OpenFlow ");
4270 ofp_print_actions(result, (const struct ofp_action_header *) rule->actions,
4271 rule->n_actions * sizeof *rule->actions);
4272 ds_put_char(result, '\n');
4276 trace_format_flow(struct ds *result, int level, const char *title,
4277 struct ofproto_trace *trace)
4279 ds_put_char_multiple(result, '\t', level);
4280 ds_put_format(result, "%s: ", title);
4281 if (flow_equal(&trace->ctx.flow, &trace->flow)) {
4282 ds_put_cstr(result, "unchanged");
4284 flow_format(result, &trace->ctx.flow);
4285 trace->flow = trace->ctx.flow;
4287 ds_put_char(result, '\n');
4291 trace_resubmit(struct action_xlate_ctx *ctx, struct rule *rule)
4293 struct ofproto_trace *trace = CONTAINER_OF(ctx, struct ofproto_trace, ctx);
4294 struct ds *result = trace->result;
4296 ds_put_char(result, '\n');
4297 trace_format_flow(result, ctx->recurse + 1, "Resubmitted flow", trace);
4298 trace_format_rule(result, ctx->recurse + 1, rule);
4302 ofproto_unixctl_trace(struct unixctl_conn *conn, const char *args_,
4303 void *aux OVS_UNUSED)
4305 char *dpname, *in_port_s, *tun_id_s, *packet_s;
4306 char *args = xstrdup(args_);
4307 char *save_ptr = NULL;
4308 struct ofproto *ofproto;
4309 struct ofpbuf packet;
4317 ofpbuf_init(&packet, strlen(args) / 2);
4320 dpname = strtok_r(args, " ", &save_ptr);
4321 tun_id_s = strtok_r(NULL, " ", &save_ptr);
4322 in_port_s = strtok_r(NULL, " ", &save_ptr);
4323 packet_s = strtok_r(NULL, "", &save_ptr); /* Get entire rest of line. */
4324 if (!dpname || !in_port_s || !packet_s) {
4325 unixctl_command_reply(conn, 501, "Bad command syntax");
4329 ofproto = shash_find_data(&all_ofprotos, dpname);
4331 unixctl_command_reply(conn, 501, "Unknown ofproto (use ofproto/list "
4336 tun_id = htonll(strtoull(tun_id_s, NULL, 0));
4337 in_port = ofp_port_to_odp_port(atoi(in_port_s));
4339 packet_s = ofpbuf_put_hex(&packet, packet_s, NULL);
4340 packet_s += strspn(packet_s, " ");
4341 if (*packet_s != '\0') {
4342 unixctl_command_reply(conn, 501, "Trailing garbage in command");
4345 if (packet.size < ETH_HEADER_LEN) {
4346 unixctl_command_reply(conn, 501, "Packet data too short for Ethernet");
4350 ds_put_cstr(&result, "Packet: ");
4351 s = ofp_packet_to_string(packet.data, packet.size, packet.size);
4352 ds_put_cstr(&result, s);
4355 flow_extract(&packet, tun_id, in_port, &flow);
4356 ds_put_cstr(&result, "Flow: ");
4357 flow_format(&result, &flow);
4358 ds_put_char(&result, '\n');
4360 rule = rule_lookup(ofproto, &flow);
4361 trace_format_rule(&result, 0, rule);
4363 struct ofproto_trace trace;
4364 struct ofpbuf *odp_actions;
4366 trace.result = &result;
4368 action_xlate_ctx_init(&trace.ctx, ofproto, &flow, &packet);
4369 trace.ctx.resubmit_hook = trace_resubmit;
4370 odp_actions = xlate_actions(&trace.ctx,
4371 rule->actions, rule->n_actions);
4373 ds_put_char(&result, '\n');
4374 trace_format_flow(&result, 0, "Final flow", &trace);
4375 ds_put_cstr(&result, "Datapath actions: ");
4376 format_odp_actions(&result, odp_actions->data, odp_actions->size);
4377 ofpbuf_delete(odp_actions);
4380 unixctl_command_reply(conn, 200, ds_cstr(&result));
4383 ds_destroy(&result);
4384 ofpbuf_uninit(&packet);
4389 ofproto_unixctl_init(void)
4391 static bool registered;
4397 unixctl_command_register("ofproto/list", ofproto_unixctl_list, NULL);
4398 unixctl_command_register("ofproto/trace", ofproto_unixctl_trace, NULL);
4402 default_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
4403 struct ofpbuf *odp_actions, tag_type *tags,
4404 uint16_t *nf_output_iface, void *ofproto_)
4406 struct ofproto *ofproto = ofproto_;
4407 struct mac_entry *dst_mac;
4409 /* Drop frames for reserved multicast addresses. */
4410 if (eth_addr_is_reserved(flow->dl_dst)) {
4414 /* Learn source MAC (but don't try to learn from revalidation). */
4416 && mac_learning_may_learn(ofproto->ml, flow->dl_src, 0)) {
4417 struct mac_entry *src_mac;
4419 src_mac = mac_learning_insert(ofproto->ml, flow->dl_src, 0);
4420 if (mac_entry_is_new(src_mac) || src_mac->port.i != flow->in_port) {
4421 /* The log messages here could actually be useful in debugging,
4422 * so keep the rate limit relatively high. */
4423 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
4424 VLOG_DBG_RL(&rl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
4425 ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
4427 ofproto_revalidate(ofproto,
4428 mac_learning_changed(ofproto->ml, src_mac));
4429 src_mac->port.i = flow->in_port;
4433 /* Determine output port. */
4434 dst_mac = mac_learning_lookup(ofproto->ml, flow->dl_dst, 0, tags);
4436 flood_packets(ofproto, flow->in_port, OFPPC_NO_FLOOD,
4437 nf_output_iface, odp_actions);
4439 int out_port = dst_mac->port.i;
4440 if (out_port != flow->in_port) {
4441 nl_msg_put_u32(odp_actions, ODP_ACTION_ATTR_OUTPUT, out_port);
4442 *nf_output_iface = out_port;
4451 static const struct ofhooks default_ofhooks = {
4452 default_normal_ofhook_cb,