]> git.proxmox.com Git - ovs.git/blame - ofproto/ofproto-dpif.c
ovs-ofctl: Correct formatting of instructions in manpage.
[ovs.git] / ofproto / ofproto-dpif.c
CommitLineData
abe529af 1/*
e09ee259 2 * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
abe529af
BP
3 *
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:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
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.
15 */
16
17#include <config.h>
18
9583bc14 19#include "ofproto/ofproto-dpif.h"
5bee6e26 20#include "ofproto/ofproto-provider.h"
abe529af
BP
21
22#include <errno.h>
23
ccc09689 24#include "bfd.h"
abe529af 25#include "bond.h"
daff3353 26#include "bundle.h"
abe529af
BP
27#include "byte-order.h"
28#include "connmgr.h"
29#include "coverage.h"
30#include "cfm.h"
31#include "dpif.h"
32#include "dynamic-string.h"
33#include "fail-open.h"
34#include "hmapx.h"
35#include "lacp.h"
75a75043 36#include "learn.h"
abe529af 37#include "mac-learning.h"
816fd533 38#include "meta-flow.h"
abe529af 39#include "multipath.h"
0a740f48 40#include "netdev-vport.h"
abe529af
BP
41#include "netdev.h"
42#include "netlink.h"
43#include "nx-match.h"
44#include "odp-util.h"
1ac7c9bd 45#include "odp-execute.h"
abe529af
BP
46#include "ofp-util.h"
47#include "ofpbuf.h"
f25d0cf3 48#include "ofp-actions.h"
31a19d69 49#include "ofp-parse.h"
abe529af 50#include "ofp-print.h"
9d6ac44e 51#include "ofproto-dpif-governor.h"
29089a54 52#include "ofproto-dpif-ipfix.h"
ec7ceaed 53#include "ofproto-dpif-mirror.h"
bae473fe 54#include "ofproto-dpif-sflow.h"
e1ec7dd4 55#include "ofproto-dpif-upcall.h"
9583bc14 56#include "ofproto-dpif-xlate.h"
abe529af 57#include "poll-loop.h"
0d085684 58#include "simap.h"
27022416 59#include "smap.h"
abe529af 60#include "timer.h"
b9ad7294 61#include "tunnel.h"
6c1491fb 62#include "unaligned.h"
abe529af
BP
63#include "unixctl.h"
64#include "vlan-bitmap.h"
65#include "vlog.h"
66
67VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
68
abe529af 69COVERAGE_DEFINE(ofproto_dpif_expired);
abe529af 70COVERAGE_DEFINE(facet_changed_rule);
abe529af
BP
71COVERAGE_DEFINE(facet_revalidate);
72COVERAGE_DEFINE(facet_unexpected);
9d6ac44e 73COVERAGE_DEFINE(facet_suppress);
9b1a48c2 74COVERAGE_DEFINE(subfacet_install_fail);
ada3a58d 75COVERAGE_DEFINE(packet_in_overflow);
3d9c5e58 76COVERAGE_DEFINE(flow_mod_overflow);
abe529af 77
46c88433
EJ
78/* Number of implemented OpenFlow tables. */
79enum { N_TABLES = 255 };
80enum { TBL_INTERNAL = N_TABLES - 1 }; /* Used for internal hidden rules. */
81BUILD_ASSERT_DECL(N_TABLES >= 2 && N_TABLES <= 255);
82
a088a1ff 83struct flow_miss;
ac35f9c8 84struct facet;
abe529af 85
70742c7f
EJ
86struct rule_dpif {
87 struct rule up;
88
89 /* These statistics:
90 *
91 * - Do include packets and bytes from facets that have been deleted or
92 * whose own statistics have been folded into the rule.
93 *
94 * - Do include packets and bytes sent "by hand" that were accounted to
95 * the rule without any facet being involved (this is a rare corner
96 * case in rule_execute()).
97 *
98 * - Do not include packet or bytes that can be obtained from any facet's
99 * packet_count or byte_count member or that can be obtained from the
100 * datapath by, e.g., dpif_flow_get() for any subfacet.
101 */
102 struct ovs_mutex stats_mutex;
103 uint64_t packet_count OVS_GUARDED; /* Number of packets received. */
104 uint64_t byte_count OVS_GUARDED; /* Number of bytes received. */
105};
106
7e741ffb 107static void rule_get_stats(struct rule *, uint64_t *packets, uint64_t *bytes);
70742c7f 108static struct rule_dpif *rule_dpif_cast(const struct rule *);
b0f7b9b5 109
46c88433
EJ
110struct ofbundle {
111 struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
112 struct ofproto_dpif *ofproto; /* Owning ofproto. */
113 void *aux; /* Key supplied by ofproto's client. */
114 char *name; /* Identifier for log messages. */
115
116 /* Configuration. */
117 struct list ports; /* Contains "struct ofport"s. */
118 enum port_vlan_mode vlan_mode; /* VLAN mode */
119 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
120 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
121 * NULL if all VLANs are trunked. */
122 struct lacp *lacp; /* LACP if LACP is enabled, otherwise NULL. */
123 struct bond *bond; /* Nonnull iff more than one port. */
124 bool use_priority_tags; /* Use 802.1p tag for frames in VLAN 0? */
125
126 /* Status. */
127 bool floodable; /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
128};
129
abe529af 130static void bundle_remove(struct ofport *);
7bde8dd8 131static void bundle_update(struct ofbundle *);
abe529af
BP
132static void bundle_destroy(struct ofbundle *);
133static void bundle_del_port(struct ofport_dpif *);
134static void bundle_run(struct ofbundle *);
135static void bundle_wait(struct ofbundle *);
33158a18 136
21f7563c
JP
137static void stp_run(struct ofproto_dpif *ofproto);
138static void stp_wait(struct ofproto_dpif *ofproto);
851bf71d
EJ
139static int set_stp_port(struct ofport *,
140 const struct ofproto_port_stp_settings *);
21f7563c 141
6a7e895f
BP
142static void compose_slow_path(const struct ofproto_dpif *, const struct flow *,
143 enum slow_path_reason,
144 uint64_t *stub, size_t stub_size,
145 const struct nlattr **actionsp,
146 size_t *actions_lenp);
147
148/* A subfacet (see "struct subfacet" below) has three possible installation
149 * states:
150 *
151 * - SF_NOT_INSTALLED: Not installed in the datapath. This will only be the
152 * case just after the subfacet is created, just before the subfacet is
153 * destroyed, or if the datapath returns an error when we try to install a
154 * subfacet.
155 *
156 * - SF_FAST_PATH: The subfacet's actions are installed in the datapath.
157 *
158 * - SF_SLOW_PATH: An action that sends every packet for the subfacet through
159 * ofproto_dpif is installed in the datapath.
160 */
161enum subfacet_path {
162 SF_NOT_INSTALLED, /* No datapath flow for this subfacet. */
163 SF_FAST_PATH, /* Full actions are installed. */
164 SF_SLOW_PATH, /* Send-to-userspace action is installed. */
165};
166
5f5fbd17
BP
167/* A dpif flow and actions associated with a facet.
168 *
169 * See also the large comment on struct facet. */
170struct subfacet {
171 /* Owners. */
172 struct hmap_node hmap_node; /* In struct ofproto_dpif 'subfacets' list. */
173 struct list list_node; /* In struct facet's 'facets' list. */
174 struct facet *facet; /* Owning facet. */
04d08d54 175 struct dpif_backer *backer; /* Owning backer. */
5f5fbd17 176
5f5fbd17
BP
177 enum odp_key_fitness key_fitness;
178 struct nlattr *key;
179 int key_len;
180
181 long long int used; /* Time last used; time created if not used. */
655ab909 182 long long int created; /* Time created. */
5f5fbd17
BP
183
184 uint64_t dp_packet_count; /* Last known packet count in the datapath. */
185 uint64_t dp_byte_count; /* Last known byte count in the datapath. */
186
6a7e895f 187 enum subfacet_path path; /* Installed in datapath? */
5f5fbd17
BP
188};
189
1d85f9e5
JP
190#define SUBFACET_DESTROY_MAX_BATCH 50
191
e1ec7dd4 192static struct subfacet *subfacet_create(struct facet *, struct flow_miss *);
04d08d54 193static struct subfacet *subfacet_find(struct dpif_backer *,
acf60855 194 const struct nlattr *key, size_t key_len,
9566abf9 195 uint32_t key_hash);
5f5fbd17
BP
196static void subfacet_destroy(struct subfacet *);
197static void subfacet_destroy__(struct subfacet *);
04d08d54 198static void subfacet_destroy_batch(struct dpif_backer *,
1d85f9e5 199 struct subfacet **, int n);
5f5fbd17
BP
200static void subfacet_reset_dp_stats(struct subfacet *,
201 struct dpif_flow_stats *);
5f5fbd17
BP
202static void subfacet_update_stats(struct subfacet *,
203 const struct dpif_flow_stats *);
5f5fbd17 204static int subfacet_install(struct subfacet *,
4dff9097
EJ
205 const struct ofpbuf *odp_actions,
206 struct dpif_flow_stats *);
5f5fbd17
BP
207static void subfacet_uninstall(struct subfacet *);
208
bcd2633a 209/* A unique, non-overlapping instantiation of an OpenFlow flow.
b0f7b9b5
BP
210 *
211 * A facet associates a "struct flow", which represents the Open vSwitch
bcd2633a
JP
212 * userspace idea of an exact-match flow, with one or more subfacets.
213 * While the facet is created based on an exact-match flow, it is stored
214 * within the ofproto based on the wildcards that could be expressed
215 * based on the flow table and other configuration. (See the 'wc'
216 * description in "struct xlate_out" for more details.)
b0f7b9b5 217 *
bcd2633a
JP
218 * Each subfacet tracks the datapath's idea of the flow equivalent to
219 * the facet. When the kernel module (or other dpif implementation) and
220 * Open vSwitch userspace agree on the definition of a flow key, there
221 * is exactly one subfacet per facet. If the dpif implementation
222 * supports more-specific flow matching than userspace, however, a facet
223 * can have more than one subfacet. Examples include the dpif
224 * implementation not supporting the same wildcards as userspace or some
225 * distinction in flow that userspace simply doesn't understand.
226 *
227 * Flow expiration works in terms of subfacets, so a facet must have at
228 * least one subfacet or it will never expire, leaking memory. */
abe529af 229struct facet {
74432d57 230 /* Owner. */
b7e2f6b3 231 struct ofproto_dpif *ofproto;
b0f7b9b5
BP
232
233 /* Owned data. */
234 struct list subfacets;
abe529af
BP
235 long long int used; /* Time last used; time created if not used. */
236
b0f7b9b5 237 /* Key. */
bcd2633a
JP
238 struct flow flow; /* Flow of the creating subfacet. */
239 struct cls_rule cr; /* In 'ofproto_dpif's facets classifier. */
b0f7b9b5 240
abe529af
BP
241 /* These statistics:
242 *
243 * - Do include packets and bytes sent "by hand", e.g. with
244 * dpif_execute().
245 *
246 * - Do include packets and bytes that were obtained from the datapath
b0f7b9b5 247 * when a subfacet's statistics were reset (e.g. dpif_flow_put() with
abe529af 248 * DPIF_FP_ZERO_STATS).
b0f7b9b5
BP
249 *
250 * - Do not include packets or bytes that can be obtained from the
251 * datapath for any existing subfacet.
abe529af
BP
252 */
253 uint64_t packet_count; /* Number of packets received. */
254 uint64_t byte_count; /* Number of bytes received. */
255
b0f7b9b5 256 /* Resubmit statistics. */
9d24de3b
JP
257 uint64_t prev_packet_count; /* Number of packets from last stats push. */
258 uint64_t prev_byte_count; /* Number of bytes from last stats push. */
259 long long int prev_used; /* Used time from last stats push. */
abe529af 260
b0f7b9b5 261 /* Accounting. */
907a4c5e 262 uint64_t accounted_bytes; /* Bytes processed by facet_account(). */
b0f7b9b5 263 struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
0e553d9c 264 uint8_t tcp_flags; /* TCP flags seen for this 'rule'. */
abe529af 265
bbafd73b 266 struct xlate_out xout;
4dff9097 267
26cd7e34
BP
268 /* Storage for a single subfacet, to reduce malloc() time and space
269 * overhead. (A facet always has at least one subfacet and in the common
bcd516b7
JP
270 * case has exactly one subfacet. However, 'one_subfacet' may not
271 * always be valid, since it could have been removed after newer
272 * subfacets were pushed onto the 'subfacets' list.) */
26cd7e34 273 struct subfacet one_subfacet;
6cf474d7
EJ
274
275 long long int learn_rl; /* Rate limiter for facet_learn(). */
abe529af
BP
276};
277
e1ec7dd4 278static struct facet *facet_create(const struct flow_miss *);
15baa734 279static void facet_remove(struct facet *);
abe529af
BP
280static void facet_free(struct facet *);
281
bcd2633a 282static struct facet *facet_find(struct ofproto_dpif *, const struct flow *);
abe529af 283static struct facet *facet_lookup_valid(struct ofproto_dpif *,
bcd2633a 284 const struct flow *);
5bf64ade 285static bool facet_revalidate(struct facet *);
6814e51f 286static bool facet_check_consistency(struct facet *);
abe529af 287
15baa734 288static void facet_flush_stats(struct facet *);
abe529af 289
bbb5d219 290static void facet_reset_counters(struct facet *);
e1ec7dd4
EJ
291static void flow_push_stats(struct ofproto_dpif *, struct flow *,
292 struct dpif_flow_stats *, bool may_learn);
9dfb1f78 293static void facet_push_stats(struct facet *, bool may_learn);
3de9590b
BP
294static void facet_learn(struct facet *);
295static void facet_account(struct facet *);
8844e035 296static void push_all_stats(void);
abe529af
BP
297
298static bool facet_is_controller_flow(struct facet *);
299
46c88433
EJ
300struct ofport_dpif {
301 struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
302 struct ofport up;
303
304 odp_port_t odp_port;
305 struct ofbundle *bundle; /* Bundle that contains this port, if any. */
306 struct list bundle_node; /* In struct ofbundle's "ports" list. */
307 struct cfm *cfm; /* Connectivity Fault Management, if any. */
308 struct bfd *bfd; /* BFD, if any. */
46c88433
EJ
309 bool may_enable; /* May be enabled in bonds. */
310 bool is_tunnel; /* This port is a tunnel. */
311 long long int carrier_seq; /* Carrier status changes. */
312 struct ofport_dpif *peer; /* Peer if patch port. */
313
314 /* Spanning tree. */
315 struct stp_port *stp_port; /* Spanning Tree Protocol, if any. */
316 enum stp_state stp_state; /* Always STP_DISABLED if STP not in use. */
317 long long int stp_state_entered;
318
55954f6e
EJ
319 /* Queue to DSCP mapping. */
320 struct ofproto_port_queue *qdscp;
321 size_t n_qdscp;
46c88433
EJ
322
323 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
324 *
325 * This is deprecated. It is only for compatibility with broken device
326 * drivers in old versions of Linux that do not properly support VLANs when
327 * VLAN devices are not used. When broken device drivers are no longer in
328 * widespread use, we will delete these interfaces. */
329 ofp_port_t realdev_ofp_port;
330 int vlandev_vid;
331};
332
52a90c29
BP
333/* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
334 *
335 * This is deprecated. It is only for compatibility with broken device drivers
336 * in old versions of Linux that do not properly support VLANs when VLAN
337 * devices are not used. When broken device drivers are no longer in
338 * widespread use, we will delete these interfaces. */
339struct vlan_splinter {
340 struct hmap_node realdev_vid_node;
341 struct hmap_node vlandev_node;
4e022ec0
AW
342 ofp_port_t realdev_ofp_port;
343 ofp_port_t vlandev_ofp_port;
52a90c29
BP
344 int vid;
345};
346
52a90c29 347static void vsp_remove(struct ofport_dpif *);
4e022ec0 348static void vsp_add(struct ofport_dpif *, ofp_port_t realdev_ofp_port, int vid);
52a90c29 349
46c88433
EJ
350static odp_port_t ofp_port_to_odp_port(const struct ofproto_dpif *,
351 ofp_port_t);
352
4e022ec0 353static ofp_port_t odp_port_to_ofp_port(const struct ofproto_dpif *,
46c88433 354 odp_port_t);
e1b1d06a 355
abe529af
BP
356static struct ofport_dpif *
357ofport_dpif_cast(const struct ofport *ofport)
358{
abe529af
BP
359 return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
360}
361
362static void port_run(struct ofport_dpif *);
0aa66d6e 363static void port_run_fast(struct ofport_dpif *);
abe529af 364static void port_wait(struct ofport_dpif *);
8aee94b6 365static int set_bfd(struct ofport *, const struct smap *);
a5610457 366static int set_cfm(struct ofport *, const struct cfm_settings *);
6cbbf4fa 367static void ofport_update_peer(struct ofport_dpif *);
8fa4d1d0 368static void run_fast_rl(void);
3d9c5e58 369static int run_fast(struct ofproto *);
abe529af 370
7ee20df1
BP
371struct dpif_completion {
372 struct list list_node;
373 struct ofoperation *op;
374};
375
cdc3ab65
EJ
376/* Reasons that we might need to revalidate every facet, and corresponding
377 * coverage counters.
378 *
379 * A value of 0 means that there is no need to revalidate.
380 *
381 * It would be nice to have some cleaner way to integrate with coverage
382 * counters, but with only a few reasons I guess this is good enough for
383 * now. */
384enum revalidate_reason {
385 REV_RECONFIGURE = 1, /* Switch configuration changed. */
386 REV_STP, /* Spanning tree protocol port status change. */
4a1b8f30 387 REV_BOND, /* Bonding changed. */
cdc3ab65
EJ
388 REV_PORT_TOGGLED, /* Port enabled or disabled by CFM, LACP, ...*/
389 REV_FLOW_TABLE, /* Flow table changed. */
30618594 390 REV_MAC_LEARNING, /* Mac learning changed. */
cdc3ab65
EJ
391 REV_INCONSISTENCY /* Facet self-check failed. */
392};
3c4a309c
BP
393COVERAGE_DEFINE(rev_reconfigure);
394COVERAGE_DEFINE(rev_stp);
4a1b8f30 395COVERAGE_DEFINE(rev_bond);
3c4a309c
BP
396COVERAGE_DEFINE(rev_port_toggled);
397COVERAGE_DEFINE(rev_flow_table);
30618594 398COVERAGE_DEFINE(rev_mac_learning);
3c4a309c
BP
399COVERAGE_DEFINE(rev_inconsistency);
400
cdc3ab65
EJ
401struct avg_subfacet_rates {
402 double add_rate; /* Moving average of new flows created per minute. */
403 double del_rate; /* Moving average of flows deleted per minute. */
404};
405
406/* All datapaths of a given type share a single dpif backer instance. */
407struct dpif_backer {
408 char *type;
409 int refcount;
410 struct dpif *dpif;
e1ec7dd4 411 struct udpif *udpif;
cdc3ab65 412 struct timer next_expiration;
8449c4d6
EJ
413
414 struct ovs_rwlock odp_to_ofport_lock;
415 struct hmap odp_to_ofport_map OVS_GUARDED; /* ODP port to ofport map. */
cdc3ab65
EJ
416
417 struct simap tnl_backers; /* Set of dpif ports backing tunnels. */
418
419 /* Facet revalidation flags applying to facets which use this backer. */
420 enum revalidate_reason need_revalidate; /* Revalidate every facet. */
cdc3ab65
EJ
421
422 struct hmap drop_keys; /* Set of dropped odp keys. */
423 bool recv_set_enable; /* Enables or disables receiving packets. */
424
425 struct hmap subfacets;
426 struct governor *governor;
427
428 /* Subfacet statistics.
429 *
430 * These keep track of the total number of subfacets added and deleted and
431 * flow life span. They are useful for computing the flow rates stats
432 * exposed via "ovs-appctl dpif/show". The goal is to learn about
433 * traffic patterns in ways that we can use later to improve Open vSwitch
434 * performance in new situations. */
435 long long int created; /* Time when it is created. */
436 unsigned max_n_subfacet; /* Maximum number of flows */
437 unsigned avg_n_subfacet; /* Average number of flows. */
438 long long int avg_subfacet_life; /* Average life span of subfacets. */
439
440 /* The average number of subfacets... */
441 struct avg_subfacet_rates hourly; /* ...over the last hour. */
442 struct avg_subfacet_rates daily; /* ...over the last day. */
443 struct avg_subfacet_rates lifetime; /* ...over the switch lifetime. */
444 long long int last_minute; /* Last time 'hourly' was updated. */
445
446 /* Number of subfacets added or deleted since 'last_minute'. */
447 unsigned subfacet_add_count;
448 unsigned subfacet_del_count;
449
450 /* Number of subfacets added or deleted from 'created' to 'last_minute.' */
451 unsigned long long int total_subfacet_add_count;
452 unsigned long long int total_subfacet_del_count;
448a4b2f
AW
453
454 /* Number of upcall handling threads. */
455 unsigned int n_handler_threads;
cdc3ab65
EJ
456};
457
acf60855
JP
458/* All existing ofproto_backer instances, indexed by ofproto->up.type. */
459static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
460
8f73d537 461static void drop_key_clear(struct dpif_backer *);
dc54ef36 462static void update_moving_averages(struct dpif_backer *backer);
735d7efb 463
46c88433
EJ
464struct ofproto_dpif {
465 struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
466 struct ofproto up;
467 struct dpif_backer *backer;
468
469 /* Special OpenFlow rules. */
470 struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
471 struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
472 struct rule_dpif *drop_frags_rule; /* Used in OFPC_FRAG_DROP mode. */
473
474 /* Bridging. */
475 struct netflow *netflow;
476 struct dpif_sflow *sflow;
477 struct dpif_ipfix *ipfix;
478 struct hmap bundles; /* Contains "struct ofbundle"s. */
479 struct mac_learning *ml;
480 bool has_bonded_bundles;
481 struct mbridge *mbridge;
482
483 /* Facets. */
484 struct classifier facets; /* Contains 'struct facet's. */
485 long long int consistency_rl;
486
46c88433
EJ
487 /* Support for debugging async flow mods. */
488 struct list completions;
489
490 struct netdev_stats stats; /* To account packets generated and consumed in
491 * userspace. */
492
493 /* Spanning tree. */
494 struct stp *stp;
495 long long int stp_last_tick;
496
497 /* VLAN splinters. */
13501305
EJ
498 struct ovs_mutex vsp_mutex;
499 struct hmap realdev_vid_map OVS_GUARDED; /* (realdev,vid) -> vlandev. */
500 struct hmap vlandev_map OVS_GUARDED; /* vlandev -> (realdev,vid). */
46c88433
EJ
501
502 /* Ports. */
503 struct sset ports; /* Set of standard port names. */
504 struct sset ghost_ports; /* Ports with no datapath port. */
505 struct sset port_poll_set; /* Queued names for port_poll() reply. */
506 int port_poll_errno; /* Last errno for port_poll() reply. */
507
508 /* Per ofproto's dpif stats. */
509 uint64_t n_hit;
510 uint64_t n_missed;
3d9c5e58
EJ
511
512 /* Work queues. */
513 struct ovs_mutex flow_mod_mutex;
514 struct list flow_mods OVS_GUARDED;
515 size_t n_flow_mods OVS_GUARDED;
ada3a58d
EJ
516
517 struct ovs_mutex pin_mutex;
518 struct list pins OVS_GUARDED;
519 size_t n_pins OVS_GUARDED;
46c88433
EJ
520};
521
7ee20df1
BP
522/* Defer flow mod completion until "ovs-appctl ofproto/unclog"? (Useful only
523 * for debugging the asynchronous flow_mod implementation.) */
524static bool clogged;
525
6b35e630
JP
526/* By default, flows in the datapath are wildcarded (megaflows). They
527 * may be disabled with the "ovs-appctl dpif/disable-megaflows" command. */
528static bool enable_megaflows = true;
529
b44a10b7
BP
530/* All existing ofproto_dpif instances, indexed by ->up.name. */
531static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
532
abe529af
BP
533static void ofproto_dpif_unixctl_init(void);
534
46c88433
EJ
535static inline struct ofproto_dpif *
536ofproto_dpif_cast(const struct ofproto *ofproto)
537{
538 ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
539 return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
540}
541
542static struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *ofproto,
543 ofp_port_t ofp_port);
ade6ad9c
EJ
544static void ofproto_trace(struct ofproto_dpif *, const struct flow *,
545 const struct ofpbuf *packet, struct ds *);
46c88433 546
501f8d1f 547/* Upcalls. */
e1ec7dd4 548static void handle_upcalls(struct dpif_backer *);
abe529af
BP
549
550/* Flow expiration. */
acf60855 551static int expire(struct dpif_backer *);
abe529af 552
6fca1ffb
BP
553/* NetFlow. */
554static void send_netflow_active_timeouts(struct ofproto_dpif *);
555
abe529af 556/* Utilities. */
52a90c29 557static int send_packet(const struct ofport_dpif *, struct ofpbuf *packet);
9583bc14 558
abe529af
BP
559/* Global variables. */
560static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
acf60855
JP
561
562/* Initial mappings of port to bridge mappings. */
563static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
46c88433 564
3d9c5e58
EJ
565/* Executes and takes ownership of 'fm'. */
566void
46c88433
EJ
567ofproto_dpif_flow_mod(struct ofproto_dpif *ofproto,
568 struct ofputil_flow_mod *fm)
569{
3d9c5e58
EJ
570 ovs_mutex_lock(&ofproto->flow_mod_mutex);
571 if (ofproto->n_flow_mods > 1024) {
572 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
573 COVERAGE_INC(flow_mod_overflow);
574 free(fm->ofpacts);
575 free(fm);
576 return;
577 }
578
579 list_push_back(&ofproto->flow_mods, &fm->list_node);
580 ofproto->n_flow_mods++;
581 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
46c88433
EJ
582}
583
d5ff77e2
YT
584/* Appends 'pin' to the queue of "packet ins" to be sent to the controller.
585 * Takes ownership of 'pin' and pin->packet. */
46c88433
EJ
586void
587ofproto_dpif_send_packet_in(struct ofproto_dpif *ofproto,
588 struct ofputil_packet_in *pin)
589{
ada3a58d
EJ
590 ovs_mutex_lock(&ofproto->pin_mutex);
591 if (ofproto->n_pins > 1024) {
592 ovs_mutex_unlock(&ofproto->pin_mutex);
593 COVERAGE_INC(packet_in_overflow);
594 free(CONST_CAST(void *, pin->packet));
595 free(pin);
596 return;
597 }
598
599 list_push_back(&ofproto->pins, &pin->list_node);
600 ofproto->n_pins++;
601 ovs_mutex_unlock(&ofproto->pin_mutex);
46c88433 602}
abe529af
BP
603\f
604/* Factory functions. */
605
b0408fca 606static void
acf60855 607init(const struct shash *iface_hints)
b0408fca 608{
acf60855
JP
609 struct shash_node *node;
610
611 /* Make a local copy, since we don't own 'iface_hints' elements. */
612 SHASH_FOR_EACH(node, iface_hints) {
613 const struct iface_hint *orig_hint = node->data;
614 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
615
616 new_hint->br_name = xstrdup(orig_hint->br_name);
617 new_hint->br_type = xstrdup(orig_hint->br_type);
618 new_hint->ofp_port = orig_hint->ofp_port;
619
620 shash_add(&init_ofp_ports, node->name, new_hint);
621 }
b0408fca
JP
622}
623
abe529af
BP
624static void
625enumerate_types(struct sset *types)
626{
627 dp_enumerate_types(types);
628}
629
630static int
631enumerate_names(const char *type, struct sset *names)
632{
acf60855
JP
633 struct ofproto_dpif *ofproto;
634
635 sset_clear(names);
636 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
637 if (strcmp(type, ofproto->up.type)) {
638 continue;
639 }
640 sset_add(names, ofproto->up.name);
641 }
642
643 return 0;
abe529af
BP
644}
645
646static int
647del(const char *type, const char *name)
648{
649 struct dpif *dpif;
650 int error;
651
652 error = dpif_open(name, type, &dpif);
653 if (!error) {
654 error = dpif_delete(dpif);
655 dpif_close(dpif);
656 }
657 return error;
658}
659\f
0aeaabc8
JP
660static const char *
661port_open_type(const char *datapath_type, const char *port_type)
662{
663 return dpif_port_open_type(datapath_type, port_type);
664}
665
acf60855
JP
666/* Type functions. */
667
36beb9be
BP
668static void process_dpif_port_changes(struct dpif_backer *);
669static void process_dpif_all_ports_changed(struct dpif_backer *);
670static void process_dpif_port_change(struct dpif_backer *,
671 const char *devname);
672static void process_dpif_port_error(struct dpif_backer *, int error);
673
476cb42a
BP
674static struct ofproto_dpif *
675lookup_ofproto_dpif_by_port_name(const char *name)
676{
677 struct ofproto_dpif *ofproto;
678
679 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
680 if (sset_contains(&ofproto->ports, name)) {
681 return ofproto;
682 }
683 }
684
685 return NULL;
686}
687
acf60855
JP
688static int
689type_run(const char *type)
690{
e20b5746 691 static long long int push_timer = LLONG_MIN;
acf60855 692 struct dpif_backer *backer;
acf60855
JP
693
694 backer = shash_find_data(&all_dpif_backers, type);
695 if (!backer) {
696 /* This is not necessarily a problem, since backers are only
697 * created on demand. */
698 return 0;
699 }
700
701 dpif_run(backer->dpif);
702
e20b5746
EJ
703 /* The most natural place to push facet statistics is when they're pulled
704 * from the datapath. However, when there are many flows in the datapath,
705 * this expensive operation can occur so frequently, that it reduces our
706 * ability to quickly set up flows. To reduce the cost, we push statistics
707 * here instead. */
708 if (time_msec() > push_timer) {
709 push_timer = time_msec() + 2000;
710 push_all_stats();
711 }
712
40358701
GS
713 /* If vswitchd started with other_config:flow_restore_wait set as "true",
714 * and the configuration has now changed to "false", enable receiving
715 * packets from the datapath. */
716 if (!backer->recv_set_enable && !ofproto_get_flow_restore_wait()) {
36beb9be
BP
717 int error;
718
40358701
GS
719 backer->recv_set_enable = true;
720
721 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
722 if (error) {
e1ec7dd4 723 udpif_recv_set(backer->udpif, 0, false);
40358701
GS
724 VLOG_ERR("Failed to enable receiving packets in dpif.");
725 return error;
726 }
448a4b2f
AW
727 udpif_recv_set(backer->udpif, n_handler_threads,
728 backer->recv_set_enable);
40358701
GS
729 dpif_flow_flush(backer->dpif);
730 backer->need_revalidate = REV_RECONFIGURE;
731 }
732
448a4b2f
AW
733 /* If the n_handler_threads is reconfigured, call udpif_recv_set()
734 * to reset the handler threads. */
735 if (backer->n_handler_threads != n_handler_threads) {
736 udpif_recv_set(backer->udpif, n_handler_threads,
737 backer->recv_set_enable);
738 backer->n_handler_threads = n_handler_threads;
739 }
740
a1616063 741 if (backer->need_revalidate) {
2cc3c58e 742 struct ofproto_dpif *ofproto;
a614d823
KM
743 struct simap_node *node;
744 struct simap tmp_backers;
745
746 /* Handle tunnel garbage collection. */
747 simap_init(&tmp_backers);
748 simap_swap(&backer->tnl_backers, &tmp_backers);
749
750 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
751 struct ofport_dpif *iter;
752
753 if (backer != ofproto->backer) {
754 continue;
755 }
756
757 HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
3aa30359 758 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
a614d823
KM
759 const char *dp_port;
760
42943cde 761 if (!iter->is_tunnel) {
a614d823
KM
762 continue;
763 }
764
3aa30359
BP
765 dp_port = netdev_vport_get_dpif_port(iter->up.netdev,
766 namebuf, sizeof namebuf);
a614d823
KM
767 node = simap_find(&tmp_backers, dp_port);
768 if (node) {
769 simap_put(&backer->tnl_backers, dp_port, node->data);
770 simap_delete(&tmp_backers, node);
771 node = simap_find(&backer->tnl_backers, dp_port);
772 } else {
773 node = simap_find(&backer->tnl_backers, dp_port);
774 if (!node) {
4e022ec0 775 odp_port_t odp_port = ODPP_NONE;
a614d823
KM
776
777 if (!dpif_port_add(backer->dpif, iter->up.netdev,
778 &odp_port)) {
4e022ec0
AW
779 simap_put(&backer->tnl_backers, dp_port,
780 odp_to_u32(odp_port));
a614d823
KM
781 node = simap_find(&backer->tnl_backers, dp_port);
782 }
783 }
784 }
785
4e022ec0 786 iter->odp_port = node ? u32_to_odp(node->data) : ODPP_NONE;
42943cde
EJ
787 if (tnl_port_reconfigure(iter, iter->up.netdev,
788 iter->odp_port)) {
a614d823
KM
789 backer->need_revalidate = REV_RECONFIGURE;
790 }
791 }
792 }
793
794 SIMAP_FOR_EACH (node, &tmp_backers) {
4e022ec0 795 dpif_port_del(backer->dpif, u32_to_odp(node->data));
a614d823
KM
796 }
797 simap_destroy(&tmp_backers);
2cc3c58e
EJ
798
799 switch (backer->need_revalidate) {
800 case REV_RECONFIGURE: COVERAGE_INC(rev_reconfigure); break;
801 case REV_STP: COVERAGE_INC(rev_stp); break;
4a1b8f30 802 case REV_BOND: COVERAGE_INC(rev_bond); break;
2cc3c58e
EJ
803 case REV_PORT_TOGGLED: COVERAGE_INC(rev_port_toggled); break;
804 case REV_FLOW_TABLE: COVERAGE_INC(rev_flow_table); break;
30618594 805 case REV_MAC_LEARNING: COVERAGE_INC(rev_mac_learning); break;
2cc3c58e
EJ
806 case REV_INCONSISTENCY: COVERAGE_INC(rev_inconsistency); break;
807 }
f728af2e
BP
808 backer->need_revalidate = 0;
809
a1616063
EJ
810 /* Clear the drop_keys in case we should now be accepting some
811 * formerly dropped flows. */
812 drop_key_clear(backer);
813
2cc3c58e 814 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
f231418e 815 struct facet *facet, *next;
a1616063 816 struct ofport_dpif *ofport;
bcd2633a 817 struct cls_cursor cursor;
a1616063 818 struct ofbundle *bundle;
2cc3c58e
EJ
819
820 if (ofproto->backer != backer) {
821 continue;
822 }
823
dc24a00f 824 ovs_rwlock_wrlock(&xlate_rwlock);
89a8a7f0 825 xlate_ofproto_set(ofproto, ofproto->up.name,
ec89fc6f
EJ
826 ofproto->backer->dpif, ofproto->miss_rule,
827 ofproto->no_packet_in_rule, ofproto->ml,
9d189a50
EJ
828 ofproto->stp, ofproto->mbridge,
829 ofproto->sflow, ofproto->ipfix,
830 ofproto->up.frag_handling,
a1616063
EJ
831 ofproto->up.forward_bpdu,
832 connmgr_has_in_band(ofproto->up.connmgr),
9d189a50 833 ofproto->netflow != NULL);
46c88433 834
a1616063
EJ
835 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
836 xlate_bundle_set(ofproto, bundle, bundle->name,
837 bundle->vlan_mode, bundle->vlan,
838 bundle->trunks, bundle->use_priority_tags,
839 bundle->bond, bundle->lacp,
840 bundle->floodable);
841 }
842
843 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
9d189a50
EJ
844 int stp_port = ofport->stp_port
845 ? stp_port_no(ofport->stp_port)
92cf817b 846 : -1;
a1616063
EJ
847 xlate_ofport_set(ofproto, ofport->bundle, ofport,
848 ofport->up.ofp_port, ofport->odp_port,
849 ofport->up.netdev, ofport->cfm,
9d189a50 850 ofport->bfd, ofport->peer, stp_port,
55954f6e 851 ofport->qdscp, ofport->n_qdscp,
9d189a50
EJ
852 ofport->up.pp.config, ofport->is_tunnel,
853 ofport->may_enable);
46c88433 854 }
dc24a00f 855 ovs_rwlock_unlock(&xlate_rwlock);
46c88433 856
0b4f2078
EJ
857 /* Only ofproto-dpif cares about the facet classifier so we just
858 * lock cls_cursor_init() to appease the thread safety analysis. */
859 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a 860 cls_cursor_init(&cursor, &ofproto->facets, NULL);
0b4f2078 861 ovs_rwlock_unlock(&ofproto->facets.rwlock);
bcd2633a 862 CLS_CURSOR_FOR_EACH_SAFE (facet, next, cr, &cursor) {
a1616063
EJ
863 facet_revalidate(facet);
864 run_fast_rl();
2cc3c58e
EJ
865 }
866 }
e1ec7dd4
EJ
867
868 udpif_revalidate(backer->udpif);
2cc3c58e
EJ
869 }
870
40358701
GS
871 if (!backer->recv_set_enable) {
872 /* Wake up before a max of 1000ms. */
873 timer_set_duration(&backer->next_expiration, 1000);
874 } else if (timer_expired(&backer->next_expiration)) {
acf60855
JP
875 int delay = expire(backer);
876 timer_set_duration(&backer->next_expiration, delay);
877 }
878
36beb9be 879 process_dpif_port_changes(backer);
acf60855 880
04d08d54
EJ
881 if (backer->governor) {
882 size_t n_subfacets;
883
884 governor_run(backer->governor);
885
886 /* If the governor has shrunk to its minimum size and the number of
887 * subfacets has dwindled, then drop the governor entirely.
888 *
889 * For hysteresis, the number of subfacets to drop the governor is
890 * smaller than the number needed to trigger its creation. */
891 n_subfacets = hmap_count(&backer->subfacets);
892 if (n_subfacets * 4 < flow_eviction_threshold
893 && governor_is_idle(backer->governor)) {
894 governor_destroy(backer->governor);
895 backer->governor = NULL;
896 }
897 }
898
acf60855
JP
899 return 0;
900}
901
36beb9be
BP
902/* Check for and handle port changes in 'backer''s dpif. */
903static void
904process_dpif_port_changes(struct dpif_backer *backer)
905{
906 for (;;) {
907 char *devname;
908 int error;
909
910 error = dpif_port_poll(backer->dpif, &devname);
911 switch (error) {
912 case EAGAIN:
913 return;
914
915 case ENOBUFS:
916 process_dpif_all_ports_changed(backer);
917 break;
918
919 case 0:
920 process_dpif_port_change(backer, devname);
921 free(devname);
922 break;
923
924 default:
925 process_dpif_port_error(backer, error);
926 break;
927 }
928 }
929}
930
931static void
932process_dpif_all_ports_changed(struct dpif_backer *backer)
933{
934 struct ofproto_dpif *ofproto;
935 struct dpif_port dpif_port;
936 struct dpif_port_dump dump;
937 struct sset devnames;
938 const char *devname;
939
940 sset_init(&devnames);
941 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
942 if (ofproto->backer == backer) {
943 struct ofport *ofport;
944
945 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
946 sset_add(&devnames, netdev_get_name(ofport->netdev));
947 }
948 }
949 }
950 DPIF_PORT_FOR_EACH (&dpif_port, &dump, backer->dpif) {
951 sset_add(&devnames, dpif_port.name);
952 }
953
954 SSET_FOR_EACH (devname, &devnames) {
955 process_dpif_port_change(backer, devname);
956 }
957 sset_destroy(&devnames);
958}
959
960static void
961process_dpif_port_change(struct dpif_backer *backer, const char *devname)
962{
963 struct ofproto_dpif *ofproto;
964 struct dpif_port port;
965
966 /* Don't report on the datapath's device. */
967 if (!strcmp(devname, dpif_base_name(backer->dpif))) {
968 return;
969 }
970
971 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
972 &all_ofproto_dpifs) {
973 if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
974 return;
975 }
976 }
977
978 ofproto = lookup_ofproto_dpif_by_port_name(devname);
979 if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
980 /* The port was removed. If we know the datapath,
981 * report it through poll_set(). If we don't, it may be
982 * notifying us of a removal we initiated, so ignore it.
983 * If there's a pending ENOBUFS, let it stand, since
984 * everything will be reevaluated. */
985 if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
986 sset_add(&ofproto->port_poll_set, devname);
987 ofproto->port_poll_errno = 0;
988 }
989 } else if (!ofproto) {
990 /* The port was added, but we don't know with which
991 * ofproto we should associate it. Delete it. */
992 dpif_port_del(backer->dpif, port.port_no);
74cc3969
BP
993 } else {
994 struct ofport_dpif *ofport;
995
996 ofport = ofport_dpif_cast(shash_find_data(
997 &ofproto->up.port_by_name, devname));
998 if (ofport
999 && ofport->odp_port != port.port_no
1000 && !odp_port_to_ofport(backer, port.port_no))
1001 {
1002 /* 'ofport''s datapath port number has changed from
1003 * 'ofport->odp_port' to 'port.port_no'. Update our internal data
1004 * structures to match. */
8449c4d6 1005 ovs_rwlock_wrlock(&backer->odp_to_ofport_lock);
74cc3969
BP
1006 hmap_remove(&backer->odp_to_ofport_map, &ofport->odp_port_node);
1007 ofport->odp_port = port.port_no;
1008 hmap_insert(&backer->odp_to_ofport_map, &ofport->odp_port_node,
1009 hash_odp_port(port.port_no));
8449c4d6 1010 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
74cc3969
BP
1011 backer->need_revalidate = REV_RECONFIGURE;
1012 }
36beb9be
BP
1013 }
1014 dpif_port_destroy(&port);
1015}
1016
1017/* Propagate 'error' to all ofprotos based on 'backer'. */
1018static void
1019process_dpif_port_error(struct dpif_backer *backer, int error)
1020{
1021 struct ofproto_dpif *ofproto;
1022
1023 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1024 if (ofproto->backer == backer) {
1025 sset_clear(&ofproto->port_poll_set);
1026 ofproto->port_poll_errno = error;
1027 }
1028 }
1029}
1030
acf60855 1031static int
e1ec7dd4 1032dpif_backer_run_fast(struct dpif_backer *backer)
acf60855 1033{
e1ec7dd4
EJ
1034 udpif_run(backer->udpif);
1035 handle_upcalls(backer);
acf60855
JP
1036
1037 return 0;
1038}
1039
8fa4d1d0
EJ
1040static int
1041type_run_fast(const char *type)
1042{
1043 struct dpif_backer *backer;
1044
1045 backer = shash_find_data(&all_dpif_backers, type);
1046 if (!backer) {
1047 /* This is not necessarily a problem, since backers are only
1048 * created on demand. */
1049 return 0;
1050 }
1051
e1ec7dd4 1052 return dpif_backer_run_fast(backer);
8fa4d1d0
EJ
1053}
1054
1055static void
1056run_fast_rl(void)
1057{
1058 static long long int port_rl = LLONG_MIN;
8fa4d1d0
EJ
1059
1060 if (time_msec() >= port_rl) {
1061 struct ofproto_dpif *ofproto;
8fa4d1d0
EJ
1062
1063 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3d9c5e58 1064 run_fast(&ofproto->up);
8fa4d1d0
EJ
1065 }
1066 port_rl = time_msec() + 200;
1067 }
8fa4d1d0
EJ
1068}
1069
acf60855
JP
1070static void
1071type_wait(const char *type)
1072{
1073 struct dpif_backer *backer;
1074
1075 backer = shash_find_data(&all_dpif_backers, type);
1076 if (!backer) {
1077 /* This is not necessarily a problem, since backers are only
1078 * created on demand. */
1079 return;
1080 }
1081
04d08d54
EJ
1082 if (backer->governor) {
1083 governor_wait(backer->governor);
1084 }
1085
acf60855 1086 timer_wait(&backer->next_expiration);
c0365fc8
YT
1087 dpif_wait(backer->dpif);
1088 udpif_wait(backer->udpif);
acf60855
JP
1089}
1090\f
abe529af
BP
1091/* Basic life-cycle. */
1092
c57b2226
BP
1093static int add_internal_flows(struct ofproto_dpif *);
1094
abe529af
BP
1095static struct ofproto *
1096alloc(void)
1097{
1098 struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
1099 return &ofproto->up;
1100}
1101
1102static void
1103dealloc(struct ofproto *ofproto_)
1104{
1105 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1106 free(ofproto);
1107}
1108
acf60855
JP
1109static void
1110close_dpif_backer(struct dpif_backer *backer)
1111{
1112 struct shash_node *node;
1113
cb22974d 1114 ovs_assert(backer->refcount > 0);
acf60855
JP
1115
1116 if (--backer->refcount) {
1117 return;
1118 }
1119
8f73d537
EJ
1120 drop_key_clear(backer);
1121 hmap_destroy(&backer->drop_keys);
1122
7d82ab2e 1123 simap_destroy(&backer->tnl_backers);
8449c4d6 1124 ovs_rwlock_destroy(&backer->odp_to_ofport_lock);
acf60855
JP
1125 hmap_destroy(&backer->odp_to_ofport_map);
1126 node = shash_find(&all_dpif_backers, backer->type);
1127 free(backer->type);
1128 shash_delete(&all_dpif_backers, node);
e1ec7dd4 1129 udpif_destroy(backer->udpif);
acf60855
JP
1130 dpif_close(backer->dpif);
1131
04d08d54
EJ
1132 ovs_assert(hmap_is_empty(&backer->subfacets));
1133 hmap_destroy(&backer->subfacets);
1134 governor_destroy(backer->governor);
1135
acf60855
JP
1136 free(backer);
1137}
1138
1139/* Datapath port slated for removal from datapath. */
1140struct odp_garbage {
1141 struct list list_node;
4e022ec0 1142 odp_port_t odp_port;
acf60855
JP
1143};
1144
1145static int
1146open_dpif_backer(const char *type, struct dpif_backer **backerp)
1147{
1148 struct dpif_backer *backer;
1149 struct dpif_port_dump port_dump;
1150 struct dpif_port port;
1151 struct shash_node *node;
1152 struct list garbage_list;
1153 struct odp_garbage *garbage, *next;
1154 struct sset names;
1155 char *backer_name;
1156 const char *name;
1157 int error;
1158
1159 backer = shash_find_data(&all_dpif_backers, type);
1160 if (backer) {
1161 backer->refcount++;
1162 *backerp = backer;
1163 return 0;
1164 }
1165
1166 backer_name = xasprintf("ovs-%s", type);
1167
1168 /* Remove any existing datapaths, since we assume we're the only
1169 * userspace controlling the datapath. */
1170 sset_init(&names);
1171 dp_enumerate_names(type, &names);
1172 SSET_FOR_EACH(name, &names) {
1173 struct dpif *old_dpif;
1174
1175 /* Don't remove our backer if it exists. */
1176 if (!strcmp(name, backer_name)) {
1177 continue;
1178 }
1179
1180 if (dpif_open(name, type, &old_dpif)) {
1181 VLOG_WARN("couldn't open old datapath %s to remove it", name);
1182 } else {
1183 dpif_delete(old_dpif);
1184 dpif_close(old_dpif);
1185 }
1186 }
1187 sset_destroy(&names);
1188
1189 backer = xmalloc(sizeof *backer);
1190
1191 error = dpif_create_and_open(backer_name, type, &backer->dpif);
1192 free(backer_name);
1193 if (error) {
1194 VLOG_ERR("failed to open datapath of type %s: %s", type,
10a89ef0 1195 ovs_strerror(error));
4c1b1289 1196 free(backer);
acf60855
JP
1197 return error;
1198 }
e1ec7dd4 1199 backer->udpif = udpif_create(backer, backer->dpif);
acf60855
JP
1200
1201 backer->type = xstrdup(type);
04d08d54 1202 backer->governor = NULL;
acf60855
JP
1203 backer->refcount = 1;
1204 hmap_init(&backer->odp_to_ofport_map);
8449c4d6 1205 ovs_rwlock_init(&backer->odp_to_ofport_lock);
8f73d537 1206 hmap_init(&backer->drop_keys);
04d08d54 1207 hmap_init(&backer->subfacets);
acf60855 1208 timer_set_duration(&backer->next_expiration, 1000);
2cc3c58e 1209 backer->need_revalidate = 0;
7d82ab2e 1210 simap_init(&backer->tnl_backers);
40358701 1211 backer->recv_set_enable = !ofproto_get_flow_restore_wait();
acf60855
JP
1212 *backerp = backer;
1213
40358701
GS
1214 if (backer->recv_set_enable) {
1215 dpif_flow_flush(backer->dpif);
1216 }
acf60855
JP
1217
1218 /* Loop through the ports already on the datapath and remove any
1219 * that we don't need anymore. */
1220 list_init(&garbage_list);
1221 dpif_port_dump_start(&port_dump, backer->dpif);
1222 while (dpif_port_dump_next(&port_dump, &port)) {
1223 node = shash_find(&init_ofp_ports, port.name);
1224 if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
1225 garbage = xmalloc(sizeof *garbage);
1226 garbage->odp_port = port.port_no;
1227 list_push_front(&garbage_list, &garbage->list_node);
1228 }
1229 }
1230 dpif_port_dump_done(&port_dump);
1231
1232 LIST_FOR_EACH_SAFE (garbage, next, list_node, &garbage_list) {
1233 dpif_port_del(backer->dpif, garbage->odp_port);
1234 list_remove(&garbage->list_node);
1235 free(garbage);
1236 }
1237
1238 shash_add(&all_dpif_backers, type, backer);
1239
40358701 1240 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
acf60855
JP
1241 if (error) {
1242 VLOG_ERR("failed to listen on datapath of type %s: %s",
10a89ef0 1243 type, ovs_strerror(error));
acf60855
JP
1244 close_dpif_backer(backer);
1245 return error;
1246 }
448a4b2f
AW
1247 udpif_recv_set(backer->udpif, n_handler_threads,
1248 backer->recv_set_enable);
1249 backer->n_handler_threads = n_handler_threads;
acf60855 1250
dc54ef36
EJ
1251 backer->max_n_subfacet = 0;
1252 backer->created = time_msec();
1253 backer->last_minute = backer->created;
1254 memset(&backer->hourly, 0, sizeof backer->hourly);
1255 memset(&backer->daily, 0, sizeof backer->daily);
1256 memset(&backer->lifetime, 0, sizeof backer->lifetime);
1257 backer->subfacet_add_count = 0;
1258 backer->subfacet_del_count = 0;
1259 backer->total_subfacet_add_count = 0;
1260 backer->total_subfacet_del_count = 0;
1261 backer->avg_n_subfacet = 0;
1262 backer->avg_subfacet_life = 0;
1263
acf60855
JP
1264 return error;
1265}
1266
abe529af 1267static int
0f5f95a9 1268construct(struct ofproto *ofproto_)
abe529af
BP
1269{
1270 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 1271 struct shash_node *node, *next;
1dd16b9a 1272 uint32_t max_ports;
abe529af 1273 int error;
abe529af 1274
acf60855 1275 error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
abe529af 1276 if (error) {
abe529af
BP
1277 return error;
1278 }
1279
acf60855 1280 max_ports = dpif_get_max_ports(ofproto->backer->dpif);
1dd16b9a 1281 ofproto_init_max_ports(ofproto_, MIN(max_ports, ofp_to_u16(OFPP_MAX)));
91858960 1282
abe529af
BP
1283 ofproto->netflow = NULL;
1284 ofproto->sflow = NULL;
29089a54 1285 ofproto->ipfix = NULL;
21f7563c 1286 ofproto->stp = NULL;
abe529af 1287 hmap_init(&ofproto->bundles);
e764773c 1288 ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
ec7ceaed 1289 ofproto->mbridge = mbridge_create();
abe529af 1290 ofproto->has_bonded_bundles = false;
834d6caf 1291 ovs_mutex_init(&ofproto->vsp_mutex);
abe529af 1292
bcd2633a 1293 classifier_init(&ofproto->facets);
4d2a0f39 1294 ofproto->consistency_rl = LLONG_MIN;
54a9cbc9 1295
7ee20df1
BP
1296 list_init(&ofproto->completions);
1297
834d6caf 1298 ovs_mutex_init(&ofproto->flow_mod_mutex);
3d9c5e58
EJ
1299 ovs_mutex_lock(&ofproto->flow_mod_mutex);
1300 list_init(&ofproto->flow_mods);
1301 ofproto->n_flow_mods = 0;
1302 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1303
834d6caf 1304 ovs_mutex_init(&ofproto->pin_mutex);
ada3a58d
EJ
1305 ovs_mutex_lock(&ofproto->pin_mutex);
1306 list_init(&ofproto->pins);
1307 ofproto->n_pins = 0;
1308 ovs_mutex_unlock(&ofproto->pin_mutex);
1309
abe529af
BP
1310 ofproto_dpif_unixctl_init();
1311
52a90c29
BP
1312 hmap_init(&ofproto->vlandev_map);
1313 hmap_init(&ofproto->realdev_vid_map);
1314
acf60855 1315 sset_init(&ofproto->ports);
0a740f48 1316 sset_init(&ofproto->ghost_ports);
acf60855
JP
1317 sset_init(&ofproto->port_poll_set);
1318 ofproto->port_poll_errno = 0;
1319
1320 SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
4f9e08a5 1321 struct iface_hint *iface_hint = node->data;
acf60855
JP
1322
1323 if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1324 /* Check if the datapath already has this port. */
1325 if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1326 sset_add(&ofproto->ports, node->name);
1327 }
1328
1329 free(iface_hint->br_name);
1330 free(iface_hint->br_type);
4f9e08a5 1331 free(iface_hint);
acf60855
JP
1332 shash_delete(&init_ofp_ports, node);
1333 }
1334 }
e1b1d06a 1335
b44a10b7
BP
1336 hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1337 hash_string(ofproto->up.name, 0));
6527c598 1338 memset(&ofproto->stats, 0, sizeof ofproto->stats);
0f5f95a9
BP
1339
1340 ofproto_init_tables(ofproto_, N_TABLES);
c57b2226
BP
1341 error = add_internal_flows(ofproto);
1342 ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1343
735d7efb
AZ
1344 ofproto->n_hit = 0;
1345 ofproto->n_missed = 0;
1346
c57b2226
BP
1347 return error;
1348}
1349
1350static int
1351add_internal_flow(struct ofproto_dpif *ofproto, int id,
f25d0cf3 1352 const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
c57b2226
BP
1353{
1354 struct ofputil_flow_mod fm;
1355 int error;
1356
81a76618
BP
1357 match_init_catchall(&fm.match);
1358 fm.priority = 0;
1359 match_set_reg(&fm.match, 0, id);
623e1caf 1360 fm.new_cookie = htonll(0);
c57b2226
BP
1361 fm.cookie = htonll(0);
1362 fm.cookie_mask = htonll(0);
23342857 1363 fm.modify_cookie = false;
c57b2226
BP
1364 fm.table_id = TBL_INTERNAL;
1365 fm.command = OFPFC_ADD;
1366 fm.idle_timeout = 0;
1367 fm.hard_timeout = 0;
1368 fm.buffer_id = 0;
1369 fm.out_port = 0;
1370 fm.flags = 0;
f25d0cf3
BP
1371 fm.ofpacts = ofpacts->data;
1372 fm.ofpacts_len = ofpacts->size;
c57b2226
BP
1373
1374 error = ofproto_flow_mod(&ofproto->up, &fm);
1375 if (error) {
1376 VLOG_ERR_RL(&rl, "failed to add internal flow %d (%s)",
1377 id, ofperr_to_string(error));
1378 return error;
1379 }
1380
ad3efdcb
EJ
1381 if (rule_dpif_lookup_in_table(ofproto, &fm.match.flow, NULL, TBL_INTERNAL,
1382 rulep)) {
70742c7f 1383 rule_dpif_release(*rulep);
ad3efdcb
EJ
1384 } else {
1385 NOT_REACHED();
1386 }
0f5f95a9 1387
abe529af
BP
1388 return 0;
1389}
1390
c57b2226
BP
1391static int
1392add_internal_flows(struct ofproto_dpif *ofproto)
1393{
f25d0cf3
BP
1394 struct ofpact_controller *controller;
1395 uint64_t ofpacts_stub[128 / 8];
1396 struct ofpbuf ofpacts;
c57b2226
BP
1397 int error;
1398 int id;
1399
f25d0cf3 1400 ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
c57b2226
BP
1401 id = 1;
1402
f25d0cf3
BP
1403 controller = ofpact_put_CONTROLLER(&ofpacts);
1404 controller->max_len = UINT16_MAX;
1405 controller->controller_id = 0;
1406 controller->reason = OFPR_NO_MATCH;
1407 ofpact_pad(&ofpacts);
1408
1409 error = add_internal_flow(ofproto, id++, &ofpacts, &ofproto->miss_rule);
c57b2226
BP
1410 if (error) {
1411 return error;
1412 }
1413
f25d0cf3
BP
1414 ofpbuf_clear(&ofpacts);
1415 error = add_internal_flow(ofproto, id++, &ofpacts,
c57b2226 1416 &ofproto->no_packet_in_rule);
7fd51d39
BP
1417 if (error) {
1418 return error;
1419 }
1420
1421 error = add_internal_flow(ofproto, id++, &ofpacts,
1422 &ofproto->drop_frags_rule);
c57b2226
BP
1423 return error;
1424}
1425
7ee20df1
BP
1426static void
1427complete_operations(struct ofproto_dpif *ofproto)
1428{
1429 struct dpif_completion *c, *next;
1430
1431 LIST_FOR_EACH_SAFE (c, next, list_node, &ofproto->completions) {
1432 ofoperation_complete(c->op, 0);
1433 list_remove(&c->list_node);
1434 free(c);
1435 }
1436}
1437
abe529af
BP
1438static void
1439destruct(struct ofproto *ofproto_)
1440{
1441 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7ee20df1 1442 struct rule_dpif *rule, *next_rule;
24623c91 1443 struct ofputil_packet_in *pin, *next_pin;
3d9c5e58 1444 struct ofputil_flow_mod *fm, *next_fm;
d6aa7ad6
EJ
1445 struct facet *facet, *next_facet;
1446 struct cls_cursor cursor;
d0918789 1447 struct oftable *table;
abe529af 1448
d6aa7ad6
EJ
1449 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1450 cls_cursor_init(&cursor, &ofproto->facets, NULL);
1451 ovs_rwlock_unlock(&ofproto->facets.rwlock);
1452 CLS_CURSOR_FOR_EACH_SAFE (facet, next_facet, cr, &cursor) {
1453 facet_remove(facet);
1454 }
1455
875b94ed 1456 ofproto->backer->need_revalidate = REV_RECONFIGURE;
dc24a00f 1457 ovs_rwlock_wrlock(&xlate_rwlock);
46c88433 1458 xlate_remove_ofproto(ofproto);
dc24a00f 1459 ovs_rwlock_unlock(&xlate_rwlock);
46c88433 1460
1fe409d5
BP
1461 flow_miss_batch_ofproto_destroyed(ofproto->backer->udpif, ofproto);
1462
b44a10b7 1463 hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
7ee20df1
BP
1464 complete_operations(ofproto);
1465
0697b5c3
BP
1466 OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
1467 struct cls_cursor cursor;
1468
0b4f2078 1469 ovs_rwlock_wrlock(&table->cls.rwlock);
d0918789 1470 cls_cursor_init(&cursor, &table->cls, NULL);
0697b5c3 1471 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
8037acb4 1472 ofproto_rule_delete(&ofproto->up, &table->cls, &rule->up);
0697b5c3 1473 }
0b4f2078 1474 ovs_rwlock_unlock(&table->cls.rwlock);
7ee20df1 1475 }
8037acb4 1476 complete_operations(ofproto);
7ee20df1 1477
3d9c5e58
EJ
1478 ovs_mutex_lock(&ofproto->flow_mod_mutex);
1479 LIST_FOR_EACH_SAFE (fm, next_fm, list_node, &ofproto->flow_mods) {
1480 list_remove(&fm->list_node);
1481 ofproto->n_flow_mods--;
1482 free(fm->ofpacts);
1483 free(fm);
1484 }
1485 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1486 ovs_mutex_destroy(&ofproto->flow_mod_mutex);
1487
ada3a58d
EJ
1488 ovs_mutex_lock(&ofproto->pin_mutex);
1489 LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &ofproto->pins) {
1490 list_remove(&pin->list_node);
1491 ofproto->n_pins--;
24623c91 1492 free(CONST_CAST(void *, pin->packet));
ada3a58d
EJ
1493 free(pin);
1494 }
1495 ovs_mutex_unlock(&ofproto->pin_mutex);
1496 ovs_mutex_destroy(&ofproto->pin_mutex);
1497
ec7ceaed 1498 mbridge_unref(ofproto->mbridge);
abe529af
BP
1499
1500 netflow_destroy(ofproto->netflow);
9723bcce 1501 dpif_sflow_unref(ofproto->sflow);
abe529af 1502 hmap_destroy(&ofproto->bundles);
5d989517 1503 mac_learning_unref(ofproto->ml);
abe529af 1504
bcd2633a 1505 classifier_destroy(&ofproto->facets);
abe529af 1506
52a90c29
BP
1507 hmap_destroy(&ofproto->vlandev_map);
1508 hmap_destroy(&ofproto->realdev_vid_map);
1509
acf60855 1510 sset_destroy(&ofproto->ports);
0a740f48 1511 sset_destroy(&ofproto->ghost_ports);
acf60855 1512 sset_destroy(&ofproto->port_poll_set);
e1b1d06a 1513
13501305
EJ
1514 ovs_mutex_destroy(&ofproto->vsp_mutex);
1515
acf60855 1516 close_dpif_backer(ofproto->backer);
abe529af
BP
1517}
1518
1519static int
5fcc0d00 1520run_fast(struct ofproto *ofproto_)
abe529af
BP
1521{
1522 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
ada3a58d
EJ
1523 struct ofputil_packet_in *pin, *next_pin;
1524 struct ofputil_flow_mod *fm, *next_fm;
1525 struct list flow_mods, pins;
0aa66d6e 1526 struct ofport_dpif *ofport;
abe529af 1527
40358701
GS
1528 /* Do not perform any periodic activity required by 'ofproto' while
1529 * waiting for flow restore to complete. */
1530 if (ofproto_get_flow_restore_wait()) {
1531 return 0;
1532 }
1533
3d9c5e58 1534 ovs_mutex_lock(&ofproto->flow_mod_mutex);
08bdac6f
BP
1535 list_move(&flow_mods, &ofproto->flow_mods);
1536 list_init(&ofproto->flow_mods);
1537 ofproto->n_flow_mods = 0;
3d9c5e58
EJ
1538 ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1539
ada3a58d 1540 LIST_FOR_EACH_SAFE (fm, next_fm, list_node, &flow_mods) {
3d9c5e58
EJ
1541 int error = ofproto_flow_mod(&ofproto->up, fm);
1542 if (error && !VLOG_DROP_WARN(&rl)) {
1543 VLOG_WARN("learning action failed to modify flow table (%s)",
1544 ofperr_get_name(error));
1545 }
1546
1547 list_remove(&fm->list_node);
1548 free(fm->ofpacts);
1549 free(fm);
1550 }
1551
ada3a58d 1552 ovs_mutex_lock(&ofproto->pin_mutex);
08bdac6f
BP
1553 list_move(&pins, &ofproto->pins);
1554 list_init(&ofproto->pins);
1555 ofproto->n_pins = 0;
ada3a58d
EJ
1556 ovs_mutex_unlock(&ofproto->pin_mutex);
1557
1558 LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &pins) {
1559 connmgr_send_packet_in(ofproto->up.connmgr, pin);
1560 list_remove(&pin->list_node);
1561 free(CONST_CAST(void *, pin->packet));
1562 free(pin);
1563 }
1564
0aa66d6e
EJ
1565 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1566 port_run_fast(ofport);
1567 }
1568
5fcc0d00
BP
1569 return 0;
1570}
1571
1572static int
1573run(struct ofproto *ofproto_)
1574{
1575 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1576 struct ofport_dpif *ofport;
1577 struct ofbundle *bundle;
1578 int error;
1579
1580 if (!clogged) {
1581 complete_operations(ofproto);
1582 }
5fcc0d00 1583
ec7ceaed
EJ
1584 if (mbridge_need_revalidate(ofproto->mbridge)) {
1585 ofproto->backer->need_revalidate = REV_RECONFIGURE;
509c0149 1586 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 1587 mac_learning_flush(ofproto->ml);
509c0149 1588 ovs_rwlock_unlock(&ofproto->ml->rwlock);
ec7ceaed
EJ
1589 }
1590
40358701
GS
1591 /* Do not perform any periodic activity below required by 'ofproto' while
1592 * waiting for flow restore to complete. */
1593 if (ofproto_get_flow_restore_wait()) {
1594 return 0;
1595 }
1596
5fcc0d00
BP
1597 error = run_fast(ofproto_);
1598 if (error) {
1599 return error;
abe529af
BP
1600 }
1601
abe529af 1602 if (ofproto->netflow) {
6fca1ffb
BP
1603 if (netflow_run(ofproto->netflow)) {
1604 send_netflow_active_timeouts(ofproto);
1605 }
abe529af
BP
1606 }
1607 if (ofproto->sflow) {
bae473fe 1608 dpif_sflow_run(ofproto->sflow);
abe529af 1609 }
978427a5
RL
1610 if (ofproto->ipfix) {
1611 dpif_ipfix_run(ofproto->ipfix);
1612 }
abe529af
BP
1613
1614 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1615 port_run(ofport);
1616 }
1617 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1618 bundle_run(bundle);
1619 }
1620
21f7563c 1621 stp_run(ofproto);
509c0149 1622 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594
EJ
1623 if (mac_learning_run(ofproto->ml)) {
1624 ofproto->backer->need_revalidate = REV_MAC_LEARNING;
1625 }
509c0149 1626 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af 1627
6814e51f 1628 /* Check the consistency of a random facet, to aid debugging. */
0b4f2078 1629 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
4d2a0f39 1630 if (time_msec() >= ofproto->consistency_rl
bcd2633a 1631 && !classifier_is_empty(&ofproto->facets)
2cc3c58e 1632 && !ofproto->backer->need_revalidate) {
bcd2633a
JP
1633 struct cls_table *table;
1634 struct cls_rule *cr;
6814e51f
BP
1635 struct facet *facet;
1636
4d2a0f39
EJ
1637 ofproto->consistency_rl = time_msec() + 250;
1638
bcd2633a
JP
1639 table = CONTAINER_OF(hmap_random_node(&ofproto->facets.tables),
1640 struct cls_table, hmap_node);
1641 cr = CONTAINER_OF(hmap_random_node(&table->rules), struct cls_rule,
1642 hmap_node);
1643 facet = CONTAINER_OF(cr, struct facet, cr);
1644
a1616063
EJ
1645 if (!facet_check_consistency(facet)) {
1646 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
6814e51f
BP
1647 }
1648 }
0b4f2078 1649 ovs_rwlock_unlock(&ofproto->facets.rwlock);
6814e51f 1650
abe529af
BP
1651 return 0;
1652}
1653
1654static void
1655wait(struct ofproto *ofproto_)
1656{
1657 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1658 struct ofport_dpif *ofport;
1659 struct ofbundle *bundle;
1660
7ee20df1
BP
1661 if (!clogged && !list_is_empty(&ofproto->completions)) {
1662 poll_immediate_wake();
1663 }
1664
40358701
GS
1665 if (ofproto_get_flow_restore_wait()) {
1666 return;
1667 }
1668
abe529af 1669 if (ofproto->sflow) {
bae473fe 1670 dpif_sflow_wait(ofproto->sflow);
abe529af 1671 }
978427a5
RL
1672 if (ofproto->ipfix) {
1673 dpif_ipfix_wait(ofproto->ipfix);
1674 }
abe529af
BP
1675 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1676 port_wait(ofport);
1677 }
1678 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1679 bundle_wait(bundle);
1680 }
6fca1ffb
BP
1681 if (ofproto->netflow) {
1682 netflow_wait(ofproto->netflow);
1683 }
509c0149 1684 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
1c313b88 1685 mac_learning_wait(ofproto->ml);
509c0149 1686 ovs_rwlock_unlock(&ofproto->ml->rwlock);
21f7563c 1687 stp_wait(ofproto);
2cc3c58e 1688 if (ofproto->backer->need_revalidate) {
abe529af
BP
1689 /* Shouldn't happen, but if it does just go around again. */
1690 VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1691 poll_immediate_wake();
abe529af
BP
1692 }
1693}
1694
0d085684
BP
1695static void
1696get_memory_usage(const struct ofproto *ofproto_, struct simap *usage)
1697{
1698 const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
bcd2633a 1699 struct cls_cursor cursor;
04d08d54
EJ
1700 size_t n_subfacets = 0;
1701 struct facet *facet;
0d085684 1702
0b4f2078 1703 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a 1704 simap_increase(usage, "facets", classifier_count(&ofproto->facets));
0b4f2078 1705 ovs_rwlock_unlock(&ofproto->facets.rwlock);
bcd2633a 1706
0b4f2078 1707 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a
JP
1708 cls_cursor_init(&cursor, &ofproto->facets, NULL);
1709 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
04d08d54
EJ
1710 n_subfacets += list_size(&facet->subfacets);
1711 }
0b4f2078 1712 ovs_rwlock_unlock(&ofproto->facets.rwlock);
04d08d54 1713 simap_increase(usage, "subfacets", n_subfacets);
0d085684
BP
1714}
1715
abe529af
BP
1716static void
1717flush(struct ofproto *ofproto_)
1718{
1719 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855
JP
1720 struct subfacet *subfacet, *next_subfacet;
1721 struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
1722 int n_batch;
b0f7b9b5 1723
acf60855
JP
1724 n_batch = 0;
1725 HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
04d08d54 1726 &ofproto->backer->subfacets) {
b7e2f6b3 1727 if (subfacet->facet->ofproto != ofproto) {
04d08d54
EJ
1728 continue;
1729 }
1730
acf60855
JP
1731 if (subfacet->path != SF_NOT_INSTALLED) {
1732 batch[n_batch++] = subfacet;
1733 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
04d08d54 1734 subfacet_destroy_batch(ofproto->backer, batch, n_batch);
acf60855
JP
1735 n_batch = 0;
1736 }
1737 } else {
1738 subfacet_destroy(subfacet);
b0f7b9b5 1739 }
abe529af 1740 }
acf60855
JP
1741
1742 if (n_batch > 0) {
04d08d54 1743 subfacet_destroy_batch(ofproto->backer, batch, n_batch);
acf60855 1744 }
abe529af
BP
1745}
1746
6c1491fb
BP
1747static void
1748get_features(struct ofproto *ofproto_ OVS_UNUSED,
9e1fd49b 1749 bool *arp_match_ip, enum ofputil_action_bitmap *actions)
6c1491fb
BP
1750{
1751 *arp_match_ip = true;
9e1fd49b
BP
1752 *actions = (OFPUTIL_A_OUTPUT |
1753 OFPUTIL_A_SET_VLAN_VID |
1754 OFPUTIL_A_SET_VLAN_PCP |
1755 OFPUTIL_A_STRIP_VLAN |
1756 OFPUTIL_A_SET_DL_SRC |
1757 OFPUTIL_A_SET_DL_DST |
1758 OFPUTIL_A_SET_NW_SRC |
1759 OFPUTIL_A_SET_NW_DST |
1760 OFPUTIL_A_SET_NW_TOS |
1761 OFPUTIL_A_SET_TP_SRC |
1762 OFPUTIL_A_SET_TP_DST |
1763 OFPUTIL_A_ENQUEUE);
6c1491fb
BP
1764}
1765
1766static void
307975da 1767get_tables(struct ofproto *ofproto_, struct ofp12_table_stats *ots)
6c1491fb
BP
1768{
1769 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
a8d9304d 1770 struct dpif_dp_stats s;
7fd51d39 1771 uint64_t n_miss, n_no_pkt_in, n_bytes, n_dropped_frags;
7e741ffb 1772 uint64_t n_lookup;
6c1491fb
BP
1773
1774 strcpy(ots->name, "classifier");
1775
acf60855 1776 dpif_get_dp_stats(ofproto->backer->dpif, &s);
7e741ffb
JG
1777 rule_get_stats(&ofproto->miss_rule->up, &n_miss, &n_bytes);
1778 rule_get_stats(&ofproto->no_packet_in_rule->up, &n_no_pkt_in, &n_bytes);
7fd51d39 1779 rule_get_stats(&ofproto->drop_frags_rule->up, &n_dropped_frags, &n_bytes);
acf60855 1780
7fd51d39 1781 n_lookup = s.n_hit + s.n_missed - n_dropped_frags;
7e741ffb
JG
1782 ots->lookup_count = htonll(n_lookup);
1783 ots->matched_count = htonll(n_lookup - n_miss - n_no_pkt_in);
6c1491fb
BP
1784}
1785
abe529af
BP
1786static struct ofport *
1787port_alloc(void)
1788{
1789 struct ofport_dpif *port = xmalloc(sizeof *port);
1790 return &port->up;
1791}
1792
1793static void
1794port_dealloc(struct ofport *port_)
1795{
1796 struct ofport_dpif *port = ofport_dpif_cast(port_);
1797 free(port);
1798}
1799
1800static int
1801port_construct(struct ofport *port_)
1802{
1803 struct ofport_dpif *port = ofport_dpif_cast(port_);
1804 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
b9ad7294 1805 const struct netdev *netdev = port->up.netdev;
3aa30359 1806 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
e1b1d06a
JP
1807 struct dpif_port dpif_port;
1808 int error;
abe529af 1809
2cc3c58e 1810 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
1811 port->bundle = NULL;
1812 port->cfm = NULL;
ccc09689 1813 port->bfd = NULL;
d5ffa7f2 1814 port->may_enable = true;
21f7563c
JP
1815 port->stp_port = NULL;
1816 port->stp_state = STP_DISABLED;
42943cde 1817 port->is_tunnel = false;
6cbbf4fa 1818 port->peer = NULL;
55954f6e
EJ
1819 port->qdscp = NULL;
1820 port->n_qdscp = 0;
52a90c29
BP
1821 port->realdev_ofp_port = 0;
1822 port->vlandev_vid = 0;
b9ad7294 1823 port->carrier_seq = netdev_get_carrier_resets(netdev);
abe529af 1824
b9ad7294 1825 if (netdev_vport_is_patch(netdev)) {
743cea45
NM
1826 /* By bailing out here, we don't submit the port to the sFlow module
1827 * to be considered for counter polling export. This is correct
1828 * because the patch port represents an interface that sFlow considers
1829 * to be "internal" to the switch as a whole, and therefore not an
1830 * candidate for counter polling. */
4e022ec0 1831 port->odp_port = ODPP_NONE;
6cbbf4fa 1832 ofport_update_peer(port);
0a740f48
EJ
1833 return 0;
1834 }
1835
acf60855 1836 error = dpif_port_query_by_name(ofproto->backer->dpif,
3aa30359
BP
1837 netdev_vport_get_dpif_port(netdev, namebuf,
1838 sizeof namebuf),
e1b1d06a
JP
1839 &dpif_port);
1840 if (error) {
1841 return error;
1842 }
1843
1844 port->odp_port = dpif_port.port_no;
1845
b9ad7294 1846 if (netdev_get_tunnel_config(netdev)) {
42943cde
EJ
1847 tnl_port_add(port, port->up.netdev, port->odp_port);
1848 port->is_tunnel = true;
b9ad7294
EJ
1849 } else {
1850 /* Sanity-check that a mapping doesn't already exist. This
1851 * shouldn't happen for non-tunnel ports. */
1852 if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1853 VLOG_ERR("port %s already has an OpenFlow port number",
1854 dpif_port.name);
da78d43d 1855 dpif_port_destroy(&dpif_port);
b9ad7294
EJ
1856 return EBUSY;
1857 }
e1b1d06a 1858
8449c4d6 1859 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
b9ad7294 1860 hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
f9c0c3ec 1861 hash_odp_port(port->odp_port));
8449c4d6 1862 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
b9ad7294 1863 }
da78d43d 1864 dpif_port_destroy(&dpif_port);
e1b1d06a 1865
abe529af 1866 if (ofproto->sflow) {
e1b1d06a 1867 dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
abe529af
BP
1868 }
1869
1870 return 0;
1871}
1872
1873static void
1874port_destruct(struct ofport *port_)
1875{
1876 struct ofport_dpif *port = ofport_dpif_cast(port_);
1877 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
02f8d646 1878 const char *devname = netdev_get_name(port->up.netdev);
3aa30359
BP
1879 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1880 const char *dp_port_name;
abe529af 1881
7894e7da 1882 ofproto->backer->need_revalidate = REV_RECONFIGURE;
dc24a00f 1883 ovs_rwlock_wrlock(&xlate_rwlock);
46c88433 1884 xlate_ofport_remove(port);
dc24a00f 1885 ovs_rwlock_unlock(&xlate_rwlock);
7894e7da 1886
3aa30359
BP
1887 dp_port_name = netdev_vport_get_dpif_port(port->up.netdev, namebuf,
1888 sizeof namebuf);
a614d823 1889 if (dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
acf60855
JP
1890 /* The underlying device is still there, so delete it. This
1891 * happens when the ofproto is being destroyed, since the caller
1892 * assumes that removal of attached ports will happen as part of
1893 * destruction. */
42943cde 1894 if (!port->is_tunnel) {
a614d823
KM
1895 dpif_port_del(ofproto->backer->dpif, port->odp_port);
1896 }
acf60855
JP
1897 }
1898
6cbbf4fa
EJ
1899 if (port->peer) {
1900 port->peer->peer = NULL;
1901 port->peer = NULL;
1902 }
1903
42943cde 1904 if (port->odp_port != ODPP_NONE && !port->is_tunnel) {
8449c4d6 1905 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
0a740f48 1906 hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
8449c4d6 1907 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
0a740f48
EJ
1908 }
1909
42943cde 1910 tnl_port_del(port);
02f8d646 1911 sset_find_and_delete(&ofproto->ports, devname);
0a740f48 1912 sset_find_and_delete(&ofproto->ghost_ports, devname);
abe529af 1913 bundle_remove(port_);
a5610457 1914 set_cfm(port_, NULL);
8aee94b6 1915 set_bfd(port_, NULL);
abe529af 1916 if (ofproto->sflow) {
bae473fe 1917 dpif_sflow_del_port(ofproto->sflow, port->odp_port);
abe529af 1918 }
8b36f51e 1919
55954f6e 1920 free(port->qdscp);
abe529af
BP
1921}
1922
1923static void
1924port_modified(struct ofport *port_)
1925{
1926 struct ofport_dpif *port = ofport_dpif_cast(port_);
1927
1928 if (port->bundle && port->bundle->bond) {
1929 bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
1930 }
9d46b444
EJ
1931
1932 if (port->cfm) {
1933 cfm_set_netdev(port->cfm, port->up.netdev);
1934 }
f1e78bbd 1935
c1c4e8c7
AW
1936 if (port->bfd) {
1937 bfd_set_netdev(port->bfd, port->up.netdev);
1938 }
1939
42943cde
EJ
1940 if (port->is_tunnel && tnl_port_reconfigure(port, port->up.netdev,
1941 port->odp_port)) {
7894e7da
EJ
1942 ofproto_dpif_cast(port->up.ofproto)->backer->need_revalidate =
1943 REV_RECONFIGURE;
f1e78bbd 1944 }
6cbbf4fa
EJ
1945
1946 ofport_update_peer(port);
abe529af
BP
1947}
1948
1949static void
9e1fd49b 1950port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
abe529af
BP
1951{
1952 struct ofport_dpif *port = ofport_dpif_cast(port_);
1953 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
9e1fd49b 1954 enum ofputil_port_config changed = old_config ^ port->up.pp.config;
abe529af 1955
9e1fd49b 1956 if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
c57b2226
BP
1957 OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1958 OFPUTIL_PC_NO_PACKET_IN)) {
2cc3c58e 1959 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7bde8dd8 1960
9e1fd49b 1961 if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
7bde8dd8
JP
1962 bundle_update(port->bundle);
1963 }
abe529af
BP
1964 }
1965}
1966
1967static int
1968set_sflow(struct ofproto *ofproto_,
1969 const struct ofproto_sflow_options *sflow_options)
1970{
1971 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
bae473fe 1972 struct dpif_sflow *ds = ofproto->sflow;
6ff686f2 1973
abe529af 1974 if (sflow_options) {
bae473fe 1975 if (!ds) {
abe529af
BP
1976 struct ofport_dpif *ofport;
1977
4213f19d 1978 ds = ofproto->sflow = dpif_sflow_create();
abe529af 1979 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
e1b1d06a 1980 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
abe529af 1981 }
2cc3c58e 1982 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af 1983 }
bae473fe 1984 dpif_sflow_set_options(ds, sflow_options);
abe529af 1985 } else {
6ff686f2 1986 if (ds) {
9723bcce 1987 dpif_sflow_unref(ds);
2cc3c58e 1988 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6ff686f2
PS
1989 ofproto->sflow = NULL;
1990 }
abe529af
BP
1991 }
1992 return 0;
1993}
1994
29089a54
RL
1995static int
1996set_ipfix(
1997 struct ofproto *ofproto_,
1998 const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1999 const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
2000 size_t n_flow_exporters_options)
2001{
2002 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2003 struct dpif_ipfix *di = ofproto->ipfix;
978427a5 2004 bool has_options = bridge_exporter_options || flow_exporters_options;
29089a54 2005
978427a5
RL
2006 if (has_options && !di) {
2007 di = ofproto->ipfix = dpif_ipfix_create();
2008 }
2009
2010 if (di) {
2011 /* Call set_options in any case to cleanly flush the flow
2012 * caches in the last exporters that are to be destroyed. */
29089a54
RL
2013 dpif_ipfix_set_options(
2014 di, bridge_exporter_options, flow_exporters_options,
2015 n_flow_exporters_options);
978427a5
RL
2016
2017 if (!has_options) {
d857c8aa 2018 dpif_ipfix_unref(di);
29089a54
RL
2019 ofproto->ipfix = NULL;
2020 }
2021 }
978427a5 2022
29089a54
RL
2023 return 0;
2024}
2025
abe529af 2026static int
a5610457 2027set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
abe529af
BP
2028{
2029 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2030 int error;
2031
a5610457 2032 if (!s) {
abe529af
BP
2033 error = 0;
2034 } else {
2035 if (!ofport->cfm) {
8c977421
EJ
2036 struct ofproto_dpif *ofproto;
2037
2038 ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2cc3c58e 2039 ofproto->backer->need_revalidate = REV_RECONFIGURE;
90967e95 2040 ofport->cfm = cfm_create(ofport->up.netdev);
abe529af
BP
2041 }
2042
a5610457 2043 if (cfm_configure(ofport->cfm, s)) {
abe529af
BP
2044 return 0;
2045 }
2046
2047 error = EINVAL;
2048 }
8e9a73fa 2049 cfm_unref(ofport->cfm);
abe529af
BP
2050 ofport->cfm = NULL;
2051 return error;
2052}
2053
9a9e3786
BP
2054static bool
2055get_cfm_status(const struct ofport *ofport_,
2056 struct ofproto_cfm_status *status)
1de11730
EJ
2057{
2058 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2059
2060 if (ofport->cfm) {
9a9e3786
BP
2061 status->faults = cfm_get_fault(ofport->cfm);
2062 status->remote_opstate = cfm_get_opup(ofport->cfm);
2063 status->health = cfm_get_health(ofport->cfm);
2064 cfm_get_remote_mpids(ofport->cfm, &status->rmps, &status->n_rmps);
2065 return true;
1de11730 2066 } else {
9a9e3786 2067 return false;
1de11730
EJ
2068 }
2069}
ccc09689
EJ
2070
2071static int
2072set_bfd(struct ofport *ofport_, const struct smap *cfg)
2073{
2074 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2075 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2076 struct bfd *old;
2077
2078 old = ofport->bfd;
c1c4e8c7
AW
2079 ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev),
2080 cfg, ofport->up.netdev);
ccc09689
EJ
2081 if (ofport->bfd != old) {
2082 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2083 }
2084
2085 return 0;
2086}
2087
2088static int
2089get_bfd_status(struct ofport *ofport_, struct smap *smap)
2090{
2091 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2092
2093 if (ofport->bfd) {
2094 bfd_get_status(ofport->bfd, smap);
2095 return 0;
2096 } else {
2097 return ENOENT;
2098 }
2099}
abe529af 2100\f
21f7563c
JP
2101/* Spanning Tree. */
2102
2103static void
2104send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
2105{
2106 struct ofproto_dpif *ofproto = ofproto_;
2107 struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2108 struct ofport_dpif *ofport;
2109
2110 ofport = stp_port_get_aux(sp);
2111 if (!ofport) {
2112 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2113 ofproto->up.name, port_num);
2114 } else {
2115 struct eth_header *eth = pkt->l2;
2116
2117 netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
2118 if (eth_addr_is_zero(eth->eth_src)) {
2119 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2120 "with unknown MAC", ofproto->up.name, port_num);
2121 } else {
97d6520b 2122 send_packet(ofport, pkt);
21f7563c
JP
2123 }
2124 }
2125 ofpbuf_delete(pkt);
2126}
2127
2128/* Configures STP on 'ofproto_' using the settings defined in 's'. */
2129static int
2130set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2131{
2132 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2133
2134 /* Only revalidate flows if the configuration changed. */
2135 if (!s != !ofproto->stp) {
2cc3c58e 2136 ofproto->backer->need_revalidate = REV_RECONFIGURE;
21f7563c
JP
2137 }
2138
2139 if (s) {
2140 if (!ofproto->stp) {
2141 ofproto->stp = stp_create(ofproto_->name, s->system_id,
2142 send_bpdu_cb, ofproto);
2143 ofproto->stp_last_tick = time_msec();
2144 }
2145
2146 stp_set_bridge_id(ofproto->stp, s->system_id);
2147 stp_set_bridge_priority(ofproto->stp, s->priority);
2148 stp_set_hello_time(ofproto->stp, s->hello_time);
2149 stp_set_max_age(ofproto->stp, s->max_age);
2150 stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2151 } else {
851bf71d
EJ
2152 struct ofport *ofport;
2153
2154 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2155 set_stp_port(ofport, NULL);
2156 }
2157
bd54dbcd 2158 stp_unref(ofproto->stp);
21f7563c
JP
2159 ofproto->stp = NULL;
2160 }
2161
2162 return 0;
2163}
2164
2165static int
2166get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2167{
2168 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2169
2170 if (ofproto->stp) {
2171 s->enabled = true;
2172 s->bridge_id = stp_get_bridge_id(ofproto->stp);
2173 s->designated_root = stp_get_designated_root(ofproto->stp);
2174 s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2175 } else {
2176 s->enabled = false;
2177 }
2178
2179 return 0;
2180}
2181
2182static void
2183update_stp_port_state(struct ofport_dpif *ofport)
2184{
2185 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2186 enum stp_state state;
2187
2188 /* Figure out new state. */
2189 state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2190 : STP_DISABLED;
2191
2192 /* Update state. */
2193 if (ofport->stp_state != state) {
9e1fd49b 2194 enum ofputil_port_state of_state;
21f7563c
JP
2195 bool fwd_change;
2196
2197 VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
2198 netdev_get_name(ofport->up.netdev),
2199 stp_state_name(ofport->stp_state),
2200 stp_state_name(state));
2201 if (stp_learn_in_state(ofport->stp_state)
2202 != stp_learn_in_state(state)) {
2203 /* xxx Learning action flows should also be flushed. */
509c0149 2204 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 2205 mac_learning_flush(ofproto->ml);
509c0149 2206 ovs_rwlock_unlock(&ofproto->ml->rwlock);
21f7563c
JP
2207 }
2208 fwd_change = stp_forward_in_state(ofport->stp_state)
2209 != stp_forward_in_state(state);
2210
2cc3c58e 2211 ofproto->backer->need_revalidate = REV_STP;
21f7563c
JP
2212 ofport->stp_state = state;
2213 ofport->stp_state_entered = time_msec();
2214
b308140a 2215 if (fwd_change && ofport->bundle) {
21f7563c
JP
2216 bundle_update(ofport->bundle);
2217 }
2218
2219 /* Update the STP state bits in the OpenFlow port description. */
9e1fd49b
BP
2220 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2221 of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2222 : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2223 : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2224 : state == STP_BLOCKING ? OFPUTIL_PS_STP_BLOCK
2225 : 0);
21f7563c
JP
2226 ofproto_port_set_state(&ofport->up, of_state);
2227 }
2228}
2229
2230/* Configures STP on 'ofport_' using the settings defined in 's'. The
2231 * caller is responsible for assigning STP port numbers and ensuring
2232 * there are no duplicates. */
2233static int
2234set_stp_port(struct ofport *ofport_,
2235 const struct ofproto_port_stp_settings *s)
2236{
2237 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2238 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2239 struct stp_port *sp = ofport->stp_port;
2240
2241 if (!s || !s->enable) {
2242 if (sp) {
2243 ofport->stp_port = NULL;
2244 stp_port_disable(sp);
ecd12731 2245 update_stp_port_state(ofport);
21f7563c
JP
2246 }
2247 return 0;
2248 } else if (sp && stp_port_no(sp) != s->port_num
2249 && ofport == stp_port_get_aux(sp)) {
2250 /* The port-id changed, so disable the old one if it's not
2251 * already in use by another port. */
2252 stp_port_disable(sp);
2253 }
2254
2255 sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
2256 stp_port_enable(sp);
2257
2258 stp_port_set_aux(sp, ofport);
2259 stp_port_set_priority(sp, s->priority);
2260 stp_port_set_path_cost(sp, s->path_cost);
2261
2262 update_stp_port_state(ofport);
2263
2264 return 0;
2265}
2266
2267static int
2268get_stp_port_status(struct ofport *ofport_,
2269 struct ofproto_port_stp_status *s)
2270{
2271 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2272 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2273 struct stp_port *sp = ofport->stp_port;
2274
2275 if (!ofproto->stp || !sp) {
2276 s->enabled = false;
2277 return 0;
2278 }
2279
2280 s->enabled = true;
2281 s->port_id = stp_port_get_id(sp);
2282 s->state = stp_port_get_state(sp);
2283 s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2284 s->role = stp_port_get_role(sp);
80740385 2285 stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
21f7563c
JP
2286
2287 return 0;
2288}
2289
2290static void
2291stp_run(struct ofproto_dpif *ofproto)
2292{
2293 if (ofproto->stp) {
2294 long long int now = time_msec();
2295 long long int elapsed = now - ofproto->stp_last_tick;
2296 struct stp_port *sp;
2297
2298 if (elapsed > 0) {
2299 stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2300 ofproto->stp_last_tick = now;
2301 }
2302 while (stp_get_changed_port(ofproto->stp, &sp)) {
2303 struct ofport_dpif *ofport = stp_port_get_aux(sp);
2304
2305 if (ofport) {
2306 update_stp_port_state(ofport);
2307 }
2308 }
6ae50723
EJ
2309
2310 if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
509c0149 2311 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 2312 mac_learning_flush(ofproto->ml);
509c0149 2313 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6ae50723 2314 }
21f7563c
JP
2315 }
2316}
2317
2318static void
2319stp_wait(struct ofproto_dpif *ofproto)
2320{
2321 if (ofproto->stp) {
2322 poll_timer_wait(1000);
2323 }
2324}
21f7563c 2325\f
8b36f51e 2326static int
55954f6e 2327set_queues(struct ofport *ofport_, const struct ofproto_port_queue *qdscp,
8b36f51e
EJ
2328 size_t n_qdscp)
2329{
2330 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2331 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
8b36f51e 2332
55954f6e
EJ
2333 if (ofport->n_qdscp != n_qdscp
2334 || (n_qdscp && memcmp(ofport->qdscp, qdscp,
2335 n_qdscp * sizeof *qdscp))) {
2cc3c58e 2336 ofproto->backer->need_revalidate = REV_RECONFIGURE;
55954f6e
EJ
2337 free(ofport->qdscp);
2338 ofport->qdscp = n_qdscp
2339 ? xmemdup(qdscp, n_qdscp * sizeof *qdscp)
2340 : NULL;
2341 ofport->n_qdscp = n_qdscp;
8b36f51e
EJ
2342 }
2343
8b36f51e
EJ
2344 return 0;
2345}
2346\f
abe529af
BP
2347/* Bundles. */
2348
b44a10b7
BP
2349/* Expires all MAC learning entries associated with 'bundle' and forces its
2350 * ofproto to revalidate every flow.
2351 *
2352 * Normally MAC learning entries are removed only from the ofproto associated
2353 * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2354 * are removed from every ofproto. When patch ports and SLB bonds are in use
2355 * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2356 * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2357 * with the host from which it migrated. */
abe529af 2358static void
b44a10b7 2359bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
abe529af
BP
2360{
2361 struct ofproto_dpif *ofproto = bundle->ofproto;
2362 struct mac_learning *ml = ofproto->ml;
2363 struct mac_entry *mac, *next_mac;
2364
2cc3c58e 2365 ofproto->backer->need_revalidate = REV_RECONFIGURE;
509c0149 2366 ovs_rwlock_wrlock(&ml->rwlock);
abe529af
BP
2367 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
2368 if (mac->port.p == bundle) {
b44a10b7
BP
2369 if (all_ofprotos) {
2370 struct ofproto_dpif *o;
2371
2372 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2373 if (o != ofproto) {
2374 struct mac_entry *e;
2375
509c0149 2376 ovs_rwlock_wrlock(&o->ml->rwlock);
30618594 2377 e = mac_learning_lookup(o->ml, mac->mac, mac->vlan);
b44a10b7 2378 if (e) {
b44a10b7
BP
2379 mac_learning_expire(o->ml, e);
2380 }
509c0149 2381 ovs_rwlock_unlock(&o->ml->rwlock);
b44a10b7
BP
2382 }
2383 }
2384 }
2385
abe529af
BP
2386 mac_learning_expire(ml, mac);
2387 }
2388 }
509c0149 2389 ovs_rwlock_unlock(&ml->rwlock);
abe529af
BP
2390}
2391
2392static struct ofbundle *
2393bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2394{
2395 struct ofbundle *bundle;
2396
2397 HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2398 &ofproto->bundles) {
2399 if (bundle->aux == aux) {
2400 return bundle;
2401 }
2402 }
2403 return NULL;
2404}
2405
7bde8dd8
JP
2406static void
2407bundle_update(struct ofbundle *bundle)
2408{
2409 struct ofport_dpif *port;
2410
2411 bundle->floodable = true;
2412 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
9e1fd49b
BP
2413 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2414 || !stp_forward_in_state(port->stp_state)) {
7bde8dd8
JP
2415 bundle->floodable = false;
2416 break;
2417 }
2418 }
2419}
2420
abe529af
BP
2421static void
2422bundle_del_port(struct ofport_dpif *port)
2423{
2424 struct ofbundle *bundle = port->bundle;
2425
2cc3c58e 2426 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
6f77f4ae 2427
abe529af
BP
2428 list_remove(&port->bundle_node);
2429 port->bundle = NULL;
2430
2431 if (bundle->lacp) {
2432 lacp_slave_unregister(bundle->lacp, port);
2433 }
2434 if (bundle->bond) {
2435 bond_slave_unregister(bundle->bond, port);
2436 }
2437
7bde8dd8 2438 bundle_update(bundle);
abe529af
BP
2439}
2440
2441static bool
4e022ec0 2442bundle_add_port(struct ofbundle *bundle, ofp_port_t ofp_port,
df53d41c 2443 struct lacp_slave_settings *lacp)
abe529af
BP
2444{
2445 struct ofport_dpif *port;
2446
2447 port = get_ofp_port(bundle->ofproto, ofp_port);
2448 if (!port) {
2449 return false;
2450 }
2451
2452 if (port->bundle != bundle) {
2cc3c58e 2453 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af 2454 if (port->bundle) {
e019a574 2455 bundle_remove(&port->up);
abe529af
BP
2456 }
2457
2458 port->bundle = bundle;
2459 list_push_back(&bundle->ports, &port->bundle_node);
9e1fd49b
BP
2460 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2461 || !stp_forward_in_state(port->stp_state)) {
abe529af
BP
2462 bundle->floodable = false;
2463 }
2464 }
2465 if (lacp) {
2cc3c58e 2466 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2467 lacp_slave_register(bundle->lacp, port, lacp);
2468 }
2469
2470 return true;
2471}
2472
2473static void
2474bundle_destroy(struct ofbundle *bundle)
2475{
2476 struct ofproto_dpif *ofproto;
2477 struct ofport_dpif *port, *next_port;
abe529af
BP
2478
2479 if (!bundle) {
2480 return;
2481 }
2482
2483 ofproto = bundle->ofproto;
ec7ceaed 2484 mbridge_unregister_bundle(ofproto->mbridge, bundle->aux);
abe529af 2485
dc24a00f 2486 ovs_rwlock_wrlock(&xlate_rwlock);
46c88433 2487 xlate_bundle_remove(bundle);
dc24a00f 2488 ovs_rwlock_unlock(&xlate_rwlock);
46c88433 2489
abe529af
BP
2490 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2491 bundle_del_port(port);
2492 }
2493
b44a10b7 2494 bundle_flush_macs(bundle, true);
abe529af
BP
2495 hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2496 free(bundle->name);
2497 free(bundle->trunks);
91779071 2498 lacp_unref(bundle->lacp);
03366a2d 2499 bond_unref(bundle->bond);
abe529af
BP
2500 free(bundle);
2501}
2502
2503static int
2504bundle_set(struct ofproto *ofproto_, void *aux,
2505 const struct ofproto_bundle_settings *s)
2506{
2507 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2508 bool need_flush = false;
abe529af
BP
2509 struct ofport_dpif *port;
2510 struct ofbundle *bundle;
ecac4ebf
BP
2511 unsigned long *trunks;
2512 int vlan;
abe529af
BP
2513 size_t i;
2514 bool ok;
2515
2516 if (!s) {
2517 bundle_destroy(bundle_lookup(ofproto, aux));
2518 return 0;
2519 }
2520
cb22974d
BP
2521 ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2522 ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
abe529af
BP
2523
2524 bundle = bundle_lookup(ofproto, aux);
2525 if (!bundle) {
2526 bundle = xmalloc(sizeof *bundle);
2527
2528 bundle->ofproto = ofproto;
2529 hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2530 hash_pointer(aux, 0));
2531 bundle->aux = aux;
2532 bundle->name = NULL;
2533
2534 list_init(&bundle->ports);
ecac4ebf 2535 bundle->vlan_mode = PORT_VLAN_TRUNK;
abe529af
BP
2536 bundle->vlan = -1;
2537 bundle->trunks = NULL;
5e9ceccd 2538 bundle->use_priority_tags = s->use_priority_tags;
abe529af
BP
2539 bundle->lacp = NULL;
2540 bundle->bond = NULL;
2541
2542 bundle->floodable = true;
ec7ceaed 2543 mbridge_register_bundle(ofproto->mbridge, bundle);
abe529af
BP
2544 }
2545
2546 if (!bundle->name || strcmp(s->name, bundle->name)) {
2547 free(bundle->name);
2548 bundle->name = xstrdup(s->name);
2549 }
2550
2551 /* LACP. */
2552 if (s->lacp) {
2553 if (!bundle->lacp) {
2cc3c58e 2554 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2555 bundle->lacp = lacp_create();
2556 }
2557 lacp_configure(bundle->lacp, s->lacp);
2558 } else {
91779071 2559 lacp_unref(bundle->lacp);
abe529af
BP
2560 bundle->lacp = NULL;
2561 }
2562
2563 /* Update set of ports. */
2564 ok = true;
2565 for (i = 0; i < s->n_slaves; i++) {
2566 if (!bundle_add_port(bundle, s->slaves[i],
df53d41c 2567 s->lacp ? &s->lacp_slaves[i] : NULL)) {
abe529af
BP
2568 ok = false;
2569 }
2570 }
2571 if (!ok || list_size(&bundle->ports) != s->n_slaves) {
2572 struct ofport_dpif *next_port;
2573
2574 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2575 for (i = 0; i < s->n_slaves; i++) {
56c769ab 2576 if (s->slaves[i] == port->up.ofp_port) {
abe529af
BP
2577 goto found;
2578 }
2579 }
2580
2581 bundle_del_port(port);
2582 found: ;
2583 }
2584 }
cb22974d 2585 ovs_assert(list_size(&bundle->ports) <= s->n_slaves);
abe529af
BP
2586
2587 if (list_is_empty(&bundle->ports)) {
2588 bundle_destroy(bundle);
2589 return EINVAL;
2590 }
2591
ecac4ebf 2592 /* Set VLAN tagging mode */
5e9ceccd
BP
2593 if (s->vlan_mode != bundle->vlan_mode
2594 || s->use_priority_tags != bundle->use_priority_tags) {
ecac4ebf 2595 bundle->vlan_mode = s->vlan_mode;
5e9ceccd 2596 bundle->use_priority_tags = s->use_priority_tags;
ecac4ebf
BP
2597 need_flush = true;
2598 }
2599
abe529af 2600 /* Set VLAN tag. */
ecac4ebf
BP
2601 vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2602 : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2603 : 0);
2604 if (vlan != bundle->vlan) {
2605 bundle->vlan = vlan;
abe529af
BP
2606 need_flush = true;
2607 }
2608
2609 /* Get trunked VLANs. */
ecac4ebf
BP
2610 switch (s->vlan_mode) {
2611 case PORT_VLAN_ACCESS:
2612 trunks = NULL;
2613 break;
2614
2615 case PORT_VLAN_TRUNK:
ebc56baa 2616 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
2617 break;
2618
2619 case PORT_VLAN_NATIVE_UNTAGGED:
2620 case PORT_VLAN_NATIVE_TAGGED:
2621 if (vlan != 0 && (!s->trunks
2622 || !bitmap_is_set(s->trunks, vlan)
2623 || bitmap_is_set(s->trunks, 0))) {
2624 /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2625 if (s->trunks) {
2626 trunks = bitmap_clone(s->trunks, 4096);
2627 } else {
2628 trunks = bitmap_allocate1(4096);
2629 }
2630 bitmap_set1(trunks, vlan);
2631 bitmap_set0(trunks, 0);
2632 } else {
ebc56baa 2633 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
2634 }
2635 break;
2636
2637 default:
2638 NOT_REACHED();
2639 }
abe529af
BP
2640 if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2641 free(bundle->trunks);
ecac4ebf
BP
2642 if (trunks == s->trunks) {
2643 bundle->trunks = vlan_bitmap_clone(trunks);
2644 } else {
2645 bundle->trunks = trunks;
2646 trunks = NULL;
2647 }
abe529af
BP
2648 need_flush = true;
2649 }
ecac4ebf
BP
2650 if (trunks != s->trunks) {
2651 free(trunks);
2652 }
abe529af
BP
2653
2654 /* Bonding. */
2655 if (!list_is_short(&bundle->ports)) {
2656 bundle->ofproto->has_bonded_bundles = true;
2657 if (bundle->bond) {
2658 if (bond_reconfigure(bundle->bond, s->bond)) {
2cc3c58e 2659 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2660 }
2661 } else {
2662 bundle->bond = bond_create(s->bond);
2cc3c58e 2663 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2664 }
2665
2666 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
df53d41c 2667 bond_slave_register(bundle->bond, port, port->up.netdev);
abe529af
BP
2668 }
2669 } else {
03366a2d 2670 bond_unref(bundle->bond);
abe529af
BP
2671 bundle->bond = NULL;
2672 }
2673
2674 /* If we changed something that would affect MAC learning, un-learn
2675 * everything on this port and force flow revalidation. */
2676 if (need_flush) {
b44a10b7 2677 bundle_flush_macs(bundle, false);
abe529af
BP
2678 }
2679
2680 return 0;
2681}
2682
2683static void
2684bundle_remove(struct ofport *port_)
2685{
2686 struct ofport_dpif *port = ofport_dpif_cast(port_);
2687 struct ofbundle *bundle = port->bundle;
2688
2689 if (bundle) {
2690 bundle_del_port(port);
2691 if (list_is_empty(&bundle->ports)) {
2692 bundle_destroy(bundle);
2693 } else if (list_is_short(&bundle->ports)) {
03366a2d 2694 bond_unref(bundle->bond);
abe529af
BP
2695 bundle->bond = NULL;
2696 }
2697 }
2698}
2699
2700static void
5f877369 2701send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
abe529af
BP
2702{
2703 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
2704 struct ofport_dpif *port = port_;
2705 uint8_t ea[ETH_ADDR_LEN];
2706 int error;
2707
2708 error = netdev_get_etheraddr(port->up.netdev, ea);
2709 if (!error) {
abe529af 2710 struct ofpbuf packet;
5f877369 2711 void *packet_pdu;
abe529af
BP
2712
2713 ofpbuf_init(&packet, 0);
2714 packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
5f877369
EJ
2715 pdu_size);
2716 memcpy(packet_pdu, pdu, pdu_size);
2717
97d6520b 2718 send_packet(port, &packet);
abe529af
BP
2719 ofpbuf_uninit(&packet);
2720 } else {
2721 VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
2722 "%s (%s)", port->bundle->name,
10a89ef0 2723 netdev_get_name(port->up.netdev), ovs_strerror(error));
abe529af
BP
2724 }
2725}
2726
2727static void
2728bundle_send_learning_packets(struct ofbundle *bundle)
2729{
2730 struct ofproto_dpif *ofproto = bundle->ofproto;
2731 int error, n_packets, n_errors;
2732 struct mac_entry *e;
2733
2734 error = n_packets = n_errors = 0;
509c0149 2735 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
abe529af
BP
2736 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
2737 if (e->port.p != bundle) {
ea131871
JG
2738 struct ofpbuf *learning_packet;
2739 struct ofport_dpif *port;
4dd1e3ca 2740 void *port_void;
ea131871
JG
2741 int ret;
2742
4dd1e3ca
BP
2743 /* The assignment to "port" is unnecessary but makes "grep"ing for
2744 * struct ofport_dpif more effective. */
2745 learning_packet = bond_compose_learning_packet(bundle->bond,
2746 e->mac, e->vlan,
2747 &port_void);
2748 port = port_void;
97d6520b 2749 ret = send_packet(port, learning_packet);
ea131871 2750 ofpbuf_delete(learning_packet);
abe529af
BP
2751 if (ret) {
2752 error = ret;
2753 n_errors++;
2754 }
2755 n_packets++;
2756 }
2757 }
509c0149 2758 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af
BP
2759
2760 if (n_errors) {
2761 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2762 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2763 "packets, last error was: %s",
10a89ef0 2764 bundle->name, n_errors, n_packets, ovs_strerror(error));
abe529af
BP
2765 } else {
2766 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2767 bundle->name, n_packets);
2768 }
2769}
2770
2771static void
2772bundle_run(struct ofbundle *bundle)
2773{
2774 if (bundle->lacp) {
2775 lacp_run(bundle->lacp, send_pdu_cb);
2776 }
2777 if (bundle->bond) {
2778 struct ofport_dpif *port;
2779
2780 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
015e08bc 2781 bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
abe529af
BP
2782 }
2783
4a1b8f30
EJ
2784 if (bond_run(bundle->bond, lacp_status(bundle->lacp))) {
2785 bundle->ofproto->backer->need_revalidate = REV_BOND;
2786 }
2787
abe529af
BP
2788 if (bond_should_send_learning_packets(bundle->bond)) {
2789 bundle_send_learning_packets(bundle);
2790 }
2791 }
2792}
2793
2794static void
2795bundle_wait(struct ofbundle *bundle)
2796{
2797 if (bundle->lacp) {
2798 lacp_wait(bundle->lacp);
2799 }
2800 if (bundle->bond) {
2801 bond_wait(bundle->bond);
2802 }
2803}
2804\f
2805/* Mirrors. */
2806
2807static int
ec7ceaed
EJ
2808mirror_set__(struct ofproto *ofproto_, void *aux,
2809 const struct ofproto_mirror_settings *s)
abe529af
BP
2810{
2811 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
ec7ceaed
EJ
2812 struct ofbundle **srcs, **dsts;
2813 int error;
2814 size_t i;
abe529af 2815
abe529af 2816 if (!s) {
ec7ceaed 2817 mirror_destroy(ofproto->mbridge, aux);
abe529af
BP
2818 return 0;
2819 }
2820
ec7ceaed
EJ
2821 srcs = xmalloc(s->n_srcs * sizeof *srcs);
2822 dsts = xmalloc(s->n_dsts * sizeof *dsts);
abe529af 2823
ec7ceaed
EJ
2824 for (i = 0; i < s->n_srcs; i++) {
2825 srcs[i] = bundle_lookup(ofproto, s->srcs[i]);
abe529af
BP
2826 }
2827
ec7ceaed
EJ
2828 for (i = 0; i < s->n_dsts; i++) {
2829 dsts[i] = bundle_lookup(ofproto, s->dsts[i]);
abe529af
BP
2830 }
2831
ec7ceaed
EJ
2832 error = mirror_set(ofproto->mbridge, aux, s->name, srcs, s->n_srcs, dsts,
2833 s->n_dsts, s->src_vlans,
2834 bundle_lookup(ofproto, s->out_bundle), s->out_vlan);
2835 free(srcs);
2836 free(dsts);
2837 return error;
abe529af
BP
2838}
2839
9d24de3b 2840static int
ec7ceaed
EJ
2841mirror_get_stats__(struct ofproto *ofproto, void *aux,
2842 uint64_t *packets, uint64_t *bytes)
9d24de3b 2843{
8844e035 2844 push_all_stats();
ec7ceaed
EJ
2845 return mirror_get_stats(ofproto_dpif_cast(ofproto)->mbridge, aux, packets,
2846 bytes);
9d24de3b
JP
2847}
2848
abe529af
BP
2849static int
2850set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
2851{
2852 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
509c0149 2853 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
abe529af 2854 if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
30618594 2855 mac_learning_flush(ofproto->ml);
abe529af 2856 }
509c0149 2857 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af
BP
2858 return 0;
2859}
2860
2861static bool
b4affc74 2862is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
abe529af
BP
2863{
2864 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2865 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
ec7ceaed 2866 return bundle && mirror_bundle_out(ofproto->mbridge, bundle) != 0;
abe529af 2867}
8402c74b
SS
2868
2869static void
b53055f4 2870forward_bpdu_changed(struct ofproto *ofproto_)
8402c74b
SS
2871{
2872 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2cc3c58e 2873 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8402c74b 2874}
e764773c
BP
2875
2876static void
c4069512
BP
2877set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
2878 size_t max_entries)
e764773c
BP
2879{
2880 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
509c0149 2881 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
e764773c 2882 mac_learning_set_idle_time(ofproto->ml, idle_time);
c4069512 2883 mac_learning_set_max_entries(ofproto->ml, max_entries);
509c0149 2884 ovs_rwlock_unlock(&ofproto->ml->rwlock);
e764773c 2885}
abe529af
BP
2886\f
2887/* Ports. */
2888
46c88433 2889static struct ofport_dpif *
4e022ec0 2890get_ofp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
abe529af 2891{
7df6a8bd
BP
2892 struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
2893 return ofport ? ofport_dpif_cast(ofport) : NULL;
abe529af
BP
2894}
2895
46c88433 2896static struct ofport_dpif *
4e022ec0 2897get_odp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
abe529af 2898{
7c33b188
JR
2899 struct ofport_dpif *port = odp_port_to_ofport(ofproto->backer, odp_port);
2900 return port && &ofproto->up == port->up.ofproto ? port : NULL;
abe529af
BP
2901}
2902
2903static void
e1b1d06a
JP
2904ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
2905 struct ofproto_port *ofproto_port,
abe529af
BP
2906 struct dpif_port *dpif_port)
2907{
2908 ofproto_port->name = dpif_port->name;
2909 ofproto_port->type = dpif_port->type;
e1b1d06a 2910 ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
abe529af
BP
2911}
2912
6cbbf4fa
EJ
2913static void
2914ofport_update_peer(struct ofport_dpif *ofport)
0a740f48
EJ
2915{
2916 const struct ofproto_dpif *ofproto;
6cbbf4fa 2917 struct dpif_backer *backer;
161b6042 2918 char *peer_name;
6cbbf4fa
EJ
2919
2920 if (!netdev_vport_is_patch(ofport->up.netdev)) {
2921 return;
2922 }
2923
2924 backer = ofproto_dpif_cast(ofport->up.ofproto)->backer;
7894e7da 2925 backer->need_revalidate = REV_RECONFIGURE;
0a740f48 2926
6cbbf4fa
EJ
2927 if (ofport->peer) {
2928 ofport->peer->peer = NULL;
2929 ofport->peer = NULL;
2930 }
2931
2932 peer_name = netdev_vport_patch_peer(ofport->up.netdev);
2933 if (!peer_name) {
2934 return;
0a740f48
EJ
2935 }
2936
2937 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
6cbbf4fa
EJ
2938 struct ofport *peer_ofport;
2939 struct ofport_dpif *peer;
161b6042 2940 char *peer_peer;
0a740f48 2941
462abef2
EJ
2942 if (ofproto->backer != backer) {
2943 continue;
2944 }
2945
6cbbf4fa
EJ
2946 peer_ofport = shash_find_data(&ofproto->up.port_by_name, peer_name);
2947 if (!peer_ofport) {
2948 continue;
2949 }
2950
2951 peer = ofport_dpif_cast(peer_ofport);
2952 peer_peer = netdev_vport_patch_peer(peer->up.netdev);
2953 if (peer_peer && !strcmp(netdev_get_name(ofport->up.netdev),
2954 peer_peer)) {
2955 ofport->peer = peer;
2956 ofport->peer->peer = ofport;
0a740f48 2957 }
161b6042 2958 free(peer_peer);
6cbbf4fa 2959
161b6042 2960 break;
0a740f48 2961 }
161b6042 2962 free(peer_name);
0a740f48
EJ
2963}
2964
0aa66d6e
EJ
2965static void
2966port_run_fast(struct ofport_dpif *ofport)
2967{
2968 if (ofport->cfm && cfm_should_send_ccm(ofport->cfm)) {
2969 struct ofpbuf packet;
2970
2971 ofpbuf_init(&packet, 0);
2972 cfm_compose_ccm(ofport->cfm, &packet, ofport->up.pp.hw_addr);
2973 send_packet(ofport, &packet);
2974 ofpbuf_uninit(&packet);
2975 }
ccc09689
EJ
2976
2977 if (ofport->bfd && bfd_should_send_packet(ofport->bfd)) {
2978 struct ofpbuf packet;
2979
2980 ofpbuf_init(&packet, 0);
2981 bfd_put_packet(ofport->bfd, &packet, ofport->up.pp.hw_addr);
2982 send_packet(ofport, &packet);
2983 ofpbuf_uninit(&packet);
2984 }
0aa66d6e
EJ
2985}
2986
abe529af
BP
2987static void
2988port_run(struct ofport_dpif *ofport)
2989{
3e5b3fdb
EJ
2990 long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
2991 bool carrier_changed = carrier_seq != ofport->carrier_seq;
015e08bc 2992 bool enable = netdev_get_carrier(ofport->up.netdev);
2d344ba5
AW
2993 bool cfm_enable = false;
2994 bool bfd_enable = false;
015e08bc 2995
3e5b3fdb
EJ
2996 ofport->carrier_seq = carrier_seq;
2997
0aa66d6e 2998 port_run_fast(ofport);
b9ad7294 2999
abe529af 3000 if (ofport->cfm) {
4653c558
EJ
3001 int cfm_opup = cfm_get_opup(ofport->cfm);
3002
abe529af 3003 cfm_run(ofport->cfm);
2d344ba5 3004 cfm_enable = !cfm_get_fault(ofport->cfm);
4653c558
EJ
3005
3006 if (cfm_opup >= 0) {
2d344ba5 3007 cfm_enable = cfm_enable && cfm_opup;
4653c558 3008 }
abe529af 3009 }
015e08bc 3010
ccc09689
EJ
3011 if (ofport->bfd) {
3012 bfd_run(ofport->bfd);
2d344ba5
AW
3013 bfd_enable = bfd_forwarding(ofport->bfd);
3014 }
3015
3016 if (ofport->bfd || ofport->cfm) {
3017 enable = enable && (cfm_enable || bfd_enable);
ccc09689
EJ
3018 }
3019
015e08bc
EJ
3020 if (ofport->bundle) {
3021 enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
3e5b3fdb
EJ
3022 if (carrier_changed) {
3023 lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
3024 }
015e08bc
EJ
3025 }
3026
daff3353
EJ
3027 if (ofport->may_enable != enable) {
3028 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
83341407 3029 ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
daff3353
EJ
3030 }
3031
015e08bc 3032 ofport->may_enable = enable;
abe529af
BP
3033}
3034
3035static void
3036port_wait(struct ofport_dpif *ofport)
3037{
3038 if (ofport->cfm) {
3039 cfm_wait(ofport->cfm);
3040 }
ccc09689
EJ
3041
3042 if (ofport->bfd) {
3043 bfd_wait(ofport->bfd);
3044 }
abe529af
BP
3045}
3046
3047static int
3048port_query_by_name(const struct ofproto *ofproto_, const char *devname,
3049 struct ofproto_port *ofproto_port)
3050{
3051 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3052 struct dpif_port dpif_port;
3053 int error;
3054
0a740f48
EJ
3055 if (sset_contains(&ofproto->ghost_ports, devname)) {
3056 const char *type = netdev_get_type_from_name(devname);
3057
3058 /* We may be called before ofproto->up.port_by_name is populated with
3059 * the appropriate ofport. For this reason, we must get the name and
3060 * type from the netdev layer directly. */
3061 if (type) {
3062 const struct ofport *ofport;
3063
3064 ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3065 ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3066 ofproto_port->name = xstrdup(devname);
3067 ofproto_port->type = xstrdup(type);
3068 return 0;
3069 }
3070 return ENODEV;
3071 }
3072
acf60855
JP
3073 if (!sset_contains(&ofproto->ports, devname)) {
3074 return ENODEV;
3075 }
3076 error = dpif_port_query_by_name(ofproto->backer->dpif,
3077 devname, &dpif_port);
abe529af 3078 if (!error) {
e1b1d06a 3079 ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
abe529af
BP
3080 }
3081 return error;
3082}
3083
3084static int
e1b1d06a 3085port_add(struct ofproto *ofproto_, struct netdev *netdev)
abe529af
BP
3086{
3087 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
b9ad7294 3088 const char *devname = netdev_get_name(netdev);
3aa30359
BP
3089 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
3090 const char *dp_port_name;
abe529af 3091
0a740f48
EJ
3092 if (netdev_vport_is_patch(netdev)) {
3093 sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3094 return 0;
3095 }
3096
3aa30359 3097 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
b9ad7294 3098 if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
4e022ec0 3099 odp_port_t port_no = ODPP_NONE;
7d82ab2e
KM
3100 int error;
3101
3102 error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
b9ad7294
EJ
3103 if (error) {
3104 return error;
3105 }
7d82ab2e 3106 if (netdev_get_tunnel_config(netdev)) {
4e022ec0
AW
3107 simap_put(&ofproto->backer->tnl_backers,
3108 dp_port_name, odp_to_u32(port_no));
7d82ab2e 3109 }
acf60855 3110 }
b9ad7294
EJ
3111
3112 if (netdev_get_tunnel_config(netdev)) {
3113 sset_add(&ofproto->ghost_ports, devname);
b9ad7294
EJ
3114 } else {
3115 sset_add(&ofproto->ports, devname);
3116 }
3117 return 0;
3118}
3119
abe529af 3120static int
4e022ec0 3121port_del(struct ofproto *ofproto_, ofp_port_t ofp_port)
abe529af
BP
3122{
3123 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
b9ad7294 3124 struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
e1b1d06a 3125 int error = 0;
abe529af 3126
b9ad7294
EJ
3127 if (!ofport) {
3128 return 0;
e1b1d06a 3129 }
b9ad7294
EJ
3130
3131 sset_find_and_delete(&ofproto->ghost_ports,
3132 netdev_get_name(ofport->up.netdev));
a614d823 3133 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8911c674 3134 if (!ofport->is_tunnel && !netdev_vport_is_patch(ofport->up.netdev)) {
b9ad7294
EJ
3135 error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
3136 if (!error) {
abe529af
BP
3137 /* The caller is going to close ofport->up.netdev. If this is a
3138 * bonded port, then the bond is using that netdev, so remove it
3139 * from the bond. The client will need to reconfigure everything
3140 * after deleting ports, so then the slave will get re-added. */
3141 bundle_remove(&ofport->up);
3142 }
3143 }
3144 return error;
3145}
3146
6527c598
PS
3147static int
3148port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3149{
3150 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3151 int error;
3152
8844e035
EJ
3153 push_all_stats();
3154
6527c598
PS
3155 error = netdev_get_stats(ofport->up.netdev, stats);
3156
ee382d89 3157 if (!error && ofport_->ofp_port == OFPP_LOCAL) {
6527c598
PS
3158 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3159
3160 /* ofproto->stats.tx_packets represents packets that we created
3161 * internally and sent to some port (e.g. packets sent with
3162 * send_packet()). Account for them as if they had come from
3163 * OFPP_LOCAL and got forwarded. */
3164
3165 if (stats->rx_packets != UINT64_MAX) {
3166 stats->rx_packets += ofproto->stats.tx_packets;
3167 }
3168
3169 if (stats->rx_bytes != UINT64_MAX) {
3170 stats->rx_bytes += ofproto->stats.tx_bytes;
3171 }
3172
3173 /* ofproto->stats.rx_packets represents packets that were received on
3174 * some port and we processed internally and dropped (e.g. STP).
4e090bc7 3175 * Account for them as if they had been forwarded to OFPP_LOCAL. */
6527c598
PS
3176
3177 if (stats->tx_packets != UINT64_MAX) {
3178 stats->tx_packets += ofproto->stats.rx_packets;
3179 }
3180
3181 if (stats->tx_bytes != UINT64_MAX) {
3182 stats->tx_bytes += ofproto->stats.rx_bytes;
3183 }
3184 }
3185
3186 return error;
3187}
3188
abe529af 3189struct port_dump_state {
acf60855
JP
3190 uint32_t bucket;
3191 uint32_t offset;
0a740f48 3192 bool ghost;
da78d43d
BP
3193
3194 struct ofproto_port port;
3195 bool has_port;
abe529af
BP
3196};
3197
3198static int
acf60855 3199port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
abe529af 3200{
0a740f48 3201 *statep = xzalloc(sizeof(struct port_dump_state));
abe529af
BP
3202 return 0;
3203}
3204
3205static int
b9ad7294 3206port_dump_next(const struct ofproto *ofproto_, void *state_,
abe529af
BP
3207 struct ofproto_port *port)
3208{
e1b1d06a 3209 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
abe529af 3210 struct port_dump_state *state = state_;
0a740f48 3211 const struct sset *sset;
acf60855 3212 struct sset_node *node;
abe529af 3213
da78d43d
BP
3214 if (state->has_port) {
3215 ofproto_port_destroy(&state->port);
3216 state->has_port = false;
3217 }
0a740f48
EJ
3218 sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
3219 while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
acf60855
JP
3220 int error;
3221
da78d43d
BP
3222 error = port_query_by_name(ofproto_, node->name, &state->port);
3223 if (!error) {
3224 *port = state->port;
3225 state->has_port = true;
3226 return 0;
3227 } else if (error != ENODEV) {
acf60855
JP
3228 return error;
3229 }
abe529af 3230 }
acf60855 3231
0a740f48
EJ
3232 if (!state->ghost) {
3233 state->ghost = true;
3234 state->bucket = 0;
3235 state->offset = 0;
3236 return port_dump_next(ofproto_, state_, port);
3237 }
3238
acf60855 3239 return EOF;
abe529af
BP
3240}
3241
3242static int
3243port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3244{
3245 struct port_dump_state *state = state_;
3246
da78d43d
BP
3247 if (state->has_port) {
3248 ofproto_port_destroy(&state->port);
3249 }
abe529af
BP
3250 free(state);
3251 return 0;
3252}
3253
3254static int
3255port_poll(const struct ofproto *ofproto_, char **devnamep)
3256{
3257 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855
JP
3258
3259 if (ofproto->port_poll_errno) {
3260 int error = ofproto->port_poll_errno;
3261 ofproto->port_poll_errno = 0;
3262 return error;
3263 }
3264
3265 if (sset_is_empty(&ofproto->port_poll_set)) {
3266 return EAGAIN;
3267 }
3268
3269 *devnamep = sset_pop(&ofproto->port_poll_set);
3270 return 0;
abe529af
BP
3271}
3272
3273static void
3274port_poll_wait(const struct ofproto *ofproto_)
3275{
3276 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 3277 dpif_port_poll_wait(ofproto->backer->dpif);
abe529af
BP
3278}
3279
3280static int
3281port_is_lacp_current(const struct ofport *ofport_)
3282{
3283 const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3284 return (ofport->bundle && ofport->bundle->lacp
3285 ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3286 : -1);
3287}
3288\f
3289/* Upcall handling. */
3290
501f8d1f 3291struct flow_miss_op {
c2b565b5 3292 struct dpif_op dpif_op;
bbafd73b
EJ
3293
3294 uint64_t slow_stub[128 / 8]; /* Buffer for compose_slow_path() */
3295 struct xlate_out xout;
3296 bool xout_garbage; /* 'xout' needs to be uninitialized? */
9b1a48c2 3297
d445cc16
JP
3298 struct ofpbuf mask; /* Flow mask for "put" ops. */
3299 struct odputil_keybuf maskbuf;
3300
9b1a48c2
JP
3301 /* If this is a "put" op, then a pointer to the subfacet that should
3302 * be marked as uninstalled if the operation fails. */
3303 struct subfacet *subfacet;
501f8d1f
BP
3304};
3305
9d6ac44e 3306/* Figures out whether a flow that missed in 'ofproto', whose details are in
bcd2633a
JP
3307 * 'miss' masked by 'wc', is likely to be worth tracking in detail in userspace
3308 * and (usually) installing a datapath flow. The answer is usually "yes" (a
3309 * return value of true). However, for short flows the cost of bookkeeping is
3310 * much higher than the benefits, so when the datapath holds a large number of
3311 * flows we impose some heuristics to decide which flows are likely to be worth
3312 * tracking. */
9d6ac44e 3313static bool
e1ec7dd4 3314flow_miss_should_make_facet(struct flow_miss *miss)
9d6ac44e 3315{
04d08d54 3316 struct dpif_backer *backer = miss->ofproto->backer;
bcd2633a 3317 uint32_t hash;
04d08d54 3318
7155fa52
JS
3319 switch (flow_miss_model) {
3320 case OFPROTO_HANDLE_MISS_AUTO:
3321 break;
3322 case OFPROTO_HANDLE_MISS_WITH_FACETS:
3323 return true;
3324 case OFPROTO_HANDLE_MISS_WITHOUT_FACETS:
3325 return false;
3326 }
3327
04d08d54 3328 if (!backer->governor) {
9d6ac44e
BP
3329 size_t n_subfacets;
3330
04d08d54 3331 n_subfacets = hmap_count(&backer->subfacets);
380f49c4 3332 if (n_subfacets * 2 <= flow_eviction_threshold) {
9d6ac44e
BP
3333 return true;
3334 }
3335
c985ec94 3336 backer->governor = governor_create();
9d6ac44e
BP
3337 }
3338
e1ec7dd4 3339 hash = flow_hash_in_wildcards(&miss->flow, &miss->xout.wc, 0);
04d08d54 3340 return governor_should_install_flow(backer->governor, hash,
9d6ac44e
BP
3341 list_size(&miss->packets));
3342}
3343
9d6ac44e 3344/* Handles 'miss', which matches 'facet'. May add any required datapath
459b16a1
BP
3345 * operations to 'ops', incrementing '*n_ops' for each new op.
3346 *
e1ec7dd4
EJ
3347 * All of the packets in 'miss' are considered to have arrived at time
3348 * 'miss->stats.used'. This is really important only for new facets: if we
3349 * just called time_msec() here, then the new subfacet or its packets could
3350 * look (occasionally) as though it was used some time after the facet was
3351 * used. That can make a one-packet flow look like it has a nonzero duration,
3352 * which looks odd in e.g. NetFlow statistics. */
9d6ac44e
BP
3353static void
3354handle_flow_miss_with_facet(struct flow_miss *miss, struct facet *facet,
3355 struct flow_miss_op *ops, size_t *n_ops)
3356{
6a7e895f 3357 enum subfacet_path want_path;
9d6ac44e 3358 struct subfacet *subfacet;
67d91f78 3359
e1ec7dd4
EJ
3360 facet->packet_count += miss->stats.n_packets;
3361 facet->prev_packet_count += miss->stats.n_packets;
3362 facet->byte_count += miss->stats.n_bytes;
3363 facet->prev_byte_count += miss->stats.n_bytes;
501f8d1f 3364
e1ec7dd4 3365 want_path = facet->xout.slow ? SF_SLOW_PATH : SF_FAST_PATH;
501f8d1f 3366
a41d7bf2
JP
3367 /* Don't install the flow if it's the result of the "userspace"
3368 * action for an already installed facet. This can occur when a
3369 * datapath flow with wildcards has a "userspace" action and flows
3370 * sent to userspace result in a different subfacet, which will then
3371 * be rejected as overlapping by the datapath. */
3372 if (miss->upcall_type == DPIF_UC_ACTION
3373 && !list_is_empty(&facet->subfacets)) {
a41d7bf2
JP
3374 return;
3375 }
3376
e1ec7dd4 3377 subfacet = subfacet_create(facet, miss);
24ce4b08 3378 if (subfacet->path != want_path) {
501f8d1f 3379 struct flow_miss_op *op = &ops[(*n_ops)++];
c2b565b5 3380 struct dpif_flow_put *put = &op->dpif_op.u.flow_put;
501f8d1f 3381
c84451a6
EJ
3382 subfacet->path = want_path;
3383
d445cc16 3384 ofpbuf_use_stack(&op->mask, &op->maskbuf, sizeof op->maskbuf);
6b35e630
JP
3385 if (enable_megaflows) {
3386 odp_flow_key_from_mask(&op->mask, &facet->xout.wc.masks,
3387 &miss->flow, UINT32_MAX);
3388 }
d445cc16 3389
bbafd73b 3390 op->xout_garbage = false;
c2b565b5 3391 op->dpif_op.type = DPIF_OP_FLOW_PUT;
9b1a48c2 3392 op->subfacet = subfacet;
0f74f625 3393 put->flags = DPIF_FP_CREATE;
501f8d1f
BP
3394 put->key = miss->key;
3395 put->key_len = miss->key_len;
d445cc16
JP
3396 put->mask = op->mask.data;
3397 put->mask_len = op->mask.size;
3398
6a7e895f 3399 if (want_path == SF_FAST_PATH) {
bbafd73b
EJ
3400 put->actions = facet->xout.odp_actions.data;
3401 put->actions_len = facet->xout.odp_actions.size;
6a7e895f 3402 } else {
b7e2f6b3 3403 compose_slow_path(facet->ofproto, &miss->flow, facet->xout.slow,
bbafd73b 3404 op->slow_stub, sizeof op->slow_stub,
6a7e895f
BP
3405 &put->actions, &put->actions_len);
3406 }
501f8d1f
BP
3407 put->stats = NULL;
3408 }
3409}
3410
acf60855
JP
3411/* Handles flow miss 'miss'. May add any required datapath operations
3412 * to 'ops', incrementing '*n_ops' for each new op. */
9d6ac44e 3413static void
acf60855
JP
3414handle_flow_miss(struct flow_miss *miss, struct flow_miss_op *ops,
3415 size_t *n_ops)
9d6ac44e
BP
3416{
3417 struct facet *facet;
9d6ac44e 3418
e1ec7dd4 3419 miss->ofproto->n_missed += list_size(&miss->packets);
9d6ac44e 3420
e1ec7dd4 3421 facet = facet_lookup_valid(miss->ofproto, &miss->flow);
9d6ac44e 3422 if (!facet) {
ba33dd03
EJ
3423 /* There does not exist a bijection between 'struct flow' and datapath
3424 * flow keys with fitness ODP_FIT_TO_LITTLE. This breaks a fundamental
3425 * assumption used throughout the facet and subfacet handling code.
3426 * Since we have to handle these misses in userspace anyway, we simply
ec9f40dc 3427 * skip facet creation, avoiding the problem altogether. */
ba33dd03 3428 if (miss->key_fitness == ODP_FIT_TOO_LITTLE
e1ec7dd4 3429 || !flow_miss_should_make_facet(miss)) {
9d6ac44e
BP
3430 return;
3431 }
3432
e1ec7dd4 3433 facet = facet_create(miss);
9d6ac44e 3434 }
e1ec7dd4 3435 handle_flow_miss_with_facet(miss, facet, ops, n_ops);
9d6ac44e
BP
3436}
3437
8f73d537
EJ
3438static struct drop_key *
3439drop_key_lookup(const struct dpif_backer *backer, const struct nlattr *key,
3440 size_t key_len)
3441{
3442 struct drop_key *drop_key;
3443
3444 HMAP_FOR_EACH_WITH_HASH (drop_key, hmap_node, hash_bytes(key, key_len, 0),
3445 &backer->drop_keys) {
3446 if (drop_key->key_len == key_len
3447 && !memcmp(drop_key->key, key, key_len)) {
3448 return drop_key;
3449 }
3450 }
3451 return NULL;
3452}
3453
3454static void
3455drop_key_clear(struct dpif_backer *backer)
3456{
3457 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
3458 struct drop_key *drop_key, *next;
3459
3460 HMAP_FOR_EACH_SAFE (drop_key, next, hmap_node, &backer->drop_keys) {
3461 int error;
3462
3463 error = dpif_flow_del(backer->dpif, drop_key->key, drop_key->key_len,
3464 NULL);
3465 if (error && !VLOG_DROP_WARN(&rl)) {
3466 struct ds ds = DS_EMPTY_INITIALIZER;
3467 odp_flow_key_format(drop_key->key, drop_key->key_len, &ds);
10a89ef0
BP
3468 VLOG_WARN("Failed to delete drop key (%s) (%s)",
3469 ovs_strerror(error), ds_cstr(&ds));
8f73d537
EJ
3470 ds_destroy(&ds);
3471 }
3472
3473 hmap_remove(&backer->drop_keys, &drop_key->hmap_node);
e1ec7dd4 3474 drop_key_destroy(drop_key);
8f73d537 3475 }
e1ec7dd4
EJ
3476
3477 udpif_drop_key_clear(backer->udpif);
8f73d537
EJ
3478}
3479
501f8d1f 3480static void
e1ec7dd4 3481handle_flow_misses(struct dpif_backer *backer, struct flow_miss_batch *fmb)
501f8d1f 3482{
e1ec7dd4
EJ
3483 struct flow_miss_op flow_miss_ops[FLOW_MISS_MAX_BATCH];
3484 struct dpif_op *dpif_ops[FLOW_MISS_MAX_BATCH];
b23cdad9 3485 struct flow_miss *miss;
e1ec7dd4 3486 size_t n_ops, i;
501f8d1f
BP
3487
3488 /* Process each element in the to-do list, constructing the set of
3489 * operations to batch. */
3490 n_ops = 0;
e1ec7dd4 3491 HMAP_FOR_EACH (miss, hmap_node, &fmb->misses) {
acf60855 3492 handle_flow_miss(miss, flow_miss_ops, &n_ops);
abe529af 3493 }
cb22974d 3494 ovs_assert(n_ops <= ARRAY_SIZE(flow_miss_ops));
501f8d1f
BP
3495
3496 /* Execute batch. */
3497 for (i = 0; i < n_ops; i++) {
3498 dpif_ops[i] = &flow_miss_ops[i].dpif_op;
3499 }
acf60855 3500 dpif_operate(backer->dpif, dpif_ops, n_ops);
501f8d1f 3501
501f8d1f 3502 for (i = 0; i < n_ops; i++) {
9b1a48c2
JP
3503 if (dpif_ops[i]->error != 0
3504 && flow_miss_ops[i].dpif_op.type == DPIF_OP_FLOW_PUT
3505 && flow_miss_ops[i].subfacet) {
3506 struct subfacet *subfacet = flow_miss_ops[i].subfacet;
3507
3508 COVERAGE_INC(subfacet_install_fail);
3509
cfd5c9eb
JP
3510 /* Zero-out subfacet counters when installation failed, but
3511 * datapath reported hits. This should not happen and
3512 * indicates a bug, since if the datapath flow exists, we
3513 * should not be attempting to create a new subfacet. A
3514 * buggy datapath could trigger this, so just zero out the
3515 * counters and log an error. */
3516 if (subfacet->dp_packet_count || subfacet->dp_byte_count) {
3517 VLOG_ERR_RL(&rl, "failed to install subfacet for which "
3518 "datapath reported hits");
3519 subfacet->dp_packet_count = subfacet->dp_byte_count = 0;
3520 }
3521
9b1a48c2
JP
3522 subfacet->path = SF_NOT_INSTALLED;
3523 }
6a7e895f
BP
3524 }
3525}
3526
abe529af 3527static void
acf60855 3528handle_sflow_upcall(struct dpif_backer *backer,
6a7e895f 3529 const struct dpif_upcall *upcall)
abe529af 3530{
acf60855 3531 struct ofproto_dpif *ofproto;
1673e0e4 3532 union user_action_cookie cookie;
e84173dc 3533 struct flow flow;
4e022ec0 3534 odp_port_t odp_in_port;
abe529af 3535
8449c4d6
EJ
3536 if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3537 &flow, NULL, &ofproto, &odp_in_port)
e09ee259 3538 || !ofproto->sflow) {
e84173dc
BP
3539 return;
3540 }
3541
29089a54
RL
3542 memset(&cookie, 0, sizeof cookie);
3543 memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.sflow);
e1b1d06a
JP
3544 dpif_sflow_received(ofproto->sflow, upcall->packet, &flow,
3545 odp_in_port, &cookie);
6ff686f2
PS
3546}
3547
29089a54
RL
3548static void
3549handle_flow_sample_upcall(struct dpif_backer *backer,
3550 const struct dpif_upcall *upcall)
3551{
3552 struct ofproto_dpif *ofproto;
3553 union user_action_cookie cookie;
3554 struct flow flow;
3555
8449c4d6
EJ
3556 if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3557 &flow, NULL, &ofproto, NULL)
29089a54
RL
3558 || !ofproto->ipfix) {
3559 return;
3560 }
3561
3562 memset(&cookie, 0, sizeof cookie);
3563 memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.flow_sample);
3564
3565 /* The flow reflects exactly the contents of the packet. Sample
3566 * the packet using it. */
3567 dpif_ipfix_flow_sample(ofproto->ipfix, upcall->packet, &flow,
3568 cookie.flow_sample.collector_set_id,
3569 cookie.flow_sample.probability,
3570 cookie.flow_sample.obs_domain_id,
3571 cookie.flow_sample.obs_point_id);
3572}
3573
3574static void
3575handle_ipfix_upcall(struct dpif_backer *backer,
3576 const struct dpif_upcall *upcall)
3577{
3578 struct ofproto_dpif *ofproto;
3579 struct flow flow;
3580
8449c4d6
EJ
3581 if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3582 &flow, NULL, &ofproto, NULL)
29089a54
RL
3583 || !ofproto->ipfix) {
3584 return;
3585 }
3586
3587 /* The flow reflects exactly the contents of the packet. Sample
3588 * the packet using it. */
3589 dpif_ipfix_bridge_sample(ofproto->ipfix, upcall->packet, &flow);
3590}
3591
e1ec7dd4
EJ
3592static void
3593handle_upcalls(struct dpif_backer *backer)
6ff686f2 3594{
e1ec7dd4 3595 struct flow_miss_batch *fmb;
90a7c55e 3596 int n_processed;
abe529af 3597
e1ec7dd4
EJ
3598 for (n_processed = 0; n_processed < FLOW_MISS_MAX_BATCH; n_processed++) {
3599 struct upcall *upcall = upcall_next(backer->udpif);
abe529af 3600
e1ec7dd4 3601 if (!upcall) {
9b16c439
BP
3602 break;
3603 }
3604
e1ec7dd4 3605 switch (upcall->type) {
6a7e895f 3606 case SFLOW_UPCALL:
e1ec7dd4 3607 handle_sflow_upcall(backer, &upcall->dpif_upcall);
6a7e895f
BP
3608 break;
3609
29089a54 3610 case FLOW_SAMPLE_UPCALL:
e1ec7dd4 3611 handle_flow_sample_upcall(backer, &upcall->dpif_upcall);
29089a54
RL
3612 break;
3613
3614 case IPFIX_UPCALL:
e1ec7dd4 3615 handle_ipfix_upcall(backer, &upcall->dpif_upcall);
29089a54
RL
3616 break;
3617
6a7e895f 3618 case BAD_UPCALL:
9b16c439 3619 break;
e1ec7dd4
EJ
3620
3621 case MISS_UPCALL:
3622 NOT_REACHED();
9b16c439 3623 }
e1ec7dd4
EJ
3624
3625 upcall_destroy(upcall);
abe529af 3626 }
9b16c439 3627
e1ec7dd4
EJ
3628 for (n_processed = 0; n_processed < FLOW_MISS_MAX_BATCH; n_processed++) {
3629 struct drop_key *drop_key = drop_key_next(backer->udpif);
3630 if (!drop_key) {
3631 break;
3632 }
3633
3634 if (!drop_key_lookup(backer, drop_key->key, drop_key->key_len)) {
3635 hmap_insert(&backer->drop_keys, &drop_key->hmap_node,
3636 hash_bytes(drop_key->key, drop_key->key_len, 0));
3637 dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
3638 drop_key->key, drop_key->key_len,
3639 NULL, 0, NULL, 0, NULL);
3640 } else {
3641 drop_key_destroy(drop_key);
3642 }
90a7c55e 3643 }
9b16c439 3644
e1ec7dd4
EJ
3645 fmb = flow_miss_batch_next(backer->udpif);
3646 if (fmb) {
3647 handle_flow_misses(backer, fmb);
3648 flow_miss_batch_destroy(fmb);
3649 }
abe529af
BP
3650}
3651\f
3652/* Flow expiration. */
3653
04d08d54 3654static int subfacet_max_idle(const struct dpif_backer *);
acf60855 3655static void update_stats(struct dpif_backer *);
abe529af 3656static void rule_expire(struct rule_dpif *);
04d08d54 3657static void expire_subfacets(struct dpif_backer *, int dp_max_idle);
abe529af
BP
3658
3659/* This function is called periodically by run(). Its job is to collect
3660 * updates for the flows that have been installed into the datapath, most
3661 * importantly when they last were used, and then use that information to
3662 * expire flows that have not been used recently.
3663 *
3664 * Returns the number of milliseconds after which it should be called again. */
3665static int
acf60855 3666expire(struct dpif_backer *backer)
abe529af 3667{
acf60855 3668 struct ofproto_dpif *ofproto;
dc54ef36 3669 size_t n_subfacets;
04d08d54 3670 int max_idle;
abe529af 3671
8f73d537
EJ
3672 /* Periodically clear out the drop keys in an effort to keep them
3673 * relatively few. */
3674 drop_key_clear(backer);
3675
acf60855
JP
3676 /* Update stats for each flow in the backer. */
3677 update_stats(backer);
abe529af 3678
04d08d54
EJ
3679 n_subfacets = hmap_count(&backer->subfacets);
3680 if (n_subfacets) {
9fc0165a 3681 struct subfacet *subfacet;
04d08d54 3682 long long int total, now;
abe529af 3683
04d08d54
EJ
3684 total = 0;
3685 now = time_msec();
3686 HMAP_FOR_EACH (subfacet, hmap_node, &backer->subfacets) {
3687 total += now - subfacet->created;
acf60855 3688 }
04d08d54
EJ
3689 backer->avg_subfacet_life += total / n_subfacets;
3690 }
3691 backer->avg_subfacet_life /= 2;
0697b5c3 3692
04d08d54
EJ
3693 backer->avg_n_subfacet += n_subfacets;
3694 backer->avg_n_subfacet /= 2;
3695
3696 backer->max_n_subfacet = MAX(backer->max_n_subfacet, n_subfacets);
655ab909 3697
04d08d54
EJ
3698 max_idle = subfacet_max_idle(backer);
3699 expire_subfacets(backer, max_idle);
acf60855 3700
04d08d54
EJ
3701 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3702 struct rule *rule, *next_rule;
3703
3704 if (ofproto->backer != backer) {
3705 continue;
3706 }
acf60855
JP
3707
3708 /* Expire OpenFlow flows whose idle_timeout or hard_timeout
3709 * has passed. */
83b16b98 3710 ovs_mutex_lock(&ofproto->up.expirable_mutex);
e503cc19
SH
3711 LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
3712 &ofproto->up.expirable) {
3713 rule_expire(rule_dpif_cast(rule));
0697b5c3 3714 }
83b16b98 3715 ovs_mutex_unlock(&ofproto->up.expirable_mutex);
abe529af 3716
acf60855
JP
3717 /* All outstanding data in existing flows has been accounted, so it's a
3718 * good time to do bond rebalancing. */
3719 if (ofproto->has_bonded_bundles) {
3720 struct ofbundle *bundle;
abe529af 3721
acf60855
JP
3722 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
3723 if (bundle->bond) {
4a1b8f30 3724 bond_rebalance(bundle->bond);
acf60855 3725 }
abe529af
BP
3726 }
3727 }
3728 }
3729
acf60855 3730 return MIN(max_idle, 1000);
abe529af
BP
3731}
3732
a218c879
BP
3733/* Updates flow table statistics given that the datapath just reported 'stats'
3734 * as 'subfacet''s statistics. */
3735static void
3736update_subfacet_stats(struct subfacet *subfacet,
3737 const struct dpif_flow_stats *stats)
3738{
3739 struct facet *facet = subfacet->facet;
9dfb1f78
EJ
3740 struct dpif_flow_stats diff;
3741
3742 diff.tcp_flags = stats->tcp_flags;
3743 diff.used = stats->used;
a218c879
BP
3744
3745 if (stats->n_packets >= subfacet->dp_packet_count) {
9dfb1f78 3746 diff.n_packets = stats->n_packets - subfacet->dp_packet_count;
a218c879
BP
3747 } else {
3748 VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
9dfb1f78 3749 diff.n_packets = 0;
a218c879
BP
3750 }
3751
3752 if (stats->n_bytes >= subfacet->dp_byte_count) {
9dfb1f78 3753 diff.n_bytes = stats->n_bytes - subfacet->dp_byte_count;
a218c879
BP
3754 } else {
3755 VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
9dfb1f78 3756 diff.n_bytes = 0;
a218c879
BP
3757 }
3758
b7e2f6b3 3759 facet->ofproto->n_hit += diff.n_packets;
a218c879
BP
3760 subfacet->dp_packet_count = stats->n_packets;
3761 subfacet->dp_byte_count = stats->n_bytes;
9dfb1f78 3762 subfacet_update_stats(subfacet, &diff);
a218c879 3763
a218c879
BP
3764 if (facet->accounted_bytes < facet->byte_count) {
3765 facet_learn(facet);
3766 facet_account(facet);
3767 facet->accounted_bytes = facet->byte_count;
3768 }
a218c879
BP
3769}
3770
3771/* 'key' with length 'key_len' bytes is a flow in 'dpif' that we know nothing
3772 * about, or a flow that shouldn't be installed but was anyway. Delete it. */
3773static void
04d08d54 3774delete_unexpected_flow(struct dpif_backer *backer,
a218c879
BP
3775 const struct nlattr *key, size_t key_len)
3776{
3777 if (!VLOG_DROP_WARN(&rl)) {
3778 struct ds s;
3779
3780 ds_init(&s);
3781 odp_flow_key_format(key, key_len, &s);
04d08d54 3782 VLOG_WARN("unexpected flow: %s", ds_cstr(&s));
a218c879
BP
3783 ds_destroy(&s);
3784 }
3785
3786 COVERAGE_INC(facet_unexpected);
04d08d54 3787 dpif_flow_del(backer->dpif, key, key_len, NULL);
a218c879
BP
3788}
3789
abe529af
BP
3790/* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
3791 *
3792 * This function also pushes statistics updates to rules which each facet
3793 * resubmits into. Generally these statistics will be accurate. However, if a
3794 * facet changes the rule it resubmits into at some time in between
3795 * update_stats() runs, it is possible that statistics accrued to the
3796 * old rule will be incorrectly attributed to the new rule. This could be
3797 * avoided by calling update_stats() whenever rules are created or
3798 * deleted. However, the performance impact of making so many calls to the
3799 * datapath do not justify the benefit of having perfectly accurate statistics.
735d7efb
AZ
3800 *
3801 * In addition, this function maintains per ofproto flow hit counts. The patch
3802 * port is not treated specially. e.g. A packet ingress from br0 patched into
3803 * br1 will increase the hit count of br0 by 1, however, does not affect
3804 * the hit or miss counts of br1.
abe529af
BP
3805 */
3806static void
acf60855 3807update_stats(struct dpif_backer *backer)
abe529af
BP
3808{
3809 const struct dpif_flow_stats *stats;
3810 struct dpif_flow_dump dump;
61fb711d
JP
3811 const struct nlattr *key, *mask;
3812 size_t key_len, mask_len;
abe529af 3813
acf60855 3814 dpif_flow_dump_start(&dump, backer->dpif);
e6cc0bab 3815 while (dpif_flow_dump_next(&dump, &key, &key_len,
61fb711d 3816 &mask, &mask_len, NULL, NULL, &stats)) {
b0f7b9b5 3817 struct subfacet *subfacet;
acf60855 3818 uint32_t key_hash;
abe529af 3819
acf60855 3820 key_hash = odp_flow_key_hash(key, key_len);
04d08d54 3821 subfacet = subfacet_find(backer, key, key_len, key_hash);
6a7e895f
BP
3822 switch (subfacet ? subfacet->path : SF_NOT_INSTALLED) {
3823 case SF_FAST_PATH:
a218c879 3824 update_subfacet_stats(subfacet, stats);
6a7e895f
BP
3825 break;
3826
3827 case SF_SLOW_PATH:
3828 /* Stats are updated per-packet. */
3829 break;
3830
3831 case SF_NOT_INSTALLED:
3832 default:
04d08d54 3833 delete_unexpected_flow(backer, key, key_len);
6a7e895f 3834 break;
abe529af 3835 }
8fa4d1d0 3836 run_fast_rl();
abe529af
BP
3837 }
3838 dpif_flow_dump_done(&dump);
3af56aef 3839
dc54ef36 3840 update_moving_averages(backer);
abe529af
BP
3841}
3842
3843/* Calculates and returns the number of milliseconds of idle time after which
b0f7b9b5
BP
3844 * subfacets should expire from the datapath. When a subfacet expires, we fold
3845 * its statistics into its facet, and when a facet's last subfacet expires, we
3846 * fold its statistic into its rule. */
abe529af 3847static int
04d08d54 3848subfacet_max_idle(const struct dpif_backer *backer)
abe529af
BP
3849{
3850 /*
3851 * Idle time histogram.
3852 *
b0f7b9b5
BP
3853 * Most of the time a switch has a relatively small number of subfacets.
3854 * When this is the case we might as well keep statistics for all of them
3855 * in userspace and to cache them in the kernel datapath for performance as
abe529af
BP
3856 * well.
3857 *
b0f7b9b5 3858 * As the number of subfacets increases, the memory required to maintain
abe529af 3859 * statistics about them in userspace and in the kernel becomes
b0f7b9b5
BP
3860 * significant. However, with a large number of subfacets it is likely
3861 * that only a few of them are "heavy hitters" that consume a large amount
3862 * of bandwidth. At this point, only heavy hitters are worth caching in
3863 * the kernel and maintaining in userspaces; other subfacets we can
3864 * discard.
abe529af
BP
3865 *
3866 * The technique used to compute the idle time is to build a histogram with
b0f7b9b5 3867 * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each. Each subfacet
abe529af
BP
3868 * that is installed in the kernel gets dropped in the appropriate bucket.
3869 * After the histogram has been built, we compute the cutoff so that only
b0f7b9b5 3870 * the most-recently-used 1% of subfacets (but at least
380f49c4 3871 * flow_eviction_threshold flows) are kept cached. At least
b0f7b9b5
BP
3872 * the most-recently-used bucket of subfacets is kept, so actually an
3873 * arbitrary number of subfacets can be kept in any given expiration run
084f5290
SH
3874 * (though the next run will delete most of those unless they receive
3875 * additional data).
abe529af 3876 *
b0f7b9b5
BP
3877 * This requires a second pass through the subfacets, in addition to the
3878 * pass made by update_stats(), because the former function never looks at
3879 * uninstallable subfacets.
abe529af
BP
3880 */
3881 enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
3882 enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
3883 int buckets[N_BUCKETS] = { 0 };
f11c1ef4 3884 int total, subtotal, bucket;
b0f7b9b5 3885 struct subfacet *subfacet;
abe529af
BP
3886 long long int now;
3887 int i;
3888
04d08d54 3889 total = hmap_count(&backer->subfacets);
380f49c4 3890 if (total <= flow_eviction_threshold) {
abe529af
BP
3891 return N_BUCKETS * BUCKET_WIDTH;
3892 }
3893
3894 /* Build histogram. */
3895 now = time_msec();
04d08d54 3896 HMAP_FOR_EACH (subfacet, hmap_node, &backer->subfacets) {
b0f7b9b5 3897 long long int idle = now - subfacet->used;
abe529af
BP
3898 int bucket = (idle <= 0 ? 0
3899 : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
3900 : (unsigned int) idle / BUCKET_WIDTH);
3901 buckets[bucket]++;
3902 }
3903
3904 /* Find the first bucket whose flows should be expired. */
f11c1ef4
SH
3905 subtotal = bucket = 0;
3906 do {
3907 subtotal += buckets[bucket++];
084f5290 3908 } while (bucket < N_BUCKETS &&
380f49c4 3909 subtotal < MAX(flow_eviction_threshold, total / 100));
abe529af
BP
3910
3911 if (VLOG_IS_DBG_ENABLED()) {
3912 struct ds s;
3913
3914 ds_init(&s);
3915 ds_put_cstr(&s, "keep");
3916 for (i = 0; i < N_BUCKETS; i++) {
3917 if (i == bucket) {
3918 ds_put_cstr(&s, ", drop");
3919 }
3920 if (buckets[i]) {
3921 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
3922 }
3923 }
04d08d54 3924 VLOG_INFO("%s (msec:count)", ds_cstr(&s));
abe529af
BP
3925 ds_destroy(&s);
3926 }
3927
3928 return bucket * BUCKET_WIDTH;
3929}
3930
abe529af 3931static void
04d08d54 3932expire_subfacets(struct dpif_backer *backer, int dp_max_idle)
abe529af 3933{
625b0720
BP
3934 /* Cutoff time for most flows. */
3935 long long int normal_cutoff = time_msec() - dp_max_idle;
3936
3937 /* We really want to keep flows for special protocols around, so use a more
3938 * conservative cutoff. */
3939 long long int special_cutoff = time_msec() - 10000;
b99d3cee 3940
b0f7b9b5 3941 struct subfacet *subfacet, *next_subfacet;
1d85f9e5 3942 struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
b99d3cee 3943 int n_batch;
abe529af 3944
b99d3cee 3945 n_batch = 0;
b0f7b9b5 3946 HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
04d08d54 3947 &backer->subfacets) {
625b0720
BP
3948 long long int cutoff;
3949
bbafd73b
EJ
3950 cutoff = (subfacet->facet->xout.slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP
3951 | SLOW_STP)
625b0720
BP
3952 ? special_cutoff
3953 : normal_cutoff);
b0f7b9b5 3954 if (subfacet->used < cutoff) {
6a7e895f 3955 if (subfacet->path != SF_NOT_INSTALLED) {
b99d3cee 3956 batch[n_batch++] = subfacet;
1d85f9e5 3957 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
04d08d54 3958 subfacet_destroy_batch(backer, batch, n_batch);
b99d3cee
BP
3959 n_batch = 0;
3960 }
3961 } else {
3962 subfacet_destroy(subfacet);
3963 }
abe529af
BP
3964 }
3965 }
b99d3cee
BP
3966
3967 if (n_batch > 0) {
04d08d54 3968 subfacet_destroy_batch(backer, batch, n_batch);
b99d3cee 3969 }
abe529af
BP
3970}
3971
3972/* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
3973 * then delete it entirely. */
3974static void
3975rule_expire(struct rule_dpif *rule)
3976{
a3779dbc 3977 uint16_t idle_timeout, hard_timeout;
abe529af
BP
3978 long long int now;
3979 uint8_t reason;
3980
e2a3d183
BP
3981 if (rule->up.pending) {
3982 /* We'll have to expire it later. */
3983 return;
3984 }
3985
a3779dbc
EJ
3986 ovs_mutex_lock(&rule->up.timeout_mutex);
3987 hard_timeout = rule->up.hard_timeout;
3988 idle_timeout = rule->up.idle_timeout;
3989 ovs_mutex_unlock(&rule->up.timeout_mutex);
3990
abe529af
BP
3991 /* Has 'rule' expired? */
3992 now = time_msec();
a3779dbc 3993 if (hard_timeout && now > rule->up.modified + hard_timeout * 1000) {
abe529af 3994 reason = OFPRR_HARD_TIMEOUT;
a3779dbc 3995 } else if (idle_timeout && now > rule->up.used + idle_timeout * 1000) {
abe529af
BP
3996 reason = OFPRR_IDLE_TIMEOUT;
3997 } else {
3998 return;
3999 }
4000
8037acb4
BP
4001 COVERAGE_INC(ofproto_dpif_expired);
4002 ofproto_rule_expire(&rule->up, reason);
abe529af
BP
4003}
4004\f
4005/* Facets. */
4006
4dff9097 4007/* Creates and returns a new facet based on 'miss'.
abe529af
BP
4008 *
4009 * The caller must already have determined that no facet with an identical
4dff9097 4010 * 'miss->flow' exists in 'miss->ofproto'.
f3827897 4011 *
bcd2633a
JP
4012 * 'rule' and 'xout' must have been created based on 'miss'.
4013 *
4014 * 'facet'' statistics are initialized based on 'stats'.
2b459b83 4015 *
b0f7b9b5
BP
4016 * The facet will initially have no subfacets. The caller should create (at
4017 * least) one subfacet with subfacet_create(). */
abe529af 4018static struct facet *
e1ec7dd4 4019facet_create(const struct flow_miss *miss)
abe529af 4020{
4dff9097 4021 struct ofproto_dpif *ofproto = miss->ofproto;
abe529af 4022 struct facet *facet;
bcd2633a 4023 struct match match;
abe529af
BP
4024
4025 facet = xzalloc(sizeof *facet);
b7e2f6b3 4026 facet->ofproto = miss->ofproto;
e1ec7dd4 4027 facet->used = miss->stats.used;
4dff9097 4028 facet->flow = miss->flow;
4dff9097
EJ
4029 facet->learn_rl = time_msec() + 500;
4030
b0f7b9b5 4031 list_init(&facet->subfacets);
abe529af
BP
4032 netflow_flow_init(&facet->nf_flow);
4033 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
4034
e1ec7dd4 4035 xlate_out_copy(&facet->xout, &miss->xout);
bcd2633a
JP
4036
4037 match_init(&match, &facet->flow, &facet->xout.wc);
4038 cls_rule_init(&facet->cr, &match, OFP_DEFAULT_PRIORITY);
0b4f2078 4039 ovs_rwlock_wrlock(&ofproto->facets.rwlock);
bcd2633a 4040 classifier_insert(&ofproto->facets, &facet->cr);
0b4f2078 4041 ovs_rwlock_unlock(&ofproto->facets.rwlock);
bcd2633a 4042
bbafd73b 4043 facet->nf_flow.output_iface = facet->xout.nf_output_iface;
abe529af
BP
4044 return facet;
4045}
4046
4047static void
4048facet_free(struct facet *facet)
4049{
4dff9097 4050 if (facet) {
bbafd73b 4051 xlate_out_uninit(&facet->xout);
4dff9097
EJ
4052 free(facet);
4053 }
abe529af
BP
4054}
4055
3d9e05f8 4056/* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
0a740f48 4057 * 'packet', which arrived on 'in_port'. */
3d9e05f8
BP
4058static bool
4059execute_odp_actions(struct ofproto_dpif *ofproto, const struct flow *flow,
4060 const struct nlattr *odp_actions, size_t actions_len,
4061 struct ofpbuf *packet)
4062{
4063 struct odputil_keybuf keybuf;
4064 struct ofpbuf key;
4065 int error;
4066
6ff686f2 4067 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
e1b1d06a 4068 odp_flow_key_from_flow(&key, flow,
4e022ec0 4069 ofp_port_to_odp_port(ofproto, flow->in_port.ofp_port));
80e5eed9 4070
acf60855 4071 error = dpif_execute(ofproto->backer->dpif, key.data, key.size,
6ff686f2 4072 odp_actions, actions_len, packet);
6ff686f2 4073 return !error;
abe529af
BP
4074}
4075
bcd2633a 4076/* Remove 'facet' from its ofproto and free up the associated memory:
abe529af
BP
4077 *
4078 * - If 'facet' was installed in the datapath, uninstalls it and updates its
b0f7b9b5 4079 * rule's statistics, via subfacet_uninstall().
abe529af
BP
4080 *
4081 * - Removes 'facet' from its rule and from ofproto->facets.
4082 */
4083static void
15baa734 4084facet_remove(struct facet *facet)
abe529af 4085{
b0f7b9b5
BP
4086 struct subfacet *subfacet, *next_subfacet;
4087
cb22974d 4088 ovs_assert(!list_is_empty(&facet->subfacets));
551a2f6c
BP
4089
4090 /* First uninstall all of the subfacets to get final statistics. */
4091 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
15baa734 4092 subfacet_uninstall(subfacet);
551a2f6c
BP
4093 }
4094
4095 /* Flush the final stats to the rule.
4096 *
4097 * This might require us to have at least one subfacet around so that we
4098 * can use its actions for accounting in facet_account(), which is why we
4099 * have uninstalled but not yet destroyed the subfacets. */
15baa734 4100 facet_flush_stats(facet);
551a2f6c
BP
4101
4102 /* Now we're really all done so destroy everything. */
b0f7b9b5
BP
4103 LIST_FOR_EACH_SAFE (subfacet, next_subfacet, list_node,
4104 &facet->subfacets) {
15baa734 4105 subfacet_destroy__(subfacet);
b0f7b9b5 4106 }
0b4f2078 4107 ovs_rwlock_wrlock(&facet->ofproto->facets.rwlock);
b7e2f6b3 4108 classifier_remove(&facet->ofproto->facets, &facet->cr);
0b4f2078 4109 ovs_rwlock_unlock(&facet->ofproto->facets.rwlock);
bcd2633a 4110 cls_rule_destroy(&facet->cr);
abe529af
BP
4111 facet_free(facet);
4112}
4113
3de9590b
BP
4114/* Feed information from 'facet' back into the learning table to keep it in
4115 * sync with what is actually flowing through the datapath. */
abe529af 4116static void
3de9590b 4117facet_learn(struct facet *facet)
abe529af 4118{
62bd7349 4119 long long int now = time_msec();
abe529af 4120
bbafd73b 4121 if (!facet->xout.has_fin_timeout && now < facet->learn_rl) {
6cf474d7
EJ
4122 return;
4123 }
4124
62bd7349 4125 facet->learn_rl = now + 500;
6cf474d7 4126
bbafd73b
EJ
4127 if (!facet->xout.has_learn
4128 && !facet->xout.has_normal
4129 && (!facet->xout.has_fin_timeout
3de9590b 4130 || !(facet->tcp_flags & (TCP_FIN | TCP_RST)))) {
abe529af
BP
4131 return;
4132 }
abe529af 4133
9dfb1f78 4134 facet_push_stats(facet, true);
3de9590b
BP
4135}
4136
4137static void
4138facet_account(struct facet *facet)
4139{
3de9590b
BP
4140 const struct nlattr *a;
4141 unsigned int left;
4142 ovs_be16 vlan_tci;
4143 uint64_t n_bytes;
abe529af 4144
b7e2f6b3 4145 if (!facet->xout.has_normal || !facet->ofproto->has_bonded_bundles) {
abe529af
BP
4146 return;
4147 }
3de9590b 4148 n_bytes = facet->byte_count - facet->accounted_bytes;
d78be13b
BP
4149
4150 /* This loop feeds byte counters to bond_account() for rebalancing to use
4151 * as a basis. We also need to track the actual VLAN on which the packet
4152 * is going to be sent to ensure that it matches the one passed to
4153 * bond_choose_output_slave(). (Otherwise, we will account to the wrong
b95fc6ba
BP
4154 * hash bucket.)
4155 *
4156 * We use the actions from an arbitrary subfacet because they should all
4157 * be equally valid for our purpose. */
d78be13b 4158 vlan_tci = facet->flow.vlan_tci;
bbafd73b
EJ
4159 NL_ATTR_FOR_EACH_UNSAFE (a, left, facet->xout.odp_actions.data,
4160 facet->xout.odp_actions.size) {
fea393b1 4161 const struct ovs_action_push_vlan *vlan;
d78be13b 4162 struct ofport_dpif *port;
abe529af 4163
d78be13b 4164 switch (nl_attr_type(a)) {
df2c07f4 4165 case OVS_ACTION_ATTR_OUTPUT:
b7e2f6b3 4166 port = get_odp_port(facet->ofproto, nl_attr_get_odp_port(a));
abe529af 4167 if (port && port->bundle && port->bundle->bond) {
d78be13b 4168 bond_account(port->bundle->bond, &facet->flow,
dc155bff 4169 vlan_tci_to_vid(vlan_tci), n_bytes);
abe529af 4170 }
d78be13b
BP
4171 break;
4172
fea393b1
BP
4173 case OVS_ACTION_ATTR_POP_VLAN:
4174 vlan_tci = htons(0);
d78be13b
BP
4175 break;
4176
fea393b1
BP
4177 case OVS_ACTION_ATTR_PUSH_VLAN:
4178 vlan = nl_attr_get(a);
4179 vlan_tci = vlan->vlan_tci;
d78be13b 4180 break;
abe529af
BP
4181 }
4182 }
4183}
4184
abe529af
BP
4185/* Returns true if the only action for 'facet' is to send to the controller.
4186 * (We don't report NetFlow expiration messages for such facets because they
4187 * are just part of the control logic for the network, not real traffic). */
4188static bool
4189facet_is_controller_flow(struct facet *facet)
4190{
f25d0cf3 4191 if (facet) {
b7e2f6b3 4192 struct ofproto_dpif *ofproto = facet->ofproto;
ad3efdcb
EJ
4193 const struct ofpact *ofpacts;
4194 struct rule_dpif *rule;
4195 size_t ofpacts_len;
4196 bool is_controller;
4197
4198 rule_dpif_lookup(ofproto, &facet->flow, NULL, &rule);
4199 ofpacts_len = rule->up.ofpacts_len;
4200 ofpacts = rule->up.ofpacts;
4201 is_controller = ofpacts_len > 0
4202 && ofpacts->type == OFPACT_CONTROLLER
4203 && ofpact_next(ofpacts) >= ofpact_end(ofpacts, ofpacts_len);
70742c7f 4204 rule_dpif_release(rule);
ad3efdcb 4205 return is_controller;
f25d0cf3
BP
4206 }
4207 return false;
abe529af
BP
4208}
4209
4210/* Folds all of 'facet''s statistics into its rule. Also updates the
4211 * accounting ofhook and emits a NetFlow expiration if appropriate. All of
4212 * 'facet''s statistics in the datapath should have been zeroed and folded into
4213 * its packet and byte counts before this function is called. */
4214static void
15baa734 4215facet_flush_stats(struct facet *facet)
abe529af 4216{
b7e2f6b3 4217 struct ofproto_dpif *ofproto = facet->ofproto;
b0f7b9b5
BP
4218 struct subfacet *subfacet;
4219
4220 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
cb22974d
BP
4221 ovs_assert(!subfacet->dp_byte_count);
4222 ovs_assert(!subfacet->dp_packet_count);
b0f7b9b5 4223 }
abe529af 4224
9dfb1f78 4225 facet_push_stats(facet, false);
3de9590b
BP
4226 if (facet->accounted_bytes < facet->byte_count) {
4227 facet_account(facet);
4228 facet->accounted_bytes = facet->byte_count;
4229 }
abe529af
BP
4230
4231 if (ofproto->netflow && !facet_is_controller_flow(facet)) {
4232 struct ofexpired expired;
4233 expired.flow = facet->flow;
4234 expired.packet_count = facet->packet_count;
4235 expired.byte_count = facet->byte_count;
4236 expired.used = facet->used;
4237 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4238 }
4239
abe529af
BP
4240 /* Reset counters to prevent double counting if 'facet' ever gets
4241 * reinstalled. */
bbb5d219 4242 facet_reset_counters(facet);
abe529af
BP
4243
4244 netflow_flow_clear(&facet->nf_flow);
0e553d9c 4245 facet->tcp_flags = 0;
abe529af
BP
4246}
4247
bcd2633a
JP
4248/* Searches 'ofproto''s table of facets for one which would be responsible for
4249 * 'flow'. Returns it if found, otherwise a null pointer.
2b459b83 4250 *
abe529af
BP
4251 * The returned facet might need revalidation; use facet_lookup_valid()
4252 * instead if that is important. */
4253static struct facet *
bcd2633a 4254facet_find(struct ofproto_dpif *ofproto, const struct flow *flow)
abe529af 4255{
0b4f2078
EJ
4256 struct cls_rule *cr;
4257
4258 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
4259 cr = classifier_lookup(&ofproto->facets, flow, NULL);
4260 ovs_rwlock_unlock(&ofproto->facets.rwlock);
bcd2633a 4261 return cr ? CONTAINER_OF(cr, struct facet, cr) : NULL;
abe529af
BP
4262}
4263
bcd2633a
JP
4264/* Searches 'ofproto''s table of facets for one capable that covers
4265 * 'flow'. Returns it if found, otherwise a null pointer.
2b459b83 4266 *
abe529af
BP
4267 * The returned facet is guaranteed to be valid. */
4268static struct facet *
bcd2633a 4269facet_lookup_valid(struct ofproto_dpif *ofproto, const struct flow *flow)
abe529af 4270{
c57b2226 4271 struct facet *facet;
abe529af 4272
bcd2633a 4273 facet = facet_find(ofproto, flow);
abe529af 4274 if (facet
a1616063 4275 && ofproto->backer->need_revalidate
5bf64ade 4276 && !facet_revalidate(facet)) {
0305ce1f 4277 return NULL;
abe529af
BP
4278 }
4279
4280 return facet;
4281}
4282
6814e51f
BP
4283static bool
4284facet_check_consistency(struct facet *facet)
4285{
4286 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
4287
bbafd73b
EJ
4288 struct xlate_out xout;
4289 struct xlate_in xin;
050ac423 4290
6814e51f 4291 struct rule_dpif *rule;
e1ec7dd4 4292 bool ok;
6814e51f
BP
4293
4294 /* Check the datapath actions for consistency. */
ad3efdcb 4295 rule_dpif_lookup(facet->ofproto, &facet->flow, NULL, &rule);
b7e2f6b3 4296 xlate_in_init(&xin, facet->ofproto, &facet->flow, rule, 0, NULL);
bbafd73b 4297 xlate_actions(&xin, &xout);
70742c7f 4298 rule_dpif_release(rule);
6814e51f 4299
bbafd73b 4300 ok = ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)
e1ec7dd4 4301 && facet->xout.slow == xout.slow;
4dff9097
EJ
4302 if (!ok && !VLOG_DROP_WARN(&rl)) {
4303 struct ds s = DS_EMPTY_INITIALIZER;
c53e1132 4304
4dff9097
EJ
4305 flow_format(&s, &facet->flow);
4306 ds_put_cstr(&s, ": inconsistency in facet");
c53e1132 4307
bbafd73b 4308 if (!ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)) {
9616614b 4309 ds_put_cstr(&s, " (actions were: ");
bbafd73b
EJ
4310 format_odp_actions(&s, facet->xout.odp_actions.data,
4311 facet->xout.odp_actions.size);
9616614b 4312 ds_put_cstr(&s, ") (correct actions: ");
bbafd73b
EJ
4313 format_odp_actions(&s, xout.odp_actions.data,
4314 xout.odp_actions.size);
c0a71f4e 4315 ds_put_char(&s, ')');
6814e51f 4316 }
4dff9097 4317
bbafd73b
EJ
4318 if (facet->xout.slow != xout.slow) {
4319 ds_put_format(&s, " slow path incorrect. should be %d", xout.slow);
4dff9097
EJ
4320 }
4321
9616614b 4322 ds_destroy(&s);
6814e51f 4323 }
bbafd73b 4324 xlate_out_uninit(&xout);
6814e51f
BP
4325
4326 return ok;
4327}
4328
15baa734 4329/* Re-searches the classifier for 'facet':
abe529af
BP
4330 *
4331 * - If the rule found is different from 'facet''s current rule, moves
4332 * 'facet' to the new rule and recompiles its actions.
4333 *
4334 * - If the rule found is the same as 'facet''s current rule, leaves 'facet'
f231418e
EJ
4335 * where it is and recompiles its actions anyway.
4336 *
4337 * - If any of 'facet''s subfacets correspond to a new flow according to
8449c4d6 4338 * xlate_receive(), 'facet' is removed.
5bf64ade
EJ
4339 *
4340 * Returns true if 'facet' is still valid. False if 'facet' was removed. */
4341static bool
15baa734 4342facet_revalidate(struct facet *facet)
abe529af 4343{
b7e2f6b3 4344 struct ofproto_dpif *ofproto = facet->ofproto;
abe529af 4345 struct rule_dpif *new_rule;
b0f7b9b5 4346 struct subfacet *subfacet;
bcd2633a 4347 struct flow_wildcards wc;
bbafd73b
EJ
4348 struct xlate_out xout;
4349 struct xlate_in xin;
abe529af
BP
4350
4351 COVERAGE_INC(facet_revalidate);
4352
f231418e
EJ
4353 /* Check that child subfacets still correspond to this facet. Tunnel
4354 * configuration changes could cause a subfacet's OpenFlow in_port to
4355 * change. */
4356 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4357 struct ofproto_dpif *recv_ofproto;
4358 struct flow recv_flow;
4359 int error;
4360
8449c4d6
EJ
4361 error = xlate_receive(ofproto->backer, NULL, subfacet->key,
4362 subfacet->key_len, &recv_flow, NULL,
4363 &recv_ofproto, NULL);
f231418e
EJ
4364 if (error
4365 || recv_ofproto != ofproto
bcd2633a 4366 || facet != facet_find(ofproto, &recv_flow)) {
f231418e 4367 facet_remove(facet);
5bf64ade 4368 return false;
f231418e
EJ
4369 }
4370 }
4371
bcd2633a 4372 flow_wildcards_init_catchall(&wc);
ad3efdcb 4373 rule_dpif_lookup(ofproto, &facet->flow, &wc, &new_rule);
abe529af 4374
df2c07f4 4375 /* Calculate new datapath actions.
abe529af
BP
4376 *
4377 * We do not modify any 'facet' state yet, because we might need to, e.g.,
4378 * emit a NetFlow expiration and, if so, we need to have the old state
4379 * around to properly compose it. */
47b0deae 4380 xlate_in_init(&xin, ofproto, &facet->flow, new_rule, 0, NULL);
bbafd73b 4381 xlate_actions(&xin, &xout);
bcd2633a 4382 flow_wildcards_or(&xout.wc, &xout.wc, &wc);
4dff9097
EJ
4383
4384 /* A facet's slow path reason should only change under dramatic
4385 * circumstances. Rather than try to update everything, it's simpler to
bcd2633a
JP
4386 * remove the facet and start over.
4387 *
4388 * More importantly, if a facet's wildcards change, it will be relatively
4389 * difficult to figure out if its subfacets still belong to it, and if not
4390 * which facet they may belong to. Again, to avoid the complexity, we
4391 * simply give up instead. */
4392 if (facet->xout.slow != xout.slow
4393 || memcmp(&facet->xout.wc, &xout.wc, sizeof xout.wc)) {
4dff9097 4394 facet_remove(facet);
bbafd73b 4395 xlate_out_uninit(&xout);
70742c7f 4396 rule_dpif_release(new_rule);
4dff9097
EJ
4397 return false;
4398 }
6a7e895f 4399
bbafd73b 4400 if (!ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)) {
4dff9097
EJ
4401 LIST_FOR_EACH(subfacet, list_node, &facet->subfacets) {
4402 if (subfacet->path == SF_FAST_PATH) {
4403 struct dpif_flow_stats stats;
b95fc6ba 4404
bbafd73b 4405 subfacet_install(subfacet, &xout.odp_actions, &stats);
4dff9097 4406 subfacet_update_stats(subfacet, &stats);
b95fc6ba 4407 }
abe529af 4408 }
b95fc6ba 4409
15baa734 4410 facet_flush_stats(facet);
4dff9097 4411
bbafd73b
EJ
4412 ofpbuf_clear(&facet->xout.odp_actions);
4413 ofpbuf_put(&facet->xout.odp_actions, xout.odp_actions.data,
4414 xout.odp_actions.size);
abe529af
BP
4415 }
4416
4417 /* Update 'facet' now that we've taken care of all the old state. */
bbafd73b
EJ
4418 facet->xout.slow = xout.slow;
4419 facet->xout.has_learn = xout.has_learn;
4420 facet->xout.has_normal = xout.has_normal;
4421 facet->xout.has_fin_timeout = xout.has_fin_timeout;
4422 facet->xout.nf_output_iface = xout.nf_output_iface;
4423 facet->xout.mirrors = xout.mirrors;
4424 facet->nf_flow.output_iface = facet->xout.nf_output_iface;
b7e2f6b3 4425 facet->used = MAX(facet->used, new_rule->up.created);
5bf64ade 4426
bbafd73b 4427 xlate_out_uninit(&xout);
70742c7f 4428 rule_dpif_release(new_rule);
5bf64ade 4429 return true;
abe529af
BP
4430}
4431
bbb5d219
EJ
4432static void
4433facet_reset_counters(struct facet *facet)
4434{
4435 facet->packet_count = 0;
4436 facet->byte_count = 0;
9d24de3b
JP
4437 facet->prev_packet_count = 0;
4438 facet->prev_byte_count = 0;
bbb5d219
EJ
4439 facet->accounted_bytes = 0;
4440}
4441
e1ec7dd4
EJ
4442static void
4443flow_push_stats(struct ofproto_dpif *ofproto, struct flow *flow,
4444 struct dpif_flow_stats *stats, bool may_learn)
4445{
4446 struct ofport_dpif *in_port;
4447 struct rule_dpif *rule;
4448 struct xlate_in xin;
4449
4450 in_port = get_ofp_port(ofproto, flow->in_port.ofp_port);
4451 if (in_port && in_port->is_tunnel) {
4452 netdev_vport_inc_rx(in_port->up.netdev, stats);
4453 }
4454
4455 rule_dpif_lookup(ofproto, flow, NULL, &rule);
70742c7f 4456 rule_dpif_credit_stats(rule, stats);
e1ec7dd4
EJ
4457 xlate_in_init(&xin, ofproto, flow, rule, stats->tcp_flags, NULL);
4458 xin.resubmit_stats = stats;
4459 xin.may_learn = may_learn;
4460 xlate_actions_for_side_effects(&xin);
70742c7f 4461 rule_dpif_release(rule);
e1ec7dd4
EJ
4462}
4463
abe529af 4464static void
9dfb1f78 4465facet_push_stats(struct facet *facet, bool may_learn)
abe529af 4466{
112bc5f4 4467 struct dpif_flow_stats stats;
abe529af 4468
cb22974d
BP
4469 ovs_assert(facet->packet_count >= facet->prev_packet_count);
4470 ovs_assert(facet->byte_count >= facet->prev_byte_count);
4471 ovs_assert(facet->used >= facet->prev_used);
abe529af 4472
112bc5f4
BP
4473 stats.n_packets = facet->packet_count - facet->prev_packet_count;
4474 stats.n_bytes = facet->byte_count - facet->prev_byte_count;
4475 stats.used = facet->used;
9dfb1f78
EJ
4476 stats.tcp_flags = facet->tcp_flags;
4477
4478 if (may_learn || stats.n_packets || facet->used > facet->prev_used) {
9d24de3b
JP
4479 facet->prev_packet_count = facet->packet_count;
4480 facet->prev_byte_count = facet->byte_count;
4481 facet->prev_used = facet->used;
abe529af 4482
e1ec7dd4 4483 netflow_flow_update_time(facet->ofproto->netflow, &facet->nf_flow,
9dfb1f78
EJ
4484 facet->used);
4485 netflow_flow_update_flags(&facet->nf_flow, facet->tcp_flags);
e1ec7dd4 4486 mirror_update_stats(facet->ofproto->mbridge, facet->xout.mirrors,
ec7ceaed 4487 stats.n_packets, stats.n_bytes);
e1ec7dd4 4488 flow_push_stats(facet->ofproto, &facet->flow, &stats, may_learn);
abe529af
BP
4489 }
4490}
4491
8844e035 4492static void
4464589e 4493push_all_stats__(bool run_fast)
8844e035
EJ
4494{
4495 static long long int rl = LLONG_MIN;
4496 struct ofproto_dpif *ofproto;
4497
4498 if (time_msec() < rl) {
4499 return;
4500 }
4501
4502 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
bcd2633a 4503 struct cls_cursor cursor;
8844e035
EJ
4504 struct facet *facet;
4505
0b4f2078 4506 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a
JP
4507 cls_cursor_init(&cursor, &ofproto->facets, NULL);
4508 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
9dfb1f78 4509 facet_push_stats(facet, false);
4464589e
EJ
4510 if (run_fast) {
4511 run_fast_rl();
4512 }
8844e035 4513 }
0b4f2078 4514 ovs_rwlock_unlock(&ofproto->facets.rwlock);
8844e035
EJ
4515 }
4516
4517 rl = time_msec() + 100;
4518}
4519
4464589e
EJ
4520static void
4521push_all_stats(void)
4522{
4523 push_all_stats__(true);
4524}
4525
9583bc14 4526void
70742c7f
EJ
4527rule_dpif_credit_stats(struct rule_dpif *rule,
4528 const struct dpif_flow_stats *stats)
abe529af 4529{
9fbe253e 4530 ovs_mutex_lock(&rule->stats_mutex);
112bc5f4
BP
4531 rule->packet_count += stats->n_packets;
4532 rule->byte_count += stats->n_bytes;
448c2fa8 4533 rule->up.used = MAX(rule->up.used, stats->used);
9fbe253e 4534 ovs_mutex_unlock(&rule->stats_mutex);
abe529af 4535}
70742c7f
EJ
4536
4537bool
4538rule_dpif_fail_open(const struct rule_dpif *rule)
4539{
4540 return rule->up.cr.priority == FAIL_OPEN_PRIORITY;
4541}
4542
4543ovs_be64
4544rule_dpif_get_flow_cookie(const struct rule_dpif *rule)
4545{
4546 return rule->up.flow_cookie;
4547}
4548
4549void
4550rule_dpif_reduce_timeouts(struct rule_dpif *rule, uint16_t idle_timeout,
4551 uint16_t hard_timeout)
4552{
4553 ofproto_rule_reduce_timeouts(&rule->up, idle_timeout, hard_timeout);
4554}
4555
4556void
4557rule_dpif_get_actions(const struct rule_dpif *rule,
4558 const struct ofpact **ofpacts, size_t *ofpacts_len)
4559{
4560 *ofpacts = rule->up.ofpacts;
4561 *ofpacts_len = rule->up.ofpacts_len;
4562}
abe529af 4563\f
b0f7b9b5
BP
4564/* Subfacets. */
4565
4566static struct subfacet *
04d08d54
EJ
4567subfacet_find(struct dpif_backer *backer, const struct nlattr *key,
4568 size_t key_len, uint32_t key_hash)
b0f7b9b5
BP
4569{
4570 struct subfacet *subfacet;
4571
4572 HMAP_FOR_EACH_WITH_HASH (subfacet, hmap_node, key_hash,
04d08d54 4573 &backer->subfacets) {
9566abf9
EJ
4574 if (subfacet->key_len == key_len
4575 && !memcmp(key, subfacet->key, key_len)) {
b0f7b9b5
BP
4576 return subfacet;
4577 }
4578 }
4579
4580 return NULL;
4581}
4582
4583/* Searches 'facet' (within 'ofproto') for a subfacet with the specified
a088a1ff
JP
4584 * 'key_fitness', 'key', and 'key_len' members in 'miss'. Returns the
4585 * existing subfacet if there is one, otherwise creates and returns a
4dff9097 4586 * new subfacet. */
b0f7b9b5 4587static struct subfacet *
e1ec7dd4 4588subfacet_create(struct facet *facet, struct flow_miss *miss)
b0f7b9b5 4589{
04d08d54 4590 struct dpif_backer *backer = miss->ofproto->backer;
a088a1ff
JP
4591 enum odp_key_fitness key_fitness = miss->key_fitness;
4592 const struct nlattr *key = miss->key;
4593 size_t key_len = miss->key_len;
4594 uint32_t key_hash;
b0f7b9b5
BP
4595 struct subfacet *subfacet;
4596
a088a1ff
JP
4597 key_hash = odp_flow_key_hash(key, key_len);
4598
3b145dd7
BP
4599 if (list_is_empty(&facet->subfacets)) {
4600 subfacet = &facet->one_subfacet;
4601 } else {
04d08d54 4602 subfacet = subfacet_find(backer, key, key_len, key_hash);
3b145dd7
BP
4603 if (subfacet) {
4604 if (subfacet->facet == facet) {
4605 return subfacet;
4606 }
4607
4608 /* This shouldn't happen. */
4609 VLOG_ERR_RL(&rl, "subfacet with wrong facet");
4610 subfacet_destroy(subfacet);
b0f7b9b5
BP
4611 }
4612
3b145dd7 4613 subfacet = xmalloc(sizeof *subfacet);
b0f7b9b5
BP
4614 }
4615
04d08d54 4616 hmap_insert(&backer->subfacets, &subfacet->hmap_node, key_hash);
b0f7b9b5
BP
4617 list_push_back(&facet->subfacets, &subfacet->list_node);
4618 subfacet->facet = facet;
b0f7b9b5 4619 subfacet->key_fitness = key_fitness;
9566abf9
EJ
4620 subfacet->key = xmemdup(key, key_len);
4621 subfacet->key_len = key_len;
e1ec7dd4
EJ
4622 subfacet->used = miss->stats.used;
4623 subfacet->created = subfacet->used;
26cd7e34
BP
4624 subfacet->dp_packet_count = 0;
4625 subfacet->dp_byte_count = 0;
6a7e895f 4626 subfacet->path = SF_NOT_INSTALLED;
04d08d54 4627 subfacet->backer = backer;
b0f7b9b5 4628
04d08d54 4629 backer->subfacet_add_count++;
b0f7b9b5
BP
4630 return subfacet;
4631}
4632
b0f7b9b5
BP
4633/* Uninstalls 'subfacet' from the datapath, if it is installed, removes it from
4634 * its facet within 'ofproto', and frees it. */
4635static void
15baa734 4636subfacet_destroy__(struct subfacet *subfacet)
b0f7b9b5 4637{
15baa734 4638 struct facet *facet = subfacet->facet;
b7e2f6b3 4639 struct ofproto_dpif *ofproto = facet->ofproto;
15baa734 4640
655ab909 4641 /* Update ofproto stats before uninstall the subfacet. */
dc54ef36 4642 ofproto->backer->subfacet_del_count++;
655ab909 4643
15baa734 4644 subfacet_uninstall(subfacet);
04d08d54 4645 hmap_remove(&subfacet->backer->subfacets, &subfacet->hmap_node);
b0f7b9b5
BP
4646 list_remove(&subfacet->list_node);
4647 free(subfacet->key);
26cd7e34
BP
4648 if (subfacet != &facet->one_subfacet) {
4649 free(subfacet);
4650 }
b0f7b9b5
BP
4651}
4652
4653/* Destroys 'subfacet', as with subfacet_destroy__(), and then if this was the
4654 * last remaining subfacet in its facet destroys the facet too. */
4655static void
15baa734 4656subfacet_destroy(struct subfacet *subfacet)
b0f7b9b5
BP
4657{
4658 struct facet *facet = subfacet->facet;
4659
551a2f6c
BP
4660 if (list_is_singleton(&facet->subfacets)) {
4661 /* facet_remove() needs at least one subfacet (it will remove it). */
15baa734 4662 facet_remove(facet);
551a2f6c 4663 } else {
15baa734 4664 subfacet_destroy__(subfacet);
b0f7b9b5
BP
4665 }
4666}
4667
1d85f9e5 4668static void
04d08d54 4669subfacet_destroy_batch(struct dpif_backer *backer,
1d85f9e5
JP
4670 struct subfacet **subfacets, int n)
4671{
1d85f9e5
JP
4672 struct dpif_op ops[SUBFACET_DESTROY_MAX_BATCH];
4673 struct dpif_op *opsp[SUBFACET_DESTROY_MAX_BATCH];
1d85f9e5
JP
4674 struct dpif_flow_stats stats[SUBFACET_DESTROY_MAX_BATCH];
4675 int i;
4676
4677 for (i = 0; i < n; i++) {
4678 ops[i].type = DPIF_OP_FLOW_DEL;
9566abf9
EJ
4679 ops[i].u.flow_del.key = subfacets[i]->key;
4680 ops[i].u.flow_del.key_len = subfacets[i]->key_len;
1d85f9e5
JP
4681 ops[i].u.flow_del.stats = &stats[i];
4682 opsp[i] = &ops[i];
4683 }
4684
04d08d54 4685 dpif_operate(backer->dpif, opsp, n);
1d85f9e5
JP
4686 for (i = 0; i < n; i++) {
4687 subfacet_reset_dp_stats(subfacets[i], &stats[i]);
4688 subfacets[i]->path = SF_NOT_INSTALLED;
4689 subfacet_destroy(subfacets[i]);
8fa4d1d0 4690 run_fast_rl();
1d85f9e5
JP
4691 }
4692}
4693
b0f7b9b5
BP
4694/* Updates 'subfacet''s datapath flow, setting its actions to 'actions_len'
4695 * bytes of actions in 'actions'. If 'stats' is non-null, statistics counters
4696 * in the datapath will be zeroed and 'stats' will be updated with traffic new
4697 * since 'subfacet' was last updated.
4698 *
4699 * Returns 0 if successful, otherwise a positive errno value. */
4700static int
4dff9097
EJ
4701subfacet_install(struct subfacet *subfacet, const struct ofpbuf *odp_actions,
4702 struct dpif_flow_stats *stats)
b0f7b9b5 4703{
15baa734 4704 struct facet *facet = subfacet->facet;
bbafd73b 4705 enum subfacet_path path = facet->xout.slow ? SF_SLOW_PATH : SF_FAST_PATH;
4dff9097
EJ
4706 const struct nlattr *actions = odp_actions->data;
4707 size_t actions_len = odp_actions->size;
d445cc16
JP
4708 struct odputil_keybuf maskbuf;
4709 struct ofpbuf mask;
4dff9097 4710
6a7e895f 4711 uint64_t slow_path_stub[128 / 8];
b0f7b9b5 4712 enum dpif_flow_put_flags flags;
b0f7b9b5
BP
4713 int ret;
4714
0f74f625
AZ
4715 flags = subfacet->path == SF_NOT_INSTALLED ? DPIF_FP_CREATE
4716 : DPIF_FP_MODIFY;
b0f7b9b5
BP
4717 if (stats) {
4718 flags |= DPIF_FP_ZERO_STATS;
4719 }
4720
6a7e895f 4721 if (path == SF_SLOW_PATH) {
b7e2f6b3 4722 compose_slow_path(facet->ofproto, &facet->flow, facet->xout.slow,
6a7e895f
BP
4723 slow_path_stub, sizeof slow_path_stub,
4724 &actions, &actions_len);
4725 }
4726
d445cc16 4727 ofpbuf_use_stack(&mask, &maskbuf, sizeof maskbuf);
6b35e630
JP
4728 if (enable_megaflows) {
4729 odp_flow_key_from_mask(&mask, &facet->xout.wc.masks,
4730 &facet->flow, UINT32_MAX);
4731 }
d445cc16
JP
4732
4733 ret = dpif_flow_put(subfacet->backer->dpif, flags, subfacet->key,
4734 subfacet->key_len, mask.data, mask.size,
e6cc0bab 4735 actions, actions_len, stats);
b0f7b9b5
BP
4736
4737 if (stats) {
4738 subfacet_reset_dp_stats(subfacet, stats);
4739 }
4740
9b1a48c2
JP
4741 if (ret) {
4742 COVERAGE_INC(subfacet_install_fail);
4743 } else {
6a7e895f
BP
4744 subfacet->path = path;
4745 }
b0f7b9b5
BP
4746 return ret;
4747}
4748
4749/* If 'subfacet' is installed in the datapath, uninstalls it. */
4750static void
15baa734 4751subfacet_uninstall(struct subfacet *subfacet)
b0f7b9b5 4752{
6a7e895f 4753 if (subfacet->path != SF_NOT_INSTALLED) {
b7e2f6b3 4754 struct ofproto_dpif *ofproto = subfacet->facet->ofproto;
b0f7b9b5 4755 struct dpif_flow_stats stats;
b0f7b9b5
BP
4756 int error;
4757
9566abf9
EJ
4758 error = dpif_flow_del(ofproto->backer->dpif, subfacet->key,
4759 subfacet->key_len, &stats);
b0f7b9b5
BP
4760 subfacet_reset_dp_stats(subfacet, &stats);
4761 if (!error) {
15baa734 4762 subfacet_update_stats(subfacet, &stats);
b0f7b9b5 4763 }
6a7e895f 4764 subfacet->path = SF_NOT_INSTALLED;
b0f7b9b5 4765 } else {
cb22974d
BP
4766 ovs_assert(subfacet->dp_packet_count == 0);
4767 ovs_assert(subfacet->dp_byte_count == 0);
b0f7b9b5
BP
4768 }
4769}
4770
4771/* Resets 'subfacet''s datapath statistics counters. This should be called
4772 * when 'subfacet''s statistics are cleared in the datapath. If 'stats' is
4773 * non-null, it should contain the statistics returned by dpif when 'subfacet'
4774 * was reset in the datapath. 'stats' will be modified to include only
4775 * statistics new since 'subfacet' was last updated. */
4776static void
4777subfacet_reset_dp_stats(struct subfacet *subfacet,
4778 struct dpif_flow_stats *stats)
4779{
4780 if (stats
4781 && subfacet->dp_packet_count <= stats->n_packets
4782 && subfacet->dp_byte_count <= stats->n_bytes) {
4783 stats->n_packets -= subfacet->dp_packet_count;
4784 stats->n_bytes -= subfacet->dp_byte_count;
4785 }
4786
4787 subfacet->dp_packet_count = 0;
4788 subfacet->dp_byte_count = 0;
4789}
4790
b0f7b9b5
BP
4791/* Folds the statistics from 'stats' into the counters in 'subfacet'.
4792 *
4793 * Because of the meaning of a subfacet's counters, it only makes sense to do
4794 * this if 'stats' are not tracked in the datapath, that is, if 'stats'
4795 * represents a packet that was sent by hand or if it represents statistics
4796 * that have been cleared out of the datapath. */
4797static void
15baa734 4798subfacet_update_stats(struct subfacet *subfacet,
b0f7b9b5
BP
4799 const struct dpif_flow_stats *stats)
4800{
4801 if (stats->n_packets || stats->used > subfacet->used) {
4802 struct facet *facet = subfacet->facet;
4803
9dfb1f78
EJ
4804 subfacet->used = MAX(subfacet->used, stats->used);
4805 facet->used = MAX(facet->used, stats->used);
b0f7b9b5
BP
4806 facet->packet_count += stats->n_packets;
4807 facet->byte_count += stats->n_bytes;
0e553d9c 4808 facet->tcp_flags |= stats->tcp_flags;
b0f7b9b5
BP
4809 }
4810}
4811\f
abe529af
BP
4812/* Rules. */
4813
bcd2633a
JP
4814/* Lookup 'flow' in 'ofproto''s classifier. If 'wc' is non-null, sets
4815 * the fields that were relevant as part of the lookup. */
ad3efdcb 4816void
bcd2633a 4817rule_dpif_lookup(struct ofproto_dpif *ofproto, const struct flow *flow,
ad3efdcb 4818 struct flow_wildcards *wc, struct rule_dpif **rule)
c57b2226 4819{
ec89fc6f 4820 struct ofport_dpif *port;
c57b2226 4821
ad3efdcb
EJ
4822 if (rule_dpif_lookup_in_table(ofproto, flow, wc, 0, rule)) {
4823 return;
c57b2226 4824 }
ec89fc6f
EJ
4825 port = get_ofp_port(ofproto, flow->in_port.ofp_port);
4826 if (!port) {
4827 VLOG_WARN_RL(&rl, "packet-in on unknown OpenFlow port %"PRIu16,
4828 flow->in_port.ofp_port);
4829 }
c57b2226 4830
70742c7f
EJ
4831 choose_miss_rule(port ? port->up.pp.config : 0, ofproto->miss_rule,
4832 ofproto->no_packet_in_rule, rule);
c57b2226
BP
4833}
4834
ad3efdcb 4835bool
9583bc14
EJ
4836rule_dpif_lookup_in_table(struct ofproto_dpif *ofproto,
4837 const struct flow *flow, struct flow_wildcards *wc,
ad3efdcb 4838 uint8_t table_id, struct rule_dpif **rule)
884e1dc4 4839 OVS_TRY_RDLOCK(true, (*rule)->up.rwlock)
abe529af 4840{
7257b535
BP
4841 struct cls_rule *cls_rule;
4842 struct classifier *cls;
7fd51d39 4843 bool frag;
7257b535 4844
ad3efdcb 4845 *rule = NULL;
9cdaaebe 4846 if (table_id >= N_TABLES) {
ad3efdcb 4847 return false;
9cdaaebe
BP
4848 }
4849
1dd35f8a 4850 if (wc) {
7431e171 4851 memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1dd35f8a
JP
4852 wc->masks.nw_frag |= FLOW_NW_FRAG_MASK;
4853 }
4854
d0918789 4855 cls = &ofproto->up.tables[table_id].cls;
ad3efdcb 4856 ovs_rwlock_rdlock(&cls->rwlock);
7fd51d39
BP
4857 frag = (flow->nw_frag & FLOW_NW_FRAG_ANY) != 0;
4858 if (frag && ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
4859 /* We must pretend that transport ports are unavailable. */
7257b535
BP
4860 struct flow ofpc_normal_flow = *flow;
4861 ofpc_normal_flow.tp_src = htons(0);
4862 ofpc_normal_flow.tp_dst = htons(0);
bcd2633a 4863 cls_rule = classifier_lookup(cls, &ofpc_normal_flow, wc);
7fd51d39
BP
4864 } else if (frag && ofproto->up.frag_handling == OFPC_FRAG_DROP) {
4865 cls_rule = &ofproto->drop_frags_rule->up.cr;
bcd2633a
JP
4866 if (wc) {
4867 flow_wildcards_init_exact(wc);
4868 }
7257b535 4869 } else {
bcd2633a 4870 cls_rule = classifier_lookup(cls, flow, wc);
7257b535 4871 }
ad3efdcb
EJ
4872
4873 *rule = rule_dpif_cast(rule_from_cls_rule(cls_rule));
884e1dc4 4874 if (*rule && ovs_rwlock_tryrdlock(&(*rule)->up.rwlock)) {
ad3efdcb
EJ
4875 /* The rule is in the process of being removed. Best we can do is
4876 * pretend it isn't there. */
4877 *rule = NULL;
4878 }
4879 ovs_rwlock_unlock(&cls->rwlock);
4880
4881 return *rule != NULL;
abe529af
BP
4882}
4883
ec89fc6f
EJ
4884/* Given a port configuration (specified as zero if there's no port), chooses
4885 * which of 'miss_rule' and 'no_packet_in_rule' should be used in case of a
4886 * flow table miss. */
70742c7f 4887void
ec89fc6f 4888choose_miss_rule(enum ofputil_port_config config, struct rule_dpif *miss_rule,
70742c7f
EJ
4889 struct rule_dpif *no_packet_in_rule, struct rule_dpif **rule)
4890 OVS_NO_THREAD_SAFETY_ANALYSIS
c376f9a3 4891{
70742c7f 4892 *rule = config & OFPUTIL_PC_NO_PACKET_IN ? no_packet_in_rule : miss_rule;
884e1dc4 4893 ovs_rwlock_rdlock(&(*rule)->up.rwlock);
c376f9a3
IY
4894}
4895
ad3efdcb 4896void
70742c7f 4897rule_dpif_release(struct rule_dpif *rule)
c1f1f653 4898 OVS_NO_THREAD_SAFETY_ANALYSIS
ad3efdcb
EJ
4899{
4900 if (rule) {
884e1dc4 4901 ovs_rwlock_unlock(&rule->up.rwlock);
ad3efdcb
EJ
4902 }
4903}
4904
7ee20df1
BP
4905static void
4906complete_operation(struct rule_dpif *rule)
4907{
4908 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4909
a1616063 4910 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
7ee20df1
BP
4911 if (clogged) {
4912 struct dpif_completion *c = xmalloc(sizeof *c);
4913 c->op = rule->up.pending;
4914 list_push_back(&ofproto->completions, &c->list_node);
4915 } else {
4916 ofoperation_complete(rule->up.pending, 0);
4917 }
4918}
4919
70742c7f
EJ
4920static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
4921{
4922 return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
4923}
4924
abe529af
BP
4925static struct rule *
4926rule_alloc(void)
4927{
4928 struct rule_dpif *rule = xmalloc(sizeof *rule);
4929 return &rule->up;
4930}
4931
4932static void
4933rule_dealloc(struct rule *rule_)
4934{
4935 struct rule_dpif *rule = rule_dpif_cast(rule_);
4936 free(rule);
4937}
4938
90bf1e07 4939static enum ofperr
abe529af
BP
4940rule_construct(struct rule *rule_)
4941{
4942 struct rule_dpif *rule = rule_dpif_cast(rule_);
834d6caf 4943 ovs_mutex_init(&rule->stats_mutex);
9fbe253e 4944 ovs_mutex_lock(&rule->stats_mutex);
abe529af
BP
4945 rule->packet_count = 0;
4946 rule->byte_count = 0;
9fbe253e 4947 ovs_mutex_unlock(&rule->stats_mutex);
abe529af
BP
4948 return 0;
4949}
4950
4951static void
8037acb4 4952rule_insert(struct rule *rule_)
abe529af 4953{
9fbe253e
EJ
4954 struct rule_dpif *rule = rule_dpif_cast(rule_);
4955 complete_operation(rule);
8037acb4
BP
4956}
4957
4958static void
4959rule_delete(struct rule *rule_)
4960{
4961 struct rule_dpif *rule = rule_dpif_cast(rule_);
4962 complete_operation(rule);
4963}
4964
4965static void
4966rule_destruct(struct rule *rule_)
4967{
4968 struct rule_dpif *rule = rule_dpif_cast(rule_);
9fbe253e 4969 ovs_mutex_destroy(&rule->stats_mutex);
abe529af
BP
4970}
4971
4972static void
4973rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes)
4974{
4975 struct rule_dpif *rule = rule_dpif_cast(rule_);
abe529af 4976
4464589e
EJ
4977 /* push_all_stats() can handle flow misses which, when using the learn
4978 * action, can cause rules to be added and deleted. This can corrupt our
4979 * caller's datastructures which assume that rule_get_stats() doesn't have
4980 * an impact on the flow table. To be safe, we disable miss handling. */
4981 push_all_stats__(false);
bf1e8ff9 4982
abe529af
BP
4983 /* Start from historical data for 'rule' itself that are no longer tracked
4984 * in facets. This counts, for example, facets that have expired. */
9fbe253e 4985 ovs_mutex_lock(&rule->stats_mutex);
abe529af
BP
4986 *packets = rule->packet_count;
4987 *bytes = rule->byte_count;
9fbe253e 4988 ovs_mutex_unlock(&rule->stats_mutex);
abe529af
BP
4989}
4990
0a740f48
EJ
4991static void
4992rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
4993 struct ofpbuf *packet)
abe529af 4994{
abe529af 4995 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
112bc5f4 4996 struct dpif_flow_stats stats;
bbafd73b
EJ
4997 struct xlate_out xout;
4998 struct xlate_in xin;
abe529af 4999
a7752d4a 5000 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
70742c7f 5001 rule_dpif_credit_stats(rule, &stats);
112bc5f4 5002
47b0deae 5003 xlate_in_init(&xin, ofproto, flow, rule, stats.tcp_flags, packet);
bbafd73b
EJ
5004 xin.resubmit_stats = &stats;
5005 xlate_actions(&xin, &xout);
112bc5f4 5006
bbafd73b
EJ
5007 execute_odp_actions(ofproto, flow, xout.odp_actions.data,
5008 xout.odp_actions.size, packet);
112bc5f4 5009
bbafd73b 5010 xlate_out_uninit(&xout);
0a740f48 5011}
5bf0e941 5012
0a740f48
EJ
5013static enum ofperr
5014rule_execute(struct rule *rule, const struct flow *flow,
5015 struct ofpbuf *packet)
5016{
5017 rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
5018 ofpbuf_delete(packet);
5bf0e941 5019 return 0;
abe529af
BP
5020}
5021
7ee20df1 5022static void
b277c7cc 5023rule_modify_actions(struct rule *rule_, bool reset_counters)
abe529af
BP
5024{
5025 struct rule_dpif *rule = rule_dpif_cast(rule_);
7ee20df1 5026
b277c7cc
BP
5027 if (reset_counters) {
5028 ovs_mutex_lock(&rule->stats_mutex);
5029 rule->packet_count = 0;
5030 rule->byte_count = 0;
5031 ovs_mutex_unlock(&rule->stats_mutex);
5032 }
5033
7ee20df1 5034 complete_operation(rule);
abe529af
BP
5035}
5036\f
97d6520b 5037/* Sends 'packet' out 'ofport'.
52a90c29 5038 * May modify 'packet'.
abe529af
BP
5039 * Returns 0 if successful, otherwise a positive errno value. */
5040static int
52a90c29 5041send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
abe529af 5042{
79e15b78 5043 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
b9ad7294 5044 uint64_t odp_actions_stub[1024 / 8];
80e5eed9 5045 struct ofpbuf key, odp_actions;
0f49659a 5046 struct dpif_flow_stats stats;
80e5eed9 5047 struct odputil_keybuf keybuf;
0f49659a 5048 struct ofpact_output output;
bbafd73b
EJ
5049 struct xlate_out xout;
5050 struct xlate_in xin;
80e5eed9 5051 struct flow flow;
4e022ec0 5052 union flow_in_port in_port_;
abe529af
BP
5053 int error;
5054
b9ad7294 5055 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
0f49659a 5056 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
b9ad7294 5057
0f49659a 5058 /* Use OFPP_NONE as the in_port to avoid special packet processing. */
4e022ec0
AW
5059 in_port_.ofp_port = OFPP_NONE;
5060 flow_extract(packet, 0, 0, NULL, &in_port_, &flow);
0f49659a
EJ
5061 odp_flow_key_from_flow(&key, &flow, ofp_port_to_odp_port(ofproto,
5062 OFPP_LOCAL));
5063 dpif_flow_stats_extract(&flow, packet, time_msec(), &stats);
b9ad7294 5064
0f49659a
EJ
5065 ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
5066 output.port = ofport->up.ofp_port;
5067 output.max_len = 0;
b9ad7294 5068
47b0deae 5069 xlate_in_init(&xin, ofproto, &flow, NULL, 0, packet);
bbafd73b
EJ
5070 xin.ofpacts_len = sizeof output;
5071 xin.ofpacts = &output.ofpact;
5072 xin.resubmit_stats = &stats;
5073 xlate_actions(&xin, &xout);
6ff686f2 5074
acf60855 5075 error = dpif_execute(ofproto->backer->dpif,
80e5eed9 5076 key.data, key.size,
bbafd73b 5077 xout.odp_actions.data, xout.odp_actions.size,
abe529af 5078 packet);
bbafd73b 5079 xlate_out_uninit(&xout);
abe529af
BP
5080
5081 if (error) {
0f49659a
EJ
5082 VLOG_WARN_RL(&rl, "%s: failed to send packet on port %s (%s)",
5083 ofproto->up.name, netdev_get_name(ofport->up.netdev),
10a89ef0 5084 ovs_strerror(error));
abe529af 5085 }
79e15b78
EJ
5086
5087 ofproto->stats.tx_packets++;
5088 ofproto->stats.tx_bytes += packet->size;
abe529af
BP
5089 return error;
5090}
abe529af 5091
6a7e895f
BP
5092/* Composes an ODP action for a "slow path" action for 'flow' within 'ofproto'.
5093 * The action will state 'slow' as the reason that the action is in the slow
5094 * path. (This is purely informational: it allows a human viewing "ovs-dpctl
5095 * dump-flows" output to see why a flow is in the slow path.)
5096 *
5097 * The 'stub_size' bytes in 'stub' will be used to store the action.
5098 * 'stub_size' must be large enough for the action.
5099 *
5100 * The action and its size will be stored in '*actionsp' and '*actions_lenp',
5101 * respectively. */
5102static void
5103compose_slow_path(const struct ofproto_dpif *ofproto, const struct flow *flow,
5104 enum slow_path_reason slow,
5105 uint64_t *stub, size_t stub_size,
5106 const struct nlattr **actionsp, size_t *actions_lenp)
5107{
5108 union user_action_cookie cookie;
5109 struct ofpbuf buf;
5110
5111 cookie.type = USER_ACTION_COOKIE_SLOW_PATH;
5112 cookie.slow_path.unused = 0;
5113 cookie.slow_path.reason = slow;
5114
5115 ofpbuf_use_stack(&buf, stub, stub_size);
ccc09689 5116 if (slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)) {
4e022ec0
AW
5117 uint32_t pid = dpif_port_get_pid(ofproto->backer->dpif,
5118 ODPP_NONE);
29089a54 5119 odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
625b0720 5120 } else {
89a8a7f0
EJ
5121 odp_port_t odp_port;
5122 uint32_t pid;
5123
5124 odp_port = ofp_port_to_odp_port(ofproto, flow->in_port.ofp_port);
5125 pid = dpif_port_get_pid(ofproto->backer->dpif, odp_port);
5126 odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
625b0720 5127 }
6a7e895f
BP
5128 *actionsp = buf.data;
5129 *actions_lenp = buf.size;
5130}
9583bc14
EJ
5131\f
5132static bool
5133set_frag_handling(struct ofproto *ofproto_,
5134 enum ofp_config_flags frag_handling)
abe529af
BP
5135{
5136 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7257b535 5137 if (frag_handling != OFPC_FRAG_REASM) {
2cc3c58e 5138 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7257b535
BP
5139 return true;
5140 } else {
5141 return false;
5142 }
abe529af
BP
5143}
5144
90bf1e07 5145static enum ofperr
abe529af
BP
5146packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
5147 const struct flow *flow,
f25d0cf3 5148 const struct ofpact *ofpacts, size_t ofpacts_len)
abe529af
BP
5149{
5150 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
548de4dd
BP
5151 struct odputil_keybuf keybuf;
5152 struct dpif_flow_stats stats;
bbafd73b
EJ
5153 struct xlate_out xout;
5154 struct xlate_in xin;
548de4dd 5155 struct ofpbuf key;
112bc5f4 5156
80e5eed9 5157
548de4dd 5158 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
e1b1d06a 5159 odp_flow_key_from_flow(&key, flow,
4e022ec0
AW
5160 ofp_port_to_odp_port(ofproto,
5161 flow->in_port.ofp_port));
050ac423 5162
548de4dd 5163 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
abe529af 5164
47b0deae 5165 xlate_in_init(&xin, ofproto, flow, NULL, stats.tcp_flags, packet);
bbafd73b
EJ
5166 xin.resubmit_stats = &stats;
5167 xin.ofpacts_len = ofpacts_len;
5168 xin.ofpacts = ofpacts;
2284188b 5169
bbafd73b 5170 xlate_actions(&xin, &xout);
acf60855 5171 dpif_execute(ofproto->backer->dpif, key.data, key.size,
bbafd73b
EJ
5172 xout.odp_actions.data, xout.odp_actions.size, packet);
5173 xlate_out_uninit(&xout);
2284188b 5174
548de4dd 5175 return 0;
abe529af 5176}
6fca1ffb
BP
5177\f
5178/* NetFlow. */
5179
5180static int
5181set_netflow(struct ofproto *ofproto_,
5182 const struct netflow_options *netflow_options)
5183{
5184 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5185
5186 if (netflow_options) {
5187 if (!ofproto->netflow) {
5188 ofproto->netflow = netflow_create();
7bab1576 5189 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6fca1ffb
BP
5190 }
5191 return netflow_set_options(ofproto->netflow, netflow_options);
7bab1576
EJ
5192 } else if (ofproto->netflow) {
5193 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6fca1ffb
BP
5194 netflow_destroy(ofproto->netflow);
5195 ofproto->netflow = NULL;
6fca1ffb 5196 }
7bab1576
EJ
5197
5198 return 0;
6fca1ffb 5199}
abe529af
BP
5200
5201static void
5202get_netflow_ids(const struct ofproto *ofproto_,
5203 uint8_t *engine_type, uint8_t *engine_id)
5204{
5205 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5206
acf60855 5207 dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
abe529af 5208}
6fca1ffb
BP
5209
5210static void
5211send_active_timeout(struct ofproto_dpif *ofproto, struct facet *facet)
5212{
5213 if (!facet_is_controller_flow(facet) &&
5214 netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
b0f7b9b5 5215 struct subfacet *subfacet;
6fca1ffb
BP
5216 struct ofexpired expired;
5217
b0f7b9b5 5218 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
6a7e895f 5219 if (subfacet->path == SF_FAST_PATH) {
b0f7b9b5 5220 struct dpif_flow_stats stats;
6fca1ffb 5221
bcd2633a
JP
5222 subfacet_install(subfacet, &facet->xout.odp_actions,
5223 &stats);
15baa734 5224 subfacet_update_stats(subfacet, &stats);
b0f7b9b5 5225 }
6fca1ffb
BP
5226 }
5227
5228 expired.flow = facet->flow;
5229 expired.packet_count = facet->packet_count;
5230 expired.byte_count = facet->byte_count;
5231 expired.used = facet->used;
5232 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
5233 }
5234}
5235
5236static void
5237send_netflow_active_timeouts(struct ofproto_dpif *ofproto)
5238{
bcd2633a 5239 struct cls_cursor cursor;
6fca1ffb
BP
5240 struct facet *facet;
5241
0b4f2078 5242 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a
JP
5243 cls_cursor_init(&cursor, &ofproto->facets, NULL);
5244 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
6fca1ffb
BP
5245 send_active_timeout(ofproto, facet);
5246 }
0b4f2078 5247 ovs_rwlock_unlock(&ofproto->facets.rwlock);
6fca1ffb 5248}
abe529af
BP
5249\f
5250static struct ofproto_dpif *
5251ofproto_dpif_lookup(const char *name)
5252{
b44a10b7
BP
5253 struct ofproto_dpif *ofproto;
5254
5255 HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
5256 hash_string(name, 0), &all_ofproto_dpifs) {
5257 if (!strcmp(ofproto->up.name, name)) {
5258 return ofproto;
5259 }
5260 }
5261 return NULL;
abe529af
BP
5262}
5263
f0a3aa2e 5264static void
96e466a3 5265ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
0e15264f 5266 const char *argv[], void *aux OVS_UNUSED)
f0a3aa2e 5267{
490df1ef 5268 struct ofproto_dpif *ofproto;
f0a3aa2e 5269
96e466a3
EJ
5270 if (argc > 1) {
5271 ofproto = ofproto_dpif_lookup(argv[1]);
5272 if (!ofproto) {
bde9f75d 5273 unixctl_command_reply_error(conn, "no such bridge");
96e466a3
EJ
5274 return;
5275 }
509c0149 5276 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 5277 mac_learning_flush(ofproto->ml);
509c0149 5278 ovs_rwlock_unlock(&ofproto->ml->rwlock);
96e466a3
EJ
5279 } else {
5280 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
509c0149 5281 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 5282 mac_learning_flush(ofproto->ml);
509c0149 5283 ovs_rwlock_unlock(&ofproto->ml->rwlock);
96e466a3 5284 }
f0a3aa2e 5285 }
f0a3aa2e 5286
bde9f75d 5287 unixctl_command_reply(conn, "table successfully flushed");
f0a3aa2e
AA
5288}
5289
46c88433
EJ
5290static struct ofport_dpif *
5291ofbundle_get_a_port(const struct ofbundle *bundle)
5292{
5293 return CONTAINER_OF(list_front(&bundle->ports), struct ofport_dpif,
5294 bundle_node);
5295}
5296
abe529af 5297static void
0e15264f
BP
5298ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5299 const char *argv[], void *aux OVS_UNUSED)
abe529af
BP
5300{
5301 struct ds ds = DS_EMPTY_INITIALIZER;
5302 const struct ofproto_dpif *ofproto;
5303 const struct mac_entry *e;
5304
0e15264f 5305 ofproto = ofproto_dpif_lookup(argv[1]);
abe529af 5306 if (!ofproto) {
bde9f75d 5307 unixctl_command_reply_error(conn, "no such bridge");
abe529af
BP
5308 return;
5309 }
5310
5311 ds_put_cstr(&ds, " port VLAN MAC Age\n");
509c0149 5312 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
abe529af
BP
5313 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
5314 struct ofbundle *bundle = e->port.p;
ad28062f
BP
5315 char name[OFP_MAX_PORT_NAME_LEN];
5316
5317 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
5318 name, sizeof name);
5319 ds_put_format(&ds, "%5s %4d "ETH_ADDR_FMT" %3d\n",
5320 name, e->vlan, ETH_ADDR_ARGS(e->mac),
e764773c 5321 mac_entry_age(ofproto->ml, e));
abe529af 5322 }
509c0149 5323 ovs_rwlock_unlock(&ofproto->ml->rwlock);
bde9f75d 5324 unixctl_command_reply(conn, ds_cstr(&ds));
abe529af
BP
5325 ds_destroy(&ds);
5326}
5327
6a6455e5 5328struct trace_ctx {
bbafd73b
EJ
5329 struct xlate_out xout;
5330 struct xlate_in xin;
abe529af
BP
5331 struct flow flow;
5332 struct ds *result;
5333};
5334
5335static void
4d0acc70 5336trace_format_rule(struct ds *result, int level, const struct rule_dpif *rule)
abe529af
BP
5337{
5338 ds_put_char_multiple(result, '\t', level);
5339 if (!rule) {
5340 ds_put_cstr(result, "No match\n");
5341 return;
5342 }
5343
29901626 5344 ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
4d0acc70 5345 rule ? rule->up.table_id : 0, ntohll(rule->up.flow_cookie));
79feb7df 5346 cls_rule_format(&rule->up.cr, result);
abe529af
BP
5347 ds_put_char(result, '\n');
5348
5349 ds_put_char_multiple(result, '\t', level);
5350 ds_put_cstr(result, "OpenFlow ");
f25d0cf3 5351 ofpacts_format(rule->up.ofpacts, rule->up.ofpacts_len, result);
abe529af
BP
5352 ds_put_char(result, '\n');
5353}
5354
5355static void
5356trace_format_flow(struct ds *result, int level, const char *title,
bbafd73b 5357 struct trace_ctx *trace)
abe529af
BP
5358{
5359 ds_put_char_multiple(result, '\t', level);
5360 ds_put_format(result, "%s: ", title);
bbafd73b 5361 if (flow_equal(&trace->xin.flow, &trace->flow)) {
abe529af
BP
5362 ds_put_cstr(result, "unchanged");
5363 } else {
bbafd73b
EJ
5364 flow_format(result, &trace->xin.flow);
5365 trace->flow = trace->xin.flow;
abe529af
BP
5366 }
5367 ds_put_char(result, '\n');
5368}
5369
eb9e1c26
EJ
5370static void
5371trace_format_regs(struct ds *result, int level, const char *title,
6a6455e5 5372 struct trace_ctx *trace)
eb9e1c26
EJ
5373{
5374 size_t i;
5375
5376 ds_put_char_multiple(result, '\t', level);
5377 ds_put_format(result, "%s:", title);
5378 for (i = 0; i < FLOW_N_REGS; i++) {
5379 ds_put_format(result, " reg%zu=0x%"PRIx32, i, trace->flow.regs[i]);
5380 }
5381 ds_put_char(result, '\n');
5382}
5383
1ed8d352
EJ
5384static void
5385trace_format_odp(struct ds *result, int level, const char *title,
6a6455e5 5386 struct trace_ctx *trace)
1ed8d352 5387{
bbafd73b 5388 struct ofpbuf *odp_actions = &trace->xout.odp_actions;
1ed8d352
EJ
5389
5390 ds_put_char_multiple(result, '\t', level);
5391 ds_put_format(result, "%s: ", title);
5392 format_odp_actions(result, odp_actions->data, odp_actions->size);
5393 ds_put_char(result, '\n');
5394}
5395
abe529af 5396static void
4d0acc70 5397trace_resubmit(struct xlate_in *xin, struct rule_dpif *rule, int recurse)
abe529af 5398{
4d0acc70 5399 struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
abe529af
BP
5400 struct ds *result = trace->result;
5401
5402 ds_put_char(result, '\n');
4d0acc70
EJ
5403 trace_format_flow(result, recurse + 1, "Resubmitted flow", trace);
5404 trace_format_regs(result, recurse + 1, "Resubmitted regs", trace);
5405 trace_format_odp(result, recurse + 1, "Resubmitted odp", trace);
5406 trace_format_rule(result, recurse + 1, rule);
abe529af
BP
5407}
5408
479df176 5409static void
4d0acc70 5410trace_report(struct xlate_in *xin, const char *s, int recurse)
479df176 5411{
4d0acc70 5412 struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
479df176
BP
5413 struct ds *result = trace->result;
5414
4d0acc70 5415 ds_put_char_multiple(result, '\t', recurse);
479df176
BP
5416 ds_put_cstr(result, s);
5417 ds_put_char(result, '\n');
5418}
5419
abe529af 5420static void
0e15264f 5421ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
abe529af
BP
5422 void *aux OVS_UNUSED)
5423{
50aa28fd 5424 const struct dpif_backer *backer;
abe529af 5425 struct ofproto_dpif *ofproto;
ea5e3887 5426 struct ofpbuf odp_key, odp_mask;
876b0e1c 5427 struct ofpbuf *packet;
abe529af
BP
5428 struct ds result;
5429 struct flow flow;
abe529af
BP
5430 char *s;
5431
876b0e1c 5432 packet = NULL;
50aa28fd 5433 backer = NULL;
abe529af 5434 ds_init(&result);
50aa28fd 5435 ofpbuf_init(&odp_key, 0);
ea5e3887 5436 ofpbuf_init(&odp_mask, 0);
abe529af 5437
50aa28fd
AW
5438 /* Handle "-generate" or a hex string as the last argument. */
5439 if (!strcmp(argv[argc - 1], "-generate")) {
5440 packet = ofpbuf_new(0);
5441 argc--;
5442 } else {
5443 const char *error = eth_from_hex(argv[argc - 1], &packet);
5444 if (!error) {
5445 argc--;
5446 } else if (argc == 4) {
5447 /* The 3-argument form must end in "-generate' or a hex string. */
5448 unixctl_command_reply_error(conn, error);
5449 goto exit;
5450 }
e84173dc 5451 }
876b0e1c 5452
50aa28fd
AW
5453 /* Parse the flow and determine whether a datapath or
5454 * bridge is specified. If function odp_flow_key_from_string()
5455 * returns 0, the flow is a odp_flow. If function
5456 * parse_ofp_exact_flow() returns 0, the flow is a br_flow. */
ea5e3887 5457 if (!odp_flow_from_string(argv[argc - 1], NULL, &odp_key, &odp_mask)) {
50aa28fd
AW
5458 /* If the odp_flow is the second argument,
5459 * the datapath name is the first argument. */
5460 if (argc == 3) {
5461 const char *dp_type;
5462 if (!strncmp(argv[1], "ovs-", 4)) {
5463 dp_type = argv[1] + 4;
5464 } else {
5465 dp_type = argv[1];
31a19d69 5466 }
50aa28fd
AW
5467 backer = shash_find_data(&all_dpif_backers, dp_type);
5468 if (!backer) {
5469 unixctl_command_reply_error(conn, "Cannot find datapath "
5470 "of this name");
31a19d69
BP
5471 goto exit;
5472 }
5473 } else {
50aa28fd
AW
5474 /* No datapath name specified, so there should be only one
5475 * datapath. */
5476 struct shash_node *node;
5477 if (shash_count(&all_dpif_backers) != 1) {
5478 unixctl_command_reply_error(conn, "Must specify datapath "
5479 "name, there is more than one type of datapath");
31a19d69
BP
5480 goto exit;
5481 }
50aa28fd
AW
5482 node = shash_first(&all_dpif_backers);
5483 backer = node->data;
876b0e1c 5484 }
8b3b8dd1 5485
8449c4d6
EJ
5486 if (xlate_receive(backer, NULL, odp_key.data, odp_key.size, &flow,
5487 NULL, &ofproto, NULL)) {
50aa28fd
AW
5488 unixctl_command_reply_error(conn, "Invalid datapath flow");
5489 goto exit;
8b3b8dd1 5490 }
50aa28fd
AW
5491 ds_put_format(&result, "Bridge: %s\n", ofproto->up.name);
5492 } else if (!parse_ofp_exact_flow(&flow, argv[argc - 1])) {
5493 if (argc != 3) {
5494 unixctl_command_reply_error(conn, "Must specify bridge name");
876b0e1c
BP
5495 goto exit;
5496 }
5497
50aa28fd
AW
5498 ofproto = ofproto_dpif_lookup(argv[1]);
5499 if (!ofproto) {
5500 unixctl_command_reply_error(conn, "Unknown bridge name");
5501 goto exit;
5502 }
876b0e1c 5503 } else {
50aa28fd 5504 unixctl_command_reply_error(conn, "Bad flow syntax");
abe529af
BP
5505 goto exit;
5506 }
5507
50aa28fd
AW
5508 /* Generate a packet, if requested. */
5509 if (packet) {
5510 if (!packet->size) {
5511 flow_compose(packet, &flow);
5512 } else {
4e022ec0
AW
5513 union flow_in_port in_port_;
5514
5515 in_port_ = flow.in_port;
50aa28fd
AW
5516 ds_put_cstr(&result, "Packet: ");
5517 s = ofp_packet_to_string(packet->data, packet->size);
5518 ds_put_cstr(&result, s);
5519 free(s);
5520
5521 /* Use the metadata from the flow and the packet argument
5522 * to reconstruct the flow. */
1362e248 5523 flow_extract(packet, flow.skb_priority, flow.pkt_mark, NULL,
4e022ec0 5524 &in_port_, &flow);
50aa28fd
AW
5525 }
5526 }
5527
47b0deae 5528 ofproto_trace(ofproto, &flow, packet, &result);
6a6455e5
EJ
5529 unixctl_command_reply(conn, ds_cstr(&result));
5530
5531exit:
5532 ds_destroy(&result);
5533 ofpbuf_delete(packet);
5534 ofpbuf_uninit(&odp_key);
ea5e3887 5535 ofpbuf_uninit(&odp_mask);
6a6455e5
EJ
5536}
5537
ade6ad9c 5538static void
6a6455e5 5539ofproto_trace(struct ofproto_dpif *ofproto, const struct flow *flow,
47b0deae 5540 const struct ofpbuf *packet, struct ds *ds)
6a6455e5
EJ
5541{
5542 struct rule_dpif *rule;
083f277e 5543 struct flow_wildcards wc;
6a6455e5
EJ
5544
5545 ds_put_cstr(ds, "Flow: ");
5546 flow_format(ds, flow);
5547 ds_put_char(ds, '\n');
abe529af 5548
083f277e
JG
5549 flow_wildcards_init_catchall(&wc);
5550 rule_dpif_lookup(ofproto, flow, &wc, &rule);
c57b2226 5551
4d0acc70 5552 trace_format_rule(ds, 0, rule);
c57b2226
BP
5553 if (rule == ofproto->miss_rule) {
5554 ds_put_cstr(ds, "\nNo match, flow generates \"packet in\"s.\n");
5555 } else if (rule == ofproto->no_packet_in_rule) {
5556 ds_put_cstr(ds, "\nNo match, packets dropped because "
5557 "OFPPC_NO_PACKET_IN is set on in_port.\n");
7fd51d39
BP
5558 } else if (rule == ofproto->drop_frags_rule) {
5559 ds_put_cstr(ds, "\nPackets dropped because they are IP fragments "
5560 "and the fragment handling mode is \"drop\".\n");
c57b2226
BP
5561 }
5562
abe529af 5563 if (rule) {
050ac423
BP
5564 uint64_t odp_actions_stub[1024 / 8];
5565 struct ofpbuf odp_actions;
6a6455e5 5566 struct trace_ctx trace;
bcd2633a 5567 struct match match;
0e553d9c 5568 uint8_t tcp_flags;
abe529af 5569
6a6455e5
EJ
5570 tcp_flags = packet ? packet_get_tcp_flags(packet, flow) : 0;
5571 trace.result = ds;
5572 trace.flow = *flow;
050ac423
BP
5573 ofpbuf_use_stub(&odp_actions,
5574 odp_actions_stub, sizeof odp_actions_stub);
47b0deae 5575 xlate_in_init(&trace.xin, ofproto, flow, rule, tcp_flags, packet);
bbafd73b
EJ
5576 trace.xin.resubmit_hook = trace_resubmit;
5577 trace.xin.report_hook = trace_report;
bcd2633a 5578
bbafd73b 5579 xlate_actions(&trace.xin, &trace.xout);
083f277e 5580 flow_wildcards_or(&trace.xout.wc, &trace.xout.wc, &wc);
abe529af 5581
6a6455e5
EJ
5582 ds_put_char(ds, '\n');
5583 trace_format_flow(ds, 0, "Final flow", &trace);
bcd2633a
JP
5584
5585 match_init(&match, flow, &trace.xout.wc);
5586 ds_put_cstr(ds, "Relevant fields: ");
5587 match_format(&match, ds, OFP_DEFAULT_PRIORITY);
5588 ds_put_char(ds, '\n');
5589
6a6455e5 5590 ds_put_cstr(ds, "Datapath actions: ");
bbafd73b
EJ
5591 format_odp_actions(ds, trace.xout.odp_actions.data,
5592 trace.xout.odp_actions.size);
876b0e1c 5593
bbafd73b 5594 if (trace.xout.slow) {
6a7e895f
BP
5595 ds_put_cstr(ds, "\nThis flow is handled by the userspace "
5596 "slow path because it:");
bbafd73b 5597 switch (trace.xout.slow) {
98f0520f
EJ
5598 case SLOW_CFM:
5599 ds_put_cstr(ds, "\n\t- Consists of CFM packets.");
5600 break;
5601 case SLOW_LACP:
5602 ds_put_cstr(ds, "\n\t- Consists of LACP packets.");
5603 break;
5604 case SLOW_STP:
5605 ds_put_cstr(ds, "\n\t- Consists of STP packets.");
5606 break;
5607 case SLOW_BFD:
5608 ds_put_cstr(ds, "\n\t- Consists of BFD packets.");
5609 break;
5610 case SLOW_CONTROLLER:
5611 ds_put_cstr(ds, "\n\t- Sends \"packet-in\" messages "
5612 "to the OpenFlow controller.");
5613 break;
5614 case __SLOW_MAX:
5615 NOT_REACHED();
6a7e895f 5616 }
876b0e1c 5617 }
bbafd73b
EJ
5618
5619 xlate_out_uninit(&trace.xout);
abe529af 5620 }
ad3efdcb 5621
70742c7f 5622 rule_dpif_release(rule);
abe529af
BP
5623}
5624
7ee20df1 5625static void
0e15264f
BP
5626ofproto_dpif_clog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5627 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7ee20df1
BP
5628{
5629 clogged = true;
bde9f75d 5630 unixctl_command_reply(conn, NULL);
7ee20df1
BP
5631}
5632
5633static void
0e15264f
BP
5634ofproto_dpif_unclog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5635 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7ee20df1
BP
5636{
5637 clogged = false;
bde9f75d 5638 unixctl_command_reply(conn, NULL);
7ee20df1
BP
5639}
5640
6814e51f
BP
5641/* Runs a self-check of flow translations in 'ofproto'. Appends a message to
5642 * 'reply' describing the results. */
5643static void
5644ofproto_dpif_self_check__(struct ofproto_dpif *ofproto, struct ds *reply)
5645{
bcd2633a 5646 struct cls_cursor cursor;
6814e51f
BP
5647 struct facet *facet;
5648 int errors;
5649
5650 errors = 0;
0b4f2078 5651 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a
JP
5652 cls_cursor_init(&cursor, &ofproto->facets, NULL);
5653 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
6814e51f
BP
5654 if (!facet_check_consistency(facet)) {
5655 errors++;
5656 }
5657 }
0b4f2078 5658 ovs_rwlock_unlock(&ofproto->facets.rwlock);
6814e51f 5659 if (errors) {
2cc3c58e 5660 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
6814e51f
BP
5661 }
5662
5663 if (errors) {
5664 ds_put_format(reply, "%s: self-check failed (%d errors)\n",
5665 ofproto->up.name, errors);
5666 } else {
5667 ds_put_format(reply, "%s: self-check passed\n", ofproto->up.name);
5668 }
5669}
5670
5671static void
5672ofproto_dpif_self_check(struct unixctl_conn *conn,
5673 int argc, const char *argv[], void *aux OVS_UNUSED)
5674{
5675 struct ds reply = DS_EMPTY_INITIALIZER;
5676 struct ofproto_dpif *ofproto;
5677
5678 if (argc > 1) {
5679 ofproto = ofproto_dpif_lookup(argv[1]);
5680 if (!ofproto) {
bde9f75d
EJ
5681 unixctl_command_reply_error(conn, "Unknown ofproto (use "
5682 "ofproto/list for help)");
6814e51f
BP
5683 return;
5684 }
5685 ofproto_dpif_self_check__(ofproto, &reply);
5686 } else {
5687 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5688 ofproto_dpif_self_check__(ofproto, &reply);
5689 }
5690 }
5691
bde9f75d 5692 unixctl_command_reply(conn, ds_cstr(&reply));
6814e51f
BP
5693 ds_destroy(&reply);
5694}
5695
27022416
JP
5696/* Store the current ofprotos in 'ofproto_shash'. Returns a sorted list
5697 * of the 'ofproto_shash' nodes. It is the responsibility of the caller
5698 * to destroy 'ofproto_shash' and free the returned value. */
5699static const struct shash_node **
5700get_ofprotos(struct shash *ofproto_shash)
5701{
5702 const struct ofproto_dpif *ofproto;
5703
5704 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5705 char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
5706 shash_add_nocopy(ofproto_shash, name, ofproto);
5707 }
5708
5709 return shash_sort(ofproto_shash);
5710}
5711
5712static void
5713ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
5714 const char *argv[] OVS_UNUSED,
5715 void *aux OVS_UNUSED)
5716{
5717 struct ds ds = DS_EMPTY_INITIALIZER;
5718 struct shash ofproto_shash;
5719 const struct shash_node **sorted_ofprotos;
5720 int i;
5721
5722 shash_init(&ofproto_shash);
5723 sorted_ofprotos = get_ofprotos(&ofproto_shash);
5724 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5725 const struct shash_node *node = sorted_ofprotos[i];
5726 ds_put_format(&ds, "%s\n", node->name);
5727 }
5728
5729 shash_destroy(&ofproto_shash);
5730 free(sorted_ofprotos);
5731
5732 unixctl_command_reply(conn, ds_cstr(&ds));
5733 ds_destroy(&ds);
5734}
5735
5736static void
dc54ef36
EJ
5737show_dp_rates(struct ds *ds, const char *heading,
5738 const struct avg_subfacet_rates *rates)
5739{
5740 ds_put_format(ds, "%s add rate: %5.3f/min, del rate: %5.3f/min\n",
5741 heading, rates->add_rate, rates->del_rate);
5742}
5743
5744static void
5745dpif_show_backer(const struct dpif_backer *backer, struct ds *ds)
27022416 5746{
dc54ef36
EJ
5747 const struct shash_node **ofprotos;
5748 struct ofproto_dpif *ofproto;
5749 struct shash ofproto_shash;
09672174 5750 uint64_t n_hit, n_missed;
dc54ef36 5751 long long int minutes;
09672174 5752 size_t i;
655ab909 5753
04d08d54 5754 n_hit = n_missed = 0;
dc54ef36
EJ
5755 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5756 if (ofproto->backer == backer) {
dc54ef36
EJ
5757 n_missed += ofproto->n_missed;
5758 n_hit += ofproto->n_hit;
5759 }
5760 }
655ab909 5761
dc54ef36
EJ
5762 ds_put_format(ds, "%s: hit:%"PRIu64" missed:%"PRIu64"\n",
5763 dpif_name(backer->dpif), n_hit, n_missed);
5764 ds_put_format(ds, "\tflows: cur: %zu, avg: %u, max: %u,"
04d08d54 5765 " life span: %lldms\n", hmap_count(&backer->subfacets),
dc54ef36
EJ
5766 backer->avg_n_subfacet, backer->max_n_subfacet,
5767 backer->avg_subfacet_life);
5768
5769 minutes = (time_msec() - backer->created) / (1000 * 60);
655ab909 5770 if (minutes >= 60) {
dc54ef36 5771 show_dp_rates(ds, "\thourly avg:", &backer->hourly);
655ab909
AZ
5772 }
5773 if (minutes >= 60 * 24) {
dc54ef36 5774 show_dp_rates(ds, "\tdaily avg:", &backer->daily);
655ab909 5775 }
dc54ef36 5776 show_dp_rates(ds, "\toverall avg:", &backer->lifetime);
27022416 5777
dc54ef36
EJ
5778 shash_init(&ofproto_shash);
5779 ofprotos = get_ofprotos(&ofproto_shash);
5780 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5781 struct ofproto_dpif *ofproto = ofprotos[i]->data;
5782 const struct shash_node **ports;
5783 size_t j;
0a740f48 5784
dc54ef36
EJ
5785 if (ofproto->backer != backer) {
5786 continue;
0a740f48 5787 }
27022416 5788
dc54ef36
EJ
5789 ds_put_format(ds, "\t%s: hit:%"PRIu64" missed:%"PRIu64"\n",
5790 ofproto->up.name, ofproto->n_hit, ofproto->n_missed);
5791
5792 ports = shash_sort(&ofproto->up.port_by_name);
5793 for (j = 0; j < shash_count(&ofproto->up.port_by_name); j++) {
5794 const struct shash_node *node = ports[j];
5795 struct ofport *ofport = node->data;
5796 struct smap config;
4e022ec0 5797 odp_port_t odp_port;
27022416 5798
dc54ef36
EJ
5799 ds_put_format(ds, "\t\t%s %u/", netdev_get_name(ofport->netdev),
5800 ofport->ofp_port);
27022416 5801
dc54ef36 5802 odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
4e022ec0 5803 if (odp_port != ODPP_NONE) {
dc54ef36
EJ
5804 ds_put_format(ds, "%"PRIu32":", odp_port);
5805 } else {
5806 ds_put_cstr(ds, "none:");
5807 }
27022416 5808
dc54ef36 5809 ds_put_format(ds, " (%s", netdev_get_type(ofport->netdev));
27022416 5810
dc54ef36
EJ
5811 smap_init(&config);
5812 if (!netdev_get_config(ofport->netdev, &config)) {
5813 const struct smap_node **nodes;
5814 size_t i;
27022416 5815
dc54ef36
EJ
5816 nodes = smap_sort(&config);
5817 for (i = 0; i < smap_count(&config); i++) {
5818 const struct smap_node *node = nodes[i];
5819 ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
5820 node->key, node->value);
5821 }
5822 free(nodes);
27022416 5823 }
dc54ef36
EJ
5824 smap_destroy(&config);
5825
27022416 5826 ds_put_char(ds, ')');
dc54ef36 5827 ds_put_char(ds, '\n');
27022416 5828 }
dc54ef36 5829 free(ports);
27022416 5830 }
dc54ef36
EJ
5831 shash_destroy(&ofproto_shash);
5832 free(ofprotos);
27022416
JP
5833}
5834
5835static void
dc54ef36
EJ
5836ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5837 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
27022416
JP
5838{
5839 struct ds ds = DS_EMPTY_INITIALIZER;
dc54ef36
EJ
5840 const struct shash_node **backers;
5841 int i;
27022416 5842
dc54ef36
EJ
5843 backers = shash_sort(&all_dpif_backers);
5844 for (i = 0; i < shash_count(&all_dpif_backers); i++) {
5845 dpif_show_backer(backers[i]->data, &ds);
27022416 5846 }
dc54ef36 5847 free(backers);
27022416
JP
5848
5849 unixctl_command_reply(conn, ds_cstr(&ds));
5850 ds_destroy(&ds);
5851}
5852
bcd2633a
JP
5853/* Dump the megaflow (facet) cache. This is useful to check the
5854 * correctness of flow wildcarding, since the same mechanism is used for
5855 * both xlate caching and kernel wildcarding.
5856 *
5857 * It's important to note that in the output the flow description uses
5858 * OpenFlow (OFP) ports, but the actions use datapath (ODP) ports.
5859 *
5860 * This command is only needed for advanced debugging, so it's not
5861 * documented in the man page. */
5862static void
5863ofproto_unixctl_dpif_dump_megaflows(struct unixctl_conn *conn,
5864 int argc OVS_UNUSED, const char *argv[],
5865 void *aux OVS_UNUSED)
5866{
5867 struct ds ds = DS_EMPTY_INITIALIZER;
5868 const struct ofproto_dpif *ofproto;
5869 long long int now = time_msec();
5870 struct cls_cursor cursor;
5871 struct facet *facet;
5872
5873 ofproto = ofproto_dpif_lookup(argv[1]);
5874 if (!ofproto) {
5875 unixctl_command_reply_error(conn, "no such bridge");
5876 return;
5877 }
5878
0b4f2078 5879 ovs_rwlock_rdlock(&ofproto->facets.rwlock);
bcd2633a
JP
5880 cls_cursor_init(&cursor, &ofproto->facets, NULL);
5881 CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5882 cls_rule_format(&facet->cr, &ds);
5883 ds_put_cstr(&ds, ", ");
7ee9e841 5884 ds_put_format(&ds, "n_subfacets:%zu, ", list_size(&facet->subfacets));
bcd2633a
JP
5885 ds_put_format(&ds, "used:%.3fs, ", (now - facet->used) / 1000.0);
5886 ds_put_cstr(&ds, "Datapath actions: ");
8ecafa3e
JP
5887 if (facet->xout.slow) {
5888 uint64_t slow_path_stub[128 / 8];
5889 const struct nlattr *actions;
5890 size_t actions_len;
5891
5892 compose_slow_path(ofproto, &facet->flow, facet->xout.slow,
5893 slow_path_stub, sizeof slow_path_stub,
5894 &actions, &actions_len);
5895 format_odp_actions(&ds, actions, actions_len);
5896 } else {
5897 format_odp_actions(&ds, facet->xout.odp_actions.data,
5898 facet->xout.odp_actions.size);
5899 }
bcd2633a
JP
5900 ds_put_cstr(&ds, "\n");
5901 }
0b4f2078 5902 ovs_rwlock_unlock(&ofproto->facets.rwlock);
bcd2633a
JP
5903
5904 ds_chomp(&ds, '\n');
5905 unixctl_command_reply(conn, ds_cstr(&ds));
5906 ds_destroy(&ds);
5907}
5908
6b35e630
JP
5909/* Disable using the megaflows.
5910 *
5911 * This command is only needed for advanced debugging, so it's not
5912 * documented in the man page. */
5913static void
5914ofproto_unixctl_dpif_disable_megaflows(struct unixctl_conn *conn,
5915 int argc OVS_UNUSED,
5916 const char *argv[] OVS_UNUSED,
5917 void *aux OVS_UNUSED)
5918{
5919 struct ofproto_dpif *ofproto;
5920
5921 enable_megaflows = false;
5922
5923 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5924 flush(&ofproto->up);
5925 }
5926
5927 unixctl_command_reply(conn, "megaflows disabled");
5928}
5929
5930/* Re-enable using megaflows.
5931 *
5932 * This command is only needed for advanced debugging, so it's not
5933 * documented in the man page. */
5934static void
5935ofproto_unixctl_dpif_enable_megaflows(struct unixctl_conn *conn,
5936 int argc OVS_UNUSED,
5937 const char *argv[] OVS_UNUSED,
5938 void *aux OVS_UNUSED)
5939{
5940 struct ofproto_dpif *ofproto;
5941
5942 enable_megaflows = true;
5943
5944 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5945 flush(&ofproto->up);
5946 }
5947
5948 unixctl_command_reply(conn, "megaflows enabled");
5949}
5950
27022416
JP
5951static void
5952ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
5953 int argc OVS_UNUSED, const char *argv[],
5954 void *aux OVS_UNUSED)
5955{
5956 struct ds ds = DS_EMPTY_INITIALIZER;
5957 const struct ofproto_dpif *ofproto;
5958 struct subfacet *subfacet;
5959
5960 ofproto = ofproto_dpif_lookup(argv[1]);
5961 if (!ofproto) {
5962 unixctl_command_reply_error(conn, "no such bridge");
5963 return;
5964 }
5965
af37354d
EJ
5966 update_stats(ofproto->backer);
5967
04d08d54 5968 HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->backer->subfacets) {
4dff9097 5969 struct facet *facet = subfacet->facet;
64f9cb76
JP
5970 struct odputil_keybuf maskbuf;
5971 struct ofpbuf mask;
4dff9097 5972
b7e2f6b3 5973 if (facet->ofproto != ofproto) {
04d08d54
EJ
5974 continue;
5975 }
5976
64f9cb76
JP
5977 ofpbuf_use_stack(&mask, &maskbuf, sizeof maskbuf);
5978 if (enable_megaflows) {
5979 odp_flow_key_from_mask(&mask, &facet->xout.wc.masks,
5980 &facet->flow, UINT32_MAX);
5981 }
5982
5983 odp_flow_format(subfacet->key, subfacet->key_len,
041e7168 5984 mask.data, mask.size, &ds, false);
27022416
JP
5985
5986 ds_put_format(&ds, ", packets:%"PRIu64", bytes:%"PRIu64", used:",
5987 subfacet->dp_packet_count, subfacet->dp_byte_count);
5988 if (subfacet->used) {
5989 ds_put_format(&ds, "%.3fs",
5990 (time_msec() - subfacet->used) / 1000.0);
5991 } else {
5992 ds_put_format(&ds, "never");
5993 }
5994 if (subfacet->facet->tcp_flags) {
5995 ds_put_cstr(&ds, ", flags:");
5996 packet_format_tcp_flags(&ds, subfacet->facet->tcp_flags);
5997 }
5998
5999 ds_put_cstr(&ds, ", actions:");
bbafd73b 6000 if (facet->xout.slow) {
f2245da3
JP
6001 uint64_t slow_path_stub[128 / 8];
6002 const struct nlattr *actions;
6003 size_t actions_len;
6004
bbafd73b 6005 compose_slow_path(ofproto, &facet->flow, facet->xout.slow,
f2245da3
JP
6006 slow_path_stub, sizeof slow_path_stub,
6007 &actions, &actions_len);
6008 format_odp_actions(&ds, actions, actions_len);
6009 } else {
bbafd73b
EJ
6010 format_odp_actions(&ds, facet->xout.odp_actions.data,
6011 facet->xout.odp_actions.size);
f2245da3 6012 }
27022416
JP
6013 ds_put_char(&ds, '\n');
6014 }
6015
6016 unixctl_command_reply(conn, ds_cstr(&ds));
6017 ds_destroy(&ds);
6018}
6019
6020static void
6021ofproto_unixctl_dpif_del_flows(struct unixctl_conn *conn,
6022 int argc OVS_UNUSED, const char *argv[],
6023 void *aux OVS_UNUSED)
6024{
6025 struct ds ds = DS_EMPTY_INITIALIZER;
6026 struct ofproto_dpif *ofproto;
6027
6028 ofproto = ofproto_dpif_lookup(argv[1]);
6029 if (!ofproto) {
6030 unixctl_command_reply_error(conn, "no such bridge");
6031 return;
6032 }
6033
6034 flush(&ofproto->up);
6035
6036 unixctl_command_reply(conn, ds_cstr(&ds));
6037 ds_destroy(&ds);
6038}
6039
abe529af
BP
6040static void
6041ofproto_dpif_unixctl_init(void)
6042{
6043 static bool registered;
6044 if (registered) {
6045 return;
6046 }
6047 registered = true;
6048
0e15264f
BP
6049 unixctl_command_register(
6050 "ofproto/trace",
50aa28fd
AW
6051 "[dp_name]|bridge odp_flow|br_flow [-generate|packet]",
6052 1, 3, ofproto_unixctl_trace, NULL);
96e466a3 6053 unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
0e15264f
BP
6054 ofproto_unixctl_fdb_flush, NULL);
6055 unixctl_command_register("fdb/show", "bridge", 1, 1,
6056 ofproto_unixctl_fdb_show, NULL);
6057 unixctl_command_register("ofproto/clog", "", 0, 0,
6058 ofproto_dpif_clog, NULL);
6059 unixctl_command_register("ofproto/unclog", "", 0, 0,
6060 ofproto_dpif_unclog, NULL);
6814e51f
BP
6061 unixctl_command_register("ofproto/self-check", "[bridge]", 0, 1,
6062 ofproto_dpif_self_check, NULL);
27022416
JP
6063 unixctl_command_register("dpif/dump-dps", "", 0, 0,
6064 ofproto_unixctl_dpif_dump_dps, NULL);
dc54ef36
EJ
6065 unixctl_command_register("dpif/show", "", 0, 0, ofproto_unixctl_dpif_show,
6066 NULL);
27022416
JP
6067 unixctl_command_register("dpif/dump-flows", "bridge", 1, 1,
6068 ofproto_unixctl_dpif_dump_flows, NULL);
6069 unixctl_command_register("dpif/del-flows", "bridge", 1, 1,
6070 ofproto_unixctl_dpif_del_flows, NULL);
bcd2633a
JP
6071 unixctl_command_register("dpif/dump-megaflows", "bridge", 1, 1,
6072 ofproto_unixctl_dpif_dump_megaflows, NULL);
6b35e630
JP
6073 unixctl_command_register("dpif/disable-megaflows", "", 0, 0,
6074 ofproto_unixctl_dpif_disable_megaflows, NULL);
6075 unixctl_command_register("dpif/enable-megaflows", "", 0, 0,
6076 ofproto_unixctl_dpif_enable_megaflows, NULL);
abe529af
BP
6077}
6078\f
52a90c29
BP
6079/* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
6080 *
6081 * This is deprecated. It is only for compatibility with broken device drivers
6082 * in old versions of Linux that do not properly support VLANs when VLAN
6083 * devices are not used. When broken device drivers are no longer in
6084 * widespread use, we will delete these interfaces. */
6085
6086static int
4e022ec0 6087set_realdev(struct ofport *ofport_, ofp_port_t realdev_ofp_port, int vid)
52a90c29
BP
6088{
6089 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
6090 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
6091
6092 if (realdev_ofp_port == ofport->realdev_ofp_port
6093 && vid == ofport->vlandev_vid) {
6094 return 0;
6095 }
6096
2cc3c58e 6097 ofproto->backer->need_revalidate = REV_RECONFIGURE;
52a90c29
BP
6098
6099 if (ofport->realdev_ofp_port) {
6100 vsp_remove(ofport);
6101 }
6102 if (realdev_ofp_port && ofport->bundle) {
6103 /* vlandevs are enslaved to their realdevs, so they are not allowed to
6104 * themselves be part of a bundle. */
6105 bundle_set(ofport->up.ofproto, ofport->bundle, NULL);
6106 }
6107
6108 ofport->realdev_ofp_port = realdev_ofp_port;
6109 ofport->vlandev_vid = vid;
6110
6111 if (realdev_ofp_port) {
6112 vsp_add(ofport, realdev_ofp_port, vid);
6113 }
6114
6115 return 0;
6116}
6117
6118static uint32_t
4e022ec0 6119hash_realdev_vid(ofp_port_t realdev_ofp_port, int vid)
52a90c29 6120{
4e022ec0 6121 return hash_2words(ofp_to_u16(realdev_ofp_port), vid);
52a90c29
BP
6122}
6123
46c88433
EJ
6124bool
6125ofproto_has_vlan_splinters(const struct ofproto_dpif *ofproto)
13501305 6126 OVS_EXCLUDED(ofproto->vsp_mutex)
46c88433 6127{
13501305
EJ
6128 bool ret;
6129
6130 ovs_mutex_lock(&ofproto->vsp_mutex);
6131 ret = !hmap_is_empty(&ofproto->realdev_vid_map);
6132 ovs_mutex_unlock(&ofproto->vsp_mutex);
6133 return ret;
46c88433
EJ
6134}
6135
13501305
EJ
6136static ofp_port_t
6137vsp_realdev_to_vlandev__(const struct ofproto_dpif *ofproto,
6138 ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
6139 OVS_REQUIRES(ofproto->vsp_mutex)
52a90c29
BP
6140{
6141 if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
52a90c29
BP
6142 int vid = vlan_tci_to_vid(vlan_tci);
6143 const struct vlan_splinter *vsp;
6144
6145 HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
6146 hash_realdev_vid(realdev_ofp_port, vid),
6147 &ofproto->realdev_vid_map) {
6148 if (vsp->realdev_ofp_port == realdev_ofp_port
6149 && vsp->vid == vid) {
deea1200 6150 return vsp->vlandev_ofp_port;
52a90c29
BP
6151 }
6152 }
6153 }
deea1200 6154 return realdev_ofp_port;
52a90c29
BP
6155}
6156
13501305
EJ
6157/* Returns the OFP port number of the Linux VLAN device that corresponds to
6158 * 'vlan_tci' on the network device with port number 'realdev_ofp_port' in
6159 * 'struct ofport_dpif'. For example, given 'realdev_ofp_port' of eth0 and
6160 * 'vlan_tci' 9, it would return the port number of eth0.9.
6161 *
6162 * Unless VLAN splinters are enabled for port 'realdev_ofp_port', this
6163 * function just returns its 'realdev_ofp_port' argument. */
6164ofp_port_t
6165vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
6166 ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
6167 OVS_EXCLUDED(ofproto->vsp_mutex)
6168{
6169 ofp_port_t ret;
6170
6171 ovs_mutex_lock(&ofproto->vsp_mutex);
6172 ret = vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, vlan_tci);
6173 ovs_mutex_unlock(&ofproto->vsp_mutex);
6174 return ret;
6175}
6176
52a90c29 6177static struct vlan_splinter *
4e022ec0 6178vlandev_find(const struct ofproto_dpif *ofproto, ofp_port_t vlandev_ofp_port)
52a90c29
BP
6179{
6180 struct vlan_splinter *vsp;
6181
4e022ec0 6182 HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node,
f9c0c3ec 6183 hash_ofp_port(vlandev_ofp_port),
52a90c29
BP
6184 &ofproto->vlandev_map) {
6185 if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
6186 return vsp;
6187 }
6188 }
6189
6190 return NULL;
6191}
6192
40e05935
BP
6193/* Returns the OpenFlow port number of the "real" device underlying the Linux
6194 * VLAN device with OpenFlow port number 'vlandev_ofp_port' and stores the
6195 * VLAN VID of the Linux VLAN device in '*vid'. For example, given
6196 * 'vlandev_ofp_port' of eth0.9, it would return the OpenFlow port number of
6197 * eth0 and store 9 in '*vid'.
6198 *
6199 * Returns 0 and does not modify '*vid' if 'vlandev_ofp_port' is not a Linux
6200 * VLAN device. Unless VLAN splinters are enabled, this is what this function
6201 * always does.*/
4e022ec0 6202static ofp_port_t
52a90c29 6203vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
4e022ec0 6204 ofp_port_t vlandev_ofp_port, int *vid)
bd3950dd 6205 OVS_REQUIRES(ofproto->vsp_mutex)
52a90c29
BP
6206{
6207 if (!hmap_is_empty(&ofproto->vlandev_map)) {
6208 const struct vlan_splinter *vsp;
6209
6210 vsp = vlandev_find(ofproto, vlandev_ofp_port);
6211 if (vsp) {
6212 if (vid) {
6213 *vid = vsp->vid;
6214 }
6215 return vsp->realdev_ofp_port;
6216 }
6217 }
6218 return 0;
6219}
6220
b98d8985
BP
6221/* Given 'flow', a flow representing a packet received on 'ofproto', checks
6222 * whether 'flow->in_port' represents a Linux VLAN device. If so, changes
6223 * 'flow->in_port' to the "real" device backing the VLAN device, sets
6224 * 'flow->vlan_tci' to the VLAN VID, and returns true. Otherwise (which is
6225 * always the case unless VLAN splinters are enabled), returns false without
6226 * making any changes. */
8449c4d6 6227bool
b98d8985 6228vsp_adjust_flow(const struct ofproto_dpif *ofproto, struct flow *flow)
13501305 6229 OVS_EXCLUDED(ofproto->vsp_mutex)
b98d8985 6230{
4e022ec0 6231 ofp_port_t realdev;
b98d8985
BP
6232 int vid;
6233
13501305 6234 ovs_mutex_lock(&ofproto->vsp_mutex);
4e022ec0 6235 realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port.ofp_port, &vid);
13501305 6236 ovs_mutex_unlock(&ofproto->vsp_mutex);
b98d8985
BP
6237 if (!realdev) {
6238 return false;
6239 }
6240
6241 /* Cause the flow to be processed as if it came in on the real device with
6242 * the VLAN device's VLAN ID. */
4e022ec0 6243 flow->in_port.ofp_port = realdev;
b98d8985
BP
6244 flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
6245 return true;
6246}
6247
52a90c29
BP
6248static void
6249vsp_remove(struct ofport_dpif *port)
6250{
6251 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
6252 struct vlan_splinter *vsp;
6253
13501305 6254 ovs_mutex_lock(&ofproto->vsp_mutex);
52a90c29
BP
6255 vsp = vlandev_find(ofproto, port->up.ofp_port);
6256 if (vsp) {
6257 hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
6258 hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
6259 free(vsp);
6260
6261 port->realdev_ofp_port = 0;
6262 } else {
6263 VLOG_ERR("missing vlan device record");
6264 }
13501305 6265 ovs_mutex_unlock(&ofproto->vsp_mutex);
52a90c29
BP
6266}
6267
6268static void
4e022ec0 6269vsp_add(struct ofport_dpif *port, ofp_port_t realdev_ofp_port, int vid)
52a90c29
BP
6270{
6271 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
6272
13501305 6273 ovs_mutex_lock(&ofproto->vsp_mutex);
52a90c29 6274 if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
13501305 6275 && (vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, htons(vid))
52a90c29
BP
6276 == realdev_ofp_port)) {
6277 struct vlan_splinter *vsp;
6278
6279 vsp = xmalloc(sizeof *vsp);
52a90c29
BP
6280 vsp->realdev_ofp_port = realdev_ofp_port;
6281 vsp->vlandev_ofp_port = port->up.ofp_port;
6282 vsp->vid = vid;
6283
6284 port->realdev_ofp_port = realdev_ofp_port;
13501305
EJ
6285
6286 hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
6287 hash_ofp_port(port->up.ofp_port));
6288 hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
6289 hash_realdev_vid(realdev_ofp_port, vid));
52a90c29
BP
6290 } else {
6291 VLOG_ERR("duplicate vlan device record");
6292 }
13501305 6293 ovs_mutex_unlock(&ofproto->vsp_mutex);
52a90c29 6294}
e1b1d06a 6295
46c88433 6296static odp_port_t
4e022ec0 6297ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
e1b1d06a
JP
6298{
6299 const struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
4e022ec0 6300 return ofport ? ofport->odp_port : ODPP_NONE;
e1b1d06a
JP
6301}
6302
8449c4d6 6303struct ofport_dpif *
4e022ec0 6304odp_port_to_ofport(const struct dpif_backer *backer, odp_port_t odp_port)
e1b1d06a
JP
6305{
6306 struct ofport_dpif *port;
6307
8449c4d6 6308 ovs_rwlock_rdlock(&backer->odp_to_ofport_lock);
f9c0c3ec 6309 HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node, hash_odp_port(odp_port),
acf60855 6310 &backer->odp_to_ofport_map) {
e1b1d06a 6311 if (port->odp_port == odp_port) {
8449c4d6 6312 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
acf60855 6313 return port;
e1b1d06a
JP
6314 }
6315 }
6316
8449c4d6 6317 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
acf60855
JP
6318 return NULL;
6319}
6320
4e022ec0
AW
6321static ofp_port_t
6322odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
acf60855
JP
6323{
6324 struct ofport_dpif *port;
6325
6326 port = odp_port_to_ofport(ofproto->backer, odp_port);
6472ba11 6327 if (port && &ofproto->up == port->up.ofproto) {
acf60855
JP
6328 return port->up.ofp_port;
6329 } else {
6330 return OFPP_NONE;
6331 }
e1b1d06a 6332}
655ab909 6333
655ab909
AZ
6334/* Compute exponentially weighted moving average, adding 'new' as the newest,
6335 * most heavily weighted element. 'base' designates the rate of decay: after
6336 * 'base' further updates, 'new''s weight in the EWMA decays to about 1/e
6337 * (about .37). */
6338static void
6339exp_mavg(double *avg, int base, double new)
6340{
6341 *avg = (*avg * (base - 1) + new) / base;
6342}
6343
6344static void
dc54ef36 6345update_moving_averages(struct dpif_backer *backer)
655ab909
AZ
6346{
6347 const int min_ms = 60 * 1000; /* milliseconds in one minute. */
dc54ef36
EJ
6348 long long int minutes = (time_msec() - backer->created) / min_ms;
6349
6350 if (minutes > 0) {
6351 backer->lifetime.add_rate = (double) backer->total_subfacet_add_count
6352 / minutes;
6353 backer->lifetime.del_rate = (double) backer->total_subfacet_del_count
6354 / minutes;
6355 } else {
6356 backer->lifetime.add_rate = 0.0;
6357 backer->lifetime.del_rate = 0.0;
6358 }
655ab909
AZ
6359
6360 /* Update hourly averages on the minute boundaries. */
dc54ef36
EJ
6361 if (time_msec() - backer->last_minute >= min_ms) {
6362 exp_mavg(&backer->hourly.add_rate, 60, backer->subfacet_add_count);
6363 exp_mavg(&backer->hourly.del_rate, 60, backer->subfacet_del_count);
655ab909
AZ
6364
6365 /* Update daily averages on the hour boundaries. */
dc54ef36
EJ
6366 if ((backer->last_minute - backer->created) / min_ms % 60 == 59) {
6367 exp_mavg(&backer->daily.add_rate, 24, backer->hourly.add_rate);
6368 exp_mavg(&backer->daily.del_rate, 24, backer->hourly.del_rate);
655ab909
AZ
6369 }
6370
dc54ef36
EJ
6371 backer->total_subfacet_add_count += backer->subfacet_add_count;
6372 backer->total_subfacet_del_count += backer->subfacet_del_count;
6373 backer->subfacet_add_count = 0;
6374 backer->subfacet_del_count = 0;
6375 backer->last_minute += min_ms;
655ab909
AZ
6376 }
6377}
e1b1d06a 6378
abe529af 6379const struct ofproto_class ofproto_dpif_class = {
b0408fca 6380 init,
abe529af
BP
6381 enumerate_types,
6382 enumerate_names,
6383 del,
0aeaabc8 6384 port_open_type,
acf60855
JP
6385 type_run,
6386 type_run_fast,
6387 type_wait,
abe529af
BP
6388 alloc,
6389 construct,
6390 destruct,
6391 dealloc,
6392 run,
5fcc0d00 6393 run_fast,
abe529af 6394 wait,
0d085684 6395 get_memory_usage,
abe529af 6396 flush,
6c1491fb
BP
6397 get_features,
6398 get_tables,
abe529af
BP
6399 port_alloc,
6400 port_construct,
6401 port_destruct,
6402 port_dealloc,
6403 port_modified,
6404 port_reconfigured,
6405 port_query_by_name,
6406 port_add,
6407 port_del,
6527c598 6408 port_get_stats,
abe529af
BP
6409 port_dump_start,
6410 port_dump_next,
6411 port_dump_done,
6412 port_poll,
6413 port_poll_wait,
6414 port_is_lacp_current,
0ab6decf 6415 NULL, /* rule_choose_table */
abe529af
BP
6416 rule_alloc,
6417 rule_construct,
8037acb4
BP
6418 rule_insert,
6419 rule_delete,
abe529af
BP
6420 rule_destruct,
6421 rule_dealloc,
abe529af
BP
6422 rule_get_stats,
6423 rule_execute,
6424 rule_modify_actions,
7257b535 6425 set_frag_handling,
abe529af
BP
6426 packet_out,
6427 set_netflow,
6428 get_netflow_ids,
6429 set_sflow,
29089a54 6430 set_ipfix,
abe529af 6431 set_cfm,
9a9e3786 6432 get_cfm_status,
ccc09689
EJ
6433 set_bfd,
6434 get_bfd_status,
21f7563c
JP
6435 set_stp,
6436 get_stp_status,
6437 set_stp_port,
6438 get_stp_port_status,
8b36f51e 6439 set_queues,
abe529af
BP
6440 bundle_set,
6441 bundle_remove,
ec7ceaed
EJ
6442 mirror_set__,
6443 mirror_get_stats__,
abe529af
BP
6444 set_flood_vlans,
6445 is_mirror_output_bundle,
8402c74b 6446 forward_bpdu_changed,
c4069512 6447 set_mac_table_config,
52a90c29 6448 set_realdev,
9cae45dc
JR
6449 NULL, /* meter_get_features */
6450 NULL, /* meter_set */
6451 NULL, /* meter_get */
6452 NULL, /* meter_del */
7395c052
NZ
6453 NULL, /* group_alloc */
6454 NULL, /* group_construct */
6455 NULL, /* group_destruct */
6456 NULL, /* group_dealloc */
6457 NULL, /* group_modify */
6458 NULL, /* group_get_stats */
abe529af 6459};