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_update_stats(struct ofproto *, struct facet *,
272 const struct dpif_flow_stats *);
273 static void facet_push_stats(struct ofproto *, struct facet *);
275 static void send_packet_in(struct ofproto *, struct dpif_upcall *,
276 const struct flow *, bool clone);
280 uint64_t datapath_id; /* Datapath ID. */
281 uint64_t fallback_dpid; /* Datapath ID if no better choice found. */
282 char *mfr_desc; /* Manufacturer. */
283 char *hw_desc; /* Hardware. */
284 char *sw_desc; /* Software version. */
285 char *serial_desc; /* Serial number. */
286 char *dp_desc; /* Datapath description. */
290 struct netdev_monitor *netdev_monitor;
291 struct hmap ports; /* Contains "struct ofport"s. */
292 struct shash port_by_name;
296 struct netflow *netflow;
297 struct ofproto_sflow *sflow;
300 struct classifier cls;
301 struct timer next_expiration;
305 bool need_revalidate;
306 struct tag_set revalidate_set;
308 /* OpenFlow connections. */
309 struct connmgr *connmgr;
311 /* Hooks for ovs-vswitchd. */
312 const struct ofhooks *ofhooks;
315 /* Used by default ofhooks. */
316 struct mac_learning *ml;
319 /* Map from dpif name to struct ofproto, for use by unixctl commands. */
320 static struct shash all_ofprotos = SHASH_INITIALIZER(&all_ofprotos);
322 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
324 static const struct ofhooks default_ofhooks;
326 static uint64_t pick_datapath_id(const struct ofproto *);
327 static uint64_t pick_fallback_dpid(void);
329 static void ofproto_flush_flows__(struct ofproto *);
330 static int ofproto_expire(struct ofproto *);
331 static void flow_push_stats(struct ofproto *, const struct rule *,
332 struct flow *, uint64_t packets, uint64_t bytes,
335 static void handle_upcall(struct ofproto *, struct dpif_upcall *);
337 static void handle_openflow(struct ofconn *, struct ofpbuf *);
339 static struct ofport *get_port(const struct ofproto *, uint16_t odp_port);
340 static void update_port(struct ofproto *, const char *devname);
341 static int init_ports(struct ofproto *);
342 static void reinit_ports(struct ofproto *);
344 static void ofproto_unixctl_init(void);
347 ofproto_create(const char *datapath, const char *datapath_type,
348 const struct ofhooks *ofhooks, void *aux,
349 struct ofproto **ofprotop)
351 char local_name[IF_NAMESIZE];
358 ofproto_unixctl_init();
360 /* Connect to datapath and start listening for messages. */
361 error = dpif_open(datapath, datapath_type, &dpif);
363 VLOG_ERR("failed to open datapath %s: %s", datapath, strerror(error));
366 error = dpif_recv_set_mask(dpif,
367 ((1u << DPIF_UC_MISS) |
368 (1u << DPIF_UC_ACTION) |
369 (1u << DPIF_UC_SAMPLE)));
371 VLOG_ERR("failed to listen on datapath %s: %s",
372 datapath, strerror(error));
376 dpif_flow_flush(dpif);
377 dpif_recv_purge(dpif);
379 error = dpif_port_get_name(dpif, ODPP_LOCAL,
380 local_name, sizeof local_name);
382 VLOG_ERR("%s: cannot get name of datapath local port (%s)",
383 datapath, strerror(error));
387 /* Initialize settings. */
388 p = xzalloc(sizeof *p);
389 p->fallback_dpid = pick_fallback_dpid();
390 p->datapath_id = p->fallback_dpid;
391 p->mfr_desc = xstrdup(DEFAULT_MFR_DESC);
392 p->hw_desc = xstrdup(DEFAULT_HW_DESC);
393 p->sw_desc = xstrdup(DEFAULT_SW_DESC);
394 p->serial_desc = xstrdup(DEFAULT_SERIAL_DESC);
395 p->dp_desc = xstrdup(DEFAULT_DP_DESC);
397 /* Initialize datapath. */
399 p->netdev_monitor = netdev_monitor_create();
400 hmap_init(&p->ports);
401 shash_init(&p->port_by_name);
402 p->max_ports = dpif_get_max_ports(dpif);
404 /* Initialize submodules. */
408 /* Initialize flow table. */
409 classifier_init(&p->cls);
410 timer_set_duration(&p->next_expiration, 1000);
412 /* Initialize facet table. */
413 hmap_init(&p->facets);
414 p->need_revalidate = false;
415 tag_set_init(&p->revalidate_set);
417 /* Initialize hooks. */
419 p->ofhooks = ofhooks;
423 p->ofhooks = &default_ofhooks;
425 p->ml = mac_learning_create();
428 /* Pick final datapath ID. */
429 p->datapath_id = pick_datapath_id(p);
430 VLOG_INFO("using datapath ID %016"PRIx64, p->datapath_id);
432 shash_add_once(&all_ofprotos, dpif_name(p->dpif), p);
434 /* Initialize OpenFlow connections. */
435 p->connmgr = connmgr_create(p, datapath, local_name);
442 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
444 uint64_t old_dpid = p->datapath_id;
445 p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
446 if (p->datapath_id != old_dpid) {
447 VLOG_INFO("datapath ID changed to %016"PRIx64, p->datapath_id);
449 /* Force all active connections to reconnect, since there is no way to
450 * notify a controller that the datapath ID has changed. */
451 ofproto_reconnect_controllers(p);
456 ofproto_set_controllers(struct ofproto *p,
457 const struct ofproto_controller *controllers,
458 size_t n_controllers)
460 connmgr_set_controllers(p->connmgr, controllers, n_controllers);
464 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
466 connmgr_set_fail_mode(p->connmgr, fail_mode);
469 /* Drops the connections between 'ofproto' and all of its controllers, forcing
470 * them to reconnect. */
472 ofproto_reconnect_controllers(struct ofproto *ofproto)
474 connmgr_reconnect(ofproto->connmgr);
477 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
478 * in-band control should guarantee access, in the same way that in-band
479 * control guarantees access to OpenFlow controllers. */
481 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
482 const struct sockaddr_in *extras, size_t n)
484 connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
487 /* Sets the OpenFlow queue used by flows set up by in-band control on
488 * 'ofproto' to 'queue_id'. If 'queue_id' is negative, then in-band control
489 * flows will use the default queue. */
491 ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
493 connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
497 ofproto_set_desc(struct ofproto *p,
498 const char *mfr_desc, const char *hw_desc,
499 const char *sw_desc, const char *serial_desc,
502 struct ofp_desc_stats *ods;
505 if (strlen(mfr_desc) >= sizeof ods->mfr_desc) {
506 VLOG_WARN("truncating mfr_desc, must be less than %zu characters",
507 sizeof ods->mfr_desc);
510 p->mfr_desc = xstrdup(mfr_desc);
513 if (strlen(hw_desc) >= sizeof ods->hw_desc) {
514 VLOG_WARN("truncating hw_desc, must be less than %zu characters",
515 sizeof ods->hw_desc);
518 p->hw_desc = xstrdup(hw_desc);
521 if (strlen(sw_desc) >= sizeof ods->sw_desc) {
522 VLOG_WARN("truncating sw_desc, must be less than %zu characters",
523 sizeof ods->sw_desc);
526 p->sw_desc = xstrdup(sw_desc);
529 if (strlen(serial_desc) >= sizeof ods->serial_num) {
530 VLOG_WARN("truncating serial_desc, must be less than %zu "
532 sizeof ods->serial_num);
534 free(p->serial_desc);
535 p->serial_desc = xstrdup(serial_desc);
538 if (strlen(dp_desc) >= sizeof ods->dp_desc) {
539 VLOG_WARN("truncating dp_desc, must be less than %zu characters",
540 sizeof ods->dp_desc);
543 p->dp_desc = xstrdup(dp_desc);
548 ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
550 return connmgr_set_snoops(ofproto->connmgr, snoops);
554 ofproto_set_netflow(struct ofproto *ofproto,
555 const struct netflow_options *nf_options)
557 if (nf_options && !sset_is_empty(&nf_options->collectors)) {
558 if (!ofproto->netflow) {
559 ofproto->netflow = netflow_create();
561 return netflow_set_options(ofproto->netflow, nf_options);
563 netflow_destroy(ofproto->netflow);
564 ofproto->netflow = NULL;
570 ofproto_set_sflow(struct ofproto *ofproto,
571 const struct ofproto_sflow_options *oso)
573 struct ofproto_sflow *os = ofproto->sflow;
576 struct ofport *ofport;
578 os = ofproto->sflow = ofproto_sflow_create(ofproto->dpif);
579 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
580 ofproto_sflow_add_port(os, ofport->odp_port,
581 netdev_get_name(ofport->netdev));
584 ofproto_sflow_set_options(os, oso);
586 ofproto_sflow_destroy(os);
587 ofproto->sflow = NULL;
591 /* Connectivity Fault Management configuration. */
593 /* Clears the CFM configuration from 'port_no' on 'ofproto'. */
595 ofproto_iface_clear_cfm(struct ofproto *ofproto, uint32_t port_no)
597 struct ofport *ofport = get_port(ofproto, port_no);
598 if (ofport && ofport->cfm){
599 cfm_destroy(ofport->cfm);
604 /* Configures connectivity fault management on 'port_no' in 'ofproto'. Takes
605 * basic configuration from the configuration members in 'cfm', and the set of
606 * remote maintenance points from the 'n_remote_mps' elements in 'remote_mps'.
607 * Ignores the statistics members of 'cfm'.
609 * This function has no effect if 'ofproto' does not have a port 'port_no'. */
611 ofproto_iface_set_cfm(struct ofproto *ofproto, uint32_t port_no,
612 const struct cfm *cfm,
613 const uint16_t *remote_mps, size_t n_remote_mps)
615 struct ofport *ofport;
617 ofport = get_port(ofproto, port_no);
619 VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu32,
620 dpif_name(ofproto->dpif), port_no);
625 ofport->cfm = cfm_create();
628 ofport->cfm->mpid = cfm->mpid;
629 ofport->cfm->interval = cfm->interval;
630 memcpy(ofport->cfm->maid, cfm->maid, CCM_MAID_LEN);
632 cfm_update_remote_mps(ofport->cfm, remote_mps, n_remote_mps);
634 if (!cfm_configure(ofport->cfm)) {
635 VLOG_WARN("%s: CFM configuration on port %"PRIu32" (%s) failed",
636 dpif_name(ofproto->dpif), port_no,
637 netdev_get_name(ofport->netdev));
638 cfm_destroy(ofport->cfm);
643 /* Returns the connectivity fault management object associated with 'port_no'
644 * within 'ofproto', or a null pointer if 'ofproto' does not have a port
645 * 'port_no' or if that port does not have CFM configured. The caller must not
646 * modify or destroy the returned object. */
648 ofproto_iface_get_cfm(struct ofproto *ofproto, uint32_t port_no)
650 struct ofport *ofport = get_port(ofproto, port_no);
651 return ofport ? ofport->cfm : NULL;
655 ofproto_get_datapath_id(const struct ofproto *ofproto)
657 return ofproto->datapath_id;
661 ofproto_has_primary_controller(const struct ofproto *ofproto)
663 return connmgr_has_controllers(ofproto->connmgr);
666 enum ofproto_fail_mode
667 ofproto_get_fail_mode(const struct ofproto *p)
669 return connmgr_get_fail_mode(p->connmgr);
673 ofproto_has_snoops(const struct ofproto *ofproto)
675 return connmgr_has_snoops(ofproto->connmgr);
679 ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
681 connmgr_get_snoops(ofproto->connmgr, snoops);
685 ofproto_destroy(struct ofproto *p)
687 struct ofport *ofport, *next_ofport;
693 shash_find_and_delete(&all_ofprotos, dpif_name(p->dpif));
695 ofproto_flush_flows__(p);
696 connmgr_destroy(p->connmgr);
697 classifier_destroy(&p->cls);
698 hmap_destroy(&p->facets);
701 netdev_monitor_destroy(p->netdev_monitor);
702 HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
703 hmap_remove(&p->ports, &ofport->hmap_node);
706 shash_destroy(&p->port_by_name);
708 netflow_destroy(p->netflow);
709 ofproto_sflow_destroy(p->sflow);
711 mac_learning_destroy(p->ml);
716 free(p->serial_desc);
719 hmap_destroy(&p->ports);
725 ofproto_run(struct ofproto *p)
727 int error = ofproto_run1(p);
729 error = ofproto_run2(p, false);
735 process_port_change(struct ofproto *ofproto, int error, char *devname)
737 if (error == ENOBUFS) {
738 reinit_ports(ofproto);
740 update_port(ofproto, devname);
746 ofproto_run1(struct ofproto *p)
748 struct ofport *ofport;
753 if (shash_is_empty(&p->port_by_name)) {
757 for (i = 0; i < 50; i++) {
758 struct dpif_upcall packet;
760 error = dpif_recv(p->dpif, &packet);
762 if (error == ENODEV) {
763 /* Someone destroyed the datapath behind our back. The caller
764 * better destroy us and give up, because we're just going to
765 * spin from here on out. */
766 static struct vlog_rate_limit rl2 = VLOG_RATE_LIMIT_INIT(1, 5);
767 VLOG_ERR_RL(&rl2, "%s: datapath was destroyed externally",
774 handle_upcall(p, &packet);
777 while ((error = dpif_port_poll(p->dpif, &devname)) != EAGAIN) {
778 process_port_change(p, error, devname);
780 while ((error = netdev_monitor_poll(p->netdev_monitor,
781 &devname)) != EAGAIN) {
782 process_port_change(p, error, devname);
785 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
786 ofport_run(p, ofport);
789 connmgr_run(p->connmgr, handle_openflow);
791 if (timer_expired(&p->next_expiration)) {
792 int delay = ofproto_expire(p);
793 timer_set_duration(&p->next_expiration, delay);
794 COVERAGE_INC(ofproto_expiration);
798 netflow_run(p->netflow);
801 ofproto_sflow_run(p->sflow);
808 ofproto_run2(struct ofproto *p, bool revalidate_all)
810 /* Figure out what we need to revalidate now, if anything. */
811 struct tag_set revalidate_set = p->revalidate_set;
812 if (p->need_revalidate) {
813 revalidate_all = true;
816 /* Clear the revalidation flags. */
817 tag_set_init(&p->revalidate_set);
818 p->need_revalidate = false;
820 /* Now revalidate if there's anything to do. */
821 if (revalidate_all || !tag_set_is_empty(&revalidate_set)) {
822 struct facet *facet, *next;
824 HMAP_FOR_EACH_SAFE (facet, next, hmap_node, &p->facets) {
826 || tag_set_intersects(&revalidate_set, facet->tags)) {
827 facet_revalidate(p, facet);
836 ofproto_wait(struct ofproto *p)
838 struct ofport *ofport;
840 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
843 dpif_recv_wait(p->dpif);
844 dpif_port_poll_wait(p->dpif);
845 netdev_monitor_poll_wait(p->netdev_monitor);
847 ofproto_sflow_wait(p->sflow);
849 if (!tag_set_is_empty(&p->revalidate_set)) {
850 poll_immediate_wake();
852 if (p->need_revalidate) {
853 /* Shouldn't happen, but if it does just go around again. */
854 VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
855 poll_immediate_wake();
857 timer_wait(&p->next_expiration);
859 connmgr_wait(p->connmgr);
863 ofproto_revalidate(struct ofproto *ofproto, tag_type tag)
865 tag_set_add(&ofproto->revalidate_set, tag);
869 ofproto_get_revalidate_set(struct ofproto *ofproto)
871 return &ofproto->revalidate_set;
875 ofproto_is_alive(const struct ofproto *p)
877 return connmgr_has_controllers(p->connmgr);
881 ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
884 connmgr_get_controller_info(ofproto->connmgr, info);
888 ofproto_free_ofproto_controller_info(struct shash *info)
890 struct shash_node *node;
892 SHASH_FOR_EACH (node, info) {
893 struct ofproto_controller_info *cinfo = node->data;
894 while (cinfo->pairs.n) {
895 free((char *) cinfo->pairs.values[--cinfo->pairs.n]);
902 /* Deletes port number 'odp_port' from the datapath for 'ofproto'.
904 * This is almost the same as calling dpif_port_del() directly on the
905 * datapath, but it also makes 'ofproto' close its open netdev for the port
906 * (if any). This makes it possible to create a new netdev of a different
907 * type under the same name, which otherwise the netdev library would refuse
908 * to do because of the conflict. (The netdev would eventually get closed on
909 * the next trip through ofproto_run(), but this interface is more direct.)
911 * Returns 0 if successful, otherwise a positive errno. */
913 ofproto_port_del(struct ofproto *ofproto, uint16_t odp_port)
915 struct ofport *ofport = get_port(ofproto, odp_port);
916 const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
919 error = dpif_port_del(ofproto->dpif, odp_port);
921 VLOG_ERR("%s: failed to remove port %"PRIu16" (%s) interface (%s)",
922 dpif_name(ofproto->dpif), odp_port, name, strerror(error));
924 /* 'name' is the netdev's name and update_port() is going to close the
925 * netdev. Just in case update_port() refers to 'name' after it
926 * destroys 'ofport', make a copy of it around the update_port()
928 char *devname = xstrdup(name);
929 update_port(ofproto, devname);
935 /* Checks if 'ofproto' thinks 'odp_port' should be included in floods. Returns
936 * true if 'odp_port' exists and should be included, false otherwise. */
938 ofproto_port_is_floodable(struct ofproto *ofproto, uint16_t odp_port)
940 struct ofport *ofport = get_port(ofproto, odp_port);
941 return ofport && !(ofport->opp.config & OFPPC_NO_FLOOD);
944 /* Sends 'packet' out of port 'port_no' within 'p'. If 'vlan_tci' is zero the
945 * packet will not have any 802.1Q hader; if it is nonzero, then the packet
946 * will be sent with the VLAN TCI specified by 'vlan_tci & ~VLAN_CFI'.
948 * Returns 0 if successful, otherwise a positive errno value. */
950 ofproto_send_packet(struct ofproto *ofproto,
951 uint32_t port_no, uint16_t vlan_tci,
952 const struct ofpbuf *packet)
954 struct ofpbuf odp_actions;
957 ofpbuf_init(&odp_actions, 32);
959 nl_msg_put_u32(&odp_actions, ODP_ACTION_ATTR_SET_DL_TCI,
960 ntohs(vlan_tci & ~VLAN_CFI));
962 nl_msg_put_u32(&odp_actions, ODP_ACTION_ATTR_OUTPUT, port_no);
963 error = dpif_execute(ofproto->dpif, odp_actions.data, odp_actions.size,
965 ofpbuf_uninit(&odp_actions);
968 VLOG_WARN_RL(&rl, "%s: failed to send packet on port %"PRIu32" (%s)",
969 dpif_name(ofproto->dpif), port_no, strerror(error));
974 /* Adds a flow to the OpenFlow flow table in 'p' that matches 'cls_rule' and
975 * performs the 'n_actions' actions in 'actions'. The new flow will not
978 * If cls_rule->priority is in the range of priorities supported by OpenFlow
979 * (0...65535, inclusive) then the flow will be visible to OpenFlow
980 * controllers; otherwise, it will be hidden.
982 * The caller retains ownership of 'cls_rule' and 'actions'. */
984 ofproto_add_flow(struct ofproto *p, const struct cls_rule *cls_rule,
985 const union ofp_action *actions, size_t n_actions)
988 rule = rule_create(cls_rule, actions, n_actions, 0, 0, 0, false);
989 rule_insert(p, rule);
993 ofproto_delete_flow(struct ofproto *ofproto, const struct cls_rule *target)
997 rule = rule_from_cls_rule(classifier_find_rule_exactly(&ofproto->cls,
1000 rule_remove(ofproto, rule);
1005 ofproto_flush_flows__(struct ofproto *ofproto)
1007 struct facet *facet, *next_facet;
1008 struct rule *rule, *next_rule;
1009 struct cls_cursor cursor;
1011 COVERAGE_INC(ofproto_flush);
1013 HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
1014 /* Mark the facet as not installed so that facet_remove() doesn't
1015 * bother trying to uninstall it. There is no point in uninstalling it
1016 * individually since we are about to blow away all the facets with
1017 * dpif_flow_flush(). */
1018 facet->installed = false;
1019 facet->dp_packet_count = 0;
1020 facet->dp_byte_count = 0;
1021 facet_remove(ofproto, facet);
1024 cls_cursor_init(&cursor, &ofproto->cls, NULL);
1025 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
1026 rule_remove(ofproto, rule);
1029 dpif_flow_flush(ofproto->dpif);
1033 ofproto_flush_flows(struct ofproto *ofproto)
1035 ofproto_flush_flows__(ofproto);
1036 connmgr_flushed(ofproto->connmgr);
1040 reinit_ports(struct ofproto *p)
1042 struct dpif_port_dump dump;
1043 struct sset devnames;
1044 struct ofport *ofport;
1045 struct dpif_port dpif_port;
1046 const char *devname;
1048 COVERAGE_INC(ofproto_reinit_ports);
1050 sset_init(&devnames);
1051 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1052 sset_add(&devnames, netdev_get_name(ofport->netdev));
1054 DPIF_PORT_FOR_EACH (&dpif_port, &dump, p->dpif) {
1055 sset_add(&devnames, dpif_port.name);
1058 SSET_FOR_EACH (devname, &devnames) {
1059 update_port(p, devname);
1061 sset_destroy(&devnames);
1064 /* Opens and returns a netdev for 'dpif_port', or a null pointer if the netdev
1065 * cannot be opened. On success, also fills in 'opp', in *HOST* byte order. */
1066 static struct netdev *
1067 ofport_open(const struct dpif_port *dpif_port, struct ofp_phy_port *opp)
1069 struct netdev_options netdev_options;
1070 enum netdev_flags flags;
1071 struct netdev *netdev;
1074 memset(&netdev_options, 0, sizeof netdev_options);
1075 netdev_options.name = dpif_port->name;
1076 netdev_options.type = dpif_port->type;
1077 netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
1079 error = netdev_open(&netdev_options, &netdev);
1081 VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1082 "cannot be opened (%s)",
1083 dpif_port->name, dpif_port->port_no,
1084 dpif_port->name, strerror(error));
1088 netdev_get_flags(netdev, &flags);
1090 opp->port_no = odp_port_to_ofp_port(dpif_port->port_no);
1091 netdev_get_etheraddr(netdev, opp->hw_addr);
1092 ovs_strzcpy(opp->name, dpif_port->name, sizeof opp->name);
1093 opp->config = flags & NETDEV_UP ? 0 : OFPPC_PORT_DOWN;
1094 opp->state = netdev_get_carrier(netdev) ? 0 : OFPPS_LINK_DOWN;
1095 netdev_get_features(netdev, &opp->curr, &opp->advertised,
1096 &opp->supported, &opp->peer);
1101 ofport_conflicts(const struct ofproto *p, const struct dpif_port *dpif_port)
1103 if (get_port(p, dpif_port->port_no)) {
1104 VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1105 dpif_port->port_no);
1107 } else if (shash_find(&p->port_by_name, dpif_port->name)) {
1108 VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1116 /* Returns true if most fields of 'a' and 'b' are equal. Differences in name,
1117 * port number, and 'config' bits other than OFPPC_PORT_DOWN are
1120 ofport_equal(const struct ofp_phy_port *a, const struct ofp_phy_port *b)
1122 BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
1123 return (!memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
1124 && a->state == b->state
1125 && !((a->config ^ b->config) & OFPPC_PORT_DOWN)
1126 && a->curr == b->curr
1127 && a->advertised == b->advertised
1128 && a->supported == b->supported
1129 && a->peer == b->peer);
1132 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
1133 * The caller must ensure that 'p' does not have a conflicting ofport (that is,
1134 * one with the same name or port number). */
1136 ofport_install(struct ofproto *p,
1137 struct netdev *netdev, const struct ofp_phy_port *opp)
1139 const char *netdev_name = netdev_get_name(netdev);
1140 struct ofport *ofport;
1142 connmgr_send_port_status(p->connmgr, opp, OFPPR_ADD);
1144 /* Create ofport. */
1145 ofport = xmalloc(sizeof *ofport);
1146 ofport->netdev = netdev;
1148 ofport->odp_port = ofp_port_to_odp_port(opp->port_no);
1151 /* Add port to 'p'. */
1152 netdev_monitor_add(p->netdev_monitor, ofport->netdev);
1153 hmap_insert(&p->ports, &ofport->hmap_node, hash_int(ofport->odp_port, 0));
1154 shash_add(&p->port_by_name, netdev_name, ofport);
1156 ofproto_sflow_add_port(p->sflow, ofport->odp_port, netdev_name);
1160 /* Removes 'ofport' from 'p' and destroys it. */
1162 ofport_remove(struct ofproto *p, struct ofport *ofport)
1164 connmgr_send_port_status(p->connmgr, &ofport->opp, OFPPR_DELETE);
1166 netdev_monitor_remove(p->netdev_monitor, ofport->netdev);
1167 hmap_remove(&p->ports, &ofport->hmap_node);
1168 shash_delete(&p->port_by_name,
1169 shash_find(&p->port_by_name,
1170 netdev_get_name(ofport->netdev)));
1172 ofproto_sflow_del_port(p->sflow, ofport->odp_port);
1175 ofport_free(ofport);
1178 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
1181 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
1183 struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
1185 ofport_remove(ofproto, port);
1189 /* Updates 'port' within 'ofproto' with the new 'netdev' and 'opp'.
1191 * Does not handle a name or port number change. The caller must implement
1192 * such a change as a delete followed by an add. */
1194 ofport_modified(struct ofproto *ofproto, struct ofport *port,
1195 struct netdev *netdev, struct ofp_phy_port *opp)
1197 memcpy(port->opp.hw_addr, opp->hw_addr, ETH_ADDR_LEN);
1198 port->opp.config = ((port->opp.config & ~OFPPC_PORT_DOWN)
1199 | (opp->config & OFPPC_PORT_DOWN));
1200 port->opp.state = opp->state;
1201 port->opp.curr = opp->curr;
1202 port->opp.advertised = opp->advertised;
1203 port->opp.supported = opp->supported;
1204 port->opp.peer = opp->peer;
1206 netdev_monitor_remove(ofproto->netdev_monitor, port->netdev);
1207 netdev_monitor_add(ofproto->netdev_monitor, netdev);
1209 netdev_close(port->netdev);
1210 port->netdev = netdev;
1212 connmgr_send_port_status(ofproto->connmgr, &port->opp, OFPPR_MODIFY);
1216 ofport_run(struct ofproto *ofproto, struct ofport *ofport)
1219 cfm_run(ofport->cfm);
1221 if (cfm_should_send_ccm(ofport->cfm)) {
1222 struct ofpbuf packet;
1225 ofpbuf_init(&packet, 0);
1226 ccm = eth_compose(&packet, eth_addr_ccm, ofport->opp.hw_addr,
1227 ETH_TYPE_CFM, sizeof *ccm);
1228 cfm_compose_ccm(ofport->cfm, ccm);
1229 ofproto_send_packet(ofproto, ofport->odp_port, 0, &packet);
1230 ofpbuf_uninit(&packet);
1236 ofport_wait(struct ofport *ofport)
1239 cfm_wait(ofport->cfm);
1244 ofport_free(struct ofport *ofport)
1247 cfm_destroy(ofport->cfm);
1248 netdev_close(ofport->netdev);
1253 static struct ofport *
1254 get_port(const struct ofproto *ofproto, uint16_t odp_port)
1256 struct ofport *port;
1258 HMAP_FOR_EACH_IN_BUCKET (port, hmap_node,
1259 hash_int(odp_port, 0), &ofproto->ports) {
1260 if (port->odp_port == odp_port) {
1268 update_port(struct ofproto *ofproto, const char *name)
1270 struct dpif_port dpif_port;
1271 struct ofp_phy_port opp;
1272 struct netdev *netdev;
1273 struct ofport *port;
1275 COVERAGE_INC(ofproto_update_port);
1277 /* Fetch 'name''s location and properties from the datapath. */
1278 netdev = (!dpif_port_query_by_name(ofproto->dpif, name, &dpif_port)
1279 ? ofport_open(&dpif_port, &opp)
1282 port = get_port(ofproto, dpif_port.port_no);
1283 if (port && !strcmp(netdev_get_name(port->netdev), name)) {
1284 /* 'name' hasn't changed location. Any properties changed? */
1285 if (!ofport_equal(&port->opp, &opp)) {
1286 ofport_modified(ofproto, port, netdev, &opp);
1288 netdev_close(netdev);
1291 /* If 'port' is nonnull then its name differs from 'name' and thus
1292 * we should delete it. If we think there's a port named 'name'
1293 * then its port number must be wrong now so delete it too. */
1295 ofport_remove(ofproto, port);
1297 ofport_remove_with_name(ofproto, name);
1298 ofport_install(ofproto, netdev, &opp);
1301 /* Any port named 'name' is gone now. */
1302 ofport_remove_with_name(ofproto, name);
1304 dpif_port_destroy(&dpif_port);
1308 init_ports(struct ofproto *p)
1310 struct dpif_port_dump dump;
1311 struct dpif_port dpif_port;
1313 DPIF_PORT_FOR_EACH (&dpif_port, &dump, p->dpif) {
1314 if (!ofport_conflicts(p, &dpif_port)) {
1315 struct ofp_phy_port opp;
1316 struct netdev *netdev;
1318 netdev = ofport_open(&dpif_port, &opp);
1320 ofport_install(p, netdev, &opp);
1328 /* Returns true if 'rule' should be hidden from the controller.
1330 * Rules with priority higher than UINT16_MAX are set up by ofproto itself
1331 * (e.g. by in-band control) and are intentionally hidden from the
1334 rule_is_hidden(const struct rule *rule)
1336 return rule->cr.priority > UINT16_MAX;
1339 /* Creates and returns a new rule initialized as specified.
1341 * The caller is responsible for inserting the rule into the classifier (with
1342 * rule_insert()). */
1343 static struct rule *
1344 rule_create(const struct cls_rule *cls_rule,
1345 const union ofp_action *actions, size_t n_actions,
1346 uint16_t idle_timeout, uint16_t hard_timeout,
1347 ovs_be64 flow_cookie, bool send_flow_removed)
1349 struct rule *rule = xzalloc(sizeof *rule);
1350 rule->cr = *cls_rule;
1351 rule->idle_timeout = idle_timeout;
1352 rule->hard_timeout = hard_timeout;
1353 rule->flow_cookie = flow_cookie;
1354 rule->used = rule->created = time_msec();
1355 rule->send_flow_removed = send_flow_removed;
1356 list_init(&rule->facets);
1357 if (n_actions > 0) {
1358 rule->n_actions = n_actions;
1359 rule->actions = xmemdup(actions, n_actions * sizeof *actions);
1365 static struct rule *
1366 rule_from_cls_rule(const struct cls_rule *cls_rule)
1368 return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
1372 rule_free(struct rule *rule)
1374 free(rule->actions);
1378 /* Destroys 'rule' and iterates through all of its facets and revalidates them,
1379 * destroying any that no longer has a rule (which is probably all of them).
1381 * The caller must have already removed 'rule' from the classifier. */
1383 rule_destroy(struct ofproto *ofproto, struct rule *rule)
1385 struct facet *facet, *next_facet;
1386 LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
1387 facet_revalidate(ofproto, facet);
1392 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
1393 * that outputs to 'out_port' (output to OFPP_FLOOD and OFPP_ALL doesn't
1396 rule_has_out_port(const struct rule *rule, ovs_be16 out_port)
1398 const union ofp_action *oa;
1399 struct actions_iterator i;
1401 if (out_port == htons(OFPP_NONE)) {
1404 for (oa = actions_first(&i, rule->actions, rule->n_actions); oa;
1405 oa = actions_next(&i)) {
1406 if (action_outputs_to_port(oa, out_port)) {
1413 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
1414 * 'packet', which arrived on 'in_port'.
1416 * Takes ownership of 'packet'. */
1418 execute_odp_actions(struct ofproto *ofproto, const struct flow *flow,
1419 const struct nlattr *odp_actions, size_t actions_len,
1420 struct ofpbuf *packet)
1422 if (actions_len == NLA_ALIGN(NLA_HDRLEN + sizeof(uint64_t))
1423 && odp_actions->nla_type == ODP_ACTION_ATTR_CONTROLLER) {
1424 /* As an optimization, avoid a round-trip from userspace to kernel to
1425 * userspace. This also avoids possibly filling up kernel packet
1426 * buffers along the way. */
1427 struct dpif_upcall upcall;
1429 upcall.type = DPIF_UC_ACTION;
1430 upcall.packet = packet;
1433 upcall.userdata = nl_attr_get_u64(odp_actions);
1434 upcall.sample_pool = 0;
1435 upcall.actions = NULL;
1436 upcall.actions_len = 0;
1438 send_packet_in(ofproto, &upcall, flow, false);
1444 error = dpif_execute(ofproto->dpif, odp_actions, actions_len, packet);
1445 ofpbuf_delete(packet);
1450 /* Executes the actions indicated by 'facet' on 'packet' and credits 'facet''s
1451 * statistics appropriately. 'packet' must have at least sizeof(struct
1452 * ofp_packet_in) bytes of headroom.
1454 * For correct results, 'packet' must actually be in 'facet''s flow; that is,
1455 * applying flow_extract() to 'packet' would yield the same flow as
1458 * 'facet' must have accurately composed ODP actions; that is, it must not be
1459 * in need of revalidation.
1461 * Takes ownership of 'packet'. */
1463 facet_execute(struct ofproto *ofproto, struct facet *facet,
1464 struct ofpbuf *packet)
1466 struct dpif_flow_stats stats;
1468 assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
1470 flow_extract_stats(&facet->flow, packet, &stats);
1471 stats.used = time_msec();
1472 if (execute_odp_actions(ofproto, &facet->flow,
1473 facet->actions, facet->actions_len, packet)) {
1474 facet_update_stats(ofproto, facet, &stats);
1478 /* Executes the actions indicated by 'rule' on 'packet' and credits 'rule''s
1479 * statistics (or the statistics for one of its facets) appropriately.
1480 * 'packet' must have at least sizeof(struct ofp_packet_in) bytes of headroom.
1482 * 'packet' doesn't necessarily have to match 'rule'. 'rule' will be credited
1483 * with statistics for 'packet' either way.
1485 * Takes ownership of 'packet'. */
1487 rule_execute(struct ofproto *ofproto, struct rule *rule, uint16_t in_port,
1488 struct ofpbuf *packet)
1490 struct action_xlate_ctx ctx;
1491 struct ofpbuf *odp_actions;
1492 struct facet *facet;
1496 assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
1498 flow_extract(packet, 0, in_port, &flow);
1500 /* First look for a related facet. If we find one, account it to that. */
1501 facet = facet_lookup_valid(ofproto, &flow);
1502 if (facet && facet->rule == rule) {
1503 facet_execute(ofproto, facet, packet);
1507 /* Otherwise, if 'rule' is in fact the correct rule for 'packet', then
1508 * create a new facet for it and use that. */
1509 if (rule_lookup(ofproto, &flow) == rule) {
1510 facet = facet_create(ofproto, rule, &flow, packet);
1511 facet_execute(ofproto, facet, packet);
1512 facet_install(ofproto, facet, true);
1516 /* We can't account anything to a facet. If we were to try, then that
1517 * facet would have a non-matching rule, busting our invariants. */
1518 action_xlate_ctx_init(&ctx, ofproto, &flow, packet);
1519 odp_actions = xlate_actions(&ctx, rule->actions, rule->n_actions);
1520 size = packet->size;
1521 if (execute_odp_actions(ofproto, &flow, odp_actions->data,
1522 odp_actions->size, packet)) {
1523 rule->used = time_msec();
1524 rule->packet_count++;
1525 rule->byte_count += size;
1526 flow_push_stats(ofproto, rule, &flow, 1, size, rule->used);
1528 ofpbuf_delete(odp_actions);
1531 /* Inserts 'rule' into 'p''s flow table. */
1533 rule_insert(struct ofproto *p, struct rule *rule)
1535 struct rule *displaced_rule;
1537 displaced_rule = rule_from_cls_rule(classifier_insert(&p->cls, &rule->cr));
1538 if (displaced_rule) {
1539 rule_destroy(p, displaced_rule);
1541 p->need_revalidate = true;
1544 /* Creates and returns a new facet within 'ofproto' owned by 'rule', given a
1545 * 'flow' and an example 'packet' within that flow.
1547 * The caller must already have determined that no facet with an identical
1548 * 'flow' exists in 'ofproto' and that 'flow' is the best match for 'rule' in
1549 * 'ofproto''s classifier table. */
1550 static struct facet *
1551 facet_create(struct ofproto *ofproto, struct rule *rule,
1552 const struct flow *flow, const struct ofpbuf *packet)
1554 struct facet *facet;
1556 facet = xzalloc(sizeof *facet);
1557 facet->used = time_msec();
1558 hmap_insert(&ofproto->facets, &facet->hmap_node, flow_hash(flow, 0));
1559 list_push_back(&rule->facets, &facet->list_node);
1561 facet->flow = *flow;
1562 netflow_flow_init(&facet->nf_flow);
1563 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
1565 facet_make_actions(ofproto, facet, packet);
1571 facet_free(struct facet *facet)
1573 free(facet->actions);
1577 /* Remove 'rule' from 'ofproto' and free up the associated memory:
1579 * - Removes 'rule' from the classifier.
1581 * - If 'rule' has facets, revalidates them (and possibly uninstalls and
1582 * destroys them), via rule_destroy().
1585 rule_remove(struct ofproto *ofproto, struct rule *rule)
1587 COVERAGE_INC(ofproto_del_rule);
1588 ofproto->need_revalidate = true;
1589 classifier_remove(&ofproto->cls, &rule->cr);
1590 rule_destroy(ofproto, rule);
1593 /* Remove 'facet' from 'ofproto' and free up the associated memory:
1595 * - If 'facet' was installed in the datapath, uninstalls it and updates its
1596 * rule's statistics, via facet_uninstall().
1598 * - Removes 'facet' from its rule and from ofproto->facets.
1601 facet_remove(struct ofproto *ofproto, struct facet *facet)
1603 facet_uninstall(ofproto, facet);
1604 facet_flush_stats(ofproto, facet);
1605 hmap_remove(&ofproto->facets, &facet->hmap_node);
1606 list_remove(&facet->list_node);
1610 /* Composes the ODP actions for 'facet' based on its rule's actions. */
1612 facet_make_actions(struct ofproto *p, struct facet *facet,
1613 const struct ofpbuf *packet)
1615 const struct rule *rule = facet->rule;
1616 struct ofpbuf *odp_actions;
1617 struct action_xlate_ctx ctx;
1619 action_xlate_ctx_init(&ctx, p, &facet->flow, packet);
1620 odp_actions = xlate_actions(&ctx, rule->actions, rule->n_actions);
1621 facet->tags = ctx.tags;
1622 facet->may_install = ctx.may_set_up_flow;
1623 facet->nf_flow.output_iface = ctx.nf_output_iface;
1625 if (facet->actions_len != odp_actions->size
1626 || memcmp(facet->actions, odp_actions->data, odp_actions->size)) {
1627 free(facet->actions);
1628 facet->actions_len = odp_actions->size;
1629 facet->actions = xmemdup(odp_actions->data, odp_actions->size);
1632 ofpbuf_delete(odp_actions);
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;
1644 flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
1646 flags |= DPIF_FP_ZERO_STATS;
1647 facet->dp_packet_count = 0;
1648 facet->dp_byte_count = 0;
1651 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1652 odp_flow_key_from_flow(&key, &facet->flow);
1654 return dpif_flow_put(ofproto->dpif, flags, key.data, key.size,
1655 actions, actions_len, stats);
1658 /* If 'facet' is installable, inserts or re-inserts it into 'p''s datapath. If
1659 * 'zero_stats' is true, clears any existing statistics from the datapath for
1662 facet_install(struct ofproto *p, struct facet *facet, bool zero_stats)
1664 struct dpif_flow_stats stats;
1666 if (facet->may_install
1667 && !facet_put__(p, facet, facet->actions, facet->actions_len,
1668 zero_stats ? &stats : NULL)) {
1669 facet->installed = true;
1673 /* Ensures that the bytes in 'facet', plus 'extra_bytes', have been passed up
1674 * to the accounting hook function in the ofhooks structure. */
1676 facet_account(struct ofproto *ofproto,
1677 struct facet *facet, uint64_t extra_bytes)
1679 uint64_t total_bytes = facet->byte_count + extra_bytes;
1681 if (ofproto->ofhooks->account_flow_cb
1682 && total_bytes > facet->accounted_bytes)
1684 ofproto->ofhooks->account_flow_cb(
1685 &facet->flow, facet->tags, facet->actions, facet->actions_len,
1686 total_bytes - facet->accounted_bytes, ofproto->aux);
1687 facet->accounted_bytes = total_bytes;
1691 /* If 'rule' is installed in the datapath, uninstalls it. */
1693 facet_uninstall(struct ofproto *p, struct facet *facet)
1695 if (facet->installed) {
1696 struct odputil_keybuf keybuf;
1697 struct dpif_flow_stats stats;
1700 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1701 odp_flow_key_from_flow(&key, &facet->flow);
1703 if (!dpif_flow_del(p->dpif, key.data, key.size, &stats)) {
1704 facet_update_stats(p, facet, &stats);
1706 facet->installed = false;
1707 facet->dp_packet_count = 0;
1708 facet->dp_byte_count = 0;
1710 assert(facet->dp_packet_count == 0);
1711 assert(facet->dp_byte_count == 0);
1715 /* Returns true if the only action for 'facet' is to send to the controller.
1716 * (We don't report NetFlow expiration messages for such facets because they
1717 * are just part of the control logic for the network, not real traffic). */
1719 facet_is_controller_flow(struct facet *facet)
1722 && facet->rule->n_actions == 1
1723 && action_outputs_to_port(&facet->rule->actions[0],
1724 htons(OFPP_CONTROLLER)));
1727 /* Folds all of 'facet''s statistics into its rule. Also updates the
1728 * accounting ofhook and emits a NetFlow expiration if appropriate. All of
1729 * 'facet''s statistics in the datapath should have been zeroed and folded into
1730 * its packet and byte counts before this function is called. */
1732 facet_flush_stats(struct ofproto *ofproto, struct facet *facet)
1734 assert(!facet->dp_byte_count);
1735 assert(!facet->dp_packet_count);
1737 facet_push_stats(ofproto, facet);
1738 facet_account(ofproto, facet, 0);
1740 if (ofproto->netflow && !facet_is_controller_flow(facet)) {
1741 struct ofexpired expired;
1742 expired.flow = facet->flow;
1743 expired.packet_count = facet->packet_count;
1744 expired.byte_count = facet->byte_count;
1745 expired.used = facet->used;
1746 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
1749 facet->rule->packet_count += facet->packet_count;
1750 facet->rule->byte_count += facet->byte_count;
1752 /* Reset counters to prevent double counting if 'facet' ever gets
1754 facet->packet_count = 0;
1755 facet->byte_count = 0;
1756 facet->rs_packet_count = 0;
1757 facet->rs_byte_count = 0;
1758 facet->accounted_bytes = 0;
1760 netflow_flow_clear(&facet->nf_flow);
1763 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
1764 * Returns it if found, otherwise a null pointer.
1766 * The returned facet might need revalidation; use facet_lookup_valid()
1767 * instead if that is important. */
1768 static struct facet *
1769 facet_find(struct ofproto *ofproto, const struct flow *flow)
1771 struct facet *facet;
1773 HMAP_FOR_EACH_WITH_HASH (facet, hmap_node, flow_hash(flow, 0),
1775 if (flow_equal(flow, &facet->flow)) {
1783 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
1784 * Returns it if found, otherwise a null pointer.
1786 * The returned facet is guaranteed to be valid. */
1787 static struct facet *
1788 facet_lookup_valid(struct ofproto *ofproto, const struct flow *flow)
1790 struct facet *facet = facet_find(ofproto, flow);
1792 /* The facet we found might not be valid, since we could be in need of
1793 * revalidation. If it is not valid, don't return it. */
1795 && ofproto->need_revalidate
1796 && !facet_revalidate(ofproto, facet)) {
1797 COVERAGE_INC(ofproto_invalidated);
1804 /* Re-searches 'ofproto''s classifier for a rule matching 'facet':
1806 * - If the rule found is different from 'facet''s current rule, moves
1807 * 'facet' to the new rule and recompiles its actions.
1809 * - If the rule found is the same as 'facet''s current rule, leaves 'facet'
1810 * where it is and recompiles its actions anyway.
1812 * - If there is none, destroys 'facet'.
1814 * Returns true if 'facet' still exists, false if it has been destroyed. */
1816 facet_revalidate(struct ofproto *ofproto, struct facet *facet)
1818 struct action_xlate_ctx ctx;
1819 struct ofpbuf *odp_actions;
1820 struct rule *new_rule;
1821 bool actions_changed;
1823 COVERAGE_INC(facet_revalidate);
1825 /* Determine the new rule. */
1826 new_rule = rule_lookup(ofproto, &facet->flow);
1828 /* No new rule, so delete the facet. */
1829 facet_remove(ofproto, facet);
1833 /* Calculate new ODP actions.
1835 * We do not modify any 'facet' state yet, because we might need to, e.g.,
1836 * emit a NetFlow expiration and, if so, we need to have the old state
1837 * around to properly compose it. */
1838 action_xlate_ctx_init(&ctx, ofproto, &facet->flow, NULL);
1839 odp_actions = xlate_actions(&ctx, new_rule->actions, new_rule->n_actions);
1840 actions_changed = (facet->actions_len != odp_actions->size
1841 || memcmp(facet->actions, odp_actions->data,
1842 facet->actions_len));
1844 /* If the ODP actions changed or the installability changed, then we need
1845 * to talk to the datapath. */
1846 if (actions_changed || ctx.may_set_up_flow != facet->installed) {
1847 if (ctx.may_set_up_flow) {
1848 struct dpif_flow_stats stats;
1850 facet_put__(ofproto, facet,
1851 odp_actions->data, odp_actions->size, &stats);
1852 facet_update_stats(ofproto, facet, &stats);
1854 facet_uninstall(ofproto, facet);
1857 /* The datapath flow is gone or has zeroed stats, so push stats out of
1858 * 'facet' into 'rule'. */
1859 facet_flush_stats(ofproto, facet);
1862 /* Update 'facet' now that we've taken care of all the old state. */
1863 facet->tags = ctx.tags;
1864 facet->nf_flow.output_iface = ctx.nf_output_iface;
1865 facet->may_install = ctx.may_set_up_flow;
1866 if (actions_changed) {
1867 free(facet->actions);
1868 facet->actions_len = odp_actions->size;
1869 facet->actions = xmemdup(odp_actions->data, odp_actions->size);
1871 if (facet->rule != new_rule) {
1872 COVERAGE_INC(facet_changed_rule);
1873 list_remove(&facet->list_node);
1874 list_push_back(&new_rule->facets, &facet->list_node);
1875 facet->rule = new_rule;
1876 facet->used = new_rule->created;
1877 facet->rs_used = facet->used;
1880 ofpbuf_delete(odp_actions);
1886 send_error_oh(const struct ofconn *ofconn, const struct ofp_header *oh,
1889 struct ofpbuf *buf = ofputil_encode_error_msg(error, oh);
1891 COVERAGE_INC(ofproto_error);
1892 ofconn_send_reply(ofconn, buf);
1897 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
1899 ofconn_send_reply(ofconn, make_echo_reply(oh));
1904 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
1906 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1907 struct ofp_switch_features *osf;
1909 struct ofport *port;
1911 osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
1912 osf->datapath_id = htonll(ofproto->datapath_id);
1913 osf->n_buffers = htonl(pktbuf_capacity());
1915 osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
1916 OFPC_PORT_STATS | OFPC_ARP_MATCH_IP);
1917 osf->actions = htonl((1u << OFPAT_OUTPUT) |
1918 (1u << OFPAT_SET_VLAN_VID) |
1919 (1u << OFPAT_SET_VLAN_PCP) |
1920 (1u << OFPAT_STRIP_VLAN) |
1921 (1u << OFPAT_SET_DL_SRC) |
1922 (1u << OFPAT_SET_DL_DST) |
1923 (1u << OFPAT_SET_NW_SRC) |
1924 (1u << OFPAT_SET_NW_DST) |
1925 (1u << OFPAT_SET_NW_TOS) |
1926 (1u << OFPAT_SET_TP_SRC) |
1927 (1u << OFPAT_SET_TP_DST) |
1928 (1u << OFPAT_ENQUEUE));
1930 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
1931 hton_ofp_phy_port(ofpbuf_put(buf, &port->opp, sizeof port->opp));
1934 ofconn_send_reply(ofconn, buf);
1939 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
1941 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1943 struct ofp_switch_config *osc;
1947 /* Figure out flags. */
1948 dpif_get_drop_frags(ofproto->dpif, &drop_frags);
1949 flags = drop_frags ? OFPC_FRAG_DROP : OFPC_FRAG_NORMAL;
1952 osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
1953 osc->flags = htons(flags);
1954 osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
1955 ofconn_send_reply(ofconn, buf);
1961 handle_set_config(struct ofconn *ofconn, const struct ofp_switch_config *osc)
1963 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1964 uint16_t flags = ntohs(osc->flags);
1966 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
1967 && ofconn_get_role(ofconn) != NX_ROLE_SLAVE) {
1968 switch (flags & OFPC_FRAG_MASK) {
1969 case OFPC_FRAG_NORMAL:
1970 dpif_set_drop_frags(ofproto->dpif, false);
1972 case OFPC_FRAG_DROP:
1973 dpif_set_drop_frags(ofproto->dpif, true);
1976 VLOG_WARN_RL(&rl, "requested bad fragment mode (flags=%"PRIx16")",
1982 ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
1987 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
1988 struct action_xlate_ctx *ctx);
1991 add_output_action(struct action_xlate_ctx *ctx, uint16_t port)
1993 const struct ofport *ofport = get_port(ctx->ofproto, port);
1996 if (ofport->opp.config & OFPPC_NO_FWD) {
1997 /* Forwarding disabled on port. */
2002 * We don't have an ofport record for this port, but it doesn't hurt to
2003 * allow forwarding to it anyhow. Maybe such a port will appear later
2004 * and we're pre-populating the flow table.
2008 nl_msg_put_u32(ctx->odp_actions, ODP_ACTION_ATTR_OUTPUT, port);
2009 ctx->nf_output_iface = port;
2012 static struct rule *
2013 rule_lookup(struct ofproto *ofproto, const struct flow *flow)
2015 return rule_from_cls_rule(classifier_lookup(&ofproto->cls, flow));
2019 xlate_table_action(struct action_xlate_ctx *ctx, uint16_t in_port)
2021 if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
2022 uint16_t old_in_port;
2025 /* Look up a flow with 'in_port' as the input port. Then restore the
2026 * original input port (otherwise OFPP_NORMAL and OFPP_IN_PORT will
2027 * have surprising behavior). */
2028 old_in_port = ctx->flow.in_port;
2029 ctx->flow.in_port = in_port;
2030 rule = rule_lookup(ctx->ofproto, &ctx->flow);
2031 ctx->flow.in_port = old_in_port;
2033 if (ctx->resubmit_hook) {
2034 ctx->resubmit_hook(ctx, rule);
2039 do_xlate_actions(rule->actions, rule->n_actions, ctx);
2043 static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
2045 VLOG_ERR_RL(&recurse_rl, "NXAST_RESUBMIT recursed over %d times",
2046 MAX_RESUBMIT_RECURSION);
2051 flood_packets(struct ofproto *ofproto, uint16_t odp_in_port, uint32_t mask,
2052 uint16_t *nf_output_iface, struct ofpbuf *odp_actions)
2054 struct ofport *ofport;
2056 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
2057 uint16_t odp_port = ofport->odp_port;
2058 if (odp_port != odp_in_port && !(ofport->opp.config & mask)) {
2059 nl_msg_put_u32(odp_actions, ODP_ACTION_ATTR_OUTPUT, odp_port);
2062 *nf_output_iface = NF_OUT_FLOOD;
2066 xlate_output_action__(struct action_xlate_ctx *ctx,
2067 uint16_t port, uint16_t max_len)
2070 uint16_t prev_nf_output_iface = ctx->nf_output_iface;
2072 ctx->nf_output_iface = NF_OUT_DROP;
2076 add_output_action(ctx, ctx->flow.in_port);
2079 xlate_table_action(ctx, ctx->flow.in_port);
2082 if (!ctx->ofproto->ofhooks->normal_cb(&ctx->flow, ctx->packet,
2083 ctx->odp_actions, &ctx->tags,
2084 &ctx->nf_output_iface,
2085 ctx->ofproto->aux)) {
2086 COVERAGE_INC(ofproto_uninstallable);
2087 ctx->may_set_up_flow = false;
2091 flood_packets(ctx->ofproto, ctx->flow.in_port, OFPPC_NO_FLOOD,
2092 &ctx->nf_output_iface, ctx->odp_actions);
2095 flood_packets(ctx->ofproto, ctx->flow.in_port, 0,
2096 &ctx->nf_output_iface, ctx->odp_actions);
2098 case OFPP_CONTROLLER:
2099 nl_msg_put_u64(ctx->odp_actions, ODP_ACTION_ATTR_CONTROLLER, max_len);
2102 add_output_action(ctx, ODPP_LOCAL);
2105 odp_port = ofp_port_to_odp_port(port);
2106 if (odp_port != ctx->flow.in_port) {
2107 add_output_action(ctx, odp_port);
2112 if (prev_nf_output_iface == NF_OUT_FLOOD) {
2113 ctx->nf_output_iface = NF_OUT_FLOOD;
2114 } else if (ctx->nf_output_iface == NF_OUT_DROP) {
2115 ctx->nf_output_iface = prev_nf_output_iface;
2116 } else if (prev_nf_output_iface != NF_OUT_DROP &&
2117 ctx->nf_output_iface != NF_OUT_FLOOD) {
2118 ctx->nf_output_iface = NF_OUT_MULTI;
2123 xlate_output_action(struct action_xlate_ctx *ctx,
2124 const struct ofp_action_output *oao)
2126 xlate_output_action__(ctx, ntohs(oao->port), ntohs(oao->max_len));
2129 /* If the final ODP action in 'ctx' is "pop priority", drop it, as an
2130 * optimization, because we're going to add another action that sets the
2131 * priority immediately after, or because there are no actions following the
2134 remove_pop_action(struct action_xlate_ctx *ctx)
2136 if (ctx->odp_actions->size == ctx->last_pop_priority) {
2137 ctx->odp_actions->size -= NLA_ALIGN(NLA_HDRLEN);
2138 ctx->last_pop_priority = -1;
2143 add_pop_action(struct action_xlate_ctx *ctx)
2145 if (ctx->odp_actions->size != ctx->last_pop_priority) {
2146 nl_msg_put_flag(ctx->odp_actions, ODP_ACTION_ATTR_POP_PRIORITY);
2147 ctx->last_pop_priority = ctx->odp_actions->size;
2152 xlate_enqueue_action(struct action_xlate_ctx *ctx,
2153 const struct ofp_action_enqueue *oae)
2155 uint16_t ofp_port, odp_port;
2159 error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(oae->queue_id),
2162 /* Fall back to ordinary output action. */
2163 xlate_output_action__(ctx, ntohs(oae->port), 0);
2167 /* Figure out ODP output port. */
2168 ofp_port = ntohs(oae->port);
2169 if (ofp_port != OFPP_IN_PORT) {
2170 odp_port = ofp_port_to_odp_port(ofp_port);
2172 odp_port = ctx->flow.in_port;
2175 /* Add ODP actions. */
2176 remove_pop_action(ctx);
2177 nl_msg_put_u32(ctx->odp_actions, ODP_ACTION_ATTR_SET_PRIORITY, priority);
2178 add_output_action(ctx, odp_port);
2179 add_pop_action(ctx);
2181 /* Update NetFlow output port. */
2182 if (ctx->nf_output_iface == NF_OUT_DROP) {
2183 ctx->nf_output_iface = odp_port;
2184 } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
2185 ctx->nf_output_iface = NF_OUT_MULTI;
2190 xlate_set_queue_action(struct action_xlate_ctx *ctx,
2191 const struct nx_action_set_queue *nasq)
2196 error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(nasq->queue_id),
2199 /* Couldn't translate queue to a priority, so ignore. A warning
2200 * has already been logged. */
2204 remove_pop_action(ctx);
2205 nl_msg_put_u32(ctx->odp_actions, ODP_ACTION_ATTR_SET_PRIORITY, priority);
2209 xlate_set_dl_tci(struct action_xlate_ctx *ctx)
2211 ovs_be16 tci = ctx->flow.vlan_tci;
2212 if (!(tci & htons(VLAN_CFI))) {
2213 nl_msg_put_flag(ctx->odp_actions, ODP_ACTION_ATTR_STRIP_VLAN);
2215 nl_msg_put_be16(ctx->odp_actions, ODP_ACTION_ATTR_SET_DL_TCI,
2216 tci & ~htons(VLAN_CFI));
2220 struct xlate_reg_state {
2226 save_reg_state(const struct action_xlate_ctx *ctx,
2227 struct xlate_reg_state *state)
2229 state->vlan_tci = ctx->flow.vlan_tci;
2230 state->tun_id = ctx->flow.tun_id;
2234 update_reg_state(struct action_xlate_ctx *ctx,
2235 const struct xlate_reg_state *state)
2237 if (ctx->flow.vlan_tci != state->vlan_tci) {
2238 xlate_set_dl_tci(ctx);
2240 if (ctx->flow.tun_id != state->tun_id) {
2241 nl_msg_put_be64(ctx->odp_actions,
2242 ODP_ACTION_ATTR_SET_TUNNEL, ctx->flow.tun_id);
2247 xlate_nicira_action(struct action_xlate_ctx *ctx,
2248 const struct nx_action_header *nah)
2250 const struct nx_action_resubmit *nar;
2251 const struct nx_action_set_tunnel *nast;
2252 const struct nx_action_set_queue *nasq;
2253 const struct nx_action_multipath *nam;
2254 const struct nx_action_autopath *naa;
2255 enum nx_action_subtype subtype = ntohs(nah->subtype);
2256 const struct ofhooks *ofhooks = ctx->ofproto->ofhooks;
2257 struct xlate_reg_state state;
2258 uint16_t autopath_port;
2261 assert(nah->vendor == htonl(NX_VENDOR_ID));
2263 case NXAST_RESUBMIT:
2264 nar = (const struct nx_action_resubmit *) nah;
2265 xlate_table_action(ctx, ofp_port_to_odp_port(ntohs(nar->in_port)));
2268 case NXAST_SET_TUNNEL:
2269 nast = (const struct nx_action_set_tunnel *) nah;
2270 tun_id = htonll(ntohl(nast->tun_id));
2271 nl_msg_put_be64(ctx->odp_actions, ODP_ACTION_ATTR_SET_TUNNEL, tun_id);
2272 ctx->flow.tun_id = tun_id;
2275 case NXAST_DROP_SPOOFED_ARP:
2276 if (ctx->flow.dl_type == htons(ETH_TYPE_ARP)) {
2277 nl_msg_put_flag(ctx->odp_actions,
2278 ODP_ACTION_ATTR_DROP_SPOOFED_ARP);
2282 case NXAST_SET_QUEUE:
2283 nasq = (const struct nx_action_set_queue *) nah;
2284 xlate_set_queue_action(ctx, nasq);
2287 case NXAST_POP_QUEUE:
2288 add_pop_action(ctx);
2291 case NXAST_REG_MOVE:
2292 save_reg_state(ctx, &state);
2293 nxm_execute_reg_move((const struct nx_action_reg_move *) nah,
2295 update_reg_state(ctx, &state);
2298 case NXAST_REG_LOAD:
2299 save_reg_state(ctx, &state);
2300 nxm_execute_reg_load((const struct nx_action_reg_load *) nah,
2302 update_reg_state(ctx, &state);
2306 /* Nothing to do. */
2309 case NXAST_SET_TUNNEL64:
2310 tun_id = ((const struct nx_action_set_tunnel64 *) nah)->tun_id;
2311 nl_msg_put_be64(ctx->odp_actions, ODP_ACTION_ATTR_SET_TUNNEL, tun_id);
2312 ctx->flow.tun_id = tun_id;
2315 case NXAST_MULTIPATH:
2316 nam = (const struct nx_action_multipath *) nah;
2317 multipath_execute(nam, &ctx->flow);
2320 case NXAST_AUTOPATH:
2321 naa = (const struct nx_action_autopath *) nah;
2322 autopath_port = (ofhooks->autopath_cb
2323 ? ofhooks->autopath_cb(&ctx->flow, ntohl(naa->id),
2324 &ctx->tags, ctx->ofproto->aux)
2326 autopath_execute(naa, &ctx->flow, autopath_port);
2329 /* If you add a new action here that modifies flow data, don't forget to
2330 * update the flow key in ctx->flow at the same time. */
2332 case NXAST_SNAT__OBSOLETE:
2334 VLOG_DBG_RL(&rl, "unknown Nicira action type %d", (int) subtype);
2340 do_xlate_actions(const union ofp_action *in, size_t n_in,
2341 struct action_xlate_ctx *ctx)
2343 struct actions_iterator iter;
2344 const union ofp_action *ia;
2345 const struct ofport *port;
2347 port = get_port(ctx->ofproto, ctx->flow.in_port);
2348 if (port && port->opp.config & (OFPPC_NO_RECV | OFPPC_NO_RECV_STP) &&
2349 port->opp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
2350 ? OFPPC_NO_RECV_STP : OFPPC_NO_RECV)) {
2351 /* Drop this flow. */
2355 for (ia = actions_first(&iter, in, n_in); ia; ia = actions_next(&iter)) {
2356 enum ofp_action_type type = ntohs(ia->type);
2357 const struct ofp_action_dl_addr *oada;
2361 xlate_output_action(ctx, &ia->output);
2364 case OFPAT_SET_VLAN_VID:
2365 ctx->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
2366 ctx->flow.vlan_tci |= ia->vlan_vid.vlan_vid | htons(VLAN_CFI);
2367 xlate_set_dl_tci(ctx);
2370 case OFPAT_SET_VLAN_PCP:
2371 ctx->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
2372 ctx->flow.vlan_tci |= htons(
2373 (ia->vlan_pcp.vlan_pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
2374 xlate_set_dl_tci(ctx);
2377 case OFPAT_STRIP_VLAN:
2378 ctx->flow.vlan_tci = htons(0);
2379 xlate_set_dl_tci(ctx);
2382 case OFPAT_SET_DL_SRC:
2383 oada = ((struct ofp_action_dl_addr *) ia);
2384 nl_msg_put_unspec(ctx->odp_actions, ODP_ACTION_ATTR_SET_DL_SRC,
2385 oada->dl_addr, ETH_ADDR_LEN);
2386 memcpy(ctx->flow.dl_src, oada->dl_addr, ETH_ADDR_LEN);
2389 case OFPAT_SET_DL_DST:
2390 oada = ((struct ofp_action_dl_addr *) ia);
2391 nl_msg_put_unspec(ctx->odp_actions, ODP_ACTION_ATTR_SET_DL_DST,
2392 oada->dl_addr, ETH_ADDR_LEN);
2393 memcpy(ctx->flow.dl_dst, oada->dl_addr, ETH_ADDR_LEN);
2396 case OFPAT_SET_NW_SRC:
2397 nl_msg_put_be32(ctx->odp_actions, ODP_ACTION_ATTR_SET_NW_SRC,
2398 ia->nw_addr.nw_addr);
2399 ctx->flow.nw_src = ia->nw_addr.nw_addr;
2402 case OFPAT_SET_NW_DST:
2403 nl_msg_put_be32(ctx->odp_actions, ODP_ACTION_ATTR_SET_NW_DST,
2404 ia->nw_addr.nw_addr);
2405 ctx->flow.nw_dst = ia->nw_addr.nw_addr;
2408 case OFPAT_SET_NW_TOS:
2409 nl_msg_put_u8(ctx->odp_actions, ODP_ACTION_ATTR_SET_NW_TOS,
2411 ctx->flow.nw_tos = ia->nw_tos.nw_tos;
2414 case OFPAT_SET_TP_SRC:
2415 nl_msg_put_be16(ctx->odp_actions, ODP_ACTION_ATTR_SET_TP_SRC,
2416 ia->tp_port.tp_port);
2417 ctx->flow.tp_src = ia->tp_port.tp_port;
2420 case OFPAT_SET_TP_DST:
2421 nl_msg_put_be16(ctx->odp_actions, ODP_ACTION_ATTR_SET_TP_DST,
2422 ia->tp_port.tp_port);
2423 ctx->flow.tp_dst = ia->tp_port.tp_port;
2427 xlate_nicira_action(ctx, (const struct nx_action_header *) ia);
2431 xlate_enqueue_action(ctx, (const struct ofp_action_enqueue *) ia);
2435 VLOG_DBG_RL(&rl, "unknown action type %d", (int) type);
2442 action_xlate_ctx_init(struct action_xlate_ctx *ctx,
2443 struct ofproto *ofproto, const struct flow *flow,
2444 const struct ofpbuf *packet)
2446 ctx->ofproto = ofproto;
2448 ctx->packet = packet;
2449 ctx->resubmit_hook = NULL;
2450 ctx->check_special = true;
2454 ofproto_process_cfm(struct ofproto *ofproto, const struct flow *flow,
2455 const struct ofpbuf *packet)
2457 struct ofport *ofport;
2459 ofport = get_port(ofproto, flow->in_port);
2460 if (ofport && ofport->cfm) {
2461 cfm_process_heartbeat(ofport->cfm, packet);
2465 static struct ofpbuf *
2466 xlate_actions(struct action_xlate_ctx *ctx,
2467 const union ofp_action *in, size_t n_in)
2469 COVERAGE_INC(ofproto_ofp2odp);
2471 ctx->odp_actions = ofpbuf_new(512);
2473 ctx->may_set_up_flow = true;
2474 ctx->nf_output_iface = NF_OUT_DROP;
2476 ctx->last_pop_priority = -1;
2478 if (ctx->check_special && cfm_should_process_flow(&ctx->flow)) {
2480 ofproto_process_cfm(ctx->ofproto, &ctx->flow, ctx->packet);
2482 ctx->may_set_up_flow = false;
2483 } else if (ctx->check_special
2484 && ctx->ofproto->ofhooks->special_cb
2485 && !ctx->ofproto->ofhooks->special_cb(&ctx->flow, ctx->packet,
2486 ctx->ofproto->aux)) {
2487 ctx->may_set_up_flow = false;
2489 do_xlate_actions(in, n_in, ctx);
2492 remove_pop_action(ctx);
2494 /* Check with in-band control to see if we're allowed to set up this
2496 if (!connmgr_may_set_up_flow(ctx->ofproto->connmgr, &ctx->flow,
2497 ctx->odp_actions->data,
2498 ctx->odp_actions->size)) {
2499 ctx->may_set_up_flow = false;
2502 return ctx->odp_actions;
2505 /* Checks whether 'ofconn' is a slave controller. If so, returns an OpenFlow
2506 * error message code (composed with ofp_mkerr()) for the caller to propagate
2507 * upward. Otherwise, returns 0.
2509 * The log message mentions 'msg_type'. */
2511 reject_slave_controller(struct ofconn *ofconn, const const char *msg_type)
2513 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
2514 && ofconn_get_role(ofconn) == NX_ROLE_SLAVE) {
2515 static struct vlog_rate_limit perm_rl = VLOG_RATE_LIMIT_INIT(1, 5);
2516 VLOG_WARN_RL(&perm_rl, "rejecting %s message from slave controller",
2519 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2526 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
2528 struct ofproto *p = ofconn_get_ofproto(ofconn);
2529 struct ofp_packet_out *opo;
2530 struct ofpbuf payload, *buffer;
2531 union ofp_action *ofp_actions;
2532 struct action_xlate_ctx ctx;
2533 struct ofpbuf *odp_actions;
2534 struct ofpbuf request;
2536 size_t n_ofp_actions;
2540 COVERAGE_INC(ofproto_packet_out);
2542 error = reject_slave_controller(ofconn, "OFPT_PACKET_OUT");
2547 /* Get ofp_packet_out. */
2548 ofpbuf_use_const(&request, oh, ntohs(oh->length));
2549 opo = ofpbuf_pull(&request, offsetof(struct ofp_packet_out, actions));
2552 error = ofputil_pull_actions(&request, ntohs(opo->actions_len),
2553 &ofp_actions, &n_ofp_actions);
2559 if (opo->buffer_id != htonl(UINT32_MAX)) {
2560 error = ofconn_pktbuf_retrieve(ofconn, ntohl(opo->buffer_id),
2562 if (error || !buffer) {
2571 /* Extract flow, check actions. */
2572 flow_extract(&payload, 0, ofp_port_to_odp_port(ntohs(opo->in_port)),
2574 error = validate_actions(ofp_actions, n_ofp_actions, &flow, p->max_ports);
2580 action_xlate_ctx_init(&ctx, p, &flow, &payload);
2581 odp_actions = xlate_actions(&ctx, ofp_actions, n_ofp_actions);
2582 dpif_execute(p->dpif, odp_actions->data, odp_actions->size, &payload);
2583 ofpbuf_delete(odp_actions);
2586 ofpbuf_delete(buffer);
2591 update_port_config(struct ofproto *p, struct ofport *port,
2592 uint32_t config, uint32_t mask)
2594 mask &= config ^ port->opp.config;
2595 if (mask & OFPPC_PORT_DOWN) {
2596 if (config & OFPPC_PORT_DOWN) {
2597 netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
2599 netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
2602 #define REVALIDATE_BITS (OFPPC_NO_RECV | OFPPC_NO_RECV_STP | \
2603 OFPPC_NO_FWD | OFPPC_NO_FLOOD)
2604 if (mask & REVALIDATE_BITS) {
2605 COVERAGE_INC(ofproto_costly_flags);
2606 port->opp.config ^= mask & REVALIDATE_BITS;
2607 p->need_revalidate = true;
2609 #undef REVALIDATE_BITS
2610 if (mask & OFPPC_NO_PACKET_IN) {
2611 port->opp.config ^= OFPPC_NO_PACKET_IN;
2616 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
2618 struct ofproto *p = ofconn_get_ofproto(ofconn);
2619 const struct ofp_port_mod *opm = (const struct ofp_port_mod *) oh;
2620 struct ofport *port;
2623 error = reject_slave_controller(ofconn, "OFPT_PORT_MOD");
2628 port = get_port(p, ofp_port_to_odp_port(ntohs(opm->port_no)));
2630 return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
2631 } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
2632 return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
2634 update_port_config(p, port, ntohl(opm->config), ntohl(opm->mask));
2635 if (opm->advertise) {
2636 netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
2642 static struct ofpbuf *
2643 make_ofp_stats_reply(ovs_be32 xid, ovs_be16 type, size_t body_len)
2645 struct ofp_stats_reply *osr;
2648 msg = ofpbuf_new(MIN(sizeof *osr + body_len, UINT16_MAX));
2649 osr = put_openflow_xid(sizeof *osr, OFPT_STATS_REPLY, xid, msg);
2651 osr->flags = htons(0);
2655 static struct ofpbuf *
2656 start_ofp_stats_reply(const struct ofp_header *request, size_t body_len)
2658 const struct ofp_stats_request *osr
2659 = (const struct ofp_stats_request *) request;
2660 return make_ofp_stats_reply(osr->header.xid, osr->type, body_len);
2664 append_ofp_stats_reply(size_t nbytes, struct ofconn *ofconn,
2665 struct ofpbuf **msgp)
2667 struct ofpbuf *msg = *msgp;
2668 assert(nbytes <= UINT16_MAX - sizeof(struct ofp_stats_reply));
2669 if (nbytes + msg->size > UINT16_MAX) {
2670 struct ofp_stats_reply *reply = msg->data;
2671 reply->flags = htons(OFPSF_REPLY_MORE);
2672 *msgp = make_ofp_stats_reply(reply->header.xid, reply->type, nbytes);
2673 ofconn_send_reply(ofconn, msg);
2675 return ofpbuf_put_uninit(*msgp, nbytes);
2678 static struct ofpbuf *
2679 make_nxstats_reply(ovs_be32 xid, ovs_be32 subtype, size_t body_len)
2681 struct nicira_stats_msg *nsm;
2684 msg = ofpbuf_new(MIN(sizeof *nsm + body_len, UINT16_MAX));
2685 nsm = put_openflow_xid(sizeof *nsm, OFPT_STATS_REPLY, xid, msg);
2686 nsm->type = htons(OFPST_VENDOR);
2687 nsm->flags = htons(0);
2688 nsm->vendor = htonl(NX_VENDOR_ID);
2689 nsm->subtype = subtype;
2693 static struct ofpbuf *
2694 start_nxstats_reply(const struct nicira_stats_msg *request, size_t body_len)
2696 return make_nxstats_reply(request->header.xid, request->subtype, body_len);
2700 append_nxstats_reply(size_t nbytes, struct ofconn *ofconn,
2701 struct ofpbuf **msgp)
2703 struct ofpbuf *msg = *msgp;
2704 assert(nbytes <= UINT16_MAX - sizeof(struct nicira_stats_msg));
2705 if (nbytes + msg->size > UINT16_MAX) {
2706 struct nicira_stats_msg *reply = msg->data;
2707 reply->flags = htons(OFPSF_REPLY_MORE);
2708 *msgp = make_nxstats_reply(reply->header.xid, reply->subtype, nbytes);
2709 ofconn_send_reply(ofconn, msg);
2711 ofpbuf_prealloc_tailroom(*msgp, nbytes);
2715 handle_desc_stats_request(struct ofconn *ofconn,
2716 const struct ofp_header *request)
2718 struct ofproto *p = ofconn_get_ofproto(ofconn);
2719 struct ofp_desc_stats *ods;
2722 msg = start_ofp_stats_reply(request, sizeof *ods);
2723 ods = append_ofp_stats_reply(sizeof *ods, ofconn, &msg);
2724 memset(ods, 0, sizeof *ods);
2725 ovs_strlcpy(ods->mfr_desc, p->mfr_desc, sizeof ods->mfr_desc);
2726 ovs_strlcpy(ods->hw_desc, p->hw_desc, sizeof ods->hw_desc);
2727 ovs_strlcpy(ods->sw_desc, p->sw_desc, sizeof ods->sw_desc);
2728 ovs_strlcpy(ods->serial_num, p->serial_desc, sizeof ods->serial_num);
2729 ovs_strlcpy(ods->dp_desc, p->dp_desc, sizeof ods->dp_desc);
2730 ofconn_send_reply(ofconn, msg);
2736 handle_table_stats_request(struct ofconn *ofconn,
2737 const struct ofp_header *request)
2739 struct ofproto *p = ofconn_get_ofproto(ofconn);
2740 struct ofp_table_stats *ots;
2743 msg = start_ofp_stats_reply(request, sizeof *ots * 2);
2745 /* Classifier table. */
2746 ots = append_ofp_stats_reply(sizeof *ots, ofconn, &msg);
2747 memset(ots, 0, sizeof *ots);
2748 strcpy(ots->name, "classifier");
2749 ots->wildcards = htonl(OFPFW_ALL);
2750 ots->max_entries = htonl(1024 * 1024); /* An arbitrary big number. */
2751 ots->active_count = htonl(classifier_count(&p->cls));
2752 put_32aligned_be64(&ots->lookup_count, htonll(0)); /* XXX */
2753 put_32aligned_be64(&ots->matched_count, htonll(0)); /* XXX */
2755 ofconn_send_reply(ofconn, msg);
2760 append_port_stat(struct ofport *port, struct ofconn *ofconn,
2761 struct ofpbuf **msgp)
2763 struct netdev_stats stats;
2764 struct ofp_port_stats *ops;
2766 /* Intentionally ignore return value, since errors will set
2767 * 'stats' to all-1s, which is correct for OpenFlow, and
2768 * netdev_get_stats() will log errors. */
2769 netdev_get_stats(port->netdev, &stats);
2771 ops = append_ofp_stats_reply(sizeof *ops, ofconn, msgp);
2772 ops->port_no = htons(port->opp.port_no);
2773 memset(ops->pad, 0, sizeof ops->pad);
2774 put_32aligned_be64(&ops->rx_packets, htonll(stats.rx_packets));
2775 put_32aligned_be64(&ops->tx_packets, htonll(stats.tx_packets));
2776 put_32aligned_be64(&ops->rx_bytes, htonll(stats.rx_bytes));
2777 put_32aligned_be64(&ops->tx_bytes, htonll(stats.tx_bytes));
2778 put_32aligned_be64(&ops->rx_dropped, htonll(stats.rx_dropped));
2779 put_32aligned_be64(&ops->tx_dropped, htonll(stats.tx_dropped));
2780 put_32aligned_be64(&ops->rx_errors, htonll(stats.rx_errors));
2781 put_32aligned_be64(&ops->tx_errors, htonll(stats.tx_errors));
2782 put_32aligned_be64(&ops->rx_frame_err, htonll(stats.rx_frame_errors));
2783 put_32aligned_be64(&ops->rx_over_err, htonll(stats.rx_over_errors));
2784 put_32aligned_be64(&ops->rx_crc_err, htonll(stats.rx_crc_errors));
2785 put_32aligned_be64(&ops->collisions, htonll(stats.collisions));
2789 handle_port_stats_request(struct ofconn *ofconn, const struct ofp_header *oh)
2791 struct ofproto *p = ofconn_get_ofproto(ofconn);
2792 const struct ofp_port_stats_request *psr = ofputil_stats_body(oh);
2793 struct ofp_port_stats *ops;
2795 struct ofport *port;
2797 msg = start_ofp_stats_reply(oh, sizeof *ops * 16);
2798 if (psr->port_no != htons(OFPP_NONE)) {
2799 port = get_port(p, ofp_port_to_odp_port(ntohs(psr->port_no)));
2801 append_port_stat(port, ofconn, &msg);
2804 HMAP_FOR_EACH (port, hmap_node, &p->ports) {
2805 append_port_stat(port, ofconn, &msg);
2809 ofconn_send_reply(ofconn, msg);
2814 calc_flow_duration__(long long int start, uint32_t *sec, uint32_t *nsec)
2816 long long int msecs = time_msec() - start;
2817 *sec = msecs / 1000;
2818 *nsec = (msecs % 1000) * (1000 * 1000);
2822 calc_flow_duration(long long int start, ovs_be32 *sec_be, ovs_be32 *nsec_be)
2826 calc_flow_duration__(start, &sec, &nsec);
2827 *sec_be = htonl(sec);
2828 *nsec_be = htonl(nsec);
2832 put_ofp_flow_stats(struct ofconn *ofconn, struct rule *rule,
2833 ovs_be16 out_port, struct ofpbuf **replyp)
2835 struct ofp_flow_stats *ofs;
2836 uint64_t packet_count, byte_count;
2837 size_t act_len, len;
2839 if (rule_is_hidden(rule) || !rule_has_out_port(rule, out_port)) {
2843 act_len = sizeof *rule->actions * rule->n_actions;
2844 len = offsetof(struct ofp_flow_stats, actions) + act_len;
2846 rule_get_stats(rule, &packet_count, &byte_count);
2848 ofs = append_ofp_stats_reply(len, ofconn, replyp);
2849 ofs->length = htons(len);
2852 ofputil_cls_rule_to_match(&rule->cr, &ofs->match);
2853 put_32aligned_be64(&ofs->cookie, rule->flow_cookie);
2854 calc_flow_duration(rule->created, &ofs->duration_sec, &ofs->duration_nsec);
2855 ofs->priority = htons(rule->cr.priority);
2856 ofs->idle_timeout = htons(rule->idle_timeout);
2857 ofs->hard_timeout = htons(rule->hard_timeout);
2858 memset(ofs->pad2, 0, sizeof ofs->pad2);
2859 put_32aligned_be64(&ofs->packet_count, htonll(packet_count));
2860 put_32aligned_be64(&ofs->byte_count, htonll(byte_count));
2861 if (rule->n_actions > 0) {
2862 memcpy(ofs->actions, rule->actions, act_len);
2867 is_valid_table(uint8_t table_id)
2869 if (table_id == 0 || table_id == 0xff) {
2872 /* It would probably be better to reply with an error but there doesn't
2873 * seem to be any appropriate value, so that might just be
2875 VLOG_WARN_RL(&rl, "controller asked for invalid table %"PRIu8,
2882 handle_flow_stats_request(struct ofconn *ofconn, const struct ofp_header *oh)
2884 const struct ofp_flow_stats_request *fsr = ofputil_stats_body(oh);
2885 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2886 struct ofpbuf *reply;
2888 COVERAGE_INC(ofproto_flows_req);
2889 reply = start_ofp_stats_reply(oh, 1024);
2890 if (is_valid_table(fsr->table_id)) {
2891 struct cls_cursor cursor;
2892 struct cls_rule target;
2895 ofputil_cls_rule_from_match(&fsr->match, 0, &target);
2896 cls_cursor_init(&cursor, &ofproto->cls, &target);
2897 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
2898 put_ofp_flow_stats(ofconn, rule, fsr->out_port, &reply);
2901 ofconn_send_reply(ofconn, reply);
2907 put_nx_flow_stats(struct ofconn *ofconn, struct rule *rule,
2908 ovs_be16 out_port, struct ofpbuf **replyp)
2910 struct nx_flow_stats *nfs;
2911 uint64_t packet_count, byte_count;
2912 size_t act_len, start_len;
2913 struct ofpbuf *reply;
2915 if (rule_is_hidden(rule) || !rule_has_out_port(rule, out_port)) {
2919 rule_get_stats(rule, &packet_count, &byte_count);
2921 act_len = sizeof *rule->actions * rule->n_actions;
2923 append_nxstats_reply(sizeof *nfs + NXM_MAX_LEN + act_len, ofconn, replyp);
2924 start_len = (*replyp)->size;
2927 nfs = ofpbuf_put_uninit(reply, sizeof *nfs);
2930 calc_flow_duration(rule->created, &nfs->duration_sec, &nfs->duration_nsec);
2931 nfs->cookie = rule->flow_cookie;
2932 nfs->priority = htons(rule->cr.priority);
2933 nfs->idle_timeout = htons(rule->idle_timeout);
2934 nfs->hard_timeout = htons(rule->hard_timeout);
2935 nfs->match_len = htons(nx_put_match(reply, &rule->cr));
2936 memset(nfs->pad2, 0, sizeof nfs->pad2);
2937 nfs->packet_count = htonll(packet_count);
2938 nfs->byte_count = htonll(byte_count);
2939 if (rule->n_actions > 0) {
2940 ofpbuf_put(reply, rule->actions, act_len);
2942 nfs->length = htons(reply->size - start_len);
2946 handle_nxst_flow(struct ofconn *ofconn, const struct ofp_header *oh)
2948 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2949 struct nx_flow_stats_request *nfsr;
2950 struct cls_rule target;
2951 struct ofpbuf *reply;
2955 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2957 /* Dissect the message. */
2958 nfsr = ofpbuf_pull(&b, sizeof *nfsr);
2959 error = nx_pull_match(&b, ntohs(nfsr->match_len), 0, &target);
2964 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
2967 COVERAGE_INC(ofproto_flows_req);
2968 reply = start_nxstats_reply(&nfsr->nsm, 1024);
2969 if (is_valid_table(nfsr->table_id)) {
2970 struct cls_cursor cursor;
2973 cls_cursor_init(&cursor, &ofproto->cls, &target);
2974 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
2975 put_nx_flow_stats(ofconn, rule, nfsr->out_port, &reply);
2978 ofconn_send_reply(ofconn, reply);
2984 flow_stats_ds(struct rule *rule, struct ds *results)
2986 uint64_t packet_count, byte_count;
2987 size_t act_len = sizeof *rule->actions * rule->n_actions;
2989 rule_get_stats(rule, &packet_count, &byte_count);
2991 ds_put_format(results, "duration=%llds, ",
2992 (time_msec() - rule->created) / 1000);
2993 ds_put_format(results, "idle=%.3fs, ", (time_msec() - rule->used) / 1000.0);
2994 ds_put_format(results, "priority=%u, ", rule->cr.priority);
2995 ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
2996 ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
2997 cls_rule_format(&rule->cr, results);
2998 ds_put_char(results, ',');
3000 ofp_print_actions(results, &rule->actions->header, act_len);
3002 ds_put_cstr(results, "drop");
3004 ds_put_cstr(results, "\n");
3007 /* Adds a pretty-printed description of all flows to 'results', including
3008 * hidden flows (e.g., set up by in-band control). */
3010 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3012 struct cls_cursor cursor;
3015 cls_cursor_init(&cursor, &p->cls, NULL);
3016 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3017 flow_stats_ds(rule, results);
3022 query_aggregate_stats(struct ofproto *ofproto, struct cls_rule *target,
3023 ovs_be16 out_port, uint8_t table_id,
3024 struct ofp_aggregate_stats_reply *oasr)
3026 uint64_t total_packets = 0;
3027 uint64_t total_bytes = 0;
3030 COVERAGE_INC(ofproto_agg_request);
3032 if (is_valid_table(table_id)) {
3033 struct cls_cursor cursor;
3036 cls_cursor_init(&cursor, &ofproto->cls, target);
3037 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3038 if (!rule_is_hidden(rule) && rule_has_out_port(rule, out_port)) {
3039 uint64_t packet_count;
3040 uint64_t byte_count;
3042 rule_get_stats(rule, &packet_count, &byte_count);
3044 total_packets += packet_count;
3045 total_bytes += byte_count;
3051 oasr->flow_count = htonl(n_flows);
3052 put_32aligned_be64(&oasr->packet_count, htonll(total_packets));
3053 put_32aligned_be64(&oasr->byte_count, htonll(total_bytes));
3054 memset(oasr->pad, 0, sizeof oasr->pad);
3058 handle_aggregate_stats_request(struct ofconn *ofconn,
3059 const struct ofp_header *oh)
3061 const struct ofp_aggregate_stats_request *request = ofputil_stats_body(oh);
3062 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3063 struct ofp_aggregate_stats_reply *reply;
3064 struct cls_rule target;
3067 ofputil_cls_rule_from_match(&request->match, 0, &target);
3069 msg = start_ofp_stats_reply(oh, sizeof *reply);
3070 reply = append_ofp_stats_reply(sizeof *reply, ofconn, &msg);
3071 query_aggregate_stats(ofproto, &target, request->out_port,
3072 request->table_id, reply);
3073 ofconn_send_reply(ofconn, msg);
3078 handle_nxst_aggregate(struct ofconn *ofconn, const struct ofp_header *oh)
3080 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3081 struct nx_aggregate_stats_request *request;
3082 struct ofp_aggregate_stats_reply *reply;
3083 struct cls_rule target;
3088 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3090 /* Dissect the message. */
3091 request = ofpbuf_pull(&b, sizeof *request);
3092 error = nx_pull_match(&b, ntohs(request->match_len), 0, &target);
3097 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3101 COVERAGE_INC(ofproto_flows_req);
3102 buf = start_nxstats_reply(&request->nsm, sizeof *reply);
3103 reply = ofpbuf_put_uninit(buf, sizeof *reply);
3104 query_aggregate_stats(ofproto, &target, request->out_port,
3105 request->table_id, reply);
3106 ofconn_send_reply(ofconn, buf);
3111 struct queue_stats_cbdata {
3112 struct ofconn *ofconn;
3113 struct ofport *ofport;
3118 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
3119 const struct netdev_queue_stats *stats)
3121 struct ofp_queue_stats *reply;
3123 reply = append_ofp_stats_reply(sizeof *reply, cbdata->ofconn, &cbdata->msg);
3124 reply->port_no = htons(cbdata->ofport->opp.port_no);
3125 memset(reply->pad, 0, sizeof reply->pad);
3126 reply->queue_id = htonl(queue_id);
3127 put_32aligned_be64(&reply->tx_bytes, htonll(stats->tx_bytes));
3128 put_32aligned_be64(&reply->tx_packets, htonll(stats->tx_packets));
3129 put_32aligned_be64(&reply->tx_errors, htonll(stats->tx_errors));
3133 handle_queue_stats_dump_cb(uint32_t queue_id,
3134 struct netdev_queue_stats *stats,
3137 struct queue_stats_cbdata *cbdata = cbdata_;
3139 put_queue_stats(cbdata, queue_id, stats);
3143 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
3144 struct queue_stats_cbdata *cbdata)
3146 cbdata->ofport = port;
3147 if (queue_id == OFPQ_ALL) {
3148 netdev_dump_queue_stats(port->netdev,
3149 handle_queue_stats_dump_cb, cbdata);
3151 struct netdev_queue_stats stats;
3153 if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
3154 put_queue_stats(cbdata, queue_id, &stats);
3160 handle_queue_stats_request(struct ofconn *ofconn, const struct ofp_header *oh)
3162 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3163 const struct ofp_queue_stats_request *qsr;
3164 struct queue_stats_cbdata cbdata;
3165 struct ofport *port;
3166 unsigned int port_no;
3169 qsr = ofputil_stats_body(oh);
3171 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3174 COVERAGE_INC(ofproto_queue_req);
3176 cbdata.ofconn = ofconn;
3177 cbdata.msg = start_ofp_stats_reply(oh, 128);
3179 port_no = ntohs(qsr->port_no);
3180 queue_id = ntohl(qsr->queue_id);
3181 if (port_no == OFPP_ALL) {
3182 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3183 handle_queue_stats_for_port(port, queue_id, &cbdata);
3185 } else if (port_no < ofproto->max_ports) {
3186 port = get_port(ofproto, ofp_port_to_odp_port(port_no));
3188 handle_queue_stats_for_port(port, queue_id, &cbdata);
3191 ofpbuf_delete(cbdata.msg);
3192 return ofp_mkerr(OFPET_QUEUE_OP_FAILED, OFPQOFC_BAD_PORT);
3194 ofconn_send_reply(ofconn, cbdata.msg);
3199 /* Updates 'facet''s used time. Caller is responsible for calling
3200 * facet_push_stats() to update the flows which 'facet' resubmits into. */
3202 facet_update_time(struct ofproto *ofproto, struct facet *facet,
3205 if (used > facet->used) {
3207 if (used > facet->rule->used) {
3208 facet->rule->used = used;
3210 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, used);
3214 /* Folds the statistics from 'stats' into the counters in 'facet'.
3216 * Because of the meaning of a facet's counters, it only makes sense to do this
3217 * if 'stats' are not tracked in the datapath, that is, if 'stats' represents a
3218 * packet that was sent by hand or if it represents statistics that have been
3219 * cleared out of the datapath. */
3221 facet_update_stats(struct ofproto *ofproto, struct facet *facet,
3222 const struct dpif_flow_stats *stats)
3224 if (stats->n_packets || stats->used > facet->used) {
3225 facet_update_time(ofproto, facet, stats->used);
3226 facet->packet_count += stats->n_packets;
3227 facet->byte_count += stats->n_bytes;
3228 facet_push_stats(ofproto, facet);
3229 netflow_flow_update_flags(&facet->nf_flow, stats->tcp_flags);
3234 facet_push_stats(struct ofproto *ofproto, struct facet *facet)
3236 uint64_t rs_packets, rs_bytes;
3238 assert(facet->packet_count >= facet->rs_packet_count);
3239 assert(facet->byte_count >= facet->rs_byte_count);
3240 assert(facet->used >= facet->rs_used);
3242 rs_packets = facet->packet_count - facet->rs_packet_count;
3243 rs_bytes = facet->byte_count - facet->rs_byte_count;
3245 if (rs_packets || rs_bytes || facet->used > facet->rs_used) {
3246 facet->rs_packet_count = facet->packet_count;
3247 facet->rs_byte_count = facet->byte_count;
3248 facet->rs_used = facet->used;
3250 flow_push_stats(ofproto, facet->rule, &facet->flow,
3251 rs_packets, rs_bytes, facet->used);
3255 struct ofproto_push {
3256 struct action_xlate_ctx ctx;
3263 push_resubmit(struct action_xlate_ctx *ctx, struct rule *rule)
3265 struct ofproto_push *push = CONTAINER_OF(ctx, struct ofproto_push, ctx);
3268 rule->packet_count += push->packets;
3269 rule->byte_count += push->bytes;
3270 rule->used = MAX(push->used, rule->used);
3274 /* Pushes flow statistics to the rules which 'flow' resubmits into given
3275 * 'rule''s actions. */
3277 flow_push_stats(struct ofproto *ofproto, const struct rule *rule,
3278 struct flow *flow, uint64_t packets, uint64_t bytes,
3281 struct ofproto_push push;
3283 push.packets = packets;
3287 action_xlate_ctx_init(&push.ctx, ofproto, flow, NULL);
3288 push.ctx.resubmit_hook = push_resubmit;
3289 ofpbuf_delete(xlate_actions(&push.ctx, rule->actions, rule->n_actions));
3292 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
3293 * in which no matching flow already exists in the flow table.
3295 * Adds the flow specified by 'ofm', which is followed by 'n_actions'
3296 * ofp_actions, to the ofproto's flow table. Returns 0 on success or an
3297 * OpenFlow error code as encoded by ofp_mkerr() on failure.
3299 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3302 add_flow(struct ofconn *ofconn, struct flow_mod *fm)
3304 struct ofproto *p = ofconn_get_ofproto(ofconn);
3305 struct ofpbuf *packet;
3310 if (fm->flags & OFPFF_CHECK_OVERLAP
3311 && classifier_rule_overlaps(&p->cls, &fm->cr)) {
3312 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP);
3316 if (fm->buffer_id != UINT32_MAX) {
3317 error = ofconn_pktbuf_retrieve(ofconn, fm->buffer_id,
3321 in_port = UINT16_MAX;
3324 rule = rule_create(&fm->cr, fm->actions, fm->n_actions,
3325 fm->idle_timeout, fm->hard_timeout, fm->cookie,
3326 fm->flags & OFPFF_SEND_FLOW_REM);
3327 rule_insert(p, rule);
3329 rule_execute(p, rule, in_port, packet);
3334 static struct rule *
3335 find_flow_strict(struct ofproto *p, const struct flow_mod *fm)
3337 return rule_from_cls_rule(classifier_find_rule_exactly(&p->cls, &fm->cr));
3341 send_buffered_packet(struct ofconn *ofconn,
3342 struct rule *rule, uint32_t buffer_id)
3344 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3345 struct ofpbuf *packet;
3349 if (buffer_id == UINT32_MAX) {
3353 error = ofconn_pktbuf_retrieve(ofconn, buffer_id, &packet, &in_port);
3358 rule_execute(ofproto, rule, in_port, packet);
3363 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
3365 struct modify_flows_cbdata {
3366 struct ofproto *ofproto;
3367 const struct flow_mod *fm;
3371 static int modify_flow(struct ofproto *, const struct flow_mod *,
3374 /* Implements OFPFC_MODIFY. Returns 0 on success or an OpenFlow error code as
3375 * encoded by ofp_mkerr() on failure.
3377 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3380 modify_flows_loose(struct ofconn *ofconn, struct flow_mod *fm)
3382 struct ofproto *p = ofconn_get_ofproto(ofconn);
3383 struct rule *match = NULL;
3384 struct cls_cursor cursor;
3387 cls_cursor_init(&cursor, &p->cls, &fm->cr);
3388 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3389 if (!rule_is_hidden(rule)) {
3391 modify_flow(p, fm, rule);
3396 /* This credits the packet to whichever flow happened to match last.
3397 * That's weird. Maybe we should do a lookup for the flow that
3398 * actually matches the packet? Who knows. */
3399 send_buffered_packet(ofconn, match, fm->buffer_id);
3402 return add_flow(ofconn, fm);
3406 /* Implements OFPFC_MODIFY_STRICT. Returns 0 on success or an OpenFlow error
3407 * code as encoded by ofp_mkerr() on failure.
3409 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3412 modify_flow_strict(struct ofconn *ofconn, struct flow_mod *fm)
3414 struct ofproto *p = ofconn_get_ofproto(ofconn);
3415 struct rule *rule = find_flow_strict(p, fm);
3416 if (rule && !rule_is_hidden(rule)) {
3417 modify_flow(p, fm, rule);
3418 return send_buffered_packet(ofconn, rule, fm->buffer_id);
3420 return add_flow(ofconn, fm);
3424 /* Implements core of OFPFC_MODIFY and OFPFC_MODIFY_STRICT where 'rule' has
3425 * been identified as a flow in 'p''s flow table to be modified, by changing
3426 * the rule's actions to match those in 'ofm' (which is followed by 'n_actions'
3427 * ofp_action[] structures). */
3429 modify_flow(struct ofproto *p, const struct flow_mod *fm, struct rule *rule)
3431 size_t actions_len = fm->n_actions * sizeof *rule->actions;
3433 rule->flow_cookie = fm->cookie;
3435 /* If the actions are the same, do nothing. */
3436 if (fm->n_actions == rule->n_actions
3438 || !memcmp(fm->actions, rule->actions, actions_len))) {
3442 /* Replace actions. */
3443 free(rule->actions);
3444 rule->actions = fm->n_actions ? xmemdup(fm->actions, actions_len) : NULL;
3445 rule->n_actions = fm->n_actions;
3447 p->need_revalidate = true;
3452 /* OFPFC_DELETE implementation. */
3454 static void delete_flow(struct ofproto *, struct rule *, ovs_be16 out_port);
3456 /* Implements OFPFC_DELETE. */
3458 delete_flows_loose(struct ofproto *p, const struct flow_mod *fm)
3460 struct rule *rule, *next_rule;
3461 struct cls_cursor cursor;
3463 cls_cursor_init(&cursor, &p->cls, &fm->cr);
3464 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
3465 delete_flow(p, rule, htons(fm->out_port));
3469 /* Implements OFPFC_DELETE_STRICT. */
3471 delete_flow_strict(struct ofproto *p, struct flow_mod *fm)
3473 struct rule *rule = find_flow_strict(p, fm);
3475 delete_flow(p, rule, htons(fm->out_port));
3479 /* Implements core of OFPFC_DELETE and OFPFC_DELETE_STRICT where 'rule' has
3480 * been identified as a flow to delete from 'p''s flow table, by deleting the
3481 * flow and sending out a OFPT_FLOW_REMOVED message to any interested
3484 * Will not delete 'rule' if it is hidden. Will delete 'rule' only if
3485 * 'out_port' is htons(OFPP_NONE) or if 'rule' actually outputs to the
3486 * specified 'out_port'. */
3488 delete_flow(struct ofproto *p, struct rule *rule, ovs_be16 out_port)
3490 if (rule_is_hidden(rule)) {
3494 if (out_port != htons(OFPP_NONE) && !rule_has_out_port(rule, out_port)) {
3498 rule_send_removed(p, rule, OFPRR_DELETE);
3499 rule_remove(p, rule);
3503 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3505 struct ofproto *p = ofconn_get_ofproto(ofconn);
3509 error = reject_slave_controller(ofconn, "flow_mod");
3514 error = ofputil_decode_flow_mod(&fm, oh);
3519 /* We do not support the emergency flow cache. It will hopefully get
3520 * dropped from OpenFlow in the near future. */
3521 if (fm.flags & OFPFF_EMERG) {
3522 /* There isn't a good fit for an error code, so just state that the
3523 * flow table is full. */
3524 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL);
3527 error = validate_actions(fm.actions, fm.n_actions,
3528 &fm.cr.flow, p->max_ports);
3533 switch (fm.command) {
3535 return add_flow(ofconn, &fm);
3538 return modify_flows_loose(ofconn, &fm);
3540 case OFPFC_MODIFY_STRICT:
3541 return modify_flow_strict(ofconn, &fm);
3544 delete_flows_loose(p, &fm);
3547 case OFPFC_DELETE_STRICT:
3548 delete_flow_strict(p, &fm);
3552 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
3557 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
3559 struct nx_role_request *nrr = (struct nx_role_request *) oh;
3560 struct nx_role_request *reply;
3564 if (ofconn_get_type(ofconn) != OFCONN_PRIMARY) {
3565 VLOG_WARN_RL(&rl, "ignoring role request on service connection");
3566 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
3569 role = ntohl(nrr->role);
3570 if (role != NX_ROLE_OTHER && role != NX_ROLE_MASTER
3571 && role != NX_ROLE_SLAVE) {
3572 VLOG_WARN_RL(&rl, "received request for unknown role %"PRIu32, role);
3574 /* There's no good error code for this. */
3575 return ofp_mkerr(OFPET_BAD_REQUEST, -1);
3578 ofconn_set_role(ofconn, role);
3580 reply = make_nxmsg_xid(sizeof *reply, NXT_ROLE_REPLY, oh->xid, &buf);
3581 reply->role = htonl(role);
3582 ofconn_send_reply(ofconn, buf);
3588 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
3590 const struct nxt_set_flow_format *msg
3591 = (const struct nxt_set_flow_format *) oh;
3594 format = ntohl(msg->format);
3595 if (format == NXFF_OPENFLOW10
3596 || format == NXFF_NXM) {
3597 ofconn_set_flow_format(ofconn, format);
3600 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
3605 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
3607 struct ofp_header *ob;
3610 /* Currently, everything executes synchronously, so we can just
3611 * immediately send the barrier reply. */
3612 ob = make_openflow_xid(sizeof *ob, OFPT_BARRIER_REPLY, oh->xid, &buf);
3613 ofconn_send_reply(ofconn, buf);
3618 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
3620 const struct ofp_header *oh = msg->data;
3621 const struct ofputil_msg_type *type;
3624 error = ofputil_decode_msg_type(oh, &type);
3629 switch (ofputil_msg_type_code(type)) {
3630 /* OpenFlow requests. */
3631 case OFPUTIL_OFPT_ECHO_REQUEST:
3632 return handle_echo_request(ofconn, oh);
3634 case OFPUTIL_OFPT_FEATURES_REQUEST:
3635 return handle_features_request(ofconn, oh);
3637 case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
3638 return handle_get_config_request(ofconn, oh);
3640 case OFPUTIL_OFPT_SET_CONFIG:
3641 return handle_set_config(ofconn, msg->data);
3643 case OFPUTIL_OFPT_PACKET_OUT:
3644 return handle_packet_out(ofconn, oh);
3646 case OFPUTIL_OFPT_PORT_MOD:
3647 return handle_port_mod(ofconn, oh);
3649 case OFPUTIL_OFPT_FLOW_MOD:
3650 return handle_flow_mod(ofconn, oh);
3652 case OFPUTIL_OFPT_BARRIER_REQUEST:
3653 return handle_barrier_request(ofconn, oh);
3655 /* OpenFlow replies. */
3656 case OFPUTIL_OFPT_ECHO_REPLY:
3659 /* Nicira extension requests. */
3660 case OFPUTIL_NXT_ROLE_REQUEST:
3661 return handle_role_request(ofconn, oh);
3663 case OFPUTIL_NXT_SET_FLOW_FORMAT:
3664 return handle_nxt_set_flow_format(ofconn, oh);
3666 case OFPUTIL_NXT_FLOW_MOD:
3667 return handle_flow_mod(ofconn, oh);
3669 /* OpenFlow statistics requests. */
3670 case OFPUTIL_OFPST_DESC_REQUEST:
3671 return handle_desc_stats_request(ofconn, oh);
3673 case OFPUTIL_OFPST_FLOW_REQUEST:
3674 return handle_flow_stats_request(ofconn, oh);
3676 case OFPUTIL_OFPST_AGGREGATE_REQUEST:
3677 return handle_aggregate_stats_request(ofconn, oh);
3679 case OFPUTIL_OFPST_TABLE_REQUEST:
3680 return handle_table_stats_request(ofconn, oh);
3682 case OFPUTIL_OFPST_PORT_REQUEST:
3683 return handle_port_stats_request(ofconn, oh);
3685 case OFPUTIL_OFPST_QUEUE_REQUEST:
3686 return handle_queue_stats_request(ofconn, oh);
3688 /* Nicira extension statistics requests. */
3689 case OFPUTIL_NXST_FLOW_REQUEST:
3690 return handle_nxst_flow(ofconn, oh);
3692 case OFPUTIL_NXST_AGGREGATE_REQUEST:
3693 return handle_nxst_aggregate(ofconn, oh);
3695 case OFPUTIL_INVALID:
3696 case OFPUTIL_OFPT_HELLO:
3697 case OFPUTIL_OFPT_ERROR:
3698 case OFPUTIL_OFPT_FEATURES_REPLY:
3699 case OFPUTIL_OFPT_GET_CONFIG_REPLY:
3700 case OFPUTIL_OFPT_PACKET_IN:
3701 case OFPUTIL_OFPT_FLOW_REMOVED:
3702 case OFPUTIL_OFPT_PORT_STATUS:
3703 case OFPUTIL_OFPT_BARRIER_REPLY:
3704 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
3705 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
3706 case OFPUTIL_OFPST_DESC_REPLY:
3707 case OFPUTIL_OFPST_FLOW_REPLY:
3708 case OFPUTIL_OFPST_QUEUE_REPLY:
3709 case OFPUTIL_OFPST_PORT_REPLY:
3710 case OFPUTIL_OFPST_TABLE_REPLY:
3711 case OFPUTIL_OFPST_AGGREGATE_REPLY:
3712 case OFPUTIL_NXT_ROLE_REPLY:
3713 case OFPUTIL_NXT_FLOW_REMOVED:
3714 case OFPUTIL_NXST_FLOW_REPLY:
3715 case OFPUTIL_NXST_AGGREGATE_REPLY:
3717 if (VLOG_IS_WARN_ENABLED()) {
3718 char *s = ofp_to_string(oh, ntohs(oh->length), 2);
3719 VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
3722 if (oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY) {
3723 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
3725 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
3731 handle_openflow(struct ofconn *ofconn, struct ofpbuf *ofp_msg)
3733 int error = handle_openflow__(ofconn, ofp_msg);
3735 send_error_oh(ofconn, ofp_msg->data, error);
3737 COVERAGE_INC(ofproto_recv_openflow);
3741 handle_miss_upcall(struct ofproto *p, struct dpif_upcall *upcall)
3743 struct facet *facet;
3746 /* Obtain in_port and tun_id, at least. */
3747 odp_flow_key_to_flow(upcall->key, upcall->key_len, &flow);
3749 /* Set header pointers in 'flow'. */
3750 flow_extract(upcall->packet, flow.tun_id, flow.in_port, &flow);
3752 if (cfm_should_process_flow(&flow)) {
3753 ofproto_process_cfm(p, &flow, upcall->packet);
3754 ofpbuf_delete(upcall->packet);
3756 } else if (p->ofhooks->special_cb
3757 && !p->ofhooks->special_cb(&flow, upcall->packet, p->aux)) {
3758 ofpbuf_delete(upcall->packet);
3762 /* Check with in-band control to see if this packet should be sent
3763 * to the local port regardless of the flow table. */
3764 if (connmgr_msg_in_hook(p->connmgr, &flow, upcall->packet)) {
3765 ofproto_send_packet(p, ODPP_LOCAL, 0, upcall->packet);
3768 facet = facet_lookup_valid(p, &flow);
3770 struct rule *rule = rule_lookup(p, &flow);
3772 /* Don't send a packet-in if OFPPC_NO_PACKET_IN asserted. */
3773 struct ofport *port = get_port(p, flow.in_port);
3775 if (port->opp.config & OFPPC_NO_PACKET_IN) {
3776 COVERAGE_INC(ofproto_no_packet_in);
3777 /* XXX install 'drop' flow entry */
3778 ofpbuf_delete(upcall->packet);
3782 VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16,
3786 COVERAGE_INC(ofproto_packet_in);
3787 send_packet_in(p, upcall, &flow, false);
3791 facet = facet_create(p, rule, &flow, upcall->packet);
3792 } else if (!facet->may_install) {
3793 /* The facet is not installable, that is, we need to process every
3794 * packet, so process the current packet's actions into 'facet'. */
3795 facet_make_actions(p, facet, upcall->packet);
3798 if (facet->rule->cr.priority == FAIL_OPEN_PRIORITY) {
3800 * Extra-special case for fail-open mode.
3802 * We are in fail-open mode and the packet matched the fail-open rule,
3803 * but we are connected to a controller too. We should send the packet
3804 * up to the controller in the hope that it will try to set up a flow
3805 * and thereby allow us to exit fail-open.
3807 * See the top-level comment in fail-open.c for more information.
3809 send_packet_in(p, upcall, &flow, true);
3812 facet_execute(p, facet, upcall->packet);
3813 facet_install(p, facet, false);
3817 handle_upcall(struct ofproto *p, struct dpif_upcall *upcall)
3821 switch (upcall->type) {
3822 case DPIF_UC_ACTION:
3823 COVERAGE_INC(ofproto_ctlr_action);
3824 odp_flow_key_to_flow(upcall->key, upcall->key_len, &flow);
3825 send_packet_in(p, upcall, &flow, false);
3828 case DPIF_UC_SAMPLE:
3830 odp_flow_key_to_flow(upcall->key, upcall->key_len, &flow);
3831 ofproto_sflow_received(p->sflow, upcall, &flow);
3833 ofpbuf_delete(upcall->packet);
3837 handle_miss_upcall(p, upcall);
3840 case DPIF_N_UC_TYPES:
3842 VLOG_WARN_RL(&rl, "upcall has unexpected type %"PRIu32, upcall->type);
3847 /* Flow expiration. */
3849 static int ofproto_dp_max_idle(const struct ofproto *);
3850 static void ofproto_update_stats(struct ofproto *);
3851 static void rule_expire(struct ofproto *, struct rule *);
3852 static void ofproto_expire_facets(struct ofproto *, int dp_max_idle);
3854 /* This function is called periodically by ofproto_run(). Its job is to
3855 * collect updates for the flows that have been installed into the datapath,
3856 * most importantly when they last were used, and then use that information to
3857 * expire flows that have not been used recently.
3859 * Returns the number of milliseconds after which it should be called again. */
3861 ofproto_expire(struct ofproto *ofproto)
3863 struct rule *rule, *next_rule;
3864 struct cls_cursor cursor;
3867 /* Update stats for each flow in the datapath. */
3868 ofproto_update_stats(ofproto);
3870 /* Expire facets that have been idle too long. */
3871 dp_max_idle = ofproto_dp_max_idle(ofproto);
3872 ofproto_expire_facets(ofproto, dp_max_idle);
3874 /* Expire OpenFlow flows whose idle_timeout or hard_timeout has passed. */
3875 cls_cursor_init(&cursor, &ofproto->cls, NULL);
3876 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
3877 rule_expire(ofproto, rule);
3880 /* Let the hook know that we're at a stable point: all outstanding data
3881 * in existing flows has been accounted to the account_cb. Thus, the
3882 * hook can now reasonably do operations that depend on having accurate
3883 * flow volume accounting (currently, that's just bond rebalancing). */
3884 if (ofproto->ofhooks->account_checkpoint_cb) {
3885 ofproto->ofhooks->account_checkpoint_cb(ofproto->aux);
3888 return MIN(dp_max_idle, 1000);
3891 /* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
3893 * This function also pushes statistics updates to rules which each facet
3894 * resubmits into. Generally these statistics will be accurate. However, if a
3895 * facet changes the rule it resubmits into at some time in between
3896 * ofproto_update_stats() runs, it is possible that statistics accrued to the
3897 * old rule will be incorrectly attributed to the new rule. This could be
3898 * avoided by calling ofproto_update_stats() whenever rules are created or
3899 * deleted. However, the performance impact of making so many calls to the
3900 * datapath do not justify the benefit of having perfectly accurate statistics.
3903 ofproto_update_stats(struct ofproto *p)
3905 const struct dpif_flow_stats *stats;
3906 struct dpif_flow_dump dump;
3907 const struct nlattr *key;
3910 dpif_flow_dump_start(&dump, p->dpif);
3911 while (dpif_flow_dump_next(&dump, &key, &key_len, NULL, NULL, &stats)) {
3912 struct facet *facet;
3915 if (odp_flow_key_to_flow(key, key_len, &flow)) {
3919 odp_flow_key_format(key, key_len, &s);
3920 VLOG_WARN_RL(&rl, "failed to convert ODP flow key to flow: %s",
3926 facet = facet_find(p, &flow);
3928 if (facet && facet->installed) {
3930 if (stats->n_packets >= facet->dp_packet_count) {
3931 facet->packet_count += stats->n_packets - facet->dp_packet_count;
3933 VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
3936 if (stats->n_bytes >= facet->dp_byte_count) {
3937 facet->byte_count += stats->n_bytes - facet->dp_byte_count;
3939 VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
3942 facet->dp_packet_count = stats->n_packets;
3943 facet->dp_byte_count = stats->n_bytes;
3945 facet_update_time(p, facet, stats->used);
3946 facet_account(p, facet, stats->n_bytes);
3947 facet_push_stats(p, facet);
3949 /* There's a flow in the datapath that we know nothing about.
3951 COVERAGE_INC(ofproto_unexpected_rule);
3952 dpif_flow_del(p->dpif, key, key_len, NULL);
3955 dpif_flow_dump_done(&dump);
3958 /* Calculates and returns the number of milliseconds of idle time after which
3959 * facets should expire from the datapath and we should fold their statistics
3960 * into their parent rules in userspace. */
3962 ofproto_dp_max_idle(const struct ofproto *ofproto)
3965 * Idle time histogram.
3967 * Most of the time a switch has a relatively small number of facets. When
3968 * this is the case we might as well keep statistics for all of them in
3969 * userspace and to cache them in the kernel datapath for performance as
3972 * As the number of facets increases, the memory required to maintain
3973 * statistics about them in userspace and in the kernel becomes
3974 * significant. However, with a large number of facets it is likely that
3975 * only a few of them are "heavy hitters" that consume a large amount of
3976 * bandwidth. At this point, only heavy hitters are worth caching in the
3977 * kernel and maintaining in userspaces; other facets we can discard.
3979 * The technique used to compute the idle time is to build a histogram with
3980 * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each. Each facet
3981 * that is installed in the kernel gets dropped in the appropriate bucket.
3982 * After the histogram has been built, we compute the cutoff so that only
3983 * the most-recently-used 1% of facets (but at least 1000 flows) are kept
3984 * cached. At least the most-recently-used bucket of facets is kept, so
3985 * actually an arbitrary number of facets can be kept in any given
3986 * expiration run (though the next run will delete most of those unless
3987 * they receive additional data).
3989 * This requires a second pass through the facets, in addition to the pass
3990 * made by ofproto_update_stats(), because the former function never looks
3991 * at uninstallable facets.
3993 enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
3994 enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
3995 int buckets[N_BUCKETS] = { 0 };
3996 struct facet *facet;
4001 total = hmap_count(&ofproto->facets);
4002 if (total <= 1000) {
4003 return N_BUCKETS * BUCKET_WIDTH;
4006 /* Build histogram. */
4008 HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
4009 long long int idle = now - facet->used;
4010 int bucket = (idle <= 0 ? 0
4011 : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
4012 : (unsigned int) idle / BUCKET_WIDTH);
4016 /* Find the first bucket whose flows should be expired. */
4017 for (bucket = 0; bucket < N_BUCKETS; bucket++) {
4018 if (buckets[bucket]) {
4021 subtotal += buckets[bucket++];
4022 } while (bucket < N_BUCKETS && subtotal < MAX(1000, total / 100));
4027 if (VLOG_IS_DBG_ENABLED()) {
4031 ds_put_cstr(&s, "keep");
4032 for (i = 0; i < N_BUCKETS; i++) {
4034 ds_put_cstr(&s, ", drop");
4037 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
4040 VLOG_INFO("%s: %s (msec:count)",
4041 dpif_name(ofproto->dpif), ds_cstr(&s));
4045 return bucket * BUCKET_WIDTH;
4049 facet_active_timeout(struct ofproto *ofproto, struct facet *facet)
4051 if (ofproto->netflow && !facet_is_controller_flow(facet) &&
4052 netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
4053 struct ofexpired expired;
4055 if (facet->installed) {
4056 struct dpif_flow_stats stats;
4058 facet_put__(ofproto, facet, facet->actions, facet->actions_len,
4060 facet_update_stats(ofproto, facet, &stats);
4063 expired.flow = facet->flow;
4064 expired.packet_count = facet->packet_count;
4065 expired.byte_count = facet->byte_count;
4066 expired.used = facet->used;
4067 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4072 ofproto_expire_facets(struct ofproto *ofproto, int dp_max_idle)
4074 long long int cutoff = time_msec() - dp_max_idle;
4075 struct facet *facet, *next_facet;
4077 HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
4078 facet_active_timeout(ofproto, facet);
4079 if (facet->used < cutoff) {
4080 facet_remove(ofproto, facet);
4085 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
4086 * then delete it entirely. */
4088 rule_expire(struct ofproto *ofproto, struct rule *rule)
4090 struct facet *facet, *next_facet;
4094 /* Has 'rule' expired? */
4096 if (rule->hard_timeout
4097 && now > rule->created + rule->hard_timeout * 1000) {
4098 reason = OFPRR_HARD_TIMEOUT;
4099 } else if (rule->idle_timeout && list_is_empty(&rule->facets)
4100 && now >rule->used + rule->idle_timeout * 1000) {
4101 reason = OFPRR_IDLE_TIMEOUT;
4106 COVERAGE_INC(ofproto_expired);
4108 /* Update stats. (This is a no-op if the rule expired due to an idle
4109 * timeout, because that only happens when the rule has no facets left.) */
4110 LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
4111 facet_remove(ofproto, facet);
4114 /* Get rid of the rule. */
4115 if (!rule_is_hidden(rule)) {
4116 rule_send_removed(ofproto, rule, reason);
4118 rule_remove(ofproto, rule);
4122 rule_send_removed(struct ofproto *p, struct rule *rule, uint8_t reason)
4124 struct ofputil_flow_removed fr;
4126 if (!rule->send_flow_removed) {
4131 fr.cookie = rule->flow_cookie;
4133 calc_flow_duration__(rule->created, &fr.duration_sec, &fr.duration_nsec);
4134 fr.idle_timeout = rule->idle_timeout;
4135 fr.packet_count = rule->packet_count;
4136 fr.byte_count = rule->byte_count;
4138 connmgr_send_flow_removed(p->connmgr, &fr);
4141 /* Obtains statistics for 'rule' and stores them in '*packets' and '*bytes'.
4142 * The returned statistics include statistics for all of 'rule''s facets. */
4144 rule_get_stats(const struct rule *rule, uint64_t *packets, uint64_t *bytes)
4147 struct facet *facet;
4149 /* Start from historical data for 'rule' itself that are no longer tracked
4150 * in facets. This counts, for example, facets that have expired. */
4151 p = rule->packet_count;
4152 b = rule->byte_count;
4154 /* Add any statistics that are tracked by facets. This includes
4155 * statistical data recently updated by ofproto_update_stats() as well as
4156 * stats for packets that were executed "by hand" via dpif_execute(). */
4157 LIST_FOR_EACH (facet, list_node, &rule->facets) {
4158 p += facet->packet_count;
4159 b += facet->byte_count;
4166 /* Given 'upcall', of type DPIF_UC_ACTION or DPIF_UC_MISS, sends an
4167 * OFPT_PACKET_IN message to each OpenFlow controller as necessary according to
4168 * their individual configurations.
4170 * If 'clone' is true, the caller retains ownership of 'upcall->packet'.
4171 * Otherwise, ownership is transferred to this function. */
4173 send_packet_in(struct ofproto *ofproto, struct dpif_upcall *upcall,
4174 const struct flow *flow, bool clone)
4176 connmgr_send_packet_in(ofproto->connmgr, upcall, flow,
4177 clone ? NULL : upcall->packet);
4181 pick_datapath_id(const struct ofproto *ofproto)
4183 const struct ofport *port;
4185 port = get_port(ofproto, ODPP_LOCAL);
4187 uint8_t ea[ETH_ADDR_LEN];
4190 error = netdev_get_etheraddr(port->netdev, ea);
4192 return eth_addr_to_uint64(ea);
4194 VLOG_WARN("could not get MAC address for %s (%s)",
4195 netdev_get_name(port->netdev), strerror(error));
4197 return ofproto->fallback_dpid;
4201 pick_fallback_dpid(void)
4203 uint8_t ea[ETH_ADDR_LEN];
4204 eth_addr_nicira_random(ea);
4205 return eth_addr_to_uint64(ea);
4209 ofproto_unixctl_list(struct unixctl_conn *conn, const char *arg OVS_UNUSED,
4210 void *aux OVS_UNUSED)
4212 const struct shash_node *node;
4216 SHASH_FOR_EACH (node, &all_ofprotos) {
4217 ds_put_format(&results, "%s\n", node->name);
4219 unixctl_command_reply(conn, 200, ds_cstr(&results));
4220 ds_destroy(&results);
4223 struct ofproto_trace {
4224 struct action_xlate_ctx ctx;
4230 trace_format_rule(struct ds *result, int level, const struct rule *rule)
4232 ds_put_char_multiple(result, '\t', level);
4234 ds_put_cstr(result, "No match\n");
4238 ds_put_format(result, "Rule: cookie=%#"PRIx64" ",
4239 ntohll(rule->flow_cookie));
4240 cls_rule_format(&rule->cr, result);
4241 ds_put_char(result, '\n');
4243 ds_put_char_multiple(result, '\t', level);
4244 ds_put_cstr(result, "OpenFlow ");
4245 ofp_print_actions(result, (const struct ofp_action_header *) rule->actions,
4246 rule->n_actions * sizeof *rule->actions);
4247 ds_put_char(result, '\n');
4251 trace_format_flow(struct ds *result, int level, const char *title,
4252 struct ofproto_trace *trace)
4254 ds_put_char_multiple(result, '\t', level);
4255 ds_put_format(result, "%s: ", title);
4256 if (flow_equal(&trace->ctx.flow, &trace->flow)) {
4257 ds_put_cstr(result, "unchanged");
4259 flow_format(result, &trace->ctx.flow);
4260 trace->flow = trace->ctx.flow;
4262 ds_put_char(result, '\n');
4266 trace_resubmit(struct action_xlate_ctx *ctx, struct rule *rule)
4268 struct ofproto_trace *trace = CONTAINER_OF(ctx, struct ofproto_trace, ctx);
4269 struct ds *result = trace->result;
4271 ds_put_char(result, '\n');
4272 trace_format_flow(result, ctx->recurse + 1, "Resubmitted flow", trace);
4273 trace_format_rule(result, ctx->recurse + 1, rule);
4277 ofproto_unixctl_trace(struct unixctl_conn *conn, const char *args_,
4278 void *aux OVS_UNUSED)
4280 char *dpname, *in_port_s, *tun_id_s, *packet_s;
4281 char *args = xstrdup(args_);
4282 char *save_ptr = NULL;
4283 struct ofproto *ofproto;
4284 struct ofpbuf packet;
4292 ofpbuf_init(&packet, strlen(args) / 2);
4295 dpname = strtok_r(args, " ", &save_ptr);
4296 tun_id_s = strtok_r(NULL, " ", &save_ptr);
4297 in_port_s = strtok_r(NULL, " ", &save_ptr);
4298 packet_s = strtok_r(NULL, "", &save_ptr); /* Get entire rest of line. */
4299 if (!dpname || !in_port_s || !packet_s) {
4300 unixctl_command_reply(conn, 501, "Bad command syntax");
4304 ofproto = shash_find_data(&all_ofprotos, dpname);
4306 unixctl_command_reply(conn, 501, "Unknown ofproto (use ofproto/list "
4311 tun_id = htonll(strtoull(tun_id_s, NULL, 0));
4312 in_port = ofp_port_to_odp_port(atoi(in_port_s));
4314 packet_s = ofpbuf_put_hex(&packet, packet_s, NULL);
4315 packet_s += strspn(packet_s, " ");
4316 if (*packet_s != '\0') {
4317 unixctl_command_reply(conn, 501, "Trailing garbage in command");
4320 if (packet.size < ETH_HEADER_LEN) {
4321 unixctl_command_reply(conn, 501, "Packet data too short for Ethernet");
4325 ds_put_cstr(&result, "Packet: ");
4326 s = ofp_packet_to_string(packet.data, packet.size, packet.size);
4327 ds_put_cstr(&result, s);
4330 flow_extract(&packet, tun_id, in_port, &flow);
4331 ds_put_cstr(&result, "Flow: ");
4332 flow_format(&result, &flow);
4333 ds_put_char(&result, '\n');
4335 rule = rule_lookup(ofproto, &flow);
4336 trace_format_rule(&result, 0, rule);
4338 struct ofproto_trace trace;
4339 struct ofpbuf *odp_actions;
4341 trace.result = &result;
4343 action_xlate_ctx_init(&trace.ctx, ofproto, &flow, &packet);
4344 trace.ctx.resubmit_hook = trace_resubmit;
4345 odp_actions = xlate_actions(&trace.ctx,
4346 rule->actions, rule->n_actions);
4348 ds_put_char(&result, '\n');
4349 trace_format_flow(&result, 0, "Final flow", &trace);
4350 ds_put_cstr(&result, "Datapath actions: ");
4351 format_odp_actions(&result, odp_actions->data, odp_actions->size);
4352 ofpbuf_delete(odp_actions);
4355 unixctl_command_reply(conn, 200, ds_cstr(&result));
4358 ds_destroy(&result);
4359 ofpbuf_uninit(&packet);
4364 ofproto_unixctl_init(void)
4366 static bool registered;
4372 unixctl_command_register("ofproto/list", ofproto_unixctl_list, NULL);
4373 unixctl_command_register("ofproto/trace", ofproto_unixctl_trace, NULL);
4377 default_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
4378 struct ofpbuf *odp_actions, tag_type *tags,
4379 uint16_t *nf_output_iface, void *ofproto_)
4381 struct ofproto *ofproto = ofproto_;
4382 struct mac_entry *dst_mac;
4384 /* Drop frames for reserved multicast addresses. */
4385 if (eth_addr_is_reserved(flow->dl_dst)) {
4389 /* Learn source MAC (but don't try to learn from revalidation). */
4391 && mac_learning_may_learn(ofproto->ml, flow->dl_src, 0)) {
4392 struct mac_entry *src_mac;
4394 src_mac = mac_learning_insert(ofproto->ml, flow->dl_src, 0);
4395 if (mac_entry_is_new(src_mac) || src_mac->port.i != flow->in_port) {
4396 /* The log messages here could actually be useful in debugging,
4397 * so keep the rate limit relatively high. */
4398 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
4399 VLOG_DBG_RL(&rl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
4400 ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
4402 ofproto_revalidate(ofproto,
4403 mac_learning_changed(ofproto->ml, src_mac));
4404 src_mac->port.i = flow->in_port;
4408 /* Determine output port. */
4409 dst_mac = mac_learning_lookup(ofproto->ml, flow->dl_dst, 0, tags);
4411 flood_packets(ofproto, flow->in_port, OFPPC_NO_FLOOD,
4412 nf_output_iface, odp_actions);
4414 int out_port = dst_mac->port.i;
4415 if (out_port != flow->in_port) {
4416 nl_msg_put_u32(odp_actions, ODP_ACTION_ATTR_OUTPUT, out_port);
4417 *nf_output_iface = out_port;
4426 static const struct ofhooks default_ofhooks = {
4427 default_normal_ofhook_cb,