2 * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
19 #include "ofproto/ofproto-dpif.h"
20 #include "ofproto/ofproto-provider.h"
27 #include "byte-order.h"
32 #include "dynamic-string.h"
33 #include "fail-open.h"
37 #include "mac-learning.h"
38 #include "meta-flow.h"
39 #include "multipath.h"
40 #include "netdev-vport.h"
45 #include "odp-execute.h"
48 #include "ofp-actions.h"
49 #include "ofp-parse.h"
50 #include "ofp-print.h"
51 #include "ofproto-dpif-governor.h"
52 #include "ofproto-dpif-ipfix.h"
53 #include "ofproto-dpif-mirror.h"
54 #include "ofproto-dpif-sflow.h"
55 #include "ofproto-dpif-upcall.h"
56 #include "ofproto-dpif-xlate.h"
57 #include "poll-loop.h"
62 #include "unaligned.h"
64 #include "vlan-bitmap.h"
67 VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
69 COVERAGE_DEFINE(ofproto_dpif_expired);
70 COVERAGE_DEFINE(facet_changed_rule);
71 COVERAGE_DEFINE(facet_revalidate);
72 COVERAGE_DEFINE(facet_unexpected);
73 COVERAGE_DEFINE(facet_suppress);
74 COVERAGE_DEFINE(subfacet_install_fail);
75 COVERAGE_DEFINE(packet_in_overflow);
76 COVERAGE_DEFINE(flow_mod_overflow);
80 /* Number of implemented OpenFlow tables. */
81 enum { N_TABLES = 255 };
82 enum { TBL_INTERNAL = N_TABLES - 1 }; /* Used for internal hidden rules. */
83 BUILD_ASSERT_DECL(N_TABLES >= 2 && N_TABLES <= 255);
88 static void rule_get_stats(struct rule *, uint64_t *packets, uint64_t *bytes);
91 struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
92 struct ofproto_dpif *ofproto; /* Owning ofproto. */
93 void *aux; /* Key supplied by ofproto's client. */
94 char *name; /* Identifier for log messages. */
97 struct list ports; /* Contains "struct ofport"s. */
98 enum port_vlan_mode vlan_mode; /* VLAN mode */
99 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
100 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
101 * NULL if all VLANs are trunked. */
102 struct lacp *lacp; /* LACP if LACP is enabled, otherwise NULL. */
103 struct bond *bond; /* Nonnull iff more than one port. */
104 bool use_priority_tags; /* Use 802.1p tag for frames in VLAN 0? */
107 bool floodable; /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
110 static void bundle_remove(struct ofport *);
111 static void bundle_update(struct ofbundle *);
112 static void bundle_destroy(struct ofbundle *);
113 static void bundle_del_port(struct ofport_dpif *);
114 static void bundle_run(struct ofbundle *);
115 static void bundle_wait(struct ofbundle *);
117 static void stp_run(struct ofproto_dpif *ofproto);
118 static void stp_wait(struct ofproto_dpif *ofproto);
119 static int set_stp_port(struct ofport *,
120 const struct ofproto_port_stp_settings *);
122 static void compose_slow_path(const struct ofproto_dpif *, const struct flow *,
123 enum slow_path_reason,
124 uint64_t *stub, size_t stub_size,
125 const struct nlattr **actionsp,
126 size_t *actions_lenp);
128 /* A subfacet (see "struct subfacet" below) has three possible installation
131 * - SF_NOT_INSTALLED: Not installed in the datapath. This will only be the
132 * case just after the subfacet is created, just before the subfacet is
133 * destroyed, or if the datapath returns an error when we try to install a
136 * - SF_FAST_PATH: The subfacet's actions are installed in the datapath.
138 * - SF_SLOW_PATH: An action that sends every packet for the subfacet through
139 * ofproto_dpif is installed in the datapath.
142 SF_NOT_INSTALLED, /* No datapath flow for this subfacet. */
143 SF_FAST_PATH, /* Full actions are installed. */
144 SF_SLOW_PATH, /* Send-to-userspace action is installed. */
147 /* A dpif flow and actions associated with a facet.
149 * See also the large comment on struct facet. */
152 struct hmap_node hmap_node; /* In struct ofproto_dpif 'subfacets' list. */
153 struct list list_node; /* In struct facet's 'facets' list. */
154 struct facet *facet; /* Owning facet. */
155 struct dpif_backer *backer; /* Owning backer. */
157 enum odp_key_fitness key_fitness;
161 long long int used; /* Time last used; time created if not used. */
162 long long int created; /* Time created. */
164 uint64_t dp_packet_count; /* Last known packet count in the datapath. */
165 uint64_t dp_byte_count; /* Last known byte count in the datapath. */
167 enum subfacet_path path; /* Installed in datapath? */
170 #define SUBFACET_DESTROY_MAX_BATCH 50
172 static struct subfacet *subfacet_create(struct facet *, struct flow_miss *);
173 static struct subfacet *subfacet_find(struct dpif_backer *,
174 const struct nlattr *key, size_t key_len,
176 static void subfacet_destroy(struct subfacet *);
177 static void subfacet_destroy__(struct subfacet *);
178 static void subfacet_destroy_batch(struct dpif_backer *,
179 struct subfacet **, int n);
180 static void subfacet_reset_dp_stats(struct subfacet *,
181 struct dpif_flow_stats *);
182 static void subfacet_update_stats(struct subfacet *,
183 const struct dpif_flow_stats *);
184 static int subfacet_install(struct subfacet *,
185 const struct ofpbuf *odp_actions,
186 struct dpif_flow_stats *);
187 static void subfacet_uninstall(struct subfacet *);
189 /* A unique, non-overlapping instantiation of an OpenFlow flow.
191 * A facet associates a "struct flow", which represents the Open vSwitch
192 * userspace idea of an exact-match flow, with one or more subfacets.
193 * While the facet is created based on an exact-match flow, it is stored
194 * within the ofproto based on the wildcards that could be expressed
195 * based on the flow table and other configuration. (See the 'wc'
196 * description in "struct xlate_out" for more details.)
198 * Each subfacet tracks the datapath's idea of the flow equivalent to
199 * the facet. When the kernel module (or other dpif implementation) and
200 * Open vSwitch userspace agree on the definition of a flow key, there
201 * is exactly one subfacet per facet. If the dpif implementation
202 * supports more-specific flow matching than userspace, however, a facet
203 * can have more than one subfacet. Examples include the dpif
204 * implementation not supporting the same wildcards as userspace or some
205 * distinction in flow that userspace simply doesn't understand.
207 * Flow expiration works in terms of subfacets, so a facet must have at
208 * least one subfacet or it will never expire, leaking memory. */
211 struct hmap_node hmap_node; /* In owning ofproto's 'facets' hmap. */
212 struct ofproto_dpif *ofproto;
215 struct list subfacets;
216 long long int used; /* Time last used; time created if not used. */
219 struct flow flow; /* Flow of the creating subfacet. */
220 struct cls_rule cr; /* In 'ofproto_dpif's facets classifier. */
224 * - Do include packets and bytes sent "by hand", e.g. with
227 * - Do include packets and bytes that were obtained from the datapath
228 * when a subfacet's statistics were reset (e.g. dpif_flow_put() with
229 * DPIF_FP_ZERO_STATS).
231 * - Do not include packets or bytes that can be obtained from the
232 * datapath for any existing subfacet.
234 uint64_t packet_count; /* Number of packets received. */
235 uint64_t byte_count; /* Number of bytes received. */
237 /* Resubmit statistics. */
238 uint64_t prev_packet_count; /* Number of packets from last stats push. */
239 uint64_t prev_byte_count; /* Number of bytes from last stats push. */
240 long long int prev_used; /* Used time from last stats push. */
243 uint64_t accounted_bytes; /* Bytes processed by facet_account(). */
244 struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
245 uint8_t tcp_flags; /* TCP flags seen for this 'rule'. */
247 struct xlate_out xout;
249 /* Storage for a single subfacet, to reduce malloc() time and space
250 * overhead. (A facet always has at least one subfacet and in the common
251 * case has exactly one subfacet. However, 'one_subfacet' may not
252 * always be valid, since it could have been removed after newer
253 * subfacets were pushed onto the 'subfacets' list.) */
254 struct subfacet one_subfacet;
256 long long int learn_rl; /* Rate limiter for facet_learn(). */
259 static struct facet *facet_create(const struct flow_miss *);
260 static void facet_remove(struct facet *);
261 static void facet_free(struct facet *);
263 static struct facet *facet_find(struct ofproto_dpif *, const struct flow *);
264 static struct facet *facet_lookup_valid(struct ofproto_dpif *,
265 const struct flow *);
266 static bool facet_revalidate(struct facet *);
267 static bool facet_check_consistency(struct facet *);
269 static void facet_flush_stats(struct facet *);
271 static void facet_reset_counters(struct facet *);
272 static void flow_push_stats(struct ofproto_dpif *, struct flow *,
273 struct dpif_flow_stats *, bool may_learn);
274 static void facet_push_stats(struct facet *, bool may_learn);
275 static void facet_learn(struct facet *);
276 static void facet_account(struct facet *);
277 static void push_all_stats(void);
279 static bool facet_is_controller_flow(struct facet *);
282 struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
286 struct ofbundle *bundle; /* Bundle that contains this port, if any. */
287 struct list bundle_node; /* In struct ofbundle's "ports" list. */
288 struct cfm *cfm; /* Connectivity Fault Management, if any. */
289 struct bfd *bfd; /* BFD, if any. */
290 bool may_enable; /* May be enabled in bonds. */
291 bool is_tunnel; /* This port is a tunnel. */
292 long long int carrier_seq; /* Carrier status changes. */
293 struct ofport_dpif *peer; /* Peer if patch port. */
296 struct stp_port *stp_port; /* Spanning Tree Protocol, if any. */
297 enum stp_state stp_state; /* Always STP_DISABLED if STP not in use. */
298 long long int stp_state_entered;
300 /* Queue to DSCP mapping. */
301 struct ofproto_port_queue *qdscp;
304 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
306 * This is deprecated. It is only for compatibility with broken device
307 * drivers in old versions of Linux that do not properly support VLANs when
308 * VLAN devices are not used. When broken device drivers are no longer in
309 * widespread use, we will delete these interfaces. */
310 ofp_port_t realdev_ofp_port;
314 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
316 * This is deprecated. It is only for compatibility with broken device drivers
317 * in old versions of Linux that do not properly support VLANs when VLAN
318 * devices are not used. When broken device drivers are no longer in
319 * widespread use, we will delete these interfaces. */
320 struct vlan_splinter {
321 struct hmap_node realdev_vid_node;
322 struct hmap_node vlandev_node;
323 ofp_port_t realdev_ofp_port;
324 ofp_port_t vlandev_ofp_port;
328 static void vsp_remove(struct ofport_dpif *);
329 static void vsp_add(struct ofport_dpif *, ofp_port_t realdev_ofp_port, int vid);
331 static odp_port_t ofp_port_to_odp_port(const struct ofproto_dpif *,
334 static ofp_port_t odp_port_to_ofp_port(const struct ofproto_dpif *,
337 static struct ofport_dpif *
338 ofport_dpif_cast(const struct ofport *ofport)
340 return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
343 static void port_run(struct ofport_dpif *);
344 static void port_run_fast(struct ofport_dpif *);
345 static void port_wait(struct ofport_dpif *);
346 static int set_bfd(struct ofport *, const struct smap *);
347 static int set_cfm(struct ofport *, const struct cfm_settings *);
348 static void ofport_update_peer(struct ofport_dpif *);
349 static void run_fast_rl(void);
350 static int run_fast(struct ofproto *);
352 struct dpif_completion {
353 struct list list_node;
354 struct ofoperation *op;
357 /* Reasons that we might need to revalidate every facet, and corresponding
360 * A value of 0 means that there is no need to revalidate.
362 * It would be nice to have some cleaner way to integrate with coverage
363 * counters, but with only a few reasons I guess this is good enough for
365 enum revalidate_reason {
366 REV_RECONFIGURE = 1, /* Switch configuration changed. */
367 REV_STP, /* Spanning tree protocol port status change. */
368 REV_BOND, /* Bonding changed. */
369 REV_PORT_TOGGLED, /* Port enabled or disabled by CFM, LACP, ...*/
370 REV_FLOW_TABLE, /* Flow table changed. */
371 REV_MAC_LEARNING, /* Mac learning changed. */
372 REV_INCONSISTENCY /* Facet self-check failed. */
374 COVERAGE_DEFINE(rev_reconfigure);
375 COVERAGE_DEFINE(rev_stp);
376 COVERAGE_DEFINE(rev_bond);
377 COVERAGE_DEFINE(rev_port_toggled);
378 COVERAGE_DEFINE(rev_flow_table);
379 COVERAGE_DEFINE(rev_mac_learning);
380 COVERAGE_DEFINE(rev_inconsistency);
382 struct avg_subfacet_rates {
383 double add_rate; /* Moving average of new flows created per minute. */
384 double del_rate; /* Moving average of flows deleted per minute. */
387 /* All datapaths of a given type share a single dpif backer instance. */
393 struct timer next_expiration;
395 struct ovs_rwlock odp_to_ofport_lock;
396 struct hmap odp_to_ofport_map OVS_GUARDED; /* ODP port to ofport map. */
398 struct simap tnl_backers; /* Set of dpif ports backing tunnels. */
400 /* Facet revalidation flags applying to facets which use this backer. */
401 enum revalidate_reason need_revalidate; /* Revalidate every facet. */
403 struct hmap drop_keys; /* Set of dropped odp keys. */
404 bool recv_set_enable; /* Enables or disables receiving packets. */
406 struct hmap subfacets;
407 struct governor *governor;
409 /* Subfacet statistics.
411 * These keep track of the total number of subfacets added and deleted and
412 * flow life span. They are useful for computing the flow rates stats
413 * exposed via "ovs-appctl dpif/show". The goal is to learn about
414 * traffic patterns in ways that we can use later to improve Open vSwitch
415 * performance in new situations. */
416 long long int created; /* Time when it is created. */
417 unsigned max_n_subfacet; /* Maximum number of flows */
418 unsigned avg_n_subfacet; /* Average number of flows. */
419 long long int avg_subfacet_life; /* Average life span of subfacets. */
421 /* The average number of subfacets... */
422 struct avg_subfacet_rates hourly; /* ...over the last hour. */
423 struct avg_subfacet_rates daily; /* ...over the last day. */
424 struct avg_subfacet_rates lifetime; /* ...over the switch lifetime. */
425 long long int last_minute; /* Last time 'hourly' was updated. */
427 /* Number of subfacets added or deleted since 'last_minute'. */
428 unsigned subfacet_add_count;
429 unsigned subfacet_del_count;
431 /* Number of subfacets added or deleted from 'created' to 'last_minute.' */
432 unsigned long long int total_subfacet_add_count;
433 unsigned long long int total_subfacet_del_count;
436 /* All existing ofproto_backer instances, indexed by ofproto->up.type. */
437 static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
439 static void drop_key_clear(struct dpif_backer *);
440 static void update_moving_averages(struct dpif_backer *backer);
442 struct ofproto_dpif {
443 struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
445 struct dpif_backer *backer;
447 /* Special OpenFlow rules. */
448 struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
449 struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
450 struct rule_dpif *drop_frags_rule; /* Used in OFPC_FRAG_DROP mode. */
453 struct netflow *netflow;
454 struct dpif_sflow *sflow;
455 struct dpif_ipfix *ipfix;
456 struct hmap bundles; /* Contains "struct ofbundle"s. */
457 struct mac_learning *ml;
458 bool has_bonded_bundles;
459 struct mbridge *mbridge;
462 struct classifier facets; /* Contains 'struct facet's. */
463 long long int consistency_rl;
465 /* Support for debugging async flow mods. */
466 struct list completions;
468 struct netdev_stats stats; /* To account packets generated and consumed in
473 long long int stp_last_tick;
475 /* VLAN splinters. */
476 struct ovs_mutex vsp_mutex;
477 struct hmap realdev_vid_map OVS_GUARDED; /* (realdev,vid) -> vlandev. */
478 struct hmap vlandev_map OVS_GUARDED; /* vlandev -> (realdev,vid). */
481 struct sset ports; /* Set of standard port names. */
482 struct sset ghost_ports; /* Ports with no datapath port. */
483 struct sset port_poll_set; /* Queued names for port_poll() reply. */
484 int port_poll_errno; /* Last errno for port_poll() reply. */
486 /* Per ofproto's dpif stats. */
491 struct ovs_mutex flow_mod_mutex;
492 struct list flow_mods OVS_GUARDED;
493 size_t n_flow_mods OVS_GUARDED;
495 struct ovs_mutex pin_mutex;
496 struct list pins OVS_GUARDED;
497 size_t n_pins OVS_GUARDED;
500 /* Defer flow mod completion until "ovs-appctl ofproto/unclog"? (Useful only
501 * for debugging the asynchronous flow_mod implementation.) */
504 /* By default, flows in the datapath are wildcarded (megaflows). They
505 * may be disabled with the "ovs-appctl dpif/disable-megaflows" command. */
506 static bool enable_megaflows = true;
508 /* All existing ofproto_dpif instances, indexed by ->up.name. */
509 static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
511 static void ofproto_dpif_unixctl_init(void);
513 static inline struct ofproto_dpif *
514 ofproto_dpif_cast(const struct ofproto *ofproto)
516 ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
517 return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
520 static struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *ofproto,
521 ofp_port_t ofp_port);
522 static void ofproto_trace(struct ofproto_dpif *, const struct flow *,
523 const struct ofpbuf *packet, struct ds *);
526 static void handle_upcalls(struct dpif_backer *);
528 /* Flow expiration. */
529 static int expire(struct dpif_backer *);
532 static void send_netflow_active_timeouts(struct ofproto_dpif *);
535 static int send_packet(const struct ofport_dpif *, struct ofpbuf *packet);
537 /* Global variables. */
538 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
540 /* Initial mappings of port to bridge mappings. */
541 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
543 /* Executes and takes ownership of 'fm'. */
545 ofproto_dpif_flow_mod(struct ofproto_dpif *ofproto,
546 struct ofputil_flow_mod *fm)
548 ovs_mutex_lock(&ofproto->flow_mod_mutex);
549 if (ofproto->n_flow_mods > 1024) {
550 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
551 COVERAGE_INC(flow_mod_overflow);
557 list_push_back(&ofproto->flow_mods, &fm->list_node);
558 ofproto->n_flow_mods++;
559 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
563 ofproto_dpif_send_packet_in(struct ofproto_dpif *ofproto,
564 struct ofputil_packet_in *pin)
566 ovs_mutex_lock(&ofproto->pin_mutex);
567 if (ofproto->n_pins > 1024) {
568 ovs_mutex_unlock(&ofproto->pin_mutex);
569 COVERAGE_INC(packet_in_overflow);
570 free(CONST_CAST(void *, pin->packet));
575 list_push_back(&ofproto->pins, &pin->list_node);
577 ovs_mutex_unlock(&ofproto->pin_mutex);
580 /* Factory functions. */
583 init(const struct shash *iface_hints)
585 struct shash_node *node;
587 /* Make a local copy, since we don't own 'iface_hints' elements. */
588 SHASH_FOR_EACH(node, iface_hints) {
589 const struct iface_hint *orig_hint = node->data;
590 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
592 new_hint->br_name = xstrdup(orig_hint->br_name);
593 new_hint->br_type = xstrdup(orig_hint->br_type);
594 new_hint->ofp_port = orig_hint->ofp_port;
596 shash_add(&init_ofp_ports, node->name, new_hint);
601 enumerate_types(struct sset *types)
603 dp_enumerate_types(types);
607 enumerate_names(const char *type, struct sset *names)
609 struct ofproto_dpif *ofproto;
612 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
613 if (strcmp(type, ofproto->up.type)) {
616 sset_add(names, ofproto->up.name);
623 del(const char *type, const char *name)
628 error = dpif_open(name, type, &dpif);
630 error = dpif_delete(dpif);
637 port_open_type(const char *datapath_type, const char *port_type)
639 return dpif_port_open_type(datapath_type, port_type);
642 /* Type functions. */
644 static void process_dpif_port_changes(struct dpif_backer *);
645 static void process_dpif_all_ports_changed(struct dpif_backer *);
646 static void process_dpif_port_change(struct dpif_backer *,
647 const char *devname);
648 static void process_dpif_port_error(struct dpif_backer *, int error);
650 static struct ofproto_dpif *
651 lookup_ofproto_dpif_by_port_name(const char *name)
653 struct ofproto_dpif *ofproto;
655 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
656 if (sset_contains(&ofproto->ports, name)) {
665 type_run(const char *type)
667 static long long int push_timer = LLONG_MIN;
668 struct dpif_backer *backer;
670 backer = shash_find_data(&all_dpif_backers, type);
672 /* This is not necessarily a problem, since backers are only
673 * created on demand. */
677 dpif_run(backer->dpif);
679 /* The most natural place to push facet statistics is when they're pulled
680 * from the datapath. However, when there are many flows in the datapath,
681 * this expensive operation can occur so frequently, that it reduces our
682 * ability to quickly set up flows. To reduce the cost, we push statistics
684 if (time_msec() > push_timer) {
685 push_timer = time_msec() + 2000;
689 /* If vswitchd started with other_config:flow_restore_wait set as "true",
690 * and the configuration has now changed to "false", enable receiving
691 * packets from the datapath. */
692 if (!backer->recv_set_enable && !ofproto_get_flow_restore_wait()) {
695 backer->recv_set_enable = true;
697 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
699 udpif_recv_set(backer->udpif, 0, false);
700 VLOG_ERR("Failed to enable receiving packets in dpif.");
703 udpif_recv_set(backer->udpif, N_THREADS, backer->recv_set_enable);
704 dpif_flow_flush(backer->dpif);
705 backer->need_revalidate = REV_RECONFIGURE;
708 if (backer->need_revalidate) {
709 struct ofproto_dpif *ofproto;
710 struct simap_node *node;
711 struct simap tmp_backers;
713 /* Handle tunnel garbage collection. */
714 simap_init(&tmp_backers);
715 simap_swap(&backer->tnl_backers, &tmp_backers);
717 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
718 struct ofport_dpif *iter;
720 if (backer != ofproto->backer) {
724 HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
725 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
728 if (!iter->is_tunnel) {
732 dp_port = netdev_vport_get_dpif_port(iter->up.netdev,
733 namebuf, sizeof namebuf);
734 node = simap_find(&tmp_backers, dp_port);
736 simap_put(&backer->tnl_backers, dp_port, node->data);
737 simap_delete(&tmp_backers, node);
738 node = simap_find(&backer->tnl_backers, dp_port);
740 node = simap_find(&backer->tnl_backers, dp_port);
742 odp_port_t odp_port = ODPP_NONE;
744 if (!dpif_port_add(backer->dpif, iter->up.netdev,
746 simap_put(&backer->tnl_backers, dp_port,
747 odp_to_u32(odp_port));
748 node = simap_find(&backer->tnl_backers, dp_port);
753 iter->odp_port = node ? u32_to_odp(node->data) : ODPP_NONE;
754 if (tnl_port_reconfigure(iter, iter->up.netdev,
756 backer->need_revalidate = REV_RECONFIGURE;
761 SIMAP_FOR_EACH (node, &tmp_backers) {
762 dpif_port_del(backer->dpif, u32_to_odp(node->data));
764 simap_destroy(&tmp_backers);
766 switch (backer->need_revalidate) {
767 case REV_RECONFIGURE: COVERAGE_INC(rev_reconfigure); break;
768 case REV_STP: COVERAGE_INC(rev_stp); break;
769 case REV_BOND: COVERAGE_INC(rev_bond); break;
770 case REV_PORT_TOGGLED: COVERAGE_INC(rev_port_toggled); break;
771 case REV_FLOW_TABLE: COVERAGE_INC(rev_flow_table); break;
772 case REV_MAC_LEARNING: COVERAGE_INC(rev_mac_learning); break;
773 case REV_INCONSISTENCY: COVERAGE_INC(rev_inconsistency); break;
775 backer->need_revalidate = 0;
777 /* Clear the drop_keys in case we should now be accepting some
778 * formerly dropped flows. */
779 drop_key_clear(backer);
781 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
782 struct facet *facet, *next;
783 struct ofport_dpif *ofport;
784 struct cls_cursor cursor;
785 struct ofbundle *bundle;
787 if (ofproto->backer != backer) {
791 ovs_rwlock_wrlock(&xlate_rwlock);
792 xlate_ofproto_set(ofproto, ofproto->up.name,
793 ofproto->backer->dpif, ofproto->miss_rule,
794 ofproto->no_packet_in_rule, ofproto->ml,
795 ofproto->stp, ofproto->mbridge,
796 ofproto->sflow, ofproto->ipfix,
797 ofproto->up.frag_handling,
798 ofproto->up.forward_bpdu,
799 connmgr_has_in_band(ofproto->up.connmgr),
800 ofproto->netflow != NULL);
802 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
803 xlate_bundle_set(ofproto, bundle, bundle->name,
804 bundle->vlan_mode, bundle->vlan,
805 bundle->trunks, bundle->use_priority_tags,
806 bundle->bond, bundle->lacp,
810 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
811 int stp_port = ofport->stp_port
812 ? stp_port_no(ofport->stp_port)
814 xlate_ofport_set(ofproto, ofport->bundle, ofport,
815 ofport->up.ofp_port, ofport->odp_port,
816 ofport->up.netdev, ofport->cfm,
817 ofport->bfd, ofport->peer, stp_port,
818 ofport->qdscp, ofport->n_qdscp,
819 ofport->up.pp.config, ofport->is_tunnel,
822 ovs_rwlock_unlock(&xlate_rwlock);
824 /* Only ofproto-dpif cares about the facet classifier so we just
825 * lock cls_cursor_init() to appease the thread safety analysis. */
826 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
827 cls_cursor_init(&cursor, &ofproto->facets, NULL);
828 ovs_rwlock_unlock(&ofproto->facets.rwlock);
829 CLS_CURSOR_FOR_EACH_SAFE (facet, next, cr, &cursor) {
830 facet_revalidate(facet);
835 udpif_revalidate(backer->udpif);
838 if (!backer->recv_set_enable) {
839 /* Wake up before a max of 1000ms. */
840 timer_set_duration(&backer->next_expiration, 1000);
841 } else if (timer_expired(&backer->next_expiration)) {
842 int delay = expire(backer);
843 timer_set_duration(&backer->next_expiration, delay);
846 process_dpif_port_changes(backer);
848 if (backer->governor) {
851 governor_run(backer->governor);
853 /* If the governor has shrunk to its minimum size and the number of
854 * subfacets has dwindled, then drop the governor entirely.
856 * For hysteresis, the number of subfacets to drop the governor is
857 * smaller than the number needed to trigger its creation. */
858 n_subfacets = hmap_count(&backer->subfacets);
859 if (n_subfacets * 4 < flow_eviction_threshold
860 && governor_is_idle(backer->governor)) {
861 governor_destroy(backer->governor);
862 backer->governor = NULL;
869 /* Check for and handle port changes in 'backer''s dpif. */
871 process_dpif_port_changes(struct dpif_backer *backer)
877 error = dpif_port_poll(backer->dpif, &devname);
883 process_dpif_all_ports_changed(backer);
887 process_dpif_port_change(backer, devname);
892 process_dpif_port_error(backer, error);
899 process_dpif_all_ports_changed(struct dpif_backer *backer)
901 struct ofproto_dpif *ofproto;
902 struct dpif_port dpif_port;
903 struct dpif_port_dump dump;
904 struct sset devnames;
907 sset_init(&devnames);
908 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
909 if (ofproto->backer == backer) {
910 struct ofport *ofport;
912 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
913 sset_add(&devnames, netdev_get_name(ofport->netdev));
917 DPIF_PORT_FOR_EACH (&dpif_port, &dump, backer->dpif) {
918 sset_add(&devnames, dpif_port.name);
921 SSET_FOR_EACH (devname, &devnames) {
922 process_dpif_port_change(backer, devname);
924 sset_destroy(&devnames);
928 process_dpif_port_change(struct dpif_backer *backer, const char *devname)
930 struct ofproto_dpif *ofproto;
931 struct dpif_port port;
933 /* Don't report on the datapath's device. */
934 if (!strcmp(devname, dpif_base_name(backer->dpif))) {
938 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
939 &all_ofproto_dpifs) {
940 if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
945 ofproto = lookup_ofproto_dpif_by_port_name(devname);
946 if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
947 /* The port was removed. If we know the datapath,
948 * report it through poll_set(). If we don't, it may be
949 * notifying us of a removal we initiated, so ignore it.
950 * If there's a pending ENOBUFS, let it stand, since
951 * everything will be reevaluated. */
952 if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
953 sset_add(&ofproto->port_poll_set, devname);
954 ofproto->port_poll_errno = 0;
956 } else if (!ofproto) {
957 /* The port was added, but we don't know with which
958 * ofproto we should associate it. Delete it. */
959 dpif_port_del(backer->dpif, port.port_no);
961 struct ofport_dpif *ofport;
963 ofport = ofport_dpif_cast(shash_find_data(
964 &ofproto->up.port_by_name, devname));
966 && ofport->odp_port != port.port_no
967 && !odp_port_to_ofport(backer, port.port_no))
969 /* 'ofport''s datapath port number has changed from
970 * 'ofport->odp_port' to 'port.port_no'. Update our internal data
971 * structures to match. */
972 ovs_rwlock_wrlock(&backer->odp_to_ofport_lock);
973 hmap_remove(&backer->odp_to_ofport_map, &ofport->odp_port_node);
974 ofport->odp_port = port.port_no;
975 hmap_insert(&backer->odp_to_ofport_map, &ofport->odp_port_node,
976 hash_odp_port(port.port_no));
977 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
978 backer->need_revalidate = REV_RECONFIGURE;
981 dpif_port_destroy(&port);
984 /* Propagate 'error' to all ofprotos based on 'backer'. */
986 process_dpif_port_error(struct dpif_backer *backer, int error)
988 struct ofproto_dpif *ofproto;
990 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
991 if (ofproto->backer == backer) {
992 sset_clear(&ofproto->port_poll_set);
993 ofproto->port_poll_errno = error;
999 dpif_backer_run_fast(struct dpif_backer *backer)
1001 udpif_run(backer->udpif);
1002 handle_upcalls(backer);
1008 type_run_fast(const char *type)
1010 struct dpif_backer *backer;
1012 backer = shash_find_data(&all_dpif_backers, type);
1014 /* This is not necessarily a problem, since backers are only
1015 * created on demand. */
1019 return dpif_backer_run_fast(backer);
1025 static long long int port_rl = LLONG_MIN;
1027 if (time_msec() >= port_rl) {
1028 struct ofproto_dpif *ofproto;
1030 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1031 run_fast(&ofproto->up);
1033 port_rl = time_msec() + 200;
1038 type_wait(const char *type)
1040 struct dpif_backer *backer;
1042 backer = shash_find_data(&all_dpif_backers, type);
1044 /* This is not necessarily a problem, since backers are only
1045 * created on demand. */
1049 if (backer->governor) {
1050 governor_wait(backer->governor);
1053 timer_wait(&backer->next_expiration);
1054 dpif_wait(backer->dpif);
1055 udpif_wait(backer->udpif);
1058 /* Basic life-cycle. */
1060 static int add_internal_flows(struct ofproto_dpif *);
1062 static struct ofproto *
1065 struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
1066 return &ofproto->up;
1070 dealloc(struct ofproto *ofproto_)
1072 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1077 close_dpif_backer(struct dpif_backer *backer)
1079 struct shash_node *node;
1081 ovs_assert(backer->refcount > 0);
1083 if (--backer->refcount) {
1087 drop_key_clear(backer);
1088 hmap_destroy(&backer->drop_keys);
1090 simap_destroy(&backer->tnl_backers);
1091 ovs_rwlock_destroy(&backer->odp_to_ofport_lock);
1092 hmap_destroy(&backer->odp_to_ofport_map);
1093 node = shash_find(&all_dpif_backers, backer->type);
1095 shash_delete(&all_dpif_backers, node);
1096 udpif_destroy(backer->udpif);
1097 dpif_close(backer->dpif);
1099 ovs_assert(hmap_is_empty(&backer->subfacets));
1100 hmap_destroy(&backer->subfacets);
1101 governor_destroy(backer->governor);
1106 /* Datapath port slated for removal from datapath. */
1107 struct odp_garbage {
1108 struct list list_node;
1109 odp_port_t odp_port;
1113 open_dpif_backer(const char *type, struct dpif_backer **backerp)
1115 struct dpif_backer *backer;
1116 struct dpif_port_dump port_dump;
1117 struct dpif_port port;
1118 struct shash_node *node;
1119 struct list garbage_list;
1120 struct odp_garbage *garbage, *next;
1126 backer = shash_find_data(&all_dpif_backers, type);
1133 backer_name = xasprintf("ovs-%s", type);
1135 /* Remove any existing datapaths, since we assume we're the only
1136 * userspace controlling the datapath. */
1138 dp_enumerate_names(type, &names);
1139 SSET_FOR_EACH(name, &names) {
1140 struct dpif *old_dpif;
1142 /* Don't remove our backer if it exists. */
1143 if (!strcmp(name, backer_name)) {
1147 if (dpif_open(name, type, &old_dpif)) {
1148 VLOG_WARN("couldn't open old datapath %s to remove it", name);
1150 dpif_delete(old_dpif);
1151 dpif_close(old_dpif);
1154 sset_destroy(&names);
1156 backer = xmalloc(sizeof *backer);
1158 error = dpif_create_and_open(backer_name, type, &backer->dpif);
1161 VLOG_ERR("failed to open datapath of type %s: %s", type,
1162 ovs_strerror(error));
1166 backer->udpif = udpif_create(backer, backer->dpif);
1168 backer->type = xstrdup(type);
1169 backer->governor = NULL;
1170 backer->refcount = 1;
1171 hmap_init(&backer->odp_to_ofport_map);
1172 ovs_rwlock_init(&backer->odp_to_ofport_lock);
1173 hmap_init(&backer->drop_keys);
1174 hmap_init(&backer->subfacets);
1175 timer_set_duration(&backer->next_expiration, 1000);
1176 backer->need_revalidate = 0;
1177 simap_init(&backer->tnl_backers);
1178 backer->recv_set_enable = !ofproto_get_flow_restore_wait();
1181 if (backer->recv_set_enable) {
1182 dpif_flow_flush(backer->dpif);
1185 /* Loop through the ports already on the datapath and remove any
1186 * that we don't need anymore. */
1187 list_init(&garbage_list);
1188 dpif_port_dump_start(&port_dump, backer->dpif);
1189 while (dpif_port_dump_next(&port_dump, &port)) {
1190 node = shash_find(&init_ofp_ports, port.name);
1191 if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
1192 garbage = xmalloc(sizeof *garbage);
1193 garbage->odp_port = port.port_no;
1194 list_push_front(&garbage_list, &garbage->list_node);
1197 dpif_port_dump_done(&port_dump);
1199 LIST_FOR_EACH_SAFE (garbage, next, list_node, &garbage_list) {
1200 dpif_port_del(backer->dpif, garbage->odp_port);
1201 list_remove(&garbage->list_node);
1205 shash_add(&all_dpif_backers, type, backer);
1207 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
1209 VLOG_ERR("failed to listen on datapath of type %s: %s",
1210 type, ovs_strerror(error));
1211 close_dpif_backer(backer);
1214 udpif_recv_set(backer->udpif, N_THREADS, backer->recv_set_enable);
1216 backer->max_n_subfacet = 0;
1217 backer->created = time_msec();
1218 backer->last_minute = backer->created;
1219 memset(&backer->hourly, 0, sizeof backer->hourly);
1220 memset(&backer->daily, 0, sizeof backer->daily);
1221 memset(&backer->lifetime, 0, sizeof backer->lifetime);
1222 backer->subfacet_add_count = 0;
1223 backer->subfacet_del_count = 0;
1224 backer->total_subfacet_add_count = 0;
1225 backer->total_subfacet_del_count = 0;
1226 backer->avg_n_subfacet = 0;
1227 backer->avg_subfacet_life = 0;
1233 construct(struct ofproto *ofproto_)
1235 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1236 struct shash_node *node, *next;
1237 odp_port_t max_ports;
1240 error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
1245 max_ports = dpif_get_max_ports(ofproto->backer->dpif);
1246 ofproto_init_max_ports(ofproto_, u16_to_ofp(MIN(odp_to_u32(max_ports),
1247 ofp_to_u16(OFPP_MAX))));
1249 ofproto->netflow = NULL;
1250 ofproto->sflow = NULL;
1251 ofproto->ipfix = NULL;
1252 ofproto->stp = NULL;
1253 hmap_init(&ofproto->bundles);
1254 ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
1255 ofproto->mbridge = mbridge_create();
1256 ofproto->has_bonded_bundles = false;
1257 ovs_mutex_init(&ofproto->vsp_mutex, PTHREAD_MUTEX_NORMAL);
1259 classifier_init(&ofproto->facets);
1260 ofproto->consistency_rl = LLONG_MIN;
1262 list_init(&ofproto->completions);
1264 ovs_mutex_init(&ofproto->flow_mod_mutex, PTHREAD_MUTEX_NORMAL);
1265 ovs_mutex_lock(&ofproto->flow_mod_mutex);
1266 list_init(&ofproto->flow_mods);
1267 ofproto->n_flow_mods = 0;
1268 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1270 ovs_mutex_init(&ofproto->pin_mutex, PTHREAD_MUTEX_NORMAL);
1271 ovs_mutex_lock(&ofproto->pin_mutex);
1272 list_init(&ofproto->pins);
1273 ofproto->n_pins = 0;
1274 ovs_mutex_unlock(&ofproto->pin_mutex);
1276 ofproto_dpif_unixctl_init();
1278 hmap_init(&ofproto->vlandev_map);
1279 hmap_init(&ofproto->realdev_vid_map);
1281 sset_init(&ofproto->ports);
1282 sset_init(&ofproto->ghost_ports);
1283 sset_init(&ofproto->port_poll_set);
1284 ofproto->port_poll_errno = 0;
1286 SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
1287 struct iface_hint *iface_hint = node->data;
1289 if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1290 /* Check if the datapath already has this port. */
1291 if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1292 sset_add(&ofproto->ports, node->name);
1295 free(iface_hint->br_name);
1296 free(iface_hint->br_type);
1298 shash_delete(&init_ofp_ports, node);
1302 hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1303 hash_string(ofproto->up.name, 0));
1304 memset(&ofproto->stats, 0, sizeof ofproto->stats);
1306 ofproto_init_tables(ofproto_, N_TABLES);
1307 error = add_internal_flows(ofproto);
1308 ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1311 ofproto->n_missed = 0;
1317 add_internal_flow(struct ofproto_dpif *ofproto, int id,
1318 const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
1320 struct ofputil_flow_mod fm;
1323 match_init_catchall(&fm.match);
1325 match_set_reg(&fm.match, 0, id);
1326 fm.new_cookie = htonll(0);
1327 fm.cookie = htonll(0);
1328 fm.cookie_mask = htonll(0);
1329 fm.modify_cookie = false;
1330 fm.table_id = TBL_INTERNAL;
1331 fm.command = OFPFC_ADD;
1332 fm.idle_timeout = 0;
1333 fm.hard_timeout = 0;
1337 fm.ofpacts = ofpacts->data;
1338 fm.ofpacts_len = ofpacts->size;
1340 error = ofproto_flow_mod(&ofproto->up, &fm);
1342 VLOG_ERR_RL(&rl, "failed to add internal flow %d (%s)",
1343 id, ofperr_to_string(error));
1347 if (rule_dpif_lookup_in_table(ofproto, &fm.match.flow, NULL, TBL_INTERNAL,
1349 ovs_rwlock_unlock(&(*rulep)->up.evict);
1358 add_internal_flows(struct ofproto_dpif *ofproto)
1360 struct ofpact_controller *controller;
1361 uint64_t ofpacts_stub[128 / 8];
1362 struct ofpbuf ofpacts;
1366 ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
1369 controller = ofpact_put_CONTROLLER(&ofpacts);
1370 controller->max_len = UINT16_MAX;
1371 controller->controller_id = 0;
1372 controller->reason = OFPR_NO_MATCH;
1373 ofpact_pad(&ofpacts);
1375 error = add_internal_flow(ofproto, id++, &ofpacts, &ofproto->miss_rule);
1380 ofpbuf_clear(&ofpacts);
1381 error = add_internal_flow(ofproto, id++, &ofpacts,
1382 &ofproto->no_packet_in_rule);
1387 error = add_internal_flow(ofproto, id++, &ofpacts,
1388 &ofproto->drop_frags_rule);
1393 complete_operations(struct ofproto_dpif *ofproto)
1395 struct dpif_completion *c, *next;
1397 LIST_FOR_EACH_SAFE (c, next, list_node, &ofproto->completions) {
1398 ofoperation_complete(c->op, 0);
1399 list_remove(&c->list_node);
1405 destruct(struct ofproto *ofproto_)
1407 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1408 struct rule_dpif *rule, *next_rule;
1409 struct ofputil_flow_mod *pin, *next_pin;
1410 struct ofputil_flow_mod *fm, *next_fm;
1411 struct oftable *table;
1413 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1414 ovs_rwlock_wrlock(&xlate_rwlock);
1415 xlate_remove_ofproto(ofproto);
1416 ovs_rwlock_unlock(&xlate_rwlock);
1418 hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
1419 complete_operations(ofproto);
1421 OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
1422 struct cls_cursor cursor;
1424 ovs_rwlock_wrlock(&table->cls.rwlock);
1425 cls_cursor_init(&cursor, &table->cls, NULL);
1426 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
1427 ofproto_rule_destroy(&ofproto->up, &table->cls, &rule->up);
1429 ovs_rwlock_unlock(&table->cls.rwlock);
1432 ovs_mutex_lock(&ofproto->flow_mod_mutex);
1433 LIST_FOR_EACH_SAFE (fm, next_fm, list_node, &ofproto->flow_mods) {
1434 list_remove(&fm->list_node);
1435 ofproto->n_flow_mods--;
1439 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1440 ovs_mutex_destroy(&ofproto->flow_mod_mutex);
1442 ovs_mutex_lock(&ofproto->pin_mutex);
1443 LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &ofproto->pins) {
1444 list_remove(&pin->list_node);
1449 ovs_mutex_unlock(&ofproto->pin_mutex);
1450 ovs_mutex_destroy(&ofproto->pin_mutex);
1452 mbridge_unref(ofproto->mbridge);
1454 netflow_destroy(ofproto->netflow);
1455 dpif_sflow_unref(ofproto->sflow);
1456 hmap_destroy(&ofproto->bundles);
1457 mac_learning_unref(ofproto->ml);
1459 classifier_destroy(&ofproto->facets);
1461 hmap_destroy(&ofproto->vlandev_map);
1462 hmap_destroy(&ofproto->realdev_vid_map);
1464 sset_destroy(&ofproto->ports);
1465 sset_destroy(&ofproto->ghost_ports);
1466 sset_destroy(&ofproto->port_poll_set);
1468 ovs_mutex_destroy(&ofproto->vsp_mutex);
1470 close_dpif_backer(ofproto->backer);
1474 run_fast(struct ofproto *ofproto_)
1476 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1477 struct ofputil_packet_in *pin, *next_pin;
1478 struct ofputil_flow_mod *fm, *next_fm;
1479 struct list flow_mods, pins;
1480 struct ofport_dpif *ofport;
1482 /* Do not perform any periodic activity required by 'ofproto' while
1483 * waiting for flow restore to complete. */
1484 if (ofproto_get_flow_restore_wait()) {
1488 ovs_mutex_lock(&ofproto->flow_mod_mutex);
1489 if (ofproto->n_flow_mods) {
1490 flow_mods = ofproto->flow_mods;
1491 list_moved(&flow_mods);
1492 list_init(&ofproto->flow_mods);
1493 ofproto->n_flow_mods = 0;
1495 list_init(&flow_mods);
1497 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1499 LIST_FOR_EACH_SAFE (fm, next_fm, list_node, &flow_mods) {
1500 int error = ofproto_flow_mod(&ofproto->up, fm);
1501 if (error && !VLOG_DROP_WARN(&rl)) {
1502 VLOG_WARN("learning action failed to modify flow table (%s)",
1503 ofperr_get_name(error));
1506 list_remove(&fm->list_node);
1511 ovs_mutex_lock(&ofproto->pin_mutex);
1512 if (ofproto->n_pins) {
1513 pins = ofproto->pins;
1515 list_init(&ofproto->pins);
1516 ofproto->n_pins = 0;
1520 ovs_mutex_unlock(&ofproto->pin_mutex);
1522 LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &pins) {
1523 connmgr_send_packet_in(ofproto->up.connmgr, pin);
1524 list_remove(&pin->list_node);
1525 free(CONST_CAST(void *, pin->packet));
1529 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1530 port_run_fast(ofport);
1537 run(struct ofproto *ofproto_)
1539 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1540 struct ofport_dpif *ofport;
1541 struct ofbundle *bundle;
1545 complete_operations(ofproto);
1548 if (mbridge_need_revalidate(ofproto->mbridge)) {
1549 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1550 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1551 mac_learning_flush(ofproto->ml);
1552 ovs_rwlock_unlock(&ofproto->ml->rwlock);
1555 /* Do not perform any periodic activity below required by 'ofproto' while
1556 * waiting for flow restore to complete. */
1557 if (ofproto_get_flow_restore_wait()) {
1561 error = run_fast(ofproto_);
1566 if (ofproto->netflow) {
1567 if (netflow_run(ofproto->netflow)) {
1568 send_netflow_active_timeouts(ofproto);
1571 if (ofproto->sflow) {
1572 dpif_sflow_run(ofproto->sflow);
1575 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1578 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1583 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1584 if (mac_learning_run(ofproto->ml)) {
1585 ofproto->backer->need_revalidate = REV_MAC_LEARNING;
1587 ovs_rwlock_unlock(&ofproto->ml->rwlock);
1589 /* Check the consistency of a random facet, to aid debugging. */
1590 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1591 if (time_msec() >= ofproto->consistency_rl
1592 && !classifier_is_empty(&ofproto->facets)
1593 && !ofproto->backer->need_revalidate) {
1594 struct cls_table *table;
1595 struct cls_rule *cr;
1596 struct facet *facet;
1598 ofproto->consistency_rl = time_msec() + 250;
1600 table = CONTAINER_OF(hmap_random_node(&ofproto->facets.tables),
1601 struct cls_table, hmap_node);
1602 cr = CONTAINER_OF(hmap_random_node(&table->rules), struct cls_rule,
1604 facet = CONTAINER_OF(cr, struct facet, cr);
1606 if (!facet_check_consistency(facet)) {
1607 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
1610 ovs_rwlock_unlock(&ofproto->facets.rwlock);
1616 wait(struct ofproto *ofproto_)
1618 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1619 struct ofport_dpif *ofport;
1620 struct ofbundle *bundle;
1622 if (!clogged && !list_is_empty(&ofproto->completions)) {
1623 poll_immediate_wake();
1626 if (ofproto_get_flow_restore_wait()) {
1630 if (ofproto->sflow) {
1631 dpif_sflow_wait(ofproto->sflow);
1633 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1636 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1637 bundle_wait(bundle);
1639 if (ofproto->netflow) {
1640 netflow_wait(ofproto->netflow);
1642 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
1643 mac_learning_wait(ofproto->ml);
1644 ovs_rwlock_unlock(&ofproto->ml->rwlock);
1646 if (ofproto->backer->need_revalidate) {
1647 /* Shouldn't happen, but if it does just go around again. */
1648 VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1649 poll_immediate_wake();
1654 get_memory_usage(const struct ofproto *ofproto_, struct simap *usage)
1656 const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1657 struct cls_cursor cursor;
1658 size_t n_subfacets = 0;
1659 struct facet *facet;
1661 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1662 simap_increase(usage, "facets", classifier_count(&ofproto->facets));
1663 ovs_rwlock_unlock(&ofproto->facets.rwlock);
1665 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1666 cls_cursor_init(&cursor, &ofproto->facets, NULL);
1667 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
1668 n_subfacets += list_size(&facet->subfacets);
1670 ovs_rwlock_unlock(&ofproto->facets.rwlock);
1671 simap_increase(usage, "subfacets", n_subfacets);
1675 flush(struct ofproto *ofproto_)
1677 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1678 struct subfacet *subfacet, *next_subfacet;
1679 struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
1683 HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
1684 &ofproto->backer->subfacets) {
1685 if (subfacet->facet->ofproto != ofproto) {
1689 if (subfacet->path != SF_NOT_INSTALLED) {
1690 batch[n_batch++] = subfacet;
1691 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
1692 subfacet_destroy_batch(ofproto->backer, batch, n_batch);
1696 subfacet_destroy(subfacet);
1701 subfacet_destroy_batch(ofproto->backer, batch, n_batch);
1706 get_features(struct ofproto *ofproto_ OVS_UNUSED,
1707 bool *arp_match_ip, enum ofputil_action_bitmap *actions)
1709 *arp_match_ip = true;
1710 *actions = (OFPUTIL_A_OUTPUT |
1711 OFPUTIL_A_SET_VLAN_VID |
1712 OFPUTIL_A_SET_VLAN_PCP |
1713 OFPUTIL_A_STRIP_VLAN |
1714 OFPUTIL_A_SET_DL_SRC |
1715 OFPUTIL_A_SET_DL_DST |
1716 OFPUTIL_A_SET_NW_SRC |
1717 OFPUTIL_A_SET_NW_DST |
1718 OFPUTIL_A_SET_NW_TOS |
1719 OFPUTIL_A_SET_TP_SRC |
1720 OFPUTIL_A_SET_TP_DST |
1725 get_tables(struct ofproto *ofproto_, struct ofp12_table_stats *ots)
1727 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1728 struct dpif_dp_stats s;
1729 uint64_t n_miss, n_no_pkt_in, n_bytes, n_dropped_frags;
1732 strcpy(ots->name, "classifier");
1734 dpif_get_dp_stats(ofproto->backer->dpif, &s);
1735 rule_get_stats(&ofproto->miss_rule->up, &n_miss, &n_bytes);
1736 rule_get_stats(&ofproto->no_packet_in_rule->up, &n_no_pkt_in, &n_bytes);
1737 rule_get_stats(&ofproto->drop_frags_rule->up, &n_dropped_frags, &n_bytes);
1739 n_lookup = s.n_hit + s.n_missed - n_dropped_frags;
1740 ots->lookup_count = htonll(n_lookup);
1741 ots->matched_count = htonll(n_lookup - n_miss - n_no_pkt_in);
1744 static struct ofport *
1747 struct ofport_dpif *port = xmalloc(sizeof *port);
1752 port_dealloc(struct ofport *port_)
1754 struct ofport_dpif *port = ofport_dpif_cast(port_);
1759 port_construct(struct ofport *port_)
1761 struct ofport_dpif *port = ofport_dpif_cast(port_);
1762 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1763 const struct netdev *netdev = port->up.netdev;
1764 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1765 struct dpif_port dpif_port;
1768 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1769 port->bundle = NULL;
1772 port->may_enable = true;
1773 port->stp_port = NULL;
1774 port->stp_state = STP_DISABLED;
1775 port->is_tunnel = false;
1779 port->realdev_ofp_port = 0;
1780 port->vlandev_vid = 0;
1781 port->carrier_seq = netdev_get_carrier_resets(netdev);
1783 if (netdev_vport_is_patch(netdev)) {
1784 /* By bailing out here, we don't submit the port to the sFlow module
1785 * to be considered for counter polling export. This is correct
1786 * because the patch port represents an interface that sFlow considers
1787 * to be "internal" to the switch as a whole, and therefore not an
1788 * candidate for counter polling. */
1789 port->odp_port = ODPP_NONE;
1790 ofport_update_peer(port);
1794 error = dpif_port_query_by_name(ofproto->backer->dpif,
1795 netdev_vport_get_dpif_port(netdev, namebuf,
1802 port->odp_port = dpif_port.port_no;
1804 if (netdev_get_tunnel_config(netdev)) {
1805 tnl_port_add(port, port->up.netdev, port->odp_port);
1806 port->is_tunnel = true;
1808 /* Sanity-check that a mapping doesn't already exist. This
1809 * shouldn't happen for non-tunnel ports. */
1810 if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1811 VLOG_ERR("port %s already has an OpenFlow port number",
1813 dpif_port_destroy(&dpif_port);
1817 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
1818 hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
1819 hash_odp_port(port->odp_port));
1820 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
1822 dpif_port_destroy(&dpif_port);
1824 if (ofproto->sflow) {
1825 dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
1832 port_destruct(struct ofport *port_)
1834 struct ofport_dpif *port = ofport_dpif_cast(port_);
1835 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1836 const char *devname = netdev_get_name(port->up.netdev);
1837 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1838 const char *dp_port_name;
1840 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1841 ovs_rwlock_wrlock(&xlate_rwlock);
1842 xlate_ofport_remove(port);
1843 ovs_rwlock_unlock(&xlate_rwlock);
1845 dp_port_name = netdev_vport_get_dpif_port(port->up.netdev, namebuf,
1847 if (dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
1848 /* The underlying device is still there, so delete it. This
1849 * happens when the ofproto is being destroyed, since the caller
1850 * assumes that removal of attached ports will happen as part of
1852 if (!port->is_tunnel) {
1853 dpif_port_del(ofproto->backer->dpif, port->odp_port);
1858 port->peer->peer = NULL;
1862 if (port->odp_port != ODPP_NONE && !port->is_tunnel) {
1863 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
1864 hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
1865 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
1869 sset_find_and_delete(&ofproto->ports, devname);
1870 sset_find_and_delete(&ofproto->ghost_ports, devname);
1871 bundle_remove(port_);
1872 set_cfm(port_, NULL);
1873 set_bfd(port_, NULL);
1874 if (ofproto->sflow) {
1875 dpif_sflow_del_port(ofproto->sflow, port->odp_port);
1882 port_modified(struct ofport *port_)
1884 struct ofport_dpif *port = ofport_dpif_cast(port_);
1886 if (port->bundle && port->bundle->bond) {
1887 bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
1891 cfm_set_netdev(port->cfm, port->up.netdev);
1894 if (port->is_tunnel && tnl_port_reconfigure(port, port->up.netdev,
1896 ofproto_dpif_cast(port->up.ofproto)->backer->need_revalidate =
1900 ofport_update_peer(port);
1904 port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
1906 struct ofport_dpif *port = ofport_dpif_cast(port_);
1907 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1908 enum ofputil_port_config changed = old_config ^ port->up.pp.config;
1910 if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
1911 OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1912 OFPUTIL_PC_NO_PACKET_IN)) {
1913 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1915 if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
1916 bundle_update(port->bundle);
1922 set_sflow(struct ofproto *ofproto_,
1923 const struct ofproto_sflow_options *sflow_options)
1925 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1926 struct dpif_sflow *ds = ofproto->sflow;
1928 if (sflow_options) {
1930 struct ofport_dpif *ofport;
1932 ds = ofproto->sflow = dpif_sflow_create();
1933 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1934 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
1936 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1938 dpif_sflow_set_options(ds, sflow_options);
1941 dpif_sflow_unref(ds);
1942 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1943 ofproto->sflow = NULL;
1951 struct ofproto *ofproto_,
1952 const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1953 const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
1954 size_t n_flow_exporters_options)
1956 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1957 struct dpif_ipfix *di = ofproto->ipfix;
1959 if (bridge_exporter_options || flow_exporters_options) {
1961 di = ofproto->ipfix = dpif_ipfix_create();
1963 dpif_ipfix_set_options(
1964 di, bridge_exporter_options, flow_exporters_options,
1965 n_flow_exporters_options);
1968 dpif_ipfix_unref(di);
1969 ofproto->ipfix = NULL;
1976 set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
1978 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1985 struct ofproto_dpif *ofproto;
1987 ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1988 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1989 ofport->cfm = cfm_create(ofport->up.netdev);
1992 if (cfm_configure(ofport->cfm, s)) {
1998 cfm_unref(ofport->cfm);
2004 get_cfm_status(const struct ofport *ofport_,
2005 struct ofproto_cfm_status *status)
2007 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2010 status->faults = cfm_get_fault(ofport->cfm);
2011 status->remote_opstate = cfm_get_opup(ofport->cfm);
2012 status->health = cfm_get_health(ofport->cfm);
2013 cfm_get_remote_mpids(ofport->cfm, &status->rmps, &status->n_rmps);
2021 set_bfd(struct ofport *ofport_, const struct smap *cfg)
2023 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2024 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2028 ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev), cfg);
2029 if (ofport->bfd != old) {
2030 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2037 get_bfd_status(struct ofport *ofport_, struct smap *smap)
2039 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2042 bfd_get_status(ofport->bfd, smap);
2049 /* Spanning Tree. */
2052 send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
2054 struct ofproto_dpif *ofproto = ofproto_;
2055 struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2056 struct ofport_dpif *ofport;
2058 ofport = stp_port_get_aux(sp);
2060 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2061 ofproto->up.name, port_num);
2063 struct eth_header *eth = pkt->l2;
2065 netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
2066 if (eth_addr_is_zero(eth->eth_src)) {
2067 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2068 "with unknown MAC", ofproto->up.name, port_num);
2070 send_packet(ofport, pkt);
2076 /* Configures STP on 'ofproto_' using the settings defined in 's'. */
2078 set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2080 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2082 /* Only revalidate flows if the configuration changed. */
2083 if (!s != !ofproto->stp) {
2084 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2088 if (!ofproto->stp) {
2089 ofproto->stp = stp_create(ofproto_->name, s->system_id,
2090 send_bpdu_cb, ofproto);
2091 ofproto->stp_last_tick = time_msec();
2094 stp_set_bridge_id(ofproto->stp, s->system_id);
2095 stp_set_bridge_priority(ofproto->stp, s->priority);
2096 stp_set_hello_time(ofproto->stp, s->hello_time);
2097 stp_set_max_age(ofproto->stp, s->max_age);
2098 stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2100 struct ofport *ofport;
2102 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2103 set_stp_port(ofport, NULL);
2106 stp_unref(ofproto->stp);
2107 ofproto->stp = NULL;
2114 get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2116 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2120 s->bridge_id = stp_get_bridge_id(ofproto->stp);
2121 s->designated_root = stp_get_designated_root(ofproto->stp);
2122 s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2131 update_stp_port_state(struct ofport_dpif *ofport)
2133 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2134 enum stp_state state;
2136 /* Figure out new state. */
2137 state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2141 if (ofport->stp_state != state) {
2142 enum ofputil_port_state of_state;
2145 VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
2146 netdev_get_name(ofport->up.netdev),
2147 stp_state_name(ofport->stp_state),
2148 stp_state_name(state));
2149 if (stp_learn_in_state(ofport->stp_state)
2150 != stp_learn_in_state(state)) {
2151 /* xxx Learning action flows should also be flushed. */
2152 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2153 mac_learning_flush(ofproto->ml);
2154 ovs_rwlock_unlock(&ofproto->ml->rwlock);
2156 fwd_change = stp_forward_in_state(ofport->stp_state)
2157 != stp_forward_in_state(state);
2159 ofproto->backer->need_revalidate = REV_STP;
2160 ofport->stp_state = state;
2161 ofport->stp_state_entered = time_msec();
2163 if (fwd_change && ofport->bundle) {
2164 bundle_update(ofport->bundle);
2167 /* Update the STP state bits in the OpenFlow port description. */
2168 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2169 of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2170 : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2171 : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2172 : state == STP_BLOCKING ? OFPUTIL_PS_STP_BLOCK
2174 ofproto_port_set_state(&ofport->up, of_state);
2178 /* Configures STP on 'ofport_' using the settings defined in 's'. The
2179 * caller is responsible for assigning STP port numbers and ensuring
2180 * there are no duplicates. */
2182 set_stp_port(struct ofport *ofport_,
2183 const struct ofproto_port_stp_settings *s)
2185 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2186 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2187 struct stp_port *sp = ofport->stp_port;
2189 if (!s || !s->enable) {
2191 ofport->stp_port = NULL;
2192 stp_port_disable(sp);
2193 update_stp_port_state(ofport);
2196 } else if (sp && stp_port_no(sp) != s->port_num
2197 && ofport == stp_port_get_aux(sp)) {
2198 /* The port-id changed, so disable the old one if it's not
2199 * already in use by another port. */
2200 stp_port_disable(sp);
2203 sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
2204 stp_port_enable(sp);
2206 stp_port_set_aux(sp, ofport);
2207 stp_port_set_priority(sp, s->priority);
2208 stp_port_set_path_cost(sp, s->path_cost);
2210 update_stp_port_state(ofport);
2216 get_stp_port_status(struct ofport *ofport_,
2217 struct ofproto_port_stp_status *s)
2219 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2220 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2221 struct stp_port *sp = ofport->stp_port;
2223 if (!ofproto->stp || !sp) {
2229 s->port_id = stp_port_get_id(sp);
2230 s->state = stp_port_get_state(sp);
2231 s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2232 s->role = stp_port_get_role(sp);
2233 stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
2239 stp_run(struct ofproto_dpif *ofproto)
2242 long long int now = time_msec();
2243 long long int elapsed = now - ofproto->stp_last_tick;
2244 struct stp_port *sp;
2247 stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2248 ofproto->stp_last_tick = now;
2250 while (stp_get_changed_port(ofproto->stp, &sp)) {
2251 struct ofport_dpif *ofport = stp_port_get_aux(sp);
2254 update_stp_port_state(ofport);
2258 if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
2259 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2260 mac_learning_flush(ofproto->ml);
2261 ovs_rwlock_unlock(&ofproto->ml->rwlock);
2267 stp_wait(struct ofproto_dpif *ofproto)
2270 poll_timer_wait(1000);
2275 set_queues(struct ofport *ofport_, const struct ofproto_port_queue *qdscp,
2278 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2279 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2281 if (ofport->n_qdscp != n_qdscp
2282 || (n_qdscp && memcmp(ofport->qdscp, qdscp,
2283 n_qdscp * sizeof *qdscp))) {
2284 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2285 free(ofport->qdscp);
2286 ofport->qdscp = n_qdscp
2287 ? xmemdup(qdscp, n_qdscp * sizeof *qdscp)
2289 ofport->n_qdscp = n_qdscp;
2297 /* Expires all MAC learning entries associated with 'bundle' and forces its
2298 * ofproto to revalidate every flow.
2300 * Normally MAC learning entries are removed only from the ofproto associated
2301 * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2302 * are removed from every ofproto. When patch ports and SLB bonds are in use
2303 * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2304 * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2305 * with the host from which it migrated. */
2307 bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
2309 struct ofproto_dpif *ofproto = bundle->ofproto;
2310 struct mac_learning *ml = ofproto->ml;
2311 struct mac_entry *mac, *next_mac;
2313 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2314 ovs_rwlock_wrlock(&ml->rwlock);
2315 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
2316 if (mac->port.p == bundle) {
2318 struct ofproto_dpif *o;
2320 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2322 struct mac_entry *e;
2324 ovs_rwlock_wrlock(&o->ml->rwlock);
2325 e = mac_learning_lookup(o->ml, mac->mac, mac->vlan);
2327 mac_learning_expire(o->ml, e);
2329 ovs_rwlock_unlock(&o->ml->rwlock);
2334 mac_learning_expire(ml, mac);
2337 ovs_rwlock_unlock(&ml->rwlock);
2340 static struct ofbundle *
2341 bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2343 struct ofbundle *bundle;
2345 HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2346 &ofproto->bundles) {
2347 if (bundle->aux == aux) {
2355 bundle_update(struct ofbundle *bundle)
2357 struct ofport_dpif *port;
2359 bundle->floodable = true;
2360 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2361 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2362 || !stp_forward_in_state(port->stp_state)) {
2363 bundle->floodable = false;
2370 bundle_del_port(struct ofport_dpif *port)
2372 struct ofbundle *bundle = port->bundle;
2374 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2376 list_remove(&port->bundle_node);
2377 port->bundle = NULL;
2380 lacp_slave_unregister(bundle->lacp, port);
2383 bond_slave_unregister(bundle->bond, port);
2386 bundle_update(bundle);
2390 bundle_add_port(struct ofbundle *bundle, ofp_port_t ofp_port,
2391 struct lacp_slave_settings *lacp)
2393 struct ofport_dpif *port;
2395 port = get_ofp_port(bundle->ofproto, ofp_port);
2400 if (port->bundle != bundle) {
2401 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2403 bundle_remove(&port->up);
2406 port->bundle = bundle;
2407 list_push_back(&bundle->ports, &port->bundle_node);
2408 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2409 || !stp_forward_in_state(port->stp_state)) {
2410 bundle->floodable = false;
2414 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2415 lacp_slave_register(bundle->lacp, port, lacp);
2422 bundle_destroy(struct ofbundle *bundle)
2424 struct ofproto_dpif *ofproto;
2425 struct ofport_dpif *port, *next_port;
2431 ofproto = bundle->ofproto;
2432 mbridge_unregister_bundle(ofproto->mbridge, bundle->aux);
2434 ovs_rwlock_wrlock(&xlate_rwlock);
2435 xlate_bundle_remove(bundle);
2436 ovs_rwlock_unlock(&xlate_rwlock);
2438 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2439 bundle_del_port(port);
2442 bundle_flush_macs(bundle, true);
2443 hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2445 free(bundle->trunks);
2446 lacp_unref(bundle->lacp);
2447 bond_unref(bundle->bond);
2452 bundle_set(struct ofproto *ofproto_, void *aux,
2453 const struct ofproto_bundle_settings *s)
2455 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2456 bool need_flush = false;
2457 struct ofport_dpif *port;
2458 struct ofbundle *bundle;
2459 unsigned long *trunks;
2465 bundle_destroy(bundle_lookup(ofproto, aux));
2469 ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2470 ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
2472 bundle = bundle_lookup(ofproto, aux);
2474 bundle = xmalloc(sizeof *bundle);
2476 bundle->ofproto = ofproto;
2477 hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2478 hash_pointer(aux, 0));
2480 bundle->name = NULL;
2482 list_init(&bundle->ports);
2483 bundle->vlan_mode = PORT_VLAN_TRUNK;
2485 bundle->trunks = NULL;
2486 bundle->use_priority_tags = s->use_priority_tags;
2487 bundle->lacp = NULL;
2488 bundle->bond = NULL;
2490 bundle->floodable = true;
2491 mbridge_register_bundle(ofproto->mbridge, bundle);
2494 if (!bundle->name || strcmp(s->name, bundle->name)) {
2496 bundle->name = xstrdup(s->name);
2501 if (!bundle->lacp) {
2502 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2503 bundle->lacp = lacp_create();
2505 lacp_configure(bundle->lacp, s->lacp);
2507 lacp_unref(bundle->lacp);
2508 bundle->lacp = NULL;
2511 /* Update set of ports. */
2513 for (i = 0; i < s->n_slaves; i++) {
2514 if (!bundle_add_port(bundle, s->slaves[i],
2515 s->lacp ? &s->lacp_slaves[i] : NULL)) {
2519 if (!ok || list_size(&bundle->ports) != s->n_slaves) {
2520 struct ofport_dpif *next_port;
2522 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2523 for (i = 0; i < s->n_slaves; i++) {
2524 if (s->slaves[i] == port->up.ofp_port) {
2529 bundle_del_port(port);
2533 ovs_assert(list_size(&bundle->ports) <= s->n_slaves);
2535 if (list_is_empty(&bundle->ports)) {
2536 bundle_destroy(bundle);
2540 /* Set VLAN tagging mode */
2541 if (s->vlan_mode != bundle->vlan_mode
2542 || s->use_priority_tags != bundle->use_priority_tags) {
2543 bundle->vlan_mode = s->vlan_mode;
2544 bundle->use_priority_tags = s->use_priority_tags;
2549 vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2550 : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2552 if (vlan != bundle->vlan) {
2553 bundle->vlan = vlan;
2557 /* Get trunked VLANs. */
2558 switch (s->vlan_mode) {
2559 case PORT_VLAN_ACCESS:
2563 case PORT_VLAN_TRUNK:
2564 trunks = CONST_CAST(unsigned long *, s->trunks);
2567 case PORT_VLAN_NATIVE_UNTAGGED:
2568 case PORT_VLAN_NATIVE_TAGGED:
2569 if (vlan != 0 && (!s->trunks
2570 || !bitmap_is_set(s->trunks, vlan)
2571 || bitmap_is_set(s->trunks, 0))) {
2572 /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2574 trunks = bitmap_clone(s->trunks, 4096);
2576 trunks = bitmap_allocate1(4096);
2578 bitmap_set1(trunks, vlan);
2579 bitmap_set0(trunks, 0);
2581 trunks = CONST_CAST(unsigned long *, s->trunks);
2588 if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2589 free(bundle->trunks);
2590 if (trunks == s->trunks) {
2591 bundle->trunks = vlan_bitmap_clone(trunks);
2593 bundle->trunks = trunks;
2598 if (trunks != s->trunks) {
2603 if (!list_is_short(&bundle->ports)) {
2604 bundle->ofproto->has_bonded_bundles = true;
2606 if (bond_reconfigure(bundle->bond, s->bond)) {
2607 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2610 bundle->bond = bond_create(s->bond);
2611 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2614 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2615 bond_slave_register(bundle->bond, port, port->up.netdev);
2618 bond_unref(bundle->bond);
2619 bundle->bond = NULL;
2622 /* If we changed something that would affect MAC learning, un-learn
2623 * everything on this port and force flow revalidation. */
2625 bundle_flush_macs(bundle, false);
2632 bundle_remove(struct ofport *port_)
2634 struct ofport_dpif *port = ofport_dpif_cast(port_);
2635 struct ofbundle *bundle = port->bundle;
2638 bundle_del_port(port);
2639 if (list_is_empty(&bundle->ports)) {
2640 bundle_destroy(bundle);
2641 } else if (list_is_short(&bundle->ports)) {
2642 bond_unref(bundle->bond);
2643 bundle->bond = NULL;
2649 send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
2651 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
2652 struct ofport_dpif *port = port_;
2653 uint8_t ea[ETH_ADDR_LEN];
2656 error = netdev_get_etheraddr(port->up.netdev, ea);
2658 struct ofpbuf packet;
2661 ofpbuf_init(&packet, 0);
2662 packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
2664 memcpy(packet_pdu, pdu, pdu_size);
2666 send_packet(port, &packet);
2667 ofpbuf_uninit(&packet);
2669 VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
2670 "%s (%s)", port->bundle->name,
2671 netdev_get_name(port->up.netdev), ovs_strerror(error));
2676 bundle_send_learning_packets(struct ofbundle *bundle)
2678 struct ofproto_dpif *ofproto = bundle->ofproto;
2679 int error, n_packets, n_errors;
2680 struct mac_entry *e;
2682 error = n_packets = n_errors = 0;
2683 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
2684 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
2685 if (e->port.p != bundle) {
2686 struct ofpbuf *learning_packet;
2687 struct ofport_dpif *port;
2691 /* The assignment to "port" is unnecessary but makes "grep"ing for
2692 * struct ofport_dpif more effective. */
2693 learning_packet = bond_compose_learning_packet(bundle->bond,
2697 ret = send_packet(port, learning_packet);
2698 ofpbuf_delete(learning_packet);
2706 ovs_rwlock_unlock(&ofproto->ml->rwlock);
2709 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2710 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2711 "packets, last error was: %s",
2712 bundle->name, n_errors, n_packets, ovs_strerror(error));
2714 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2715 bundle->name, n_packets);
2720 bundle_run(struct ofbundle *bundle)
2723 lacp_run(bundle->lacp, send_pdu_cb);
2726 struct ofport_dpif *port;
2728 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2729 bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
2732 if (bond_run(bundle->bond, lacp_status(bundle->lacp))) {
2733 bundle->ofproto->backer->need_revalidate = REV_BOND;
2736 if (bond_should_send_learning_packets(bundle->bond)) {
2737 bundle_send_learning_packets(bundle);
2743 bundle_wait(struct ofbundle *bundle)
2746 lacp_wait(bundle->lacp);
2749 bond_wait(bundle->bond);
2756 mirror_set__(struct ofproto *ofproto_, void *aux,
2757 const struct ofproto_mirror_settings *s)
2759 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2760 struct ofbundle **srcs, **dsts;
2765 mirror_destroy(ofproto->mbridge, aux);
2769 srcs = xmalloc(s->n_srcs * sizeof *srcs);
2770 dsts = xmalloc(s->n_dsts * sizeof *dsts);
2772 for (i = 0; i < s->n_srcs; i++) {
2773 srcs[i] = bundle_lookup(ofproto, s->srcs[i]);
2776 for (i = 0; i < s->n_dsts; i++) {
2777 dsts[i] = bundle_lookup(ofproto, s->dsts[i]);
2780 error = mirror_set(ofproto->mbridge, aux, s->name, srcs, s->n_srcs, dsts,
2781 s->n_dsts, s->src_vlans,
2782 bundle_lookup(ofproto, s->out_bundle), s->out_vlan);
2789 mirror_get_stats__(struct ofproto *ofproto, void *aux,
2790 uint64_t *packets, uint64_t *bytes)
2793 return mirror_get_stats(ofproto_dpif_cast(ofproto)->mbridge, aux, packets,
2798 set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
2800 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2801 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2802 if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
2803 mac_learning_flush(ofproto->ml);
2805 ovs_rwlock_unlock(&ofproto->ml->rwlock);
2810 is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
2812 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2813 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
2814 return bundle && mirror_bundle_out(ofproto->mbridge, bundle) != 0;
2818 forward_bpdu_changed(struct ofproto *ofproto_)
2820 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2821 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2825 set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
2828 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2829 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2830 mac_learning_set_idle_time(ofproto->ml, idle_time);
2831 mac_learning_set_max_entries(ofproto->ml, max_entries);
2832 ovs_rwlock_unlock(&ofproto->ml->rwlock);
2837 static struct ofport_dpif *
2838 get_ofp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
2840 struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
2841 return ofport ? ofport_dpif_cast(ofport) : NULL;
2844 static struct ofport_dpif *
2845 get_odp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
2847 struct ofport_dpif *port = odp_port_to_ofport(ofproto->backer, odp_port);
2848 return port && &ofproto->up == port->up.ofproto ? port : NULL;
2852 ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
2853 struct ofproto_port *ofproto_port,
2854 struct dpif_port *dpif_port)
2856 ofproto_port->name = dpif_port->name;
2857 ofproto_port->type = dpif_port->type;
2858 ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
2862 ofport_update_peer(struct ofport_dpif *ofport)
2864 const struct ofproto_dpif *ofproto;
2865 struct dpif_backer *backer;
2868 if (!netdev_vport_is_patch(ofport->up.netdev)) {
2872 backer = ofproto_dpif_cast(ofport->up.ofproto)->backer;
2873 backer->need_revalidate = REV_RECONFIGURE;
2876 ofport->peer->peer = NULL;
2877 ofport->peer = NULL;
2880 peer_name = netdev_vport_patch_peer(ofport->up.netdev);
2885 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2886 struct ofport *peer_ofport;
2887 struct ofport_dpif *peer;
2890 if (ofproto->backer != backer) {
2894 peer_ofport = shash_find_data(&ofproto->up.port_by_name, peer_name);
2899 peer = ofport_dpif_cast(peer_ofport);
2900 peer_peer = netdev_vport_patch_peer(peer->up.netdev);
2901 if (peer_peer && !strcmp(netdev_get_name(ofport->up.netdev),
2903 ofport->peer = peer;
2904 ofport->peer->peer = ofport;
2914 port_run_fast(struct ofport_dpif *ofport)
2916 if (ofport->cfm && cfm_should_send_ccm(ofport->cfm)) {
2917 struct ofpbuf packet;
2919 ofpbuf_init(&packet, 0);
2920 cfm_compose_ccm(ofport->cfm, &packet, ofport->up.pp.hw_addr);
2921 send_packet(ofport, &packet);
2922 ofpbuf_uninit(&packet);
2925 if (ofport->bfd && bfd_should_send_packet(ofport->bfd)) {
2926 struct ofpbuf packet;
2928 ofpbuf_init(&packet, 0);
2929 bfd_put_packet(ofport->bfd, &packet, ofport->up.pp.hw_addr);
2930 send_packet(ofport, &packet);
2931 ofpbuf_uninit(&packet);
2936 port_run(struct ofport_dpif *ofport)
2938 long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
2939 bool carrier_changed = carrier_seq != ofport->carrier_seq;
2940 bool enable = netdev_get_carrier(ofport->up.netdev);
2942 ofport->carrier_seq = carrier_seq;
2944 port_run_fast(ofport);
2947 int cfm_opup = cfm_get_opup(ofport->cfm);
2949 cfm_run(ofport->cfm);
2950 enable = enable && !cfm_get_fault(ofport->cfm);
2952 if (cfm_opup >= 0) {
2953 enable = enable && cfm_opup;
2958 bfd_run(ofport->bfd);
2959 enable = enable && bfd_forwarding(ofport->bfd);
2962 if (ofport->bundle) {
2963 enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
2964 if (carrier_changed) {
2965 lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
2969 if (ofport->may_enable != enable) {
2970 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2971 ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
2974 ofport->may_enable = enable;
2978 port_wait(struct ofport_dpif *ofport)
2981 cfm_wait(ofport->cfm);
2985 bfd_wait(ofport->bfd);
2990 port_query_by_name(const struct ofproto *ofproto_, const char *devname,
2991 struct ofproto_port *ofproto_port)
2993 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2994 struct dpif_port dpif_port;
2997 if (sset_contains(&ofproto->ghost_ports, devname)) {
2998 const char *type = netdev_get_type_from_name(devname);
3000 /* We may be called before ofproto->up.port_by_name is populated with
3001 * the appropriate ofport. For this reason, we must get the name and
3002 * type from the netdev layer directly. */
3004 const struct ofport *ofport;
3006 ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3007 ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3008 ofproto_port->name = xstrdup(devname);
3009 ofproto_port->type = xstrdup(type);
3015 if (!sset_contains(&ofproto->ports, devname)) {
3018 error = dpif_port_query_by_name(ofproto->backer->dpif,
3019 devname, &dpif_port);
3021 ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
3027 port_add(struct ofproto *ofproto_, struct netdev *netdev)
3029 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3030 const char *devname = netdev_get_name(netdev);
3031 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
3032 const char *dp_port_name;
3034 if (netdev_vport_is_patch(netdev)) {
3035 sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3039 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
3040 if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
3041 odp_port_t port_no = ODPP_NONE;
3044 error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
3048 if (netdev_get_tunnel_config(netdev)) {
3049 simap_put(&ofproto->backer->tnl_backers,
3050 dp_port_name, odp_to_u32(port_no));
3054 if (netdev_get_tunnel_config(netdev)) {
3055 sset_add(&ofproto->ghost_ports, devname);
3057 sset_add(&ofproto->ports, devname);
3063 port_del(struct ofproto *ofproto_, ofp_port_t ofp_port)
3065 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3066 struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
3073 sset_find_and_delete(&ofproto->ghost_ports,
3074 netdev_get_name(ofport->up.netdev));
3075 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3076 if (!ofport->is_tunnel) {
3077 error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
3079 /* The caller is going to close ofport->up.netdev. If this is a
3080 * bonded port, then the bond is using that netdev, so remove it
3081 * from the bond. The client will need to reconfigure everything
3082 * after deleting ports, so then the slave will get re-added. */
3083 bundle_remove(&ofport->up);
3090 port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3092 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3097 error = netdev_get_stats(ofport->up.netdev, stats);
3099 if (!error && ofport_->ofp_port == OFPP_LOCAL) {
3100 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3102 /* ofproto->stats.tx_packets represents packets that we created
3103 * internally and sent to some port (e.g. packets sent with
3104 * send_packet()). Account for them as if they had come from
3105 * OFPP_LOCAL and got forwarded. */
3107 if (stats->rx_packets != UINT64_MAX) {
3108 stats->rx_packets += ofproto->stats.tx_packets;
3111 if (stats->rx_bytes != UINT64_MAX) {
3112 stats->rx_bytes += ofproto->stats.tx_bytes;
3115 /* ofproto->stats.rx_packets represents packets that were received on
3116 * some port and we processed internally and dropped (e.g. STP).
3117 * Account for them as if they had been forwarded to OFPP_LOCAL. */
3119 if (stats->tx_packets != UINT64_MAX) {
3120 stats->tx_packets += ofproto->stats.rx_packets;
3123 if (stats->tx_bytes != UINT64_MAX) {
3124 stats->tx_bytes += ofproto->stats.rx_bytes;
3131 struct port_dump_state {
3136 struct ofproto_port port;
3141 port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
3143 *statep = xzalloc(sizeof(struct port_dump_state));
3148 port_dump_next(const struct ofproto *ofproto_, void *state_,
3149 struct ofproto_port *port)
3151 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3152 struct port_dump_state *state = state_;
3153 const struct sset *sset;
3154 struct sset_node *node;
3156 if (state->has_port) {
3157 ofproto_port_destroy(&state->port);
3158 state->has_port = false;
3160 sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
3161 while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
3164 error = port_query_by_name(ofproto_, node->name, &state->port);
3166 *port = state->port;
3167 state->has_port = true;
3169 } else if (error != ENODEV) {
3174 if (!state->ghost) {
3175 state->ghost = true;
3178 return port_dump_next(ofproto_, state_, port);
3185 port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3187 struct port_dump_state *state = state_;
3189 if (state->has_port) {
3190 ofproto_port_destroy(&state->port);
3197 port_poll(const struct ofproto *ofproto_, char **devnamep)
3199 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3201 if (ofproto->port_poll_errno) {
3202 int error = ofproto->port_poll_errno;
3203 ofproto->port_poll_errno = 0;
3207 if (sset_is_empty(&ofproto->port_poll_set)) {
3211 *devnamep = sset_pop(&ofproto->port_poll_set);
3216 port_poll_wait(const struct ofproto *ofproto_)
3218 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3219 dpif_port_poll_wait(ofproto->backer->dpif);
3223 port_is_lacp_current(const struct ofport *ofport_)
3225 const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3226 return (ofport->bundle && ofport->bundle->lacp
3227 ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3231 /* Upcall handling. */
3233 struct flow_miss_op {
3234 struct dpif_op dpif_op;
3236 uint64_t slow_stub[128 / 8]; /* Buffer for compose_slow_path() */
3237 struct xlate_out xout;
3238 bool xout_garbage; /* 'xout' needs to be uninitialized? */
3240 struct ofpbuf mask; /* Flow mask for "put" ops. */
3241 struct odputil_keybuf maskbuf;
3243 /* If this is a "put" op, then a pointer to the subfacet that should
3244 * be marked as uninstalled if the operation fails. */
3245 struct subfacet *subfacet;
3248 /* Figures out whether a flow that missed in 'ofproto', whose details are in
3249 * 'miss' masked by 'wc', is likely to be worth tracking in detail in userspace
3250 * and (usually) installing a datapath flow. The answer is usually "yes" (a
3251 * return value of true). However, for short flows the cost of bookkeeping is
3252 * much higher than the benefits, so when the datapath holds a large number of
3253 * flows we impose some heuristics to decide which flows are likely to be worth
3256 flow_miss_should_make_facet(struct flow_miss *miss)
3258 struct dpif_backer *backer = miss->ofproto->backer;
3261 switch (flow_miss_model) {
3262 case OFPROTO_HANDLE_MISS_AUTO:
3264 case OFPROTO_HANDLE_MISS_WITH_FACETS:
3266 case OFPROTO_HANDLE_MISS_WITHOUT_FACETS:
3270 if (!backer->governor) {
3273 n_subfacets = hmap_count(&backer->subfacets);
3274 if (n_subfacets * 2 <= flow_eviction_threshold) {
3278 backer->governor = governor_create();
3281 hash = flow_hash_in_wildcards(&miss->flow, &miss->xout.wc, 0);
3282 return governor_should_install_flow(backer->governor, hash,
3283 list_size(&miss->packets));
3286 /* Handles 'miss', which matches 'facet'. May add any required datapath
3287 * operations to 'ops', incrementing '*n_ops' for each new op.
3289 * All of the packets in 'miss' are considered to have arrived at time
3290 * 'miss->stats.used'. This is really important only for new facets: if we
3291 * just called time_msec() here, then the new subfacet or its packets could
3292 * look (occasionally) as though it was used some time after the facet was
3293 * used. That can make a one-packet flow look like it has a nonzero duration,
3294 * which looks odd in e.g. NetFlow statistics. */
3296 handle_flow_miss_with_facet(struct flow_miss *miss, struct facet *facet,
3297 struct flow_miss_op *ops, size_t *n_ops)
3299 enum subfacet_path want_path;
3300 struct subfacet *subfacet;
3302 facet->packet_count += miss->stats.n_packets;
3303 facet->prev_packet_count += miss->stats.n_packets;
3304 facet->byte_count += miss->stats.n_bytes;
3305 facet->prev_byte_count += miss->stats.n_bytes;
3307 subfacet = subfacet_create(facet, miss);
3308 want_path = facet->xout.slow ? SF_SLOW_PATH : SF_FAST_PATH;
3310 /* Don't install the flow if it's the result of the "userspace"
3311 * action for an already installed facet. This can occur when a
3312 * datapath flow with wildcards has a "userspace" action and flows
3313 * sent to userspace result in a different subfacet, which will then
3314 * be rejected as overlapping by the datapath. */
3315 if (miss->upcall_type == DPIF_UC_ACTION
3316 && !list_is_empty(&facet->subfacets)) {
3320 subfacet = subfacet_create(facet, miss);
3321 if (subfacet->path != want_path) {
3322 struct flow_miss_op *op = &ops[(*n_ops)++];
3323 struct dpif_flow_put *put = &op->dpif_op.u.flow_put;
3325 subfacet->path = want_path;
3327 ofpbuf_use_stack(&op->mask, &op->maskbuf, sizeof op->maskbuf);
3328 if (enable_megaflows) {
3329 odp_flow_key_from_mask(&op->mask, &facet->xout.wc.masks,
3330 &miss->flow, UINT32_MAX);
3333 op->xout_garbage = false;
3334 op->dpif_op.type = DPIF_OP_FLOW_PUT;
3335 op->subfacet = subfacet;
3336 put->flags = DPIF_FP_CREATE;
3337 put->key = miss->key;
3338 put->key_len = miss->key_len;
3339 put->mask = op->mask.data;
3340 put->mask_len = op->mask.size;
3342 if (want_path == SF_FAST_PATH) {
3343 put->actions = facet->xout.odp_actions.data;
3344 put->actions_len = facet->xout.odp_actions.size;
3346 compose_slow_path(facet->ofproto, &miss->flow, facet->xout.slow,
3347 op->slow_stub, sizeof op->slow_stub,
3348 &put->actions, &put->actions_len);
3354 /* Handles flow miss 'miss'. May add any required datapath operations
3355 * to 'ops', incrementing '*n_ops' for each new op. */
3357 handle_flow_miss(struct flow_miss *miss, struct flow_miss_op *ops,
3360 struct facet *facet;
3362 miss->ofproto->n_missed += list_size(&miss->packets);
3364 facet = facet_lookup_valid(miss->ofproto, &miss->flow);
3366 /* There does not exist a bijection between 'struct flow' and datapath
3367 * flow keys with fitness ODP_FIT_TO_LITTLE. This breaks a fundamental
3368 * assumption used throughout the facet and subfacet handling code.
3369 * Since we have to handle these misses in userspace anyway, we simply
3370 * skip facet creation, avoiding the problem altogether. */
3371 if (miss->key_fitness == ODP_FIT_TOO_LITTLE
3372 || !flow_miss_should_make_facet(miss)) {
3376 facet = facet_create(miss);
3378 handle_flow_miss_with_facet(miss, facet, ops, n_ops);
3381 static struct drop_key *
3382 drop_key_lookup(const struct dpif_backer *backer, const struct nlattr *key,
3385 struct drop_key *drop_key;
3387 HMAP_FOR_EACH_WITH_HASH (drop_key, hmap_node, hash_bytes(key, key_len, 0),
3388 &backer->drop_keys) {
3389 if (drop_key->key_len == key_len
3390 && !memcmp(drop_key->key, key, key_len)) {
3398 drop_key_clear(struct dpif_backer *backer)
3400 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
3401 struct drop_key *drop_key, *next;
3403 HMAP_FOR_EACH_SAFE (drop_key, next, hmap_node, &backer->drop_keys) {
3406 error = dpif_flow_del(backer->dpif, drop_key->key, drop_key->key_len,
3408 if (error && !VLOG_DROP_WARN(&rl)) {
3409 struct ds ds = DS_EMPTY_INITIALIZER;
3410 odp_flow_key_format(drop_key->key, drop_key->key_len, &ds);
3411 VLOG_WARN("Failed to delete drop key (%s) (%s)",
3412 ovs_strerror(error), ds_cstr(&ds));
3416 hmap_remove(&backer->drop_keys, &drop_key->hmap_node);
3417 drop_key_destroy(drop_key);
3420 udpif_drop_key_clear(backer->udpif);
3424 handle_flow_misses(struct dpif_backer *backer, struct flow_miss_batch *fmb)
3426 struct flow_miss_op flow_miss_ops[FLOW_MISS_MAX_BATCH];
3427 struct dpif_op *dpif_ops[FLOW_MISS_MAX_BATCH];
3428 struct flow_miss *miss;
3431 /* Process each element in the to-do list, constructing the set of
3432 * operations to batch. */
3434 HMAP_FOR_EACH (miss, hmap_node, &fmb->misses) {
3435 handle_flow_miss(miss, flow_miss_ops, &n_ops);
3437 ovs_assert(n_ops <= ARRAY_SIZE(flow_miss_ops));
3439 /* Execute batch. */
3440 for (i = 0; i < n_ops; i++) {
3441 dpif_ops[i] = &flow_miss_ops[i].dpif_op;
3443 dpif_operate(backer->dpif, dpif_ops, n_ops);
3445 for (i = 0; i < n_ops; i++) {
3446 if (dpif_ops[i]->error != 0
3447 && flow_miss_ops[i].dpif_op.type == DPIF_OP_FLOW_PUT
3448 && flow_miss_ops[i].subfacet) {
3449 struct subfacet *subfacet = flow_miss_ops[i].subfacet;
3451 COVERAGE_INC(subfacet_install_fail);
3453 /* Zero-out subfacet counters when installation failed, but
3454 * datapath reported hits. This should not happen and
3455 * indicates a bug, since if the datapath flow exists, we
3456 * should not be attempting to create a new subfacet. A
3457 * buggy datapath could trigger this, so just zero out the
3458 * counters and log an error. */
3459 if (subfacet->dp_packet_count || subfacet->dp_byte_count) {
3460 VLOG_ERR_RL(&rl, "failed to install subfacet for which "
3461 "datapath reported hits");
3462 subfacet->dp_packet_count = subfacet->dp_byte_count = 0;
3465 subfacet->path = SF_NOT_INSTALLED;
3471 handle_sflow_upcall(struct dpif_backer *backer,
3472 const struct dpif_upcall *upcall)
3474 struct ofproto_dpif *ofproto;
3475 union user_action_cookie cookie;
3477 odp_port_t odp_in_port;
3479 if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3480 &flow, NULL, &ofproto, &odp_in_port)
3481 || !ofproto->sflow) {
3485 memset(&cookie, 0, sizeof cookie);
3486 memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.sflow);
3487 dpif_sflow_received(ofproto->sflow, upcall->packet, &flow,
3488 odp_in_port, &cookie);
3492 handle_flow_sample_upcall(struct dpif_backer *backer,
3493 const struct dpif_upcall *upcall)
3495 struct ofproto_dpif *ofproto;
3496 union user_action_cookie cookie;
3499 if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3500 &flow, NULL, &ofproto, NULL)
3501 || !ofproto->ipfix) {
3505 memset(&cookie, 0, sizeof cookie);
3506 memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.flow_sample);
3508 /* The flow reflects exactly the contents of the packet. Sample
3509 * the packet using it. */
3510 dpif_ipfix_flow_sample(ofproto->ipfix, upcall->packet, &flow,
3511 cookie.flow_sample.collector_set_id,
3512 cookie.flow_sample.probability,
3513 cookie.flow_sample.obs_domain_id,
3514 cookie.flow_sample.obs_point_id);
3518 handle_ipfix_upcall(struct dpif_backer *backer,
3519 const struct dpif_upcall *upcall)
3521 struct ofproto_dpif *ofproto;
3524 if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3525 &flow, NULL, &ofproto, NULL)
3526 || !ofproto->ipfix) {
3530 /* The flow reflects exactly the contents of the packet. Sample
3531 * the packet using it. */
3532 dpif_ipfix_bridge_sample(ofproto->ipfix, upcall->packet, &flow);
3536 handle_upcalls(struct dpif_backer *backer)
3538 struct flow_miss_batch *fmb;
3541 for (n_processed = 0; n_processed < FLOW_MISS_MAX_BATCH; n_processed++) {
3542 struct upcall *upcall = upcall_next(backer->udpif);
3548 switch (upcall->type) {
3550 handle_sflow_upcall(backer, &upcall->dpif_upcall);
3553 case FLOW_SAMPLE_UPCALL:
3554 handle_flow_sample_upcall(backer, &upcall->dpif_upcall);
3558 handle_ipfix_upcall(backer, &upcall->dpif_upcall);
3568 upcall_destroy(upcall);
3571 for (n_processed = 0; n_processed < FLOW_MISS_MAX_BATCH; n_processed++) {
3572 struct drop_key *drop_key = drop_key_next(backer->udpif);
3577 if (!drop_key_lookup(backer, drop_key->key, drop_key->key_len)) {
3578 hmap_insert(&backer->drop_keys, &drop_key->hmap_node,
3579 hash_bytes(drop_key->key, drop_key->key_len, 0));
3580 dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
3581 drop_key->key, drop_key->key_len,
3582 NULL, 0, NULL, 0, NULL);
3584 drop_key_destroy(drop_key);
3588 fmb = flow_miss_batch_next(backer->udpif);
3590 handle_flow_misses(backer, fmb);
3591 flow_miss_batch_destroy(fmb);
3595 /* Flow expiration. */
3597 static int subfacet_max_idle(const struct dpif_backer *);
3598 static void update_stats(struct dpif_backer *);
3599 static void rule_expire(struct rule_dpif *);
3600 static void expire_subfacets(struct dpif_backer *, int dp_max_idle);
3602 /* This function is called periodically by run(). Its job is to collect
3603 * updates for the flows that have been installed into the datapath, most
3604 * importantly when they last were used, and then use that information to
3605 * expire flows that have not been used recently.
3607 * Returns the number of milliseconds after which it should be called again. */
3609 expire(struct dpif_backer *backer)
3611 struct ofproto_dpif *ofproto;
3615 /* Periodically clear out the drop keys in an effort to keep them
3616 * relatively few. */
3617 drop_key_clear(backer);
3619 /* Update stats for each flow in the backer. */
3620 update_stats(backer);
3622 n_subfacets = hmap_count(&backer->subfacets);
3624 struct subfacet *subfacet;
3625 long long int total, now;
3629 HMAP_FOR_EACH (subfacet, hmap_node, &backer->subfacets) {
3630 total += now - subfacet->created;
3632 backer->avg_subfacet_life += total / n_subfacets;
3634 backer->avg_subfacet_life /= 2;
3636 backer->avg_n_subfacet += n_subfacets;
3637 backer->avg_n_subfacet /= 2;
3639 backer->max_n_subfacet = MAX(backer->max_n_subfacet, n_subfacets);
3641 max_idle = subfacet_max_idle(backer);
3642 expire_subfacets(backer, max_idle);
3644 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3645 struct rule *rule, *next_rule;
3647 if (ofproto->backer != backer) {
3651 /* Expire OpenFlow flows whose idle_timeout or hard_timeout
3653 ovs_mutex_lock(&ofproto->up.expirable_mutex);
3654 LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
3655 &ofproto->up.expirable) {
3656 rule_expire(rule_dpif_cast(rule));
3658 ovs_mutex_unlock(&ofproto->up.expirable_mutex);
3660 /* All outstanding data in existing flows has been accounted, so it's a
3661 * good time to do bond rebalancing. */
3662 if (ofproto->has_bonded_bundles) {
3663 struct ofbundle *bundle;
3665 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
3667 bond_rebalance(bundle->bond);
3673 return MIN(max_idle, 1000);
3676 /* Updates flow table statistics given that the datapath just reported 'stats'
3677 * as 'subfacet''s statistics. */
3679 update_subfacet_stats(struct subfacet *subfacet,
3680 const struct dpif_flow_stats *stats)
3682 struct facet *facet = subfacet->facet;
3683 struct dpif_flow_stats diff;
3685 diff.tcp_flags = stats->tcp_flags;
3686 diff.used = stats->used;
3688 if (stats->n_packets >= subfacet->dp_packet_count) {
3689 diff.n_packets = stats->n_packets - subfacet->dp_packet_count;
3691 VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
3695 if (stats->n_bytes >= subfacet->dp_byte_count) {
3696 diff.n_bytes = stats->n_bytes - subfacet->dp_byte_count;
3698 VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
3702 facet->ofproto->n_hit += diff.n_packets;
3703 subfacet->dp_packet_count = stats->n_packets;
3704 subfacet->dp_byte_count = stats->n_bytes;
3705 subfacet_update_stats(subfacet, &diff);
3707 if (facet->accounted_bytes < facet->byte_count) {
3709 facet_account(facet);
3710 facet->accounted_bytes = facet->byte_count;
3714 /* 'key' with length 'key_len' bytes is a flow in 'dpif' that we know nothing
3715 * about, or a flow that shouldn't be installed but was anyway. Delete it. */
3717 delete_unexpected_flow(struct dpif_backer *backer,
3718 const struct nlattr *key, size_t key_len)
3720 if (!VLOG_DROP_WARN(&rl)) {
3724 odp_flow_key_format(key, key_len, &s);
3725 VLOG_WARN("unexpected flow: %s", ds_cstr(&s));
3729 COVERAGE_INC(facet_unexpected);
3730 dpif_flow_del(backer->dpif, key, key_len, NULL);
3733 /* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
3735 * This function also pushes statistics updates to rules which each facet
3736 * resubmits into. Generally these statistics will be accurate. However, if a
3737 * facet changes the rule it resubmits into at some time in between
3738 * update_stats() runs, it is possible that statistics accrued to the
3739 * old rule will be incorrectly attributed to the new rule. This could be
3740 * avoided by calling update_stats() whenever rules are created or
3741 * deleted. However, the performance impact of making so many calls to the
3742 * datapath do not justify the benefit of having perfectly accurate statistics.
3744 * In addition, this function maintains per ofproto flow hit counts. The patch
3745 * port is not treated specially. e.g. A packet ingress from br0 patched into
3746 * br1 will increase the hit count of br0 by 1, however, does not affect
3747 * the hit or miss counts of br1.
3750 update_stats(struct dpif_backer *backer)
3752 const struct dpif_flow_stats *stats;
3753 struct dpif_flow_dump dump;
3754 const struct nlattr *key, *mask;
3755 size_t key_len, mask_len;
3757 dpif_flow_dump_start(&dump, backer->dpif);
3758 while (dpif_flow_dump_next(&dump, &key, &key_len,
3759 &mask, &mask_len, NULL, NULL, &stats)) {
3760 struct subfacet *subfacet;
3763 key_hash = odp_flow_key_hash(key, key_len);
3764 subfacet = subfacet_find(backer, key, key_len, key_hash);
3765 switch (subfacet ? subfacet->path : SF_NOT_INSTALLED) {
3767 update_subfacet_stats(subfacet, stats);
3771 /* Stats are updated per-packet. */
3774 case SF_NOT_INSTALLED:
3776 delete_unexpected_flow(backer, key, key_len);
3781 dpif_flow_dump_done(&dump);
3783 update_moving_averages(backer);
3786 /* Calculates and returns the number of milliseconds of idle time after which
3787 * subfacets should expire from the datapath. When a subfacet expires, we fold
3788 * its statistics into its facet, and when a facet's last subfacet expires, we
3789 * fold its statistic into its rule. */
3791 subfacet_max_idle(const struct dpif_backer *backer)
3794 * Idle time histogram.
3796 * Most of the time a switch has a relatively small number of subfacets.
3797 * When this is the case we might as well keep statistics for all of them
3798 * in userspace and to cache them in the kernel datapath for performance as
3801 * As the number of subfacets increases, the memory required to maintain
3802 * statistics about them in userspace and in the kernel becomes
3803 * significant. However, with a large number of subfacets it is likely
3804 * that only a few of them are "heavy hitters" that consume a large amount
3805 * of bandwidth. At this point, only heavy hitters are worth caching in
3806 * the kernel and maintaining in userspaces; other subfacets we can
3809 * The technique used to compute the idle time is to build a histogram with
3810 * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each. Each subfacet
3811 * that is installed in the kernel gets dropped in the appropriate bucket.
3812 * After the histogram has been built, we compute the cutoff so that only
3813 * the most-recently-used 1% of subfacets (but at least
3814 * flow_eviction_threshold flows) are kept cached. At least
3815 * the most-recently-used bucket of subfacets is kept, so actually an
3816 * arbitrary number of subfacets can be kept in any given expiration run
3817 * (though the next run will delete most of those unless they receive
3820 * This requires a second pass through the subfacets, in addition to the
3821 * pass made by update_stats(), because the former function never looks at
3822 * uninstallable subfacets.
3824 enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
3825 enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
3826 int buckets[N_BUCKETS] = { 0 };
3827 int total, subtotal, bucket;
3828 struct subfacet *subfacet;
3832 total = hmap_count(&backer->subfacets);
3833 if (total <= flow_eviction_threshold) {
3834 return N_BUCKETS * BUCKET_WIDTH;
3837 /* Build histogram. */
3839 HMAP_FOR_EACH (subfacet, hmap_node, &backer->subfacets) {
3840 long long int idle = now - subfacet->used;
3841 int bucket = (idle <= 0 ? 0
3842 : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
3843 : (unsigned int) idle / BUCKET_WIDTH);
3847 /* Find the first bucket whose flows should be expired. */
3848 subtotal = bucket = 0;
3850 subtotal += buckets[bucket++];
3851 } while (bucket < N_BUCKETS &&
3852 subtotal < MAX(flow_eviction_threshold, total / 100));
3854 if (VLOG_IS_DBG_ENABLED()) {
3858 ds_put_cstr(&s, "keep");
3859 for (i = 0; i < N_BUCKETS; i++) {
3861 ds_put_cstr(&s, ", drop");
3864 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
3867 VLOG_INFO("%s (msec:count)", ds_cstr(&s));
3871 return bucket * BUCKET_WIDTH;
3875 expire_subfacets(struct dpif_backer *backer, int dp_max_idle)
3877 /* Cutoff time for most flows. */
3878 long long int normal_cutoff = time_msec() - dp_max_idle;
3880 /* We really want to keep flows for special protocols around, so use a more
3881 * conservative cutoff. */
3882 long long int special_cutoff = time_msec() - 10000;
3884 struct subfacet *subfacet, *next_subfacet;
3885 struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
3889 HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
3890 &backer->subfacets) {
3891 long long int cutoff;
3893 cutoff = (subfacet->facet->xout.slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP
3897 if (subfacet->used < cutoff) {
3898 if (subfacet->path != SF_NOT_INSTALLED) {
3899 batch[n_batch++] = subfacet;
3900 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
3901 subfacet_destroy_batch(backer, batch, n_batch);
3905 subfacet_destroy(subfacet);
3911 subfacet_destroy_batch(backer, batch, n_batch);
3915 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
3916 * then delete it entirely. */
3918 rule_expire(struct rule_dpif *rule)
3920 uint16_t idle_timeout, hard_timeout;
3924 if (rule->up.pending) {
3925 /* We'll have to expire it later. */
3929 ovs_mutex_lock(&rule->up.timeout_mutex);
3930 hard_timeout = rule->up.hard_timeout;
3931 idle_timeout = rule->up.idle_timeout;
3932 ovs_mutex_unlock(&rule->up.timeout_mutex);
3934 /* Has 'rule' expired? */
3936 if (hard_timeout && now > rule->up.modified + hard_timeout * 1000) {
3937 reason = OFPRR_HARD_TIMEOUT;
3938 } else if (idle_timeout && now > rule->up.used + idle_timeout * 1000) {
3939 reason = OFPRR_IDLE_TIMEOUT;
3944 if (!ovs_rwlock_trywrlock(&rule->up.evict)) {
3945 COVERAGE_INC(ofproto_dpif_expired);
3947 /* Get rid of the rule. */
3948 ofproto_rule_expire(&rule->up, reason);
3954 /* Creates and returns a new facet based on 'miss'.
3956 * The caller must already have determined that no facet with an identical
3957 * 'miss->flow' exists in 'miss->ofproto'.
3959 * 'rule' and 'xout' must have been created based on 'miss'.
3961 * 'facet'' statistics are initialized based on 'stats'.
3963 * The facet will initially have no subfacets. The caller should create (at
3964 * least) one subfacet with subfacet_create(). */
3965 static struct facet *
3966 facet_create(const struct flow_miss *miss)
3968 struct ofproto_dpif *ofproto = miss->ofproto;
3969 struct facet *facet;
3972 facet = xzalloc(sizeof *facet);
3973 facet->ofproto = miss->ofproto;
3974 facet->used = miss->stats.used;
3975 facet->flow = miss->flow;
3976 facet->learn_rl = time_msec() + 500;
3978 list_init(&facet->subfacets);
3979 netflow_flow_init(&facet->nf_flow);
3980 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
3982 xlate_out_copy(&facet->xout, &miss->xout);
3984 match_init(&match, &facet->flow, &facet->xout.wc);
3985 cls_rule_init(&facet->cr, &match, OFP_DEFAULT_PRIORITY);
3986 ovs_rwlock_wrlock(&ofproto->facets.rwlock);
3987 classifier_insert(&ofproto->facets, &facet->cr);
3988 ovs_rwlock_unlock(&ofproto->facets.rwlock);
3990 facet->nf_flow.output_iface = facet->xout.nf_output_iface;
3995 facet_free(struct facet *facet)
3998 xlate_out_uninit(&facet->xout);
4003 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
4004 * 'packet', which arrived on 'in_port'. */
4006 execute_odp_actions(struct ofproto_dpif *ofproto, const struct flow *flow,
4007 const struct nlattr *odp_actions, size_t actions_len,
4008 struct ofpbuf *packet)
4010 struct odputil_keybuf keybuf;
4014 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
4015 odp_flow_key_from_flow(&key, flow,
4016 ofp_port_to_odp_port(ofproto, flow->in_port.ofp_port));
4018 error = dpif_execute(ofproto->backer->dpif, key.data, key.size,
4019 odp_actions, actions_len, packet);
4023 /* Remove 'facet' from its ofproto and free up the associated memory:
4025 * - If 'facet' was installed in the datapath, uninstalls it and updates its
4026 * rule's statistics, via subfacet_uninstall().
4028 * - Removes 'facet' from its rule and from ofproto->facets.
4031 facet_remove(struct facet *facet)
4033 struct subfacet *subfacet, *next_subfacet;
4035 ovs_assert(!list_is_empty(&facet->subfacets));
4037 /* First uninstall all of the subfacets to get final statistics. */
4038 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4039 subfacet_uninstall(subfacet);
4042 /* Flush the final stats to the rule.
4044 * This might require us to have at least one subfacet around so that we
4045 * can use its actions for accounting in facet_account(), which is why we
4046 * have uninstalled but not yet destroyed the subfacets. */
4047 facet_flush_stats(facet);
4049 /* Now we're really all done so destroy everything. */
4050 LIST_FOR_EACH_SAFE (subfacet, next_subfacet, list_node,
4051 &facet->subfacets) {
4052 subfacet_destroy__(subfacet);
4054 ovs_rwlock_wrlock(&facet->ofproto->facets.rwlock);
4055 classifier_remove(&facet->ofproto->facets, &facet->cr);
4056 ovs_rwlock_unlock(&facet->ofproto->facets.rwlock);
4057 cls_rule_destroy(&facet->cr);
4061 /* Feed information from 'facet' back into the learning table to keep it in
4062 * sync with what is actually flowing through the datapath. */
4064 facet_learn(struct facet *facet)
4066 long long int now = time_msec();
4068 if (!facet->xout.has_fin_timeout && now < facet->learn_rl) {
4072 facet->learn_rl = now + 500;
4074 if (!facet->xout.has_learn
4075 && !facet->xout.has_normal
4076 && (!facet->xout.has_fin_timeout
4077 || !(facet->tcp_flags & (TCP_FIN | TCP_RST)))) {
4081 facet_push_stats(facet, true);
4085 facet_account(struct facet *facet)
4087 const struct nlattr *a;
4092 if (!facet->xout.has_normal || !facet->ofproto->has_bonded_bundles) {
4095 n_bytes = facet->byte_count - facet->accounted_bytes;
4097 /* This loop feeds byte counters to bond_account() for rebalancing to use
4098 * as a basis. We also need to track the actual VLAN on which the packet
4099 * is going to be sent to ensure that it matches the one passed to
4100 * bond_choose_output_slave(). (Otherwise, we will account to the wrong
4103 * We use the actions from an arbitrary subfacet because they should all
4104 * be equally valid for our purpose. */
4105 vlan_tci = facet->flow.vlan_tci;
4106 NL_ATTR_FOR_EACH_UNSAFE (a, left, facet->xout.odp_actions.data,
4107 facet->xout.odp_actions.size) {
4108 const struct ovs_action_push_vlan *vlan;
4109 struct ofport_dpif *port;
4111 switch (nl_attr_type(a)) {
4112 case OVS_ACTION_ATTR_OUTPUT:
4113 port = get_odp_port(facet->ofproto, nl_attr_get_odp_port(a));
4114 if (port && port->bundle && port->bundle->bond) {
4115 bond_account(port->bundle->bond, &facet->flow,
4116 vlan_tci_to_vid(vlan_tci), n_bytes);
4120 case OVS_ACTION_ATTR_POP_VLAN:
4121 vlan_tci = htons(0);
4124 case OVS_ACTION_ATTR_PUSH_VLAN:
4125 vlan = nl_attr_get(a);
4126 vlan_tci = vlan->vlan_tci;
4132 /* Returns true if the only action for 'facet' is to send to the controller.
4133 * (We don't report NetFlow expiration messages for such facets because they
4134 * are just part of the control logic for the network, not real traffic). */
4136 facet_is_controller_flow(struct facet *facet)
4139 struct ofproto_dpif *ofproto = facet->ofproto;
4140 const struct ofpact *ofpacts;
4141 struct rule_dpif *rule;
4145 rule_dpif_lookup(ofproto, &facet->flow, NULL, &rule);
4146 ofpacts_len = rule->up.ofpacts_len;
4147 ofpacts = rule->up.ofpacts;
4148 is_controller = ofpacts_len > 0
4149 && ofpacts->type == OFPACT_CONTROLLER
4150 && ofpact_next(ofpacts) >= ofpact_end(ofpacts, ofpacts_len);
4152 return is_controller;
4157 /* Folds all of 'facet''s statistics into its rule. Also updates the
4158 * accounting ofhook and emits a NetFlow expiration if appropriate. All of
4159 * 'facet''s statistics in the datapath should have been zeroed and folded into
4160 * its packet and byte counts before this function is called. */
4162 facet_flush_stats(struct facet *facet)
4164 struct ofproto_dpif *ofproto = facet->ofproto;
4165 struct subfacet *subfacet;
4167 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4168 ovs_assert(!subfacet->dp_byte_count);
4169 ovs_assert(!subfacet->dp_packet_count);
4172 facet_push_stats(facet, false);
4173 if (facet->accounted_bytes < facet->byte_count) {
4174 facet_account(facet);
4175 facet->accounted_bytes = facet->byte_count;
4178 if (ofproto->netflow && !facet_is_controller_flow(facet)) {
4179 struct ofexpired expired;
4180 expired.flow = facet->flow;
4181 expired.packet_count = facet->packet_count;
4182 expired.byte_count = facet->byte_count;
4183 expired.used = facet->used;
4184 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4187 /* Reset counters to prevent double counting if 'facet' ever gets
4189 facet_reset_counters(facet);
4191 netflow_flow_clear(&facet->nf_flow);
4192 facet->tcp_flags = 0;
4195 /* Searches 'ofproto''s table of facets for one which would be responsible for
4196 * 'flow'. Returns it if found, otherwise a null pointer.
4198 * The returned facet might need revalidation; use facet_lookup_valid()
4199 * instead if that is important. */
4200 static struct facet *
4201 facet_find(struct ofproto_dpif *ofproto, const struct flow *flow)
4203 struct cls_rule *cr;
4205 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
4206 cr = classifier_lookup(&ofproto->facets, flow, NULL);
4207 ovs_rwlock_unlock(&ofproto->facets.rwlock);
4208 return cr ? CONTAINER_OF(cr, struct facet, cr) : NULL;
4211 /* Searches 'ofproto''s table of facets for one capable that covers
4212 * 'flow'. Returns it if found, otherwise a null pointer.
4214 * The returned facet is guaranteed to be valid. */
4215 static struct facet *
4216 facet_lookup_valid(struct ofproto_dpif *ofproto, const struct flow *flow)
4218 struct facet *facet;
4220 facet = facet_find(ofproto, flow);
4222 && ofproto->backer->need_revalidate
4223 && !facet_revalidate(facet)) {
4231 facet_check_consistency(struct facet *facet)
4233 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
4235 struct xlate_out xout;
4236 struct xlate_in xin;
4238 struct rule_dpif *rule;
4241 /* Check the datapath actions for consistency. */
4242 rule_dpif_lookup(facet->ofproto, &facet->flow, NULL, &rule);
4243 xlate_in_init(&xin, facet->ofproto, &facet->flow, rule, 0, NULL);
4244 xlate_actions(&xin, &xout);
4247 ok = ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)
4248 && facet->xout.slow == xout.slow;
4249 if (!ok && !VLOG_DROP_WARN(&rl)) {
4250 struct ds s = DS_EMPTY_INITIALIZER;
4252 flow_format(&s, &facet->flow);
4253 ds_put_cstr(&s, ": inconsistency in facet");
4255 if (!ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)) {
4256 ds_put_cstr(&s, " (actions were: ");
4257 format_odp_actions(&s, facet->xout.odp_actions.data,
4258 facet->xout.odp_actions.size);
4259 ds_put_cstr(&s, ") (correct actions: ");
4260 format_odp_actions(&s, xout.odp_actions.data,
4261 xout.odp_actions.size);
4262 ds_put_char(&s, ')');
4265 if (facet->xout.slow != xout.slow) {
4266 ds_put_format(&s, " slow path incorrect. should be %d", xout.slow);
4271 xlate_out_uninit(&xout);
4276 /* Re-searches the classifier for 'facet':
4278 * - If the rule found is different from 'facet''s current rule, moves
4279 * 'facet' to the new rule and recompiles its actions.
4281 * - If the rule found is the same as 'facet''s current rule, leaves 'facet'
4282 * where it is and recompiles its actions anyway.
4284 * - If any of 'facet''s subfacets correspond to a new flow according to
4285 * xlate_receive(), 'facet' is removed.
4287 * Returns true if 'facet' is still valid. False if 'facet' was removed. */
4289 facet_revalidate(struct facet *facet)
4291 struct ofproto_dpif *ofproto = facet->ofproto;
4292 struct rule_dpif *new_rule;
4293 struct subfacet *subfacet;
4294 struct flow_wildcards wc;
4295 struct xlate_out xout;
4296 struct xlate_in xin;
4298 COVERAGE_INC(facet_revalidate);
4300 /* Check that child subfacets still correspond to this facet. Tunnel
4301 * configuration changes could cause a subfacet's OpenFlow in_port to
4303 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4304 struct ofproto_dpif *recv_ofproto;
4305 struct flow recv_flow;
4308 error = xlate_receive(ofproto->backer, NULL, subfacet->key,
4309 subfacet->key_len, &recv_flow, NULL,
4310 &recv_ofproto, NULL);
4312 || recv_ofproto != ofproto
4313 || facet != facet_find(ofproto, &recv_flow)) {
4314 facet_remove(facet);
4319 flow_wildcards_init_catchall(&wc);
4320 rule_dpif_lookup(ofproto, &facet->flow, &wc, &new_rule);
4322 /* Calculate new datapath actions.
4324 * We do not modify any 'facet' state yet, because we might need to, e.g.,
4325 * emit a NetFlow expiration and, if so, we need to have the old state
4326 * around to properly compose it. */
4327 xlate_in_init(&xin, ofproto, &facet->flow, new_rule, 0, NULL);
4328 xlate_actions(&xin, &xout);
4329 flow_wildcards_or(&xout.wc, &xout.wc, &wc);
4331 /* A facet's slow path reason should only change under dramatic
4332 * circumstances. Rather than try to update everything, it's simpler to
4333 * remove the facet and start over.
4335 * More importantly, if a facet's wildcards change, it will be relatively
4336 * difficult to figure out if its subfacets still belong to it, and if not
4337 * which facet they may belong to. Again, to avoid the complexity, we
4338 * simply give up instead. */
4339 if (facet->xout.slow != xout.slow
4340 || memcmp(&facet->xout.wc, &xout.wc, sizeof xout.wc)) {
4341 facet_remove(facet);
4342 xlate_out_uninit(&xout);
4343 rule_release(new_rule);
4347 if (!ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)) {
4348 LIST_FOR_EACH(subfacet, list_node, &facet->subfacets) {
4349 if (subfacet->path == SF_FAST_PATH) {
4350 struct dpif_flow_stats stats;
4352 subfacet_install(subfacet, &xout.odp_actions, &stats);
4353 subfacet_update_stats(subfacet, &stats);
4357 facet_flush_stats(facet);
4359 ofpbuf_clear(&facet->xout.odp_actions);
4360 ofpbuf_put(&facet->xout.odp_actions, xout.odp_actions.data,
4361 xout.odp_actions.size);
4364 /* Update 'facet' now that we've taken care of all the old state. */
4365 facet->xout.slow = xout.slow;
4366 facet->xout.has_learn = xout.has_learn;
4367 facet->xout.has_normal = xout.has_normal;
4368 facet->xout.has_fin_timeout = xout.has_fin_timeout;
4369 facet->xout.nf_output_iface = xout.nf_output_iface;
4370 facet->xout.mirrors = xout.mirrors;
4371 facet->nf_flow.output_iface = facet->xout.nf_output_iface;
4372 facet->used = MAX(facet->used, new_rule->up.created);
4374 xlate_out_uninit(&xout);
4375 rule_release(new_rule);
4380 facet_reset_counters(struct facet *facet)
4382 facet->packet_count = 0;
4383 facet->byte_count = 0;
4384 facet->prev_packet_count = 0;
4385 facet->prev_byte_count = 0;
4386 facet->accounted_bytes = 0;
4390 flow_push_stats(struct ofproto_dpif *ofproto, struct flow *flow,
4391 struct dpif_flow_stats *stats, bool may_learn)
4393 struct ofport_dpif *in_port;
4394 struct rule_dpif *rule;
4395 struct xlate_in xin;
4397 in_port = get_ofp_port(ofproto, flow->in_port.ofp_port);
4398 if (in_port && in_port->is_tunnel) {
4399 netdev_vport_inc_rx(in_port->up.netdev, stats);
4402 rule_dpif_lookup(ofproto, flow, NULL, &rule);
4403 rule_credit_stats(rule, stats);
4404 xlate_in_init(&xin, ofproto, flow, rule, stats->tcp_flags, NULL);
4405 xin.resubmit_stats = stats;
4406 xin.may_learn = may_learn;
4407 xlate_actions_for_side_effects(&xin);
4412 facet_push_stats(struct facet *facet, bool may_learn)
4414 struct dpif_flow_stats stats;
4416 ovs_assert(facet->packet_count >= facet->prev_packet_count);
4417 ovs_assert(facet->byte_count >= facet->prev_byte_count);
4418 ovs_assert(facet->used >= facet->prev_used);
4420 stats.n_packets = facet->packet_count - facet->prev_packet_count;
4421 stats.n_bytes = facet->byte_count - facet->prev_byte_count;
4422 stats.used = facet->used;
4423 stats.tcp_flags = facet->tcp_flags;
4425 if (may_learn || stats.n_packets || facet->used > facet->prev_used) {
4426 facet->prev_packet_count = facet->packet_count;
4427 facet->prev_byte_count = facet->byte_count;
4428 facet->prev_used = facet->used;
4430 netflow_flow_update_time(facet->ofproto->netflow, &facet->nf_flow,
4432 netflow_flow_update_flags(&facet->nf_flow, facet->tcp_flags);
4433 mirror_update_stats(facet->ofproto->mbridge, facet->xout.mirrors,
4434 stats.n_packets, stats.n_bytes);
4435 flow_push_stats(facet->ofproto, &facet->flow, &stats, may_learn);
4440 push_all_stats__(bool run_fast)
4442 static long long int rl = LLONG_MIN;
4443 struct ofproto_dpif *ofproto;
4445 if (time_msec() < rl) {
4449 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4450 struct cls_cursor cursor;
4451 struct facet *facet;
4453 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
4454 cls_cursor_init(&cursor, &ofproto->facets, NULL);
4455 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
4456 facet_push_stats(facet, false);
4461 ovs_rwlock_unlock(&ofproto->facets.rwlock);
4464 rl = time_msec() + 100;
4468 push_all_stats(void)
4470 push_all_stats__(true);
4474 rule_credit_stats(struct rule_dpif *rule, const struct dpif_flow_stats *stats)
4476 ovs_mutex_lock(&rule->stats_mutex);
4477 rule->packet_count += stats->n_packets;
4478 rule->byte_count += stats->n_bytes;
4479 ofproto_rule_update_used(&rule->up, stats->used);
4480 ovs_mutex_unlock(&rule->stats_mutex);
4485 static struct subfacet *
4486 subfacet_find(struct dpif_backer *backer, const struct nlattr *key,
4487 size_t key_len, uint32_t key_hash)
4489 struct subfacet *subfacet;
4491 HMAP_FOR_EACH_WITH_HASH (subfacet, hmap_node, key_hash,
4492 &backer->subfacets) {
4493 if (subfacet->key_len == key_len
4494 && !memcmp(key, subfacet->key, key_len)) {
4502 /* Searches 'facet' (within 'ofproto') for a subfacet with the specified
4503 * 'key_fitness', 'key', and 'key_len' members in 'miss'. Returns the
4504 * existing subfacet if there is one, otherwise creates and returns a
4506 static struct subfacet *
4507 subfacet_create(struct facet *facet, struct flow_miss *miss)
4509 struct dpif_backer *backer = miss->ofproto->backer;
4510 enum odp_key_fitness key_fitness = miss->key_fitness;
4511 const struct nlattr *key = miss->key;
4512 size_t key_len = miss->key_len;
4514 struct subfacet *subfacet;
4516 key_hash = odp_flow_key_hash(key, key_len);
4518 if (list_is_empty(&facet->subfacets)) {
4519 subfacet = &facet->one_subfacet;
4521 subfacet = subfacet_find(backer, key, key_len, key_hash);
4523 if (subfacet->facet == facet) {
4527 /* This shouldn't happen. */
4528 VLOG_ERR_RL(&rl, "subfacet with wrong facet");
4529 subfacet_destroy(subfacet);
4532 subfacet = xmalloc(sizeof *subfacet);
4535 hmap_insert(&backer->subfacets, &subfacet->hmap_node, key_hash);
4536 list_push_back(&facet->subfacets, &subfacet->list_node);
4537 subfacet->facet = facet;
4538 subfacet->key_fitness = key_fitness;
4539 subfacet->key = xmemdup(key, key_len);
4540 subfacet->key_len = key_len;
4541 subfacet->used = miss->stats.used;
4542 subfacet->created = subfacet->used;
4543 subfacet->dp_packet_count = 0;
4544 subfacet->dp_byte_count = 0;
4545 subfacet->path = SF_NOT_INSTALLED;
4546 subfacet->backer = backer;
4548 backer->subfacet_add_count++;
4552 /* Uninstalls 'subfacet' from the datapath, if it is installed, removes it from
4553 * its facet within 'ofproto', and frees it. */
4555 subfacet_destroy__(struct subfacet *subfacet)
4557 struct facet *facet = subfacet->facet;
4558 struct ofproto_dpif *ofproto = facet->ofproto;
4560 /* Update ofproto stats before uninstall the subfacet. */
4561 ofproto->backer->subfacet_del_count++;
4563 subfacet_uninstall(subfacet);
4564 hmap_remove(&subfacet->backer->subfacets, &subfacet->hmap_node);
4565 list_remove(&subfacet->list_node);
4566 free(subfacet->key);
4567 if (subfacet != &facet->one_subfacet) {
4572 /* Destroys 'subfacet', as with subfacet_destroy__(), and then if this was the
4573 * last remaining subfacet in its facet destroys the facet too. */
4575 subfacet_destroy(struct subfacet *subfacet)
4577 struct facet *facet = subfacet->facet;
4579 if (list_is_singleton(&facet->subfacets)) {
4580 /* facet_remove() needs at least one subfacet (it will remove it). */
4581 facet_remove(facet);
4583 subfacet_destroy__(subfacet);
4588 subfacet_destroy_batch(struct dpif_backer *backer,
4589 struct subfacet **subfacets, int n)
4591 struct dpif_op ops[SUBFACET_DESTROY_MAX_BATCH];
4592 struct dpif_op *opsp[SUBFACET_DESTROY_MAX_BATCH];
4593 struct dpif_flow_stats stats[SUBFACET_DESTROY_MAX_BATCH];
4596 for (i = 0; i < n; i++) {
4597 ops[i].type = DPIF_OP_FLOW_DEL;
4598 ops[i].u.flow_del.key = subfacets[i]->key;
4599 ops[i].u.flow_del.key_len = subfacets[i]->key_len;
4600 ops[i].u.flow_del.stats = &stats[i];
4604 dpif_operate(backer->dpif, opsp, n);
4605 for (i = 0; i < n; i++) {
4606 subfacet_reset_dp_stats(subfacets[i], &stats[i]);
4607 subfacets[i]->path = SF_NOT_INSTALLED;
4608 subfacet_destroy(subfacets[i]);
4613 /* Updates 'subfacet''s datapath flow, setting its actions to 'actions_len'
4614 * bytes of actions in 'actions'. If 'stats' is non-null, statistics counters
4615 * in the datapath will be zeroed and 'stats' will be updated with traffic new
4616 * since 'subfacet' was last updated.
4618 * Returns 0 if successful, otherwise a positive errno value. */
4620 subfacet_install(struct subfacet *subfacet, const struct ofpbuf *odp_actions,
4621 struct dpif_flow_stats *stats)
4623 struct facet *facet = subfacet->facet;
4624 enum subfacet_path path = facet->xout.slow ? SF_SLOW_PATH : SF_FAST_PATH;
4625 const struct nlattr *actions = odp_actions->data;
4626 size_t actions_len = odp_actions->size;
4627 struct odputil_keybuf maskbuf;
4630 uint64_t slow_path_stub[128 / 8];
4631 enum dpif_flow_put_flags flags;
4634 flags = subfacet->path == SF_NOT_INSTALLED ? DPIF_FP_CREATE
4637 flags |= DPIF_FP_ZERO_STATS;
4640 if (path == SF_SLOW_PATH) {
4641 compose_slow_path(facet->ofproto, &facet->flow, facet->xout.slow,
4642 slow_path_stub, sizeof slow_path_stub,
4643 &actions, &actions_len);
4646 ofpbuf_use_stack(&mask, &maskbuf, sizeof maskbuf);
4647 if (enable_megaflows) {
4648 odp_flow_key_from_mask(&mask, &facet->xout.wc.masks,
4649 &facet->flow, UINT32_MAX);
4652 ret = dpif_flow_put(subfacet->backer->dpif, flags, subfacet->key,
4653 subfacet->key_len, mask.data, mask.size,
4654 actions, actions_len, stats);
4657 subfacet_reset_dp_stats(subfacet, stats);
4661 COVERAGE_INC(subfacet_install_fail);
4663 subfacet->path = path;
4668 /* If 'subfacet' is installed in the datapath, uninstalls it. */
4670 subfacet_uninstall(struct subfacet *subfacet)
4672 if (subfacet->path != SF_NOT_INSTALLED) {
4673 struct ofproto_dpif *ofproto = subfacet->facet->ofproto;
4674 struct dpif_flow_stats stats;
4677 error = dpif_flow_del(ofproto->backer->dpif, subfacet->key,
4678 subfacet->key_len, &stats);
4679 subfacet_reset_dp_stats(subfacet, &stats);
4681 subfacet_update_stats(subfacet, &stats);
4683 subfacet->path = SF_NOT_INSTALLED;
4685 ovs_assert(subfacet->dp_packet_count == 0);
4686 ovs_assert(subfacet->dp_byte_count == 0);
4690 /* Resets 'subfacet''s datapath statistics counters. This should be called
4691 * when 'subfacet''s statistics are cleared in the datapath. If 'stats' is
4692 * non-null, it should contain the statistics returned by dpif when 'subfacet'
4693 * was reset in the datapath. 'stats' will be modified to include only
4694 * statistics new since 'subfacet' was last updated. */
4696 subfacet_reset_dp_stats(struct subfacet *subfacet,
4697 struct dpif_flow_stats *stats)
4700 && subfacet->dp_packet_count <= stats->n_packets
4701 && subfacet->dp_byte_count <= stats->n_bytes) {
4702 stats->n_packets -= subfacet->dp_packet_count;
4703 stats->n_bytes -= subfacet->dp_byte_count;
4706 subfacet->dp_packet_count = 0;
4707 subfacet->dp_byte_count = 0;
4710 /* Folds the statistics from 'stats' into the counters in 'subfacet'.
4712 * Because of the meaning of a subfacet's counters, it only makes sense to do
4713 * this if 'stats' are not tracked in the datapath, that is, if 'stats'
4714 * represents a packet that was sent by hand or if it represents statistics
4715 * that have been cleared out of the datapath. */
4717 subfacet_update_stats(struct subfacet *subfacet,
4718 const struct dpif_flow_stats *stats)
4720 if (stats->n_packets || stats->used > subfacet->used) {
4721 struct facet *facet = subfacet->facet;
4723 subfacet->used = MAX(subfacet->used, stats->used);
4724 facet->used = MAX(facet->used, stats->used);
4725 facet->packet_count += stats->n_packets;
4726 facet->byte_count += stats->n_bytes;
4727 facet->tcp_flags |= stats->tcp_flags;
4733 /* Lookup 'flow' in 'ofproto''s classifier. If 'wc' is non-null, sets
4734 * the fields that were relevant as part of the lookup. */
4736 rule_dpif_lookup(struct ofproto_dpif *ofproto, const struct flow *flow,
4737 struct flow_wildcards *wc, struct rule_dpif **rule)
4739 struct ofport_dpif *port;
4741 if (rule_dpif_lookup_in_table(ofproto, flow, wc, 0, rule)) {
4744 port = get_ofp_port(ofproto, flow->in_port.ofp_port);
4746 VLOG_WARN_RL(&rl, "packet-in on unknown OpenFlow port %"PRIu16,
4747 flow->in_port.ofp_port);
4750 *rule = choose_miss_rule(port ? port->up.pp.config : 0, ofproto->miss_rule,
4751 ofproto->no_packet_in_rule);
4752 ovs_rwlock_rdlock(&(*rule)->up.evict);
4756 rule_dpif_lookup_in_table(struct ofproto_dpif *ofproto,
4757 const struct flow *flow, struct flow_wildcards *wc,
4758 uint8_t table_id, struct rule_dpif **rule)
4759 OVS_ACQ_RDLOCK((*rule)->up.evict)
4761 struct cls_rule *cls_rule;
4762 struct classifier *cls;
4766 if (table_id >= N_TABLES) {
4771 memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
4772 wc->masks.nw_frag |= FLOW_NW_FRAG_MASK;
4775 cls = &ofproto->up.tables[table_id].cls;
4776 ovs_rwlock_rdlock(&cls->rwlock);
4777 frag = (flow->nw_frag & FLOW_NW_FRAG_ANY) != 0;
4778 if (frag && ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
4779 /* We must pretend that transport ports are unavailable. */
4780 struct flow ofpc_normal_flow = *flow;
4781 ofpc_normal_flow.tp_src = htons(0);
4782 ofpc_normal_flow.tp_dst = htons(0);
4783 cls_rule = classifier_lookup(cls, &ofpc_normal_flow, wc);
4784 } else if (frag && ofproto->up.frag_handling == OFPC_FRAG_DROP) {
4785 cls_rule = &ofproto->drop_frags_rule->up.cr;
4787 flow_wildcards_init_exact(wc);
4790 cls_rule = classifier_lookup(cls, flow, wc);
4793 *rule = rule_dpif_cast(rule_from_cls_rule(cls_rule));
4794 if (*rule && ovs_rwlock_tryrdlock(&(*rule)->up.evict)) {
4795 /* The rule is in the process of being removed. Best we can do is
4796 * pretend it isn't there. */
4799 ovs_rwlock_unlock(&cls->rwlock);
4801 return *rule != NULL;
4804 /* Given a port configuration (specified as zero if there's no port), chooses
4805 * which of 'miss_rule' and 'no_packet_in_rule' should be used in case of a
4806 * flow table miss. */
4808 choose_miss_rule(enum ofputil_port_config config, struct rule_dpif *miss_rule,
4809 struct rule_dpif *no_packet_in_rule)
4811 return config & OFPUTIL_PC_NO_PACKET_IN ? no_packet_in_rule : miss_rule;
4815 rule_release(struct rule_dpif *rule)
4818 ovs_rwlock_unlock(&rule->up.evict);
4823 complete_operation(struct rule_dpif *rule)
4825 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4827 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
4829 struct dpif_completion *c = xmalloc(sizeof *c);
4830 c->op = rule->up.pending;
4831 list_push_back(&ofproto->completions, &c->list_node);
4833 ofoperation_complete(rule->up.pending, 0);
4837 static struct rule *
4840 struct rule_dpif *rule = xmalloc(sizeof *rule);
4845 rule_dealloc(struct rule *rule_)
4847 struct rule_dpif *rule = rule_dpif_cast(rule_);
4852 rule_construct(struct rule *rule_)
4854 struct rule_dpif *rule = rule_dpif_cast(rule_);
4855 ovs_mutex_init(&rule->stats_mutex, PTHREAD_MUTEX_NORMAL);
4856 ovs_mutex_lock(&rule->stats_mutex);
4857 rule->packet_count = 0;
4858 rule->byte_count = 0;
4859 ovs_mutex_unlock(&rule->stats_mutex);
4860 complete_operation(rule);
4865 rule_destruct(struct rule *rule_)
4867 struct rule_dpif *rule = rule_dpif_cast(rule_);
4868 complete_operation(rule);
4869 ovs_mutex_destroy(&rule->stats_mutex);
4873 rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes)
4875 struct rule_dpif *rule = rule_dpif_cast(rule_);
4877 /* push_all_stats() can handle flow misses which, when using the learn
4878 * action, can cause rules to be added and deleted. This can corrupt our
4879 * caller's datastructures which assume that rule_get_stats() doesn't have
4880 * an impact on the flow table. To be safe, we disable miss handling. */
4881 push_all_stats__(false);
4883 /* Start from historical data for 'rule' itself that are no longer tracked
4884 * in facets. This counts, for example, facets that have expired. */
4885 ovs_mutex_lock(&rule->stats_mutex);
4886 *packets = rule->packet_count;
4887 *bytes = rule->byte_count;
4888 ovs_mutex_unlock(&rule->stats_mutex);
4892 rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
4893 struct ofpbuf *packet)
4895 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4896 struct dpif_flow_stats stats;
4897 struct xlate_out xout;
4898 struct xlate_in xin;
4900 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
4901 rule_credit_stats(rule, &stats);
4903 xlate_in_init(&xin, ofproto, flow, rule, stats.tcp_flags, packet);
4904 xin.resubmit_stats = &stats;
4905 xlate_actions(&xin, &xout);
4907 execute_odp_actions(ofproto, flow, xout.odp_actions.data,
4908 xout.odp_actions.size, packet);
4910 xlate_out_uninit(&xout);
4914 rule_execute(struct rule *rule, const struct flow *flow,
4915 struct ofpbuf *packet)
4917 rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
4918 ofpbuf_delete(packet);
4923 rule_modify_actions(struct rule *rule_)
4925 struct rule_dpif *rule = rule_dpif_cast(rule_);
4927 complete_operation(rule);
4930 /* Sends 'packet' out 'ofport'.
4931 * May modify 'packet'.
4932 * Returns 0 if successful, otherwise a positive errno value. */
4934 send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
4936 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
4937 uint64_t odp_actions_stub[1024 / 8];
4938 struct ofpbuf key, odp_actions;
4939 struct dpif_flow_stats stats;
4940 struct odputil_keybuf keybuf;
4941 struct ofpact_output output;
4942 struct xlate_out xout;
4943 struct xlate_in xin;
4945 union flow_in_port in_port_;
4948 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
4949 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
4951 /* Use OFPP_NONE as the in_port to avoid special packet processing. */
4952 in_port_.ofp_port = OFPP_NONE;
4953 flow_extract(packet, 0, 0, NULL, &in_port_, &flow);
4954 odp_flow_key_from_flow(&key, &flow, ofp_port_to_odp_port(ofproto,
4956 dpif_flow_stats_extract(&flow, packet, time_msec(), &stats);
4958 ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
4959 output.port = ofport->up.ofp_port;
4962 xlate_in_init(&xin, ofproto, &flow, NULL, 0, packet);
4963 xin.ofpacts_len = sizeof output;
4964 xin.ofpacts = &output.ofpact;
4965 xin.resubmit_stats = &stats;
4966 xlate_actions(&xin, &xout);
4968 error = dpif_execute(ofproto->backer->dpif,
4970 xout.odp_actions.data, xout.odp_actions.size,
4972 xlate_out_uninit(&xout);
4975 VLOG_WARN_RL(&rl, "%s: failed to send packet on port %s (%s)",
4976 ofproto->up.name, netdev_get_name(ofport->up.netdev),
4977 ovs_strerror(error));
4980 ofproto->stats.tx_packets++;
4981 ofproto->stats.tx_bytes += packet->size;
4985 /* Composes an ODP action for a "slow path" action for 'flow' within 'ofproto'.
4986 * The action will state 'slow' as the reason that the action is in the slow
4987 * path. (This is purely informational: it allows a human viewing "ovs-dpctl
4988 * dump-flows" output to see why a flow is in the slow path.)
4990 * The 'stub_size' bytes in 'stub' will be used to store the action.
4991 * 'stub_size' must be large enough for the action.
4993 * The action and its size will be stored in '*actionsp' and '*actions_lenp',
4996 compose_slow_path(const struct ofproto_dpif *ofproto, const struct flow *flow,
4997 enum slow_path_reason slow,
4998 uint64_t *stub, size_t stub_size,
4999 const struct nlattr **actionsp, size_t *actions_lenp)
5001 union user_action_cookie cookie;
5004 cookie.type = USER_ACTION_COOKIE_SLOW_PATH;
5005 cookie.slow_path.unused = 0;
5006 cookie.slow_path.reason = slow;
5008 ofpbuf_use_stack(&buf, stub, stub_size);
5009 if (slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)) {
5010 uint32_t pid = dpif_port_get_pid(ofproto->backer->dpif,
5012 odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
5014 odp_port_t odp_port;
5017 odp_port = ofp_port_to_odp_port(ofproto, flow->in_port.ofp_port);
5018 pid = dpif_port_get_pid(ofproto->backer->dpif, odp_port);
5019 odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
5021 *actionsp = buf.data;
5022 *actions_lenp = buf.size;
5026 set_frag_handling(struct ofproto *ofproto_,
5027 enum ofp_config_flags frag_handling)
5029 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5030 if (frag_handling != OFPC_FRAG_REASM) {
5031 ofproto->backer->need_revalidate = REV_RECONFIGURE;
5039 packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
5040 const struct flow *flow,
5041 const struct ofpact *ofpacts, size_t ofpacts_len)
5043 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5044 struct odputil_keybuf keybuf;
5045 struct dpif_flow_stats stats;
5046 struct xlate_out xout;
5047 struct xlate_in xin;
5051 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5052 odp_flow_key_from_flow(&key, flow,
5053 ofp_port_to_odp_port(ofproto,
5054 flow->in_port.ofp_port));
5056 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
5058 xlate_in_init(&xin, ofproto, flow, NULL, stats.tcp_flags, packet);
5059 xin.resubmit_stats = &stats;
5060 xin.ofpacts_len = ofpacts_len;
5061 xin.ofpacts = ofpacts;
5063 xlate_actions(&xin, &xout);
5064 dpif_execute(ofproto->backer->dpif, key.data, key.size,
5065 xout.odp_actions.data, xout.odp_actions.size, packet);
5066 xlate_out_uninit(&xout);
5074 set_netflow(struct ofproto *ofproto_,
5075 const struct netflow_options *netflow_options)
5077 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5079 if (netflow_options) {
5080 if (!ofproto->netflow) {
5081 ofproto->netflow = netflow_create();
5082 ofproto->backer->need_revalidate = REV_RECONFIGURE;
5084 return netflow_set_options(ofproto->netflow, netflow_options);
5085 } else if (ofproto->netflow) {
5086 ofproto->backer->need_revalidate = REV_RECONFIGURE;
5087 netflow_destroy(ofproto->netflow);
5088 ofproto->netflow = NULL;
5095 get_netflow_ids(const struct ofproto *ofproto_,
5096 uint8_t *engine_type, uint8_t *engine_id)
5098 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5100 dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
5104 send_active_timeout(struct ofproto_dpif *ofproto, struct facet *facet)
5106 if (!facet_is_controller_flow(facet) &&
5107 netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
5108 struct subfacet *subfacet;
5109 struct ofexpired expired;
5111 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5112 if (subfacet->path == SF_FAST_PATH) {
5113 struct dpif_flow_stats stats;
5115 subfacet_install(subfacet, &facet->xout.odp_actions,
5117 subfacet_update_stats(subfacet, &stats);
5121 expired.flow = facet->flow;
5122 expired.packet_count = facet->packet_count;
5123 expired.byte_count = facet->byte_count;
5124 expired.used = facet->used;
5125 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
5130 send_netflow_active_timeouts(struct ofproto_dpif *ofproto)
5132 struct cls_cursor cursor;
5133 struct facet *facet;
5135 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
5136 cls_cursor_init(&cursor, &ofproto->facets, NULL);
5137 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5138 send_active_timeout(ofproto, facet);
5140 ovs_rwlock_unlock(&ofproto->facets.rwlock);
5143 static struct ofproto_dpif *
5144 ofproto_dpif_lookup(const char *name)
5146 struct ofproto_dpif *ofproto;
5148 HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
5149 hash_string(name, 0), &all_ofproto_dpifs) {
5150 if (!strcmp(ofproto->up.name, name)) {
5158 ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
5159 const char *argv[], void *aux OVS_UNUSED)
5161 struct ofproto_dpif *ofproto;
5164 ofproto = ofproto_dpif_lookup(argv[1]);
5166 unixctl_command_reply_error(conn, "no such bridge");
5169 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
5170 mac_learning_flush(ofproto->ml);
5171 ovs_rwlock_unlock(&ofproto->ml->rwlock);
5173 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5174 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
5175 mac_learning_flush(ofproto->ml);
5176 ovs_rwlock_unlock(&ofproto->ml->rwlock);
5180 unixctl_command_reply(conn, "table successfully flushed");
5183 static struct ofport_dpif *
5184 ofbundle_get_a_port(const struct ofbundle *bundle)
5186 return CONTAINER_OF(list_front(&bundle->ports), struct ofport_dpif,
5191 ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5192 const char *argv[], void *aux OVS_UNUSED)
5194 struct ds ds = DS_EMPTY_INITIALIZER;
5195 const struct ofproto_dpif *ofproto;
5196 const struct mac_entry *e;
5198 ofproto = ofproto_dpif_lookup(argv[1]);
5200 unixctl_command_reply_error(conn, "no such bridge");
5204 ds_put_cstr(&ds, " port VLAN MAC Age\n");
5205 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
5206 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
5207 struct ofbundle *bundle = e->port.p;
5208 char name[OFP_MAX_PORT_NAME_LEN];
5210 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
5212 ds_put_format(&ds, "%5s %4d "ETH_ADDR_FMT" %3d\n",
5213 name, e->vlan, ETH_ADDR_ARGS(e->mac),
5214 mac_entry_age(ofproto->ml, e));
5216 ovs_rwlock_unlock(&ofproto->ml->rwlock);
5217 unixctl_command_reply(conn, ds_cstr(&ds));
5222 struct xlate_out xout;
5223 struct xlate_in xin;
5229 trace_format_rule(struct ds *result, int level, const struct rule_dpif *rule)
5231 ds_put_char_multiple(result, '\t', level);
5233 ds_put_cstr(result, "No match\n");
5237 ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
5238 rule ? rule->up.table_id : 0, ntohll(rule->up.flow_cookie));
5239 cls_rule_format(&rule->up.cr, result);
5240 ds_put_char(result, '\n');
5242 ds_put_char_multiple(result, '\t', level);
5243 ds_put_cstr(result, "OpenFlow ");
5244 ofpacts_format(rule->up.ofpacts, rule->up.ofpacts_len, result);
5245 ds_put_char(result, '\n');
5249 trace_format_flow(struct ds *result, int level, const char *title,
5250 struct trace_ctx *trace)
5252 ds_put_char_multiple(result, '\t', level);
5253 ds_put_format(result, "%s: ", title);
5254 if (flow_equal(&trace->xin.flow, &trace->flow)) {
5255 ds_put_cstr(result, "unchanged");
5257 flow_format(result, &trace->xin.flow);
5258 trace->flow = trace->xin.flow;
5260 ds_put_char(result, '\n');
5264 trace_format_regs(struct ds *result, int level, const char *title,
5265 struct trace_ctx *trace)
5269 ds_put_char_multiple(result, '\t', level);
5270 ds_put_format(result, "%s:", title);
5271 for (i = 0; i < FLOW_N_REGS; i++) {
5272 ds_put_format(result, " reg%zu=0x%"PRIx32, i, trace->flow.regs[i]);
5274 ds_put_char(result, '\n');
5278 trace_format_odp(struct ds *result, int level, const char *title,
5279 struct trace_ctx *trace)
5281 struct ofpbuf *odp_actions = &trace->xout.odp_actions;
5283 ds_put_char_multiple(result, '\t', level);
5284 ds_put_format(result, "%s: ", title);
5285 format_odp_actions(result, odp_actions->data, odp_actions->size);
5286 ds_put_char(result, '\n');
5290 trace_resubmit(struct xlate_in *xin, struct rule_dpif *rule, int recurse)
5292 struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
5293 struct ds *result = trace->result;
5295 ds_put_char(result, '\n');
5296 trace_format_flow(result, recurse + 1, "Resubmitted flow", trace);
5297 trace_format_regs(result, recurse + 1, "Resubmitted regs", trace);
5298 trace_format_odp(result, recurse + 1, "Resubmitted odp", trace);
5299 trace_format_rule(result, recurse + 1, rule);
5303 trace_report(struct xlate_in *xin, const char *s, int recurse)
5305 struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
5306 struct ds *result = trace->result;
5308 ds_put_char_multiple(result, '\t', recurse);
5309 ds_put_cstr(result, s);
5310 ds_put_char(result, '\n');
5314 ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
5315 void *aux OVS_UNUSED)
5317 const struct dpif_backer *backer;
5318 struct ofproto_dpif *ofproto;
5319 struct ofpbuf odp_key, odp_mask;
5320 struct ofpbuf *packet;
5328 ofpbuf_init(&odp_key, 0);
5329 ofpbuf_init(&odp_mask, 0);
5331 /* Handle "-generate" or a hex string as the last argument. */
5332 if (!strcmp(argv[argc - 1], "-generate")) {
5333 packet = ofpbuf_new(0);
5336 const char *error = eth_from_hex(argv[argc - 1], &packet);
5339 } else if (argc == 4) {
5340 /* The 3-argument form must end in "-generate' or a hex string. */
5341 unixctl_command_reply_error(conn, error);
5346 /* Parse the flow and determine whether a datapath or
5347 * bridge is specified. If function odp_flow_key_from_string()
5348 * returns 0, the flow is a odp_flow. If function
5349 * parse_ofp_exact_flow() returns 0, the flow is a br_flow. */
5350 if (!odp_flow_from_string(argv[argc - 1], NULL, &odp_key, &odp_mask)) {
5351 /* If the odp_flow is the second argument,
5352 * the datapath name is the first argument. */
5354 const char *dp_type;
5355 if (!strncmp(argv[1], "ovs-", 4)) {
5356 dp_type = argv[1] + 4;
5360 backer = shash_find_data(&all_dpif_backers, dp_type);
5362 unixctl_command_reply_error(conn, "Cannot find datapath "
5367 /* No datapath name specified, so there should be only one
5369 struct shash_node *node;
5370 if (shash_count(&all_dpif_backers) != 1) {
5371 unixctl_command_reply_error(conn, "Must specify datapath "
5372 "name, there is more than one type of datapath");
5375 node = shash_first(&all_dpif_backers);
5376 backer = node->data;
5379 if (xlate_receive(backer, NULL, odp_key.data, odp_key.size, &flow,
5380 NULL, &ofproto, NULL)) {
5381 unixctl_command_reply_error(conn, "Invalid datapath flow");
5384 ds_put_format(&result, "Bridge: %s\n", ofproto->up.name);
5385 } else if (!parse_ofp_exact_flow(&flow, argv[argc - 1])) {
5387 unixctl_command_reply_error(conn, "Must specify bridge name");
5391 ofproto = ofproto_dpif_lookup(argv[1]);
5393 unixctl_command_reply_error(conn, "Unknown bridge name");
5397 unixctl_command_reply_error(conn, "Bad flow syntax");
5401 /* Generate a packet, if requested. */
5403 if (!packet->size) {
5404 flow_compose(packet, &flow);
5406 union flow_in_port in_port_;
5408 in_port_ = flow.in_port;
5409 ds_put_cstr(&result, "Packet: ");
5410 s = ofp_packet_to_string(packet->data, packet->size);
5411 ds_put_cstr(&result, s);
5414 /* Use the metadata from the flow and the packet argument
5415 * to reconstruct the flow. */
5416 flow_extract(packet, flow.skb_priority, flow.pkt_mark, NULL,
5421 ofproto_trace(ofproto, &flow, packet, &result);
5422 unixctl_command_reply(conn, ds_cstr(&result));
5425 ds_destroy(&result);
5426 ofpbuf_delete(packet);
5427 ofpbuf_uninit(&odp_key);
5428 ofpbuf_uninit(&odp_mask);
5432 ofproto_trace(struct ofproto_dpif *ofproto, const struct flow *flow,
5433 const struct ofpbuf *packet, struct ds *ds)
5435 struct rule_dpif *rule;
5436 struct flow_wildcards wc;
5438 ds_put_cstr(ds, "Flow: ");
5439 flow_format(ds, flow);
5440 ds_put_char(ds, '\n');
5442 flow_wildcards_init_catchall(&wc);
5443 rule_dpif_lookup(ofproto, flow, &wc, &rule);
5445 trace_format_rule(ds, 0, rule);
5446 if (rule == ofproto->miss_rule) {
5447 ds_put_cstr(ds, "\nNo match, flow generates \"packet in\"s.\n");
5448 } else if (rule == ofproto->no_packet_in_rule) {
5449 ds_put_cstr(ds, "\nNo match, packets dropped because "
5450 "OFPPC_NO_PACKET_IN is set on in_port.\n");
5451 } else if (rule == ofproto->drop_frags_rule) {
5452 ds_put_cstr(ds, "\nPackets dropped because they are IP fragments "
5453 "and the fragment handling mode is \"drop\".\n");
5457 uint64_t odp_actions_stub[1024 / 8];
5458 struct ofpbuf odp_actions;
5459 struct trace_ctx trace;
5463 tcp_flags = packet ? packet_get_tcp_flags(packet, flow) : 0;
5466 ofpbuf_use_stub(&odp_actions,
5467 odp_actions_stub, sizeof odp_actions_stub);
5468 xlate_in_init(&trace.xin, ofproto, flow, rule, tcp_flags, packet);
5469 trace.xin.resubmit_hook = trace_resubmit;
5470 trace.xin.report_hook = trace_report;
5472 xlate_actions(&trace.xin, &trace.xout);
5473 flow_wildcards_or(&trace.xout.wc, &trace.xout.wc, &wc);
5475 ds_put_char(ds, '\n');
5476 trace_format_flow(ds, 0, "Final flow", &trace);
5478 match_init(&match, flow, &trace.xout.wc);
5479 ds_put_cstr(ds, "Relevant fields: ");
5480 match_format(&match, ds, OFP_DEFAULT_PRIORITY);
5481 ds_put_char(ds, '\n');
5483 ds_put_cstr(ds, "Datapath actions: ");
5484 format_odp_actions(ds, trace.xout.odp_actions.data,
5485 trace.xout.odp_actions.size);
5487 if (trace.xout.slow) {
5488 ds_put_cstr(ds, "\nThis flow is handled by the userspace "
5489 "slow path because it:");
5490 switch (trace.xout.slow) {
5492 ds_put_cstr(ds, "\n\t- Consists of CFM packets.");
5495 ds_put_cstr(ds, "\n\t- Consists of LACP packets.");
5498 ds_put_cstr(ds, "\n\t- Consists of STP packets.");
5501 ds_put_cstr(ds, "\n\t- Consists of BFD packets.");
5503 case SLOW_CONTROLLER:
5504 ds_put_cstr(ds, "\n\t- Sends \"packet-in\" messages "
5505 "to the OpenFlow controller.");
5512 xlate_out_uninit(&trace.xout);
5519 ofproto_dpif_clog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5520 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5523 unixctl_command_reply(conn, NULL);
5527 ofproto_dpif_unclog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5528 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5531 unixctl_command_reply(conn, NULL);
5534 /* Runs a self-check of flow translations in 'ofproto'. Appends a message to
5535 * 'reply' describing the results. */
5537 ofproto_dpif_self_check__(struct ofproto_dpif *ofproto, struct ds *reply)
5539 struct cls_cursor cursor;
5540 struct facet *facet;
5544 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
5545 cls_cursor_init(&cursor, &ofproto->facets, NULL);
5546 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5547 if (!facet_check_consistency(facet)) {
5551 ovs_rwlock_unlock(&ofproto->facets.rwlock);
5553 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
5557 ds_put_format(reply, "%s: self-check failed (%d errors)\n",
5558 ofproto->up.name, errors);
5560 ds_put_format(reply, "%s: self-check passed\n", ofproto->up.name);
5565 ofproto_dpif_self_check(struct unixctl_conn *conn,
5566 int argc, const char *argv[], void *aux OVS_UNUSED)
5568 struct ds reply = DS_EMPTY_INITIALIZER;
5569 struct ofproto_dpif *ofproto;
5572 ofproto = ofproto_dpif_lookup(argv[1]);
5574 unixctl_command_reply_error(conn, "Unknown ofproto (use "
5575 "ofproto/list for help)");
5578 ofproto_dpif_self_check__(ofproto, &reply);
5580 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5581 ofproto_dpif_self_check__(ofproto, &reply);
5585 unixctl_command_reply(conn, ds_cstr(&reply));
5589 /* Store the current ofprotos in 'ofproto_shash'. Returns a sorted list
5590 * of the 'ofproto_shash' nodes. It is the responsibility of the caller
5591 * to destroy 'ofproto_shash' and free the returned value. */
5592 static const struct shash_node **
5593 get_ofprotos(struct shash *ofproto_shash)
5595 const struct ofproto_dpif *ofproto;
5597 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5598 char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
5599 shash_add_nocopy(ofproto_shash, name, ofproto);
5602 return shash_sort(ofproto_shash);
5606 ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
5607 const char *argv[] OVS_UNUSED,
5608 void *aux OVS_UNUSED)
5610 struct ds ds = DS_EMPTY_INITIALIZER;
5611 struct shash ofproto_shash;
5612 const struct shash_node **sorted_ofprotos;
5615 shash_init(&ofproto_shash);
5616 sorted_ofprotos = get_ofprotos(&ofproto_shash);
5617 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5618 const struct shash_node *node = sorted_ofprotos[i];
5619 ds_put_format(&ds, "%s\n", node->name);
5622 shash_destroy(&ofproto_shash);
5623 free(sorted_ofprotos);
5625 unixctl_command_reply(conn, ds_cstr(&ds));
5630 show_dp_rates(struct ds *ds, const char *heading,
5631 const struct avg_subfacet_rates *rates)
5633 ds_put_format(ds, "%s add rate: %5.3f/min, del rate: %5.3f/min\n",
5634 heading, rates->add_rate, rates->del_rate);
5638 dpif_show_backer(const struct dpif_backer *backer, struct ds *ds)
5640 const struct shash_node **ofprotos;
5641 struct ofproto_dpif *ofproto;
5642 struct shash ofproto_shash;
5643 uint64_t n_hit, n_missed;
5644 long long int minutes;
5647 n_hit = n_missed = 0;
5648 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5649 if (ofproto->backer == backer) {
5650 n_missed += ofproto->n_missed;
5651 n_hit += ofproto->n_hit;
5655 ds_put_format(ds, "%s: hit:%"PRIu64" missed:%"PRIu64"\n",
5656 dpif_name(backer->dpif), n_hit, n_missed);
5657 ds_put_format(ds, "\tflows: cur: %zu, avg: %u, max: %u,"
5658 " life span: %lldms\n", hmap_count(&backer->subfacets),
5659 backer->avg_n_subfacet, backer->max_n_subfacet,
5660 backer->avg_subfacet_life);
5662 minutes = (time_msec() - backer->created) / (1000 * 60);
5663 if (minutes >= 60) {
5664 show_dp_rates(ds, "\thourly avg:", &backer->hourly);
5666 if (minutes >= 60 * 24) {
5667 show_dp_rates(ds, "\tdaily avg:", &backer->daily);
5669 show_dp_rates(ds, "\toverall avg:", &backer->lifetime);
5671 shash_init(&ofproto_shash);
5672 ofprotos = get_ofprotos(&ofproto_shash);
5673 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5674 struct ofproto_dpif *ofproto = ofprotos[i]->data;
5675 const struct shash_node **ports;
5678 if (ofproto->backer != backer) {
5682 ds_put_format(ds, "\t%s: hit:%"PRIu64" missed:%"PRIu64"\n",
5683 ofproto->up.name, ofproto->n_hit, ofproto->n_missed);
5685 ports = shash_sort(&ofproto->up.port_by_name);
5686 for (j = 0; j < shash_count(&ofproto->up.port_by_name); j++) {
5687 const struct shash_node *node = ports[j];
5688 struct ofport *ofport = node->data;
5690 odp_port_t odp_port;
5692 ds_put_format(ds, "\t\t%s %u/", netdev_get_name(ofport->netdev),
5695 odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
5696 if (odp_port != ODPP_NONE) {
5697 ds_put_format(ds, "%"PRIu32":", odp_port);
5699 ds_put_cstr(ds, "none:");
5702 ds_put_format(ds, " (%s", netdev_get_type(ofport->netdev));
5705 if (!netdev_get_config(ofport->netdev, &config)) {
5706 const struct smap_node **nodes;
5709 nodes = smap_sort(&config);
5710 for (i = 0; i < smap_count(&config); i++) {
5711 const struct smap_node *node = nodes[i];
5712 ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
5713 node->key, node->value);
5717 smap_destroy(&config);
5719 ds_put_char(ds, ')');
5720 ds_put_char(ds, '\n');
5724 shash_destroy(&ofproto_shash);
5729 ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5730 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5732 struct ds ds = DS_EMPTY_INITIALIZER;
5733 const struct shash_node **backers;
5736 backers = shash_sort(&all_dpif_backers);
5737 for (i = 0; i < shash_count(&all_dpif_backers); i++) {
5738 dpif_show_backer(backers[i]->data, &ds);
5742 unixctl_command_reply(conn, ds_cstr(&ds));
5746 /* Dump the megaflow (facet) cache. This is useful to check the
5747 * correctness of flow wildcarding, since the same mechanism is used for
5748 * both xlate caching and kernel wildcarding.
5750 * It's important to note that in the output the flow description uses
5751 * OpenFlow (OFP) ports, but the actions use datapath (ODP) ports.
5753 * This command is only needed for advanced debugging, so it's not
5754 * documented in the man page. */
5756 ofproto_unixctl_dpif_dump_megaflows(struct unixctl_conn *conn,
5757 int argc OVS_UNUSED, const char *argv[],
5758 void *aux OVS_UNUSED)
5760 struct ds ds = DS_EMPTY_INITIALIZER;
5761 const struct ofproto_dpif *ofproto;
5762 long long int now = time_msec();
5763 struct cls_cursor cursor;
5764 struct facet *facet;
5766 ofproto = ofproto_dpif_lookup(argv[1]);
5768 unixctl_command_reply_error(conn, "no such bridge");
5772 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
5773 cls_cursor_init(&cursor, &ofproto->facets, NULL);
5774 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5775 cls_rule_format(&facet->cr, &ds);
5776 ds_put_cstr(&ds, ", ");
5777 ds_put_format(&ds, "n_subfacets:%zu, ", list_size(&facet->subfacets));
5778 ds_put_format(&ds, "used:%.3fs, ", (now - facet->used) / 1000.0);
5779 ds_put_cstr(&ds, "Datapath actions: ");
5780 if (facet->xout.slow) {
5781 uint64_t slow_path_stub[128 / 8];
5782 const struct nlattr *actions;
5785 compose_slow_path(ofproto, &facet->flow, facet->xout.slow,
5786 slow_path_stub, sizeof slow_path_stub,
5787 &actions, &actions_len);
5788 format_odp_actions(&ds, actions, actions_len);
5790 format_odp_actions(&ds, facet->xout.odp_actions.data,
5791 facet->xout.odp_actions.size);
5793 ds_put_cstr(&ds, "\n");
5795 ovs_rwlock_unlock(&ofproto->facets.rwlock);
5797 ds_chomp(&ds, '\n');
5798 unixctl_command_reply(conn, ds_cstr(&ds));
5802 /* Disable using the megaflows.
5804 * This command is only needed for advanced debugging, so it's not
5805 * documented in the man page. */
5807 ofproto_unixctl_dpif_disable_megaflows(struct unixctl_conn *conn,
5808 int argc OVS_UNUSED,
5809 const char *argv[] OVS_UNUSED,
5810 void *aux OVS_UNUSED)
5812 struct ofproto_dpif *ofproto;
5814 enable_megaflows = false;
5816 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5817 flush(&ofproto->up);
5820 unixctl_command_reply(conn, "megaflows disabled");
5823 /* Re-enable using megaflows.
5825 * This command is only needed for advanced debugging, so it's not
5826 * documented in the man page. */
5828 ofproto_unixctl_dpif_enable_megaflows(struct unixctl_conn *conn,
5829 int argc OVS_UNUSED,
5830 const char *argv[] OVS_UNUSED,
5831 void *aux OVS_UNUSED)
5833 struct ofproto_dpif *ofproto;
5835 enable_megaflows = true;
5837 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5838 flush(&ofproto->up);
5841 unixctl_command_reply(conn, "megaflows enabled");
5845 ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
5846 int argc OVS_UNUSED, const char *argv[],
5847 void *aux OVS_UNUSED)
5849 struct ds ds = DS_EMPTY_INITIALIZER;
5850 const struct ofproto_dpif *ofproto;
5851 struct subfacet *subfacet;
5853 ofproto = ofproto_dpif_lookup(argv[1]);
5855 unixctl_command_reply_error(conn, "no such bridge");
5859 update_stats(ofproto->backer);
5861 HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->backer->subfacets) {
5862 struct facet *facet = subfacet->facet;
5863 struct odputil_keybuf maskbuf;
5866 if (facet->ofproto != ofproto) {
5870 ofpbuf_use_stack(&mask, &maskbuf, sizeof maskbuf);
5871 if (enable_megaflows) {
5872 odp_flow_key_from_mask(&mask, &facet->xout.wc.masks,
5873 &facet->flow, UINT32_MAX);
5876 odp_flow_format(subfacet->key, subfacet->key_len,
5877 mask.data, mask.size, &ds, false);
5879 ds_put_format(&ds, ", packets:%"PRIu64", bytes:%"PRIu64", used:",
5880 subfacet->dp_packet_count, subfacet->dp_byte_count);
5881 if (subfacet->used) {
5882 ds_put_format(&ds, "%.3fs",
5883 (time_msec() - subfacet->used) / 1000.0);
5885 ds_put_format(&ds, "never");
5887 if (subfacet->facet->tcp_flags) {
5888 ds_put_cstr(&ds, ", flags:");
5889 packet_format_tcp_flags(&ds, subfacet->facet->tcp_flags);
5892 ds_put_cstr(&ds, ", actions:");
5893 if (facet->xout.slow) {
5894 uint64_t slow_path_stub[128 / 8];
5895 const struct nlattr *actions;
5898 compose_slow_path(ofproto, &facet->flow, facet->xout.slow,
5899 slow_path_stub, sizeof slow_path_stub,
5900 &actions, &actions_len);
5901 format_odp_actions(&ds, actions, actions_len);
5903 format_odp_actions(&ds, facet->xout.odp_actions.data,
5904 facet->xout.odp_actions.size);
5906 ds_put_char(&ds, '\n');
5909 unixctl_command_reply(conn, ds_cstr(&ds));
5914 ofproto_unixctl_dpif_del_flows(struct unixctl_conn *conn,
5915 int argc OVS_UNUSED, const char *argv[],
5916 void *aux OVS_UNUSED)
5918 struct ds ds = DS_EMPTY_INITIALIZER;
5919 struct ofproto_dpif *ofproto;
5921 ofproto = ofproto_dpif_lookup(argv[1]);
5923 unixctl_command_reply_error(conn, "no such bridge");
5927 flush(&ofproto->up);
5929 unixctl_command_reply(conn, ds_cstr(&ds));
5934 ofproto_dpif_unixctl_init(void)
5936 static bool registered;
5942 unixctl_command_register(
5944 "[dp_name]|bridge odp_flow|br_flow [-generate|packet]",
5945 1, 3, ofproto_unixctl_trace, NULL);
5946 unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
5947 ofproto_unixctl_fdb_flush, NULL);
5948 unixctl_command_register("fdb/show", "bridge", 1, 1,
5949 ofproto_unixctl_fdb_show, NULL);
5950 unixctl_command_register("ofproto/clog", "", 0, 0,
5951 ofproto_dpif_clog, NULL);
5952 unixctl_command_register("ofproto/unclog", "", 0, 0,
5953 ofproto_dpif_unclog, NULL);
5954 unixctl_command_register("ofproto/self-check", "[bridge]", 0, 1,
5955 ofproto_dpif_self_check, NULL);
5956 unixctl_command_register("dpif/dump-dps", "", 0, 0,
5957 ofproto_unixctl_dpif_dump_dps, NULL);
5958 unixctl_command_register("dpif/show", "", 0, 0, ofproto_unixctl_dpif_show,
5960 unixctl_command_register("dpif/dump-flows", "bridge", 1, 1,
5961 ofproto_unixctl_dpif_dump_flows, NULL);
5962 unixctl_command_register("dpif/del-flows", "bridge", 1, 1,
5963 ofproto_unixctl_dpif_del_flows, NULL);
5964 unixctl_command_register("dpif/dump-megaflows", "bridge", 1, 1,
5965 ofproto_unixctl_dpif_dump_megaflows, NULL);
5966 unixctl_command_register("dpif/disable-megaflows", "", 0, 0,
5967 ofproto_unixctl_dpif_disable_megaflows, NULL);
5968 unixctl_command_register("dpif/enable-megaflows", "", 0, 0,
5969 ofproto_unixctl_dpif_enable_megaflows, NULL);
5972 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
5974 * This is deprecated. It is only for compatibility with broken device drivers
5975 * in old versions of Linux that do not properly support VLANs when VLAN
5976 * devices are not used. When broken device drivers are no longer in
5977 * widespread use, we will delete these interfaces. */
5980 set_realdev(struct ofport *ofport_, ofp_port_t realdev_ofp_port, int vid)
5982 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
5983 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
5985 if (realdev_ofp_port == ofport->realdev_ofp_port
5986 && vid == ofport->vlandev_vid) {
5990 ofproto->backer->need_revalidate = REV_RECONFIGURE;
5992 if (ofport->realdev_ofp_port) {
5995 if (realdev_ofp_port && ofport->bundle) {
5996 /* vlandevs are enslaved to their realdevs, so they are not allowed to
5997 * themselves be part of a bundle. */
5998 bundle_set(ofport->up.ofproto, ofport->bundle, NULL);
6001 ofport->realdev_ofp_port = realdev_ofp_port;
6002 ofport->vlandev_vid = vid;
6004 if (realdev_ofp_port) {
6005 vsp_add(ofport, realdev_ofp_port, vid);
6012 hash_realdev_vid(ofp_port_t realdev_ofp_port, int vid)
6014 return hash_2words(ofp_to_u16(realdev_ofp_port), vid);
6018 ofproto_has_vlan_splinters(const struct ofproto_dpif *ofproto)
6019 OVS_EXCLUDED(ofproto->vsp_mutex)
6023 ovs_mutex_lock(&ofproto->vsp_mutex);
6024 ret = !hmap_is_empty(&ofproto->realdev_vid_map);
6025 ovs_mutex_unlock(&ofproto->vsp_mutex);
6030 vsp_realdev_to_vlandev__(const struct ofproto_dpif *ofproto,
6031 ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
6032 OVS_REQUIRES(ofproto->vsp_mutex)
6034 if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
6035 int vid = vlan_tci_to_vid(vlan_tci);
6036 const struct vlan_splinter *vsp;
6038 HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
6039 hash_realdev_vid(realdev_ofp_port, vid),
6040 &ofproto->realdev_vid_map) {
6041 if (vsp->realdev_ofp_port == realdev_ofp_port
6042 && vsp->vid == vid) {
6043 return vsp->vlandev_ofp_port;
6047 return realdev_ofp_port;
6050 /* Returns the OFP port number of the Linux VLAN device that corresponds to
6051 * 'vlan_tci' on the network device with port number 'realdev_ofp_port' in
6052 * 'struct ofport_dpif'. For example, given 'realdev_ofp_port' of eth0 and
6053 * 'vlan_tci' 9, it would return the port number of eth0.9.
6055 * Unless VLAN splinters are enabled for port 'realdev_ofp_port', this
6056 * function just returns its 'realdev_ofp_port' argument. */
6058 vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
6059 ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
6060 OVS_EXCLUDED(ofproto->vsp_mutex)
6064 ovs_mutex_lock(&ofproto->vsp_mutex);
6065 ret = vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, vlan_tci);
6066 ovs_mutex_unlock(&ofproto->vsp_mutex);
6070 static struct vlan_splinter *
6071 vlandev_find(const struct ofproto_dpif *ofproto, ofp_port_t vlandev_ofp_port)
6073 struct vlan_splinter *vsp;
6075 HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node,
6076 hash_ofp_port(vlandev_ofp_port),
6077 &ofproto->vlandev_map) {
6078 if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
6086 /* Returns the OpenFlow port number of the "real" device underlying the Linux
6087 * VLAN device with OpenFlow port number 'vlandev_ofp_port' and stores the
6088 * VLAN VID of the Linux VLAN device in '*vid'. For example, given
6089 * 'vlandev_ofp_port' of eth0.9, it would return the OpenFlow port number of
6090 * eth0 and store 9 in '*vid'.
6092 * Returns 0 and does not modify '*vid' if 'vlandev_ofp_port' is not a Linux
6093 * VLAN device. Unless VLAN splinters are enabled, this is what this function
6096 vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
6097 ofp_port_t vlandev_ofp_port, int *vid)
6098 OVS_REQUIRES(ofproto->vsp_mutex)
6100 if (!hmap_is_empty(&ofproto->vlandev_map)) {
6101 const struct vlan_splinter *vsp;
6103 vsp = vlandev_find(ofproto, vlandev_ofp_port);
6108 return vsp->realdev_ofp_port;
6114 /* Given 'flow', a flow representing a packet received on 'ofproto', checks
6115 * whether 'flow->in_port' represents a Linux VLAN device. If so, changes
6116 * 'flow->in_port' to the "real" device backing the VLAN device, sets
6117 * 'flow->vlan_tci' to the VLAN VID, and returns true. Otherwise (which is
6118 * always the case unless VLAN splinters are enabled), returns false without
6119 * making any changes. */
6121 vsp_adjust_flow(const struct ofproto_dpif *ofproto, struct flow *flow)
6122 OVS_EXCLUDED(ofproto->vsp_mutex)
6127 ovs_mutex_lock(&ofproto->vsp_mutex);
6128 realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port.ofp_port, &vid);
6129 ovs_mutex_unlock(&ofproto->vsp_mutex);
6134 /* Cause the flow to be processed as if it came in on the real device with
6135 * the VLAN device's VLAN ID. */
6136 flow->in_port.ofp_port = realdev;
6137 flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
6142 vsp_remove(struct ofport_dpif *port)
6144 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
6145 struct vlan_splinter *vsp;
6147 ovs_mutex_lock(&ofproto->vsp_mutex);
6148 vsp = vlandev_find(ofproto, port->up.ofp_port);
6150 hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
6151 hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
6154 port->realdev_ofp_port = 0;
6156 VLOG_ERR("missing vlan device record");
6158 ovs_mutex_unlock(&ofproto->vsp_mutex);
6162 vsp_add(struct ofport_dpif *port, ofp_port_t realdev_ofp_port, int vid)
6164 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
6166 ovs_mutex_lock(&ofproto->vsp_mutex);
6167 if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
6168 && (vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, htons(vid))
6169 == realdev_ofp_port)) {
6170 struct vlan_splinter *vsp;
6172 vsp = xmalloc(sizeof *vsp);
6173 vsp->realdev_ofp_port = realdev_ofp_port;
6174 vsp->vlandev_ofp_port = port->up.ofp_port;
6177 port->realdev_ofp_port = realdev_ofp_port;
6179 hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
6180 hash_ofp_port(port->up.ofp_port));
6181 hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
6182 hash_realdev_vid(realdev_ofp_port, vid));
6184 VLOG_ERR("duplicate vlan device record");
6186 ovs_mutex_unlock(&ofproto->vsp_mutex);
6190 ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
6192 const struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
6193 return ofport ? ofport->odp_port : ODPP_NONE;
6196 struct ofport_dpif *
6197 odp_port_to_ofport(const struct dpif_backer *backer, odp_port_t odp_port)
6199 struct ofport_dpif *port;
6201 ovs_rwlock_rdlock(&backer->odp_to_ofport_lock);
6202 HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node, hash_odp_port(odp_port),
6203 &backer->odp_to_ofport_map) {
6204 if (port->odp_port == odp_port) {
6205 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
6210 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
6215 odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
6217 struct ofport_dpif *port;
6219 port = odp_port_to_ofport(ofproto->backer, odp_port);
6220 if (port && &ofproto->up == port->up.ofproto) {
6221 return port->up.ofp_port;
6227 /* Compute exponentially weighted moving average, adding 'new' as the newest,
6228 * most heavily weighted element. 'base' designates the rate of decay: after
6229 * 'base' further updates, 'new''s weight in the EWMA decays to about 1/e
6232 exp_mavg(double *avg, int base, double new)
6234 *avg = (*avg * (base - 1) + new) / base;
6238 update_moving_averages(struct dpif_backer *backer)
6240 const int min_ms = 60 * 1000; /* milliseconds in one minute. */
6241 long long int minutes = (time_msec() - backer->created) / min_ms;
6244 backer->lifetime.add_rate = (double) backer->total_subfacet_add_count
6246 backer->lifetime.del_rate = (double) backer->total_subfacet_del_count
6249 backer->lifetime.add_rate = 0.0;
6250 backer->lifetime.del_rate = 0.0;
6253 /* Update hourly averages on the minute boundaries. */
6254 if (time_msec() - backer->last_minute >= min_ms) {
6255 exp_mavg(&backer->hourly.add_rate, 60, backer->subfacet_add_count);
6256 exp_mavg(&backer->hourly.del_rate, 60, backer->subfacet_del_count);
6258 /* Update daily averages on the hour boundaries. */
6259 if ((backer->last_minute - backer->created) / min_ms % 60 == 59) {
6260 exp_mavg(&backer->daily.add_rate, 24, backer->hourly.add_rate);
6261 exp_mavg(&backer->daily.del_rate, 24, backer->hourly.del_rate);
6264 backer->total_subfacet_add_count += backer->subfacet_add_count;
6265 backer->total_subfacet_del_count += backer->subfacet_del_count;
6266 backer->subfacet_add_count = 0;
6267 backer->subfacet_del_count = 0;
6268 backer->last_minute += min_ms;
6272 const struct ofproto_class ofproto_dpif_class = {
6307 port_is_lacp_current,
6308 NULL, /* rule_choose_table */
6315 rule_modify_actions,
6329 get_stp_port_status,
6336 is_mirror_output_bundle,
6337 forward_bpdu_changed,
6338 set_mac_table_config,
6340 NULL, /* meter_get_features */
6341 NULL, /* meter_set */
6342 NULL, /* meter_get */
6343 NULL, /* meter_del */