]> git.proxmox.com Git - ovs.git/blame - ofproto/ofproto-dpif.c
Use updated dl_type when checking actions that use fields
[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
5bee6e26 19#include "ofproto/ofproto-provider.h"
abe529af
BP
20
21#include <errno.h>
22
ccc09689 23#include "bfd.h"
abe529af 24#include "bond.h"
daff3353 25#include "bundle.h"
abe529af
BP
26#include "byte-order.h"
27#include "connmgr.h"
28#include "coverage.h"
29#include "cfm.h"
30#include "dpif.h"
31#include "dynamic-string.h"
32#include "fail-open.h"
33#include "hmapx.h"
34#include "lacp.h"
75a75043 35#include "learn.h"
abe529af 36#include "mac-learning.h"
816fd533 37#include "meta-flow.h"
abe529af 38#include "multipath.h"
0a740f48 39#include "netdev-vport.h"
abe529af
BP
40#include "netdev.h"
41#include "netlink.h"
42#include "nx-match.h"
43#include "odp-util.h"
44#include "ofp-util.h"
45#include "ofpbuf.h"
f25d0cf3 46#include "ofp-actions.h"
31a19d69 47#include "ofp-parse.h"
abe529af 48#include "ofp-print.h"
9d6ac44e 49#include "ofproto-dpif-governor.h"
29089a54 50#include "ofproto-dpif-ipfix.h"
bae473fe 51#include "ofproto-dpif-sflow.h"
abe529af 52#include "poll-loop.h"
0d085684 53#include "simap.h"
27022416 54#include "smap.h"
abe529af 55#include "timer.h"
b9ad7294 56#include "tunnel.h"
6c1491fb 57#include "unaligned.h"
abe529af
BP
58#include "unixctl.h"
59#include "vlan-bitmap.h"
60#include "vlog.h"
61
62VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
63
abe529af 64COVERAGE_DEFINE(ofproto_dpif_expired);
abe529af
BP
65COVERAGE_DEFINE(ofproto_dpif_xlate);
66COVERAGE_DEFINE(facet_changed_rule);
abe529af
BP
67COVERAGE_DEFINE(facet_revalidate);
68COVERAGE_DEFINE(facet_unexpected);
9d6ac44e 69COVERAGE_DEFINE(facet_suppress);
abe529af 70
29901626 71/* Maximum depth of flow table recursion (due to resubmit actions) in a
abe529af 72 * flow translation. */
1642690c 73#define MAX_RESUBMIT_RECURSION 64
abe529af 74
9cdaaebe
BP
75/* Number of implemented OpenFlow tables. */
76enum { N_TABLES = 255 };
c57b2226
BP
77enum { TBL_INTERNAL = N_TABLES - 1 }; /* Used for internal hidden rules. */
78BUILD_ASSERT_DECL(N_TABLES >= 2 && N_TABLES <= 255);
9cdaaebe 79
abe529af
BP
80struct ofport_dpif;
81struct ofproto_dpif;
a088a1ff 82struct flow_miss;
ac35f9c8 83struct facet;
abe529af
BP
84
85struct rule_dpif {
86 struct rule up;
87
abe529af
BP
88 /* These statistics:
89 *
90 * - Do include packets and bytes from facets that have been deleted or
91 * whose own statistics have been folded into the rule.
92 *
93 * - Do include packets and bytes sent "by hand" that were accounted to
94 * the rule without any facet being involved (this is a rare corner
95 * case in rule_execute()).
96 *
97 * - Do not include packet or bytes that can be obtained from any facet's
98 * packet_count or byte_count member or that can be obtained from the
b0f7b9b5 99 * datapath by, e.g., dpif_flow_get() for any subfacet.
abe529af
BP
100 */
101 uint64_t packet_count; /* Number of packets received. */
102 uint64_t byte_count; /* Number of bytes received. */
103
54a9cbc9
BP
104 tag_type tag; /* Caches rule_calculate_tag() result. */
105
abe529af
BP
106 struct list facets; /* List of "struct facet"s. */
107};
108
109static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
110{
111 return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
112}
113
29901626 114static struct rule_dpif *rule_dpif_lookup(struct ofproto_dpif *,
c57b2226
BP
115 const struct flow *);
116static struct rule_dpif *rule_dpif_lookup__(struct ofproto_dpif *,
117 const struct flow *,
118 uint8_t table);
c376f9a3
IY
119static struct rule_dpif *rule_dpif_miss_rule(struct ofproto_dpif *ofproto,
120 const struct flow *flow);
abe529af 121
112bc5f4
BP
122static void rule_credit_stats(struct rule_dpif *,
123 const struct dpif_flow_stats *);
ac35f9c8 124static void flow_push_stats(struct facet *, const struct dpif_flow_stats *);
822d9414 125static tag_type rule_calculate_tag(const struct flow *,
5cb7a798 126 const struct minimask *, uint32_t basis);
b0f7b9b5
BP
127static void rule_invalidate(const struct rule_dpif *);
128
abe529af
BP
129#define MAX_MIRRORS 32
130typedef uint32_t mirror_mask_t;
131#define MIRROR_MASK_C(X) UINT32_C(X)
132BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
133struct ofmirror {
134 struct ofproto_dpif *ofproto; /* Owning ofproto. */
135 size_t idx; /* In ofproto's "mirrors" array. */
136 void *aux; /* Key supplied by ofproto's client. */
137 char *name; /* Identifier for log messages. */
138
139 /* Selection criteria. */
140 struct hmapx srcs; /* Contains "struct ofbundle *"s. */
141 struct hmapx dsts; /* Contains "struct ofbundle *"s. */
142 unsigned long *vlans; /* Bitmap of chosen VLANs, NULL selects all. */
143
9ba15e2a 144 /* Output (exactly one of out == NULL and out_vlan == -1 is true). */
abe529af
BP
145 struct ofbundle *out; /* Output port or NULL. */
146 int out_vlan; /* Output VLAN or -1. */
9ba15e2a 147 mirror_mask_t dup_mirrors; /* Bitmap of mirrors with the same output. */
9d24de3b
JP
148
149 /* Counters. */
150 int64_t packet_count; /* Number of packets sent. */
151 int64_t byte_count; /* Number of bytes sent. */
abe529af
BP
152};
153
154static void mirror_destroy(struct ofmirror *);
9d24de3b
JP
155static void update_mirror_stats(struct ofproto_dpif *ofproto,
156 mirror_mask_t mirrors,
157 uint64_t packets, uint64_t bytes);
abe529af 158
abe529af 159struct ofbundle {
abe529af 160 struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
6e492d81 161 struct ofproto_dpif *ofproto; /* Owning ofproto. */
abe529af
BP
162 void *aux; /* Key supplied by ofproto's client. */
163 char *name; /* Identifier for log messages. */
164
165 /* Configuration. */
166 struct list ports; /* Contains "struct ofport"s. */
ecac4ebf 167 enum port_vlan_mode vlan_mode; /* VLAN mode */
abe529af
BP
168 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
169 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
170 * NULL if all VLANs are trunked. */
171 struct lacp *lacp; /* LACP if LACP is enabled, otherwise NULL. */
172 struct bond *bond; /* Nonnull iff more than one port. */
5e9ceccd 173 bool use_priority_tags; /* Use 802.1p tag for frames in VLAN 0? */
abe529af
BP
174
175 /* Status. */
9e1fd49b 176 bool floodable; /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
abe529af
BP
177
178 /* Port mirroring info. */
179 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
180 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
181 mirror_mask_t mirror_out; /* Mirrors that output to this bundle. */
182};
183
184static void bundle_remove(struct ofport *);
7bde8dd8 185static void bundle_update(struct ofbundle *);
abe529af
BP
186static void bundle_destroy(struct ofbundle *);
187static void bundle_del_port(struct ofport_dpif *);
188static void bundle_run(struct ofbundle *);
189static void bundle_wait(struct ofbundle *);
4acbc98d 190static struct ofbundle *lookup_input_bundle(const struct ofproto_dpif *,
70c2fd56
BP
191 uint16_t in_port, bool warn,
192 struct ofport_dpif **in_ofportp);
abe529af 193
33158a18
JP
194/* A controller may use OFPP_NONE as the ingress port to indicate that
195 * it did not arrive on a "real" port. 'ofpp_none_bundle' exists for
196 * when an input bundle is needed for validation (e.g., mirroring or
197 * OFPP_NORMAL processing). It is not connected to an 'ofproto' or have
198 * any 'port' structs, so care must be taken when dealing with it. */
199static struct ofbundle ofpp_none_bundle = {
200 .name = "OFPP_NONE",
201 .vlan_mode = PORT_VLAN_TRUNK
202};
203
21f7563c
JP
204static void stp_run(struct ofproto_dpif *ofproto);
205static void stp_wait(struct ofproto_dpif *ofproto);
851bf71d
EJ
206static int set_stp_port(struct ofport *,
207 const struct ofproto_port_stp_settings *);
21f7563c 208
5da5ec37
BP
209static bool ofbundle_includes_vlan(const struct ofbundle *, uint16_t vlan);
210
abe529af
BP
211struct action_xlate_ctx {
212/* action_xlate_ctx_init() initializes these members. */
213
214 /* The ofproto. */
215 struct ofproto_dpif *ofproto;
216
217 /* Flow to which the OpenFlow actions apply. xlate_actions() will modify
218 * this flow when actions change header fields. */
219 struct flow flow;
220
bd85dac1
AZ
221 /* stack for the push and pop actions.
222 * Each stack element is of the type "union mf_subvalue". */
223 struct ofpbuf stack;
224 union mf_subvalue init_stack[1024 / sizeof(union mf_subvalue)];
225
abe529af
BP
226 /* The packet corresponding to 'flow', or a null pointer if we are
227 * revalidating without a packet to refer to. */
228 const struct ofpbuf *packet;
229
3de9590b
BP
230 /* Should OFPP_NORMAL update the MAC learning table? Should "learn"
231 * actions update the flow table?
232 *
233 * We want to update these tables if we are actually processing a packet,
234 * or if we are accounting for packets that the datapath has processed, but
235 * not if we are just revalidating. */
236 bool may_learn;
75a75043 237
18b2a258
BP
238 /* The rule that we are currently translating, or NULL. */
239 struct rule_dpif *rule;
54834960 240
0e553d9c
BP
241 /* Union of the set of TCP flags seen so far in this flow. (Used only by
242 * NXAST_FIN_TIMEOUT. Set to zero to avoid updating updating rules'
243 * timeouts.) */
244 uint8_t tcp_flags;
245
112bc5f4
BP
246 /* If nonnull, flow translation calls this function just before executing a
247 * resubmit or OFPP_TABLE action. In addition, disables logging of traces
248 * when the recursion depth is exceeded.
249 *
250 * 'rule' is the rule being submitted into. It will be null if the
251 * resubmit or OFPP_TABLE action didn't find a matching rule.
252 *
253 * This is normally null so the client has to set it manually after
254 * calling action_xlate_ctx_init(). */
255 void (*resubmit_hook)(struct action_xlate_ctx *, struct rule_dpif *rule);
256
479df176
BP
257 /* If nonnull, flow translation calls this function to report some
258 * significant decision, e.g. to explain why OFPP_NORMAL translation
259 * dropped a packet. */
260 void (*report_hook)(struct action_xlate_ctx *, const char *s);
261
112bc5f4
BP
262 /* If nonnull, flow translation credits the specified statistics to each
263 * rule reached through a resubmit or OFPP_TABLE action.
abe529af
BP
264 *
265 * This is normally null so the client has to set it manually after
266 * calling action_xlate_ctx_init(). */
112bc5f4 267 const struct dpif_flow_stats *resubmit_stats;
abe529af 268
abe529af
BP
269/* xlate_actions() initializes and uses these members. The client might want
270 * to look at them after it returns. */
271
272 struct ofpbuf *odp_actions; /* Datapath actions. */
75a75043 273 tag_type tags; /* Tags associated with actions. */
6a7e895f 274 enum slow_path_reason slow; /* 0 if fast path may be used. */
75a75043
BP
275 bool has_learn; /* Actions include NXAST_LEARN? */
276 bool has_normal; /* Actions output to OFPP_NORMAL? */
0e553d9c 277 bool has_fin_timeout; /* Actions include NXAST_FIN_TIMEOUT? */
abe529af 278 uint16_t nf_output_iface; /* Output interface index for NetFlow. */
9d24de3b 279 mirror_mask_t mirrors; /* Bitmap of associated mirrors. */
abe529af
BP
280
281/* xlate_actions() initializes and uses these members, but the client has no
282 * reason to look at them. */
283
284 int recurse; /* Recursion level, via xlate_table_action. */
6a6455e5 285 bool max_resubmit_trigger; /* Recursed too deeply during translation. */
b3e9b2ed 286 struct flow base_flow; /* Flow at the last commit. */
deedf7e7 287 uint32_t orig_skb_priority; /* Priority when packet arrived. */
29901626 288 uint8_t table_id; /* OpenFlow table ID where flow was found. */
6ff686f2 289 uint32_t sflow_n_outputs; /* Number of output ports. */
9b56fe13 290 uint32_t sflow_odp_port; /* Output port for composing sFlow action. */
6ff686f2 291 uint16_t user_cookie_offset;/* Used for user_action_cookie fixup. */
848e8809 292 bool exit; /* No further actions should be processed. */
abe529af
BP
293};
294
14f94f9a
JP
295/* Initial values of fields of the packet that may be changed during
296 * flow processing and needed later. */
297struct initial_vals {
298 /* This is the value of vlan_tci in the packet as actually received from
299 * dpif. This is the same as the facet's flow.vlan_tci unless the packet
300 * was received via a VLAN splinter. In that case, this value is 0
301 * (because the packet as actually received from the dpif had no 802.1Q
302 * tag) but the facet's flow.vlan_tci is set to the VLAN that the splinter
303 * represents.
304 *
305 * This member should be removed when the VLAN splinters feature is no
306 * longer needed. */
307 ovs_be16 vlan_tci;
308};
309
abe529af
BP
310static void action_xlate_ctx_init(struct action_xlate_ctx *,
311 struct ofproto_dpif *, const struct flow *,
14f94f9a
JP
312 const struct initial_vals *initial_vals,
313 struct rule_dpif *,
0e553d9c 314 uint8_t tcp_flags, const struct ofpbuf *);
050ac423 315static void xlate_actions(struct action_xlate_ctx *,
f25d0cf3 316 const struct ofpact *ofpacts, size_t ofpacts_len,
050ac423
BP
317 struct ofpbuf *odp_actions);
318static void xlate_actions_for_side_effects(struct action_xlate_ctx *,
f25d0cf3
BP
319 const struct ofpact *ofpacts,
320 size_t ofpacts_len);
0a740f48
EJ
321static void xlate_table_action(struct action_xlate_ctx *, uint16_t in_port,
322 uint8_t table_id, bool may_packet_in);
abe529af 323
6a7e895f
BP
324static size_t put_userspace_action(const struct ofproto_dpif *,
325 struct ofpbuf *odp_actions,
326 const struct flow *,
29089a54
RL
327 const union user_action_cookie *,
328 const size_t);
6a7e895f
BP
329
330static void compose_slow_path(const struct ofproto_dpif *, const struct flow *,
331 enum slow_path_reason,
332 uint64_t *stub, size_t stub_size,
333 const struct nlattr **actionsp,
334 size_t *actions_lenp);
335
479df176
BP
336static void xlate_report(struct action_xlate_ctx *ctx, const char *s);
337
6a7e895f
BP
338/* A subfacet (see "struct subfacet" below) has three possible installation
339 * states:
340 *
341 * - SF_NOT_INSTALLED: Not installed in the datapath. This will only be the
342 * case just after the subfacet is created, just before the subfacet is
343 * destroyed, or if the datapath returns an error when we try to install a
344 * subfacet.
345 *
346 * - SF_FAST_PATH: The subfacet's actions are installed in the datapath.
347 *
348 * - SF_SLOW_PATH: An action that sends every packet for the subfacet through
349 * ofproto_dpif is installed in the datapath.
350 */
351enum subfacet_path {
352 SF_NOT_INSTALLED, /* No datapath flow for this subfacet. */
353 SF_FAST_PATH, /* Full actions are installed. */
354 SF_SLOW_PATH, /* Send-to-userspace action is installed. */
355};
356
357static const char *subfacet_path_to_string(enum subfacet_path);
358
5f5fbd17
BP
359/* A dpif flow and actions associated with a facet.
360 *
361 * See also the large comment on struct facet. */
362struct subfacet {
363 /* Owners. */
364 struct hmap_node hmap_node; /* In struct ofproto_dpif 'subfacets' list. */
365 struct list list_node; /* In struct facet's 'facets' list. */
366 struct facet *facet; /* Owning facet. */
367
5f5fbd17
BP
368 enum odp_key_fitness key_fitness;
369 struct nlattr *key;
370 int key_len;
371
372 long long int used; /* Time last used; time created if not used. */
655ab909 373 long long int created; /* Time created. */
5f5fbd17
BP
374
375 uint64_t dp_packet_count; /* Last known packet count in the datapath. */
376 uint64_t dp_byte_count; /* Last known byte count in the datapath. */
377
378 /* Datapath actions.
379 *
380 * These should be essentially identical for every subfacet in a facet, but
381 * may differ in trivial ways due to VLAN splinters. */
382 size_t actions_len; /* Number of bytes in actions[]. */
383 struct nlattr *actions; /* Datapath actions. */
384
6a7e895f
BP
385 enum slow_path_reason slow; /* 0 if fast path may be used. */
386 enum subfacet_path path; /* Installed in datapath? */
5f5fbd17 387
14f94f9a
JP
388 /* Initial values of the packet that may be needed later. */
389 struct initial_vals initial_vals;
a088a1ff
JP
390
391 /* Datapath port the packet arrived on. This is needed to remove
392 * flows for ports that are no longer part of the bridge. Since the
393 * flow definition only has the OpenFlow port number and the port is
394 * no longer part of the bridge, we can't determine the datapath port
395 * number needed to delete the flow from the datapath. */
396 uint32_t odp_in_port;
5f5fbd17
BP
397};
398
1d85f9e5
JP
399#define SUBFACET_DESTROY_MAX_BATCH 50
400
a088a1ff 401static struct subfacet *subfacet_create(struct facet *, struct flow_miss *miss,
459b16a1 402 long long int now);
5f5fbd17 403static struct subfacet *subfacet_find(struct ofproto_dpif *,
acf60855 404 const struct nlattr *key, size_t key_len,
9566abf9 405 uint32_t key_hash);
5f5fbd17
BP
406static void subfacet_destroy(struct subfacet *);
407static void subfacet_destroy__(struct subfacet *);
1d85f9e5
JP
408static void subfacet_destroy_batch(struct ofproto_dpif *,
409 struct subfacet **, int n);
5f5fbd17
BP
410static void subfacet_reset_dp_stats(struct subfacet *,
411 struct dpif_flow_stats *);
412static void subfacet_update_time(struct subfacet *, long long int used);
413static void subfacet_update_stats(struct subfacet *,
414 const struct dpif_flow_stats *);
415static void subfacet_make_actions(struct subfacet *,
5fe20d5d
BP
416 const struct ofpbuf *packet,
417 struct ofpbuf *odp_actions);
5f5fbd17
BP
418static int subfacet_install(struct subfacet *,
419 const struct nlattr *actions, size_t actions_len,
6a7e895f 420 struct dpif_flow_stats *, enum slow_path_reason);
5f5fbd17
BP
421static void subfacet_uninstall(struct subfacet *);
422
6a7e895f
BP
423static enum subfacet_path subfacet_want_path(enum slow_path_reason);
424
b0f7b9b5
BP
425/* An exact-match instantiation of an OpenFlow flow.
426 *
427 * A facet associates a "struct flow", which represents the Open vSwitch
b95fc6ba
BP
428 * userspace idea of an exact-match flow, with one or more subfacets. Each
429 * subfacet tracks the datapath's idea of the exact-match flow equivalent to
430 * the facet. When the kernel module (or other dpif implementation) and Open
431 * vSwitch userspace agree on the definition of a flow key, there is exactly
432 * one subfacet per facet. If the dpif implementation supports more-specific
433 * flow matching than userspace, however, a facet can have more than one
434 * subfacet, each of which corresponds to some distinction in flow that
435 * userspace simply doesn't understand.
b0f7b9b5
BP
436 *
437 * Flow expiration works in terms of subfacets, so a facet must have at least
438 * one subfacet or it will never expire, leaking memory. */
abe529af 439struct facet {
b0f7b9b5
BP
440 /* Owners. */
441 struct hmap_node hmap_node; /* In owning ofproto's 'facets' hmap. */
442 struct list list_node; /* In owning rule's 'facets' list. */
443 struct rule_dpif *rule; /* Owning rule. */
444
445 /* Owned data. */
446 struct list subfacets;
abe529af
BP
447 long long int used; /* Time last used; time created if not used. */
448
b0f7b9b5
BP
449 /* Key. */
450 struct flow flow;
451
abe529af
BP
452 /* These statistics:
453 *
454 * - Do include packets and bytes sent "by hand", e.g. with
455 * dpif_execute().
456 *
457 * - Do include packets and bytes that were obtained from the datapath
b0f7b9b5 458 * when a subfacet's statistics were reset (e.g. dpif_flow_put() with
abe529af 459 * DPIF_FP_ZERO_STATS).
b0f7b9b5
BP
460 *
461 * - Do not include packets or bytes that can be obtained from the
462 * datapath for any existing subfacet.
abe529af
BP
463 */
464 uint64_t packet_count; /* Number of packets received. */
465 uint64_t byte_count; /* Number of bytes received. */
466
b0f7b9b5 467 /* Resubmit statistics. */
9d24de3b
JP
468 uint64_t prev_packet_count; /* Number of packets from last stats push. */
469 uint64_t prev_byte_count; /* Number of bytes from last stats push. */
470 long long int prev_used; /* Used time from last stats push. */
abe529af 471
b0f7b9b5 472 /* Accounting. */
907a4c5e 473 uint64_t accounted_bytes; /* Bytes processed by facet_account(). */
b0f7b9b5 474 struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
0e553d9c 475 uint8_t tcp_flags; /* TCP flags seen for this 'rule'. */
abe529af 476
b95fc6ba
BP
477 /* Properties of datapath actions.
478 *
479 * Every subfacet has its own actions because actions can differ slightly
480 * between splintered and non-splintered subfacets due to the VLAN tag
481 * being initially different (present vs. absent). All of them have these
482 * properties in common so we just store one copy of them here. */
75a75043
BP
483 bool has_learn; /* Actions include NXAST_LEARN? */
484 bool has_normal; /* Actions output to OFPP_NORMAL? */
0e553d9c 485 bool has_fin_timeout; /* Actions include NXAST_FIN_TIMEOUT? */
b0f7b9b5 486 tag_type tags; /* Tags that would require revalidation. */
9d24de3b 487 mirror_mask_t mirrors; /* Bitmap of dependent mirrors. */
26cd7e34
BP
488
489 /* Storage for a single subfacet, to reduce malloc() time and space
490 * overhead. (A facet always has at least one subfacet and in the common
bcd516b7
JP
491 * case has exactly one subfacet. However, 'one_subfacet' may not
492 * always be valid, since it could have been removed after newer
493 * subfacets were pushed onto the 'subfacets' list.) */
26cd7e34 494 struct subfacet one_subfacet;
6cf474d7
EJ
495
496 long long int learn_rl; /* Rate limiter for facet_learn(). */
abe529af
BP
497};
498
2b459b83
BP
499static struct facet *facet_create(struct rule_dpif *,
500 const struct flow *, uint32_t hash);
15baa734 501static void facet_remove(struct facet *);
abe529af
BP
502static void facet_free(struct facet *);
503
2b459b83
BP
504static struct facet *facet_find(struct ofproto_dpif *,
505 const struct flow *, uint32_t hash);
abe529af 506static struct facet *facet_lookup_valid(struct ofproto_dpif *,
2b459b83 507 const struct flow *, uint32_t hash);
c57b2226 508static void facet_revalidate(struct facet *);
6814e51f 509static bool facet_check_consistency(struct facet *);
abe529af 510
15baa734 511static void facet_flush_stats(struct facet *);
abe529af 512
15baa734 513static void facet_update_time(struct facet *, long long int used);
bbb5d219 514static void facet_reset_counters(struct facet *);
abe529af 515static void facet_push_stats(struct facet *);
3de9590b
BP
516static void facet_learn(struct facet *);
517static void facet_account(struct facet *);
8844e035 518static void push_all_stats(void);
abe529af 519
1a1e3a0a
JP
520static struct subfacet *facet_get_subfacet(struct facet *);
521
abe529af
BP
522static bool facet_is_controller_flow(struct facet *);
523
abe529af 524struct ofport_dpif {
acf60855 525 struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
abe529af
BP
526 struct ofport up;
527
528 uint32_t odp_port;
529 struct ofbundle *bundle; /* Bundle that contains this port, if any. */
530 struct list bundle_node; /* In struct ofbundle's "ports" list. */
531 struct cfm *cfm; /* Connectivity Fault Management, if any. */
ccc09689 532 struct bfd *bfd; /* BFD, if any. */
abe529af 533 tag_type tag; /* Tag associated with this port. */
015e08bc 534 bool may_enable; /* May be enabled in bonds. */
3e5b3fdb 535 long long int carrier_seq; /* Carrier status changes. */
b9ad7294 536 struct tnl_port *tnl_port; /* Tunnel handle, or null. */
21f7563c 537
52a90c29 538 /* Spanning tree. */
21f7563c
JP
539 struct stp_port *stp_port; /* Spanning Tree Protocol, if any. */
540 enum stp_state stp_state; /* Always STP_DISABLED if STP not in use. */
541 long long int stp_state_entered;
8b36f51e
EJ
542
543 struct hmap priorities; /* Map of attached 'priority_to_dscp's. */
52a90c29
BP
544
545 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
546 *
547 * This is deprecated. It is only for compatibility with broken device
548 * drivers in old versions of Linux that do not properly support VLANs when
549 * VLAN devices are not used. When broken device drivers are no longer in
550 * widespread use, we will delete these interfaces. */
551 uint16_t realdev_ofp_port;
552 int vlandev_vid;
8b36f51e
EJ
553};
554
555/* Node in 'ofport_dpif''s 'priorities' map. Used to maintain a map from
556 * 'priority' (the datapath's term for QoS queue) to the dscp bits which all
557 * traffic egressing the 'ofport' with that priority should be marked with. */
558struct priority_to_dscp {
559 struct hmap_node hmap_node; /* Node in 'ofport_dpif''s 'priorities' map. */
560 uint32_t priority; /* Priority of this queue (see struct flow). */
561
562 uint8_t dscp; /* DSCP bits to mark outgoing traffic with. */
abe529af
BP
563};
564
52a90c29
BP
565/* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
566 *
567 * This is deprecated. It is only for compatibility with broken device drivers
568 * in old versions of Linux that do not properly support VLANs when VLAN
569 * devices are not used. When broken device drivers are no longer in
570 * widespread use, we will delete these interfaces. */
571struct vlan_splinter {
572 struct hmap_node realdev_vid_node;
573 struct hmap_node vlandev_node;
574 uint16_t realdev_ofp_port;
575 uint16_t vlandev_ofp_port;
576 int vid;
577};
578
579static uint32_t vsp_realdev_to_vlandev(const struct ofproto_dpif *,
580 uint32_t realdev, ovs_be16 vlan_tci);
b98d8985 581static bool vsp_adjust_flow(const struct ofproto_dpif *, struct flow *);
52a90c29
BP
582static void vsp_remove(struct ofport_dpif *);
583static void vsp_add(struct ofport_dpif *, uint16_t realdev_ofp_port, int vid);
584
e1b1d06a
JP
585static uint32_t ofp_port_to_odp_port(const struct ofproto_dpif *,
586 uint16_t ofp_port);
587static uint16_t odp_port_to_ofp_port(const struct ofproto_dpif *,
588 uint32_t odp_port);
589
abe529af
BP
590static struct ofport_dpif *
591ofport_dpif_cast(const struct ofport *ofport)
592{
abe529af
BP
593 return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
594}
595
596static void port_run(struct ofport_dpif *);
0aa66d6e 597static void port_run_fast(struct ofport_dpif *);
abe529af 598static void port_wait(struct ofport_dpif *);
a5610457 599static int set_cfm(struct ofport *, const struct cfm_settings *);
8b36f51e 600static void ofport_clear_priorities(struct ofport_dpif *);
8fa4d1d0 601static void run_fast_rl(void);
abe529af 602
7ee20df1
BP
603struct dpif_completion {
604 struct list list_node;
605 struct ofoperation *op;
606};
607
54a9cbc9
BP
608/* Extra information about a classifier table.
609 * Currently used just for optimized flow revalidation. */
610struct table_dpif {
611 /* If either of these is nonnull, then this table has a form that allows
612 * flows to be tagged to avoid revalidating most flows for the most common
613 * kinds of flow table changes. */
614 struct cls_table *catchall_table; /* Table that wildcards all fields. */
615 struct cls_table *other_table; /* Table with any other wildcard set. */
616 uint32_t basis; /* Keeps each table's tags separate. */
617};
618
3c4a309c
BP
619/* Reasons that we might need to revalidate every facet, and corresponding
620 * coverage counters.
621 *
622 * A value of 0 means that there is no need to revalidate.
623 *
624 * It would be nice to have some cleaner way to integrate with coverage
625 * counters, but with only a few reasons I guess this is good enough for
626 * now. */
627enum revalidate_reason {
628 REV_RECONFIGURE = 1, /* Switch configuration changed. */
629 REV_STP, /* Spanning tree protocol port status change. */
630 REV_PORT_TOGGLED, /* Port enabled or disabled by CFM, LACP, ...*/
631 REV_FLOW_TABLE, /* Flow table changed. */
632 REV_INCONSISTENCY /* Facet self-check failed. */
633};
634COVERAGE_DEFINE(rev_reconfigure);
635COVERAGE_DEFINE(rev_stp);
636COVERAGE_DEFINE(rev_port_toggled);
637COVERAGE_DEFINE(rev_flow_table);
638COVERAGE_DEFINE(rev_inconsistency);
639
8f73d537
EJ
640/* Drop keys are odp flow keys which have drop flows installed in the kernel.
641 * These are datapath flows which have no associated ofproto, if they did we
642 * would use facets. */
643struct drop_key {
644 struct hmap_node hmap_node;
645 struct nlattr *key;
646 size_t key_len;
647};
648
acf60855
JP
649/* All datapaths of a given type share a single dpif backer instance. */
650struct dpif_backer {
651 char *type;
652 int refcount;
653 struct dpif *dpif;
654 struct timer next_expiration;
655 struct hmap odp_to_ofport_map; /* ODP port to ofport mapping. */
2cc3c58e 656
7d82ab2e 657 struct simap tnl_backers; /* Set of dpif ports backing tunnels. */
b9ad7294 658
2cc3c58e
EJ
659 /* Facet revalidation flags applying to facets which use this backer. */
660 enum revalidate_reason need_revalidate; /* Revalidate every facet. */
661 struct tag_set revalidate_set; /* Revalidate only matching facets. */
8f73d537
EJ
662
663 struct hmap drop_keys; /* Set of dropped odp keys. */
acf60855
JP
664};
665
666/* All existing ofproto_backer instances, indexed by ofproto->up.type. */
667static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
668
8f73d537 669static void drop_key_clear(struct dpif_backer *);
acf60855
JP
670static struct ofport_dpif *
671odp_port_to_ofport(const struct dpif_backer *, uint32_t odp_port);
672
735d7efb
AZ
673static void dpif_stats_update_hit_count(struct ofproto_dpif *ofproto,
674 uint64_t delta);
655ab909
AZ
675struct avg_subfacet_rates {
676 double add_rate; /* Moving average of new flows created per minute. */
677 double del_rate; /* Moving average of flows deleted per minute. */
678};
679static void show_dp_rates(struct ds *ds, const char *heading,
680 const struct avg_subfacet_rates *rates);
681static void exp_mavg(double *avg, int base, double new);
735d7efb 682
abe529af 683struct ofproto_dpif {
b44a10b7 684 struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
abe529af 685 struct ofproto up;
acf60855 686 struct dpif_backer *backer;
abe529af 687
c57b2226
BP
688 /* Special OpenFlow rules. */
689 struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
690 struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
691
6c1491fb
BP
692 /* Statistics. */
693 uint64_t n_matches;
694
abe529af
BP
695 /* Bridging. */
696 struct netflow *netflow;
bae473fe 697 struct dpif_sflow *sflow;
29089a54 698 struct dpif_ipfix *ipfix;
abe529af
BP
699 struct hmap bundles; /* Contains "struct ofbundle"s. */
700 struct mac_learning *ml;
701 struct ofmirror *mirrors[MAX_MIRRORS];
ccb7c863 702 bool has_mirrors;
abe529af
BP
703 bool has_bonded_bundles;
704
abe529af
BP
705 /* Facets. */
706 struct hmap facets;
b0f7b9b5 707 struct hmap subfacets;
9d6ac44e 708 struct governor *governor;
4d2a0f39 709 long long int consistency_rl;
54a9cbc9
BP
710
711 /* Revalidation. */
712 struct table_dpif tables[N_TABLES];
7ee20df1
BP
713
714 /* Support for debugging async flow mods. */
715 struct list completions;
daff3353
EJ
716
717 bool has_bundle_action; /* True when the first bundle action appears. */
6527c598
PS
718 struct netdev_stats stats; /* To account packets generated and consumed in
719 * userspace. */
21f7563c
JP
720
721 /* Spanning tree. */
722 struct stp *stp;
723 long long int stp_last_tick;
52a90c29
BP
724
725 /* VLAN splinters. */
726 struct hmap realdev_vid_map; /* (realdev,vid) -> vlandev. */
727 struct hmap vlandev_map; /* vlandev -> (realdev,vid). */
e1b1d06a 728
acf60855 729 /* Ports. */
0a740f48
EJ
730 struct sset ports; /* Set of standard port names. */
731 struct sset ghost_ports; /* Ports with no datapath port. */
acf60855
JP
732 struct sset port_poll_set; /* Queued names for port_poll() reply. */
733 int port_poll_errno; /* Last errno for port_poll() reply. */
735d7efb
AZ
734
735 /* Per ofproto's dpif stats. */
736 uint64_t n_hit;
737 uint64_t n_missed;
655ab909
AZ
738
739 /* Subfacet statistics.
740 *
741 * These keep track of the total number of subfacets added and deleted and
742 * flow life span. They are useful for computing the flow rates stats
743 * exposed via "ovs-appctl dpif/show". The goal is to learn about
744 * traffic patterns in ways that we can use later to improve Open vSwitch
745 * performance in new situations. */
746 long long int created; /* Time when it is created. */
747 unsigned int max_n_subfacet; /* Maximum number of flows */
748
749 /* The average number of subfacets... */
750 struct avg_subfacet_rates hourly; /* ...over the last hour. */
751 struct avg_subfacet_rates daily; /* ...over the last day. */
752 long long int last_minute; /* Last time 'hourly' was updated. */
753
754 /* Number of subfacets added or deleted since 'last_minute'. */
755 unsigned int subfacet_add_count;
756 unsigned int subfacet_del_count;
757
758 /* Number of subfacets added or deleted from 'created' to 'last_minute.' */
759 unsigned long long int total_subfacet_add_count;
760 unsigned long long int total_subfacet_del_count;
761
762 /* Sum of the number of milliseconds that each subfacet existed,
763 * over the subfacets that have been added and then later deleted. */
764 unsigned long long int total_subfacet_life_span;
765
766 /* Incremented by the number of currently existing subfacets, each
767 * time we pull statistics from the kernel. */
768 unsigned long long int total_subfacet_count;
769
770 /* Number of times we pull statistics from the kernel. */
771 unsigned long long int n_update_stats;
abe529af 772};
655ab909
AZ
773static unsigned long long int avg_subfacet_life_span(
774 const struct ofproto_dpif *);
775static double avg_subfacet_count(const struct ofproto_dpif *ofproto);
776static void update_moving_averages(struct ofproto_dpif *ofproto);
777static void dpif_stats_update_hit_count(struct ofproto_dpif *ofproto,
778 uint64_t delta);
779static void update_max_subfacet_count(struct ofproto_dpif *ofproto);
abe529af 780
7ee20df1
BP
781/* Defer flow mod completion until "ovs-appctl ofproto/unclog"? (Useful only
782 * for debugging the asynchronous flow_mod implementation.) */
783static bool clogged;
784
b44a10b7
BP
785/* All existing ofproto_dpif instances, indexed by ->up.name. */
786static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
787
abe529af
BP
788static void ofproto_dpif_unixctl_init(void);
789
790static struct ofproto_dpif *
791ofproto_dpif_cast(const struct ofproto *ofproto)
792{
cb22974d 793 ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
abe529af
BP
794 return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
795}
796
4acbc98d 797static struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *,
abe529af 798 uint16_t ofp_port);
4acbc98d 799static struct ofport_dpif *get_odp_port(const struct ofproto_dpif *,
abe529af 800 uint32_t odp_port);
6a6455e5 801static void ofproto_trace(struct ofproto_dpif *, const struct flow *,
14f94f9a
JP
802 const struct ofpbuf *,
803 const struct initial_vals *, struct ds *);
abe529af
BP
804
805/* Packet processing. */
806static void update_learning_table(struct ofproto_dpif *,
807 const struct flow *, int vlan,
808 struct ofbundle *);
501f8d1f
BP
809/* Upcalls. */
810#define FLOW_MISS_MAX_BATCH 50
acf60855 811static int handle_upcalls(struct dpif_backer *, unsigned int max_batch);
abe529af
BP
812
813/* Flow expiration. */
acf60855 814static int expire(struct dpif_backer *);
abe529af 815
6fca1ffb
BP
816/* NetFlow. */
817static void send_netflow_active_timeouts(struct ofproto_dpif *);
818
abe529af 819/* Utilities. */
52a90c29 820static int send_packet(const struct ofport_dpif *, struct ofpbuf *packet);
6a7d1a39
BP
821static size_t compose_sflow_action(const struct ofproto_dpif *,
822 struct ofpbuf *odp_actions,
823 const struct flow *, uint32_t odp_port);
29089a54
RL
824static void compose_ipfix_action(const struct ofproto_dpif *,
825 struct ofpbuf *odp_actions,
826 const struct flow *);
c06bba01
JP
827static void add_mirror_actions(struct action_xlate_ctx *ctx,
828 const struct flow *flow);
abe529af
BP
829/* Global variables. */
830static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
acf60855
JP
831
832/* Initial mappings of port to bridge mappings. */
833static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
abe529af
BP
834\f
835/* Factory functions. */
836
b0408fca 837static void
acf60855 838init(const struct shash *iface_hints)
b0408fca 839{
acf60855
JP
840 struct shash_node *node;
841
842 /* Make a local copy, since we don't own 'iface_hints' elements. */
843 SHASH_FOR_EACH(node, iface_hints) {
844 const struct iface_hint *orig_hint = node->data;
845 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
846
847 new_hint->br_name = xstrdup(orig_hint->br_name);
848 new_hint->br_type = xstrdup(orig_hint->br_type);
849 new_hint->ofp_port = orig_hint->ofp_port;
850
851 shash_add(&init_ofp_ports, node->name, new_hint);
852 }
b0408fca
JP
853}
854
abe529af
BP
855static void
856enumerate_types(struct sset *types)
857{
858 dp_enumerate_types(types);
859}
860
861static int
862enumerate_names(const char *type, struct sset *names)
863{
acf60855
JP
864 struct ofproto_dpif *ofproto;
865
866 sset_clear(names);
867 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
868 if (strcmp(type, ofproto->up.type)) {
869 continue;
870 }
871 sset_add(names, ofproto->up.name);
872 }
873
874 return 0;
abe529af
BP
875}
876
877static int
878del(const char *type, const char *name)
879{
880 struct dpif *dpif;
881 int error;
882
883 error = dpif_open(name, type, &dpif);
884 if (!error) {
885 error = dpif_delete(dpif);
886 dpif_close(dpif);
887 }
888 return error;
889}
890\f
0aeaabc8
JP
891static const char *
892port_open_type(const char *datapath_type, const char *port_type)
893{
894 return dpif_port_open_type(datapath_type, port_type);
895}
896
acf60855
JP
897/* Type functions. */
898
476cb42a
BP
899static struct ofproto_dpif *
900lookup_ofproto_dpif_by_port_name(const char *name)
901{
902 struct ofproto_dpif *ofproto;
903
904 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
905 if (sset_contains(&ofproto->ports, name)) {
906 return ofproto;
907 }
908 }
909
910 return NULL;
911}
912
acf60855
JP
913static int
914type_run(const char *type)
915{
e20b5746 916 static long long int push_timer = LLONG_MIN;
acf60855
JP
917 struct dpif_backer *backer;
918 char *devname;
919 int error;
920
921 backer = shash_find_data(&all_dpif_backers, type);
922 if (!backer) {
923 /* This is not necessarily a problem, since backers are only
924 * created on demand. */
925 return 0;
926 }
927
928 dpif_run(backer->dpif);
929
e20b5746
EJ
930 /* The most natural place to push facet statistics is when they're pulled
931 * from the datapath. However, when there are many flows in the datapath,
932 * this expensive operation can occur so frequently, that it reduces our
933 * ability to quickly set up flows. To reduce the cost, we push statistics
934 * here instead. */
935 if (time_msec() > push_timer) {
936 push_timer = time_msec() + 2000;
937 push_all_stats();
938 }
939
2cc3c58e
EJ
940 if (backer->need_revalidate
941 || !tag_set_is_empty(&backer->revalidate_set)) {
942 struct tag_set revalidate_set = backer->revalidate_set;
943 bool need_revalidate = backer->need_revalidate;
944 struct ofproto_dpif *ofproto;
a614d823
KM
945 struct simap_node *node;
946 struct simap tmp_backers;
947
948 /* Handle tunnel garbage collection. */
949 simap_init(&tmp_backers);
950 simap_swap(&backer->tnl_backers, &tmp_backers);
951
952 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
953 struct ofport_dpif *iter;
954
955 if (backer != ofproto->backer) {
956 continue;
957 }
958
959 HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
960 const char *dp_port;
961
962 if (!iter->tnl_port) {
963 continue;
964 }
965
966 dp_port = netdev_vport_get_dpif_port(iter->up.netdev);
967 node = simap_find(&tmp_backers, dp_port);
968 if (node) {
969 simap_put(&backer->tnl_backers, dp_port, node->data);
970 simap_delete(&tmp_backers, node);
971 node = simap_find(&backer->tnl_backers, dp_port);
972 } else {
973 node = simap_find(&backer->tnl_backers, dp_port);
974 if (!node) {
975 uint32_t odp_port = UINT32_MAX;
976
977 if (!dpif_port_add(backer->dpif, iter->up.netdev,
978 &odp_port)) {
979 simap_put(&backer->tnl_backers, dp_port, odp_port);
980 node = simap_find(&backer->tnl_backers, dp_port);
981 }
982 }
983 }
984
985 iter->odp_port = node ? node->data : OVSP_NONE;
986 if (tnl_port_reconfigure(&iter->up, iter->odp_port,
987 &iter->tnl_port)) {
988 backer->need_revalidate = REV_RECONFIGURE;
989 }
990 }
991 }
992
993 SIMAP_FOR_EACH (node, &tmp_backers) {
994 dpif_port_del(backer->dpif, node->data);
995 }
996 simap_destroy(&tmp_backers);
2cc3c58e
EJ
997
998 switch (backer->need_revalidate) {
999 case REV_RECONFIGURE: COVERAGE_INC(rev_reconfigure); break;
1000 case REV_STP: COVERAGE_INC(rev_stp); break;
1001 case REV_PORT_TOGGLED: COVERAGE_INC(rev_port_toggled); break;
1002 case REV_FLOW_TABLE: COVERAGE_INC(rev_flow_table); break;
1003 case REV_INCONSISTENCY: COVERAGE_INC(rev_inconsistency); break;
1004 }
1005
8f73d537
EJ
1006 if (backer->need_revalidate) {
1007 /* Clear the drop_keys in case we should now be accepting some
1008 * formerly dropped flows. */
1009 drop_key_clear(backer);
1010 }
1011
f728af2e
BP
1012 /* Clear the revalidation flags. */
1013 tag_set_init(&backer->revalidate_set);
1014 backer->need_revalidate = 0;
1015
2cc3c58e 1016 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
f231418e 1017 struct facet *facet, *next;
2cc3c58e
EJ
1018
1019 if (ofproto->backer != backer) {
1020 continue;
1021 }
1022
f231418e 1023 HMAP_FOR_EACH_SAFE (facet, next, hmap_node, &ofproto->facets) {
2cc3c58e
EJ
1024 if (need_revalidate
1025 || tag_set_intersects(&revalidate_set, facet->tags)) {
1026 facet_revalidate(facet);
8fa4d1d0 1027 run_fast_rl();
2cc3c58e
EJ
1028 }
1029 }
1030 }
2cc3c58e
EJ
1031 }
1032
acf60855
JP
1033 if (timer_expired(&backer->next_expiration)) {
1034 int delay = expire(backer);
1035 timer_set_duration(&backer->next_expiration, delay);
1036 }
1037
1038 /* Check for port changes in the dpif. */
1039 while ((error = dpif_port_poll(backer->dpif, &devname)) == 0) {
476cb42a 1040 struct ofproto_dpif *ofproto;
acf60855
JP
1041 struct dpif_port port;
1042
1043 /* Don't report on the datapath's device. */
1044 if (!strcmp(devname, dpif_base_name(backer->dpif))) {
c83b89ab 1045 goto next;
acf60855
JP
1046 }
1047
b9ad7294
EJ
1048 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
1049 &all_ofproto_dpifs) {
7d82ab2e 1050 if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
b9ad7294
EJ
1051 goto next;
1052 }
1053 }
1054
476cb42a 1055 ofproto = lookup_ofproto_dpif_by_port_name(devname);
acf60855
JP
1056 if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
1057 /* The port was removed. If we know the datapath,
1058 * report it through poll_set(). If we don't, it may be
1059 * notifying us of a removal we initiated, so ignore it.
1060 * If there's a pending ENOBUFS, let it stand, since
1061 * everything will be reevaluated. */
1062 if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
1063 sset_add(&ofproto->port_poll_set, devname);
1064 ofproto->port_poll_errno = 0;
1065 }
acf60855
JP
1066 } else if (!ofproto) {
1067 /* The port was added, but we don't know with which
1068 * ofproto we should associate it. Delete it. */
1069 dpif_port_del(backer->dpif, port.port_no);
1070 }
5b5e6a4c 1071 dpif_port_destroy(&port);
acf60855 1072
c83b89ab 1073 next:
acf60855
JP
1074 free(devname);
1075 }
1076
1077 if (error != EAGAIN) {
1078 struct ofproto_dpif *ofproto;
1079
1080 /* There was some sort of error, so propagate it to all
1081 * ofprotos that use this backer. */
1082 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
1083 &all_ofproto_dpifs) {
1084 if (ofproto->backer == backer) {
1085 sset_clear(&ofproto->port_poll_set);
1086 ofproto->port_poll_errno = error;
1087 }
1088 }
1089 }
1090
1091 return 0;
1092}
1093
1094static int
8fa4d1d0 1095dpif_backer_run_fast(struct dpif_backer *backer, int max_batch)
acf60855 1096{
acf60855
JP
1097 unsigned int work;
1098
acf60855
JP
1099 /* Handle one or more batches of upcalls, until there's nothing left to do
1100 * or until we do a fixed total amount of work.
1101 *
1102 * We do work in batches because it can be much cheaper to set up a number
1103 * of flows and fire off their patches all at once. We do multiple batches
1104 * because in some cases handling a packet can cause another packet to be
1105 * queued almost immediately as part of the return flow. Both
1106 * optimizations can make major improvements on some benchmarks and
1107 * presumably for real traffic as well. */
1108 work = 0;
8fa4d1d0
EJ
1109 while (work < max_batch) {
1110 int retval = handle_upcalls(backer, max_batch - work);
acf60855
JP
1111 if (retval <= 0) {
1112 return -retval;
1113 }
1114 work += retval;
1115 }
1116
1117 return 0;
1118}
1119
8fa4d1d0
EJ
1120static int
1121type_run_fast(const char *type)
1122{
1123 struct dpif_backer *backer;
1124
1125 backer = shash_find_data(&all_dpif_backers, type);
1126 if (!backer) {
1127 /* This is not necessarily a problem, since backers are only
1128 * created on demand. */
1129 return 0;
1130 }
1131
1132 return dpif_backer_run_fast(backer, FLOW_MISS_MAX_BATCH);
1133}
1134
1135static void
1136run_fast_rl(void)
1137{
1138 static long long int port_rl = LLONG_MIN;
1139 static unsigned int backer_rl = 0;
1140
1141 if (time_msec() >= port_rl) {
1142 struct ofproto_dpif *ofproto;
1143 struct ofport_dpif *ofport;
1144
1145 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1146
1147 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1148 port_run_fast(ofport);
1149 }
1150 }
1151 port_rl = time_msec() + 200;
1152 }
1153
1154 /* XXX: We have to be careful not to do too much work in this function. If
1155 * we call dpif_backer_run_fast() too often, or with too large a batch,
1156 * performance improves signifcantly, but at a cost. It's possible for the
1157 * number of flows in the datapath to increase without bound, and for poll
1158 * loops to take 10s of seconds. The correct solution to this problem,
1159 * long term, is to separate flow miss handling into it's own thread so it
1160 * isn't affected by revalidations, and expirations. Until then, this is
1161 * the best we can do. */
1162 if (++backer_rl >= 10) {
1163 struct shash_node *node;
1164
1165 backer_rl = 0;
1166 SHASH_FOR_EACH (node, &all_dpif_backers) {
1167 dpif_backer_run_fast(node->data, 1);
1168 }
1169 }
1170}
1171
acf60855
JP
1172static void
1173type_wait(const char *type)
1174{
1175 struct dpif_backer *backer;
1176
1177 backer = shash_find_data(&all_dpif_backers, type);
1178 if (!backer) {
1179 /* This is not necessarily a problem, since backers are only
1180 * created on demand. */
1181 return;
1182 }
1183
1184 timer_wait(&backer->next_expiration);
1185}
1186\f
abe529af
BP
1187/* Basic life-cycle. */
1188
c57b2226
BP
1189static int add_internal_flows(struct ofproto_dpif *);
1190
abe529af
BP
1191static struct ofproto *
1192alloc(void)
1193{
1194 struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
1195 return &ofproto->up;
1196}
1197
1198static void
1199dealloc(struct ofproto *ofproto_)
1200{
1201 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1202 free(ofproto);
1203}
1204
acf60855
JP
1205static void
1206close_dpif_backer(struct dpif_backer *backer)
1207{
1208 struct shash_node *node;
1209
cb22974d 1210 ovs_assert(backer->refcount > 0);
acf60855
JP
1211
1212 if (--backer->refcount) {
1213 return;
1214 }
1215
8f73d537
EJ
1216 drop_key_clear(backer);
1217 hmap_destroy(&backer->drop_keys);
1218
7d82ab2e 1219 simap_destroy(&backer->tnl_backers);
acf60855
JP
1220 hmap_destroy(&backer->odp_to_ofport_map);
1221 node = shash_find(&all_dpif_backers, backer->type);
1222 free(backer->type);
1223 shash_delete(&all_dpif_backers, node);
1224 dpif_close(backer->dpif);
1225
1226 free(backer);
1227}
1228
1229/* Datapath port slated for removal from datapath. */
1230struct odp_garbage {
1231 struct list list_node;
1232 uint32_t odp_port;
1233};
1234
1235static int
1236open_dpif_backer(const char *type, struct dpif_backer **backerp)
1237{
1238 struct dpif_backer *backer;
1239 struct dpif_port_dump port_dump;
1240 struct dpif_port port;
1241 struct shash_node *node;
1242 struct list garbage_list;
1243 struct odp_garbage *garbage, *next;
1244 struct sset names;
1245 char *backer_name;
1246 const char *name;
1247 int error;
1248
1249 backer = shash_find_data(&all_dpif_backers, type);
1250 if (backer) {
1251 backer->refcount++;
1252 *backerp = backer;
1253 return 0;
1254 }
1255
1256 backer_name = xasprintf("ovs-%s", type);
1257
1258 /* Remove any existing datapaths, since we assume we're the only
1259 * userspace controlling the datapath. */
1260 sset_init(&names);
1261 dp_enumerate_names(type, &names);
1262 SSET_FOR_EACH(name, &names) {
1263 struct dpif *old_dpif;
1264
1265 /* Don't remove our backer if it exists. */
1266 if (!strcmp(name, backer_name)) {
1267 continue;
1268 }
1269
1270 if (dpif_open(name, type, &old_dpif)) {
1271 VLOG_WARN("couldn't open old datapath %s to remove it", name);
1272 } else {
1273 dpif_delete(old_dpif);
1274 dpif_close(old_dpif);
1275 }
1276 }
1277 sset_destroy(&names);
1278
1279 backer = xmalloc(sizeof *backer);
1280
1281 error = dpif_create_and_open(backer_name, type, &backer->dpif);
1282 free(backer_name);
1283 if (error) {
1284 VLOG_ERR("failed to open datapath of type %s: %s", type,
1285 strerror(error));
4c1b1289 1286 free(backer);
acf60855
JP
1287 return error;
1288 }
1289
1290 backer->type = xstrdup(type);
1291 backer->refcount = 1;
1292 hmap_init(&backer->odp_to_ofport_map);
8f73d537 1293 hmap_init(&backer->drop_keys);
acf60855 1294 timer_set_duration(&backer->next_expiration, 1000);
2cc3c58e 1295 backer->need_revalidate = 0;
7d82ab2e 1296 simap_init(&backer->tnl_backers);
2cc3c58e 1297 tag_set_init(&backer->revalidate_set);
acf60855
JP
1298 *backerp = backer;
1299
1300 dpif_flow_flush(backer->dpif);
1301
1302 /* Loop through the ports already on the datapath and remove any
1303 * that we don't need anymore. */
1304 list_init(&garbage_list);
1305 dpif_port_dump_start(&port_dump, backer->dpif);
1306 while (dpif_port_dump_next(&port_dump, &port)) {
1307 node = shash_find(&init_ofp_ports, port.name);
1308 if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
1309 garbage = xmalloc(sizeof *garbage);
1310 garbage->odp_port = port.port_no;
1311 list_push_front(&garbage_list, &garbage->list_node);
1312 }
1313 }
1314 dpif_port_dump_done(&port_dump);
1315
1316 LIST_FOR_EACH_SAFE (garbage, next, list_node, &garbage_list) {
1317 dpif_port_del(backer->dpif, garbage->odp_port);
1318 list_remove(&garbage->list_node);
1319 free(garbage);
1320 }
1321
1322 shash_add(&all_dpif_backers, type, backer);
1323
1324 error = dpif_recv_set(backer->dpif, true);
1325 if (error) {
1326 VLOG_ERR("failed to listen on datapath of type %s: %s",
1327 type, strerror(error));
1328 close_dpif_backer(backer);
1329 return error;
1330 }
1331
1332 return error;
1333}
1334
abe529af 1335static int
0f5f95a9 1336construct(struct ofproto *ofproto_)
abe529af
BP
1337{
1338 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 1339 struct shash_node *node, *next;
91858960 1340 int max_ports;
abe529af
BP
1341 int error;
1342 int i;
1343
acf60855 1344 error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
abe529af 1345 if (error) {
abe529af
BP
1346 return error;
1347 }
1348
acf60855 1349 max_ports = dpif_get_max_ports(ofproto->backer->dpif);
91858960
BP
1350 ofproto_init_max_ports(ofproto_, MIN(max_ports, OFPP_MAX));
1351
6c1491fb 1352 ofproto->n_matches = 0;
abe529af 1353
abe529af
BP
1354 ofproto->netflow = NULL;
1355 ofproto->sflow = NULL;
29089a54 1356 ofproto->ipfix = NULL;
21f7563c 1357 ofproto->stp = NULL;
abe529af 1358 hmap_init(&ofproto->bundles);
e764773c 1359 ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
abe529af
BP
1360 for (i = 0; i < MAX_MIRRORS; i++) {
1361 ofproto->mirrors[i] = NULL;
1362 }
1363 ofproto->has_bonded_bundles = false;
1364
abe529af 1365 hmap_init(&ofproto->facets);
b0f7b9b5 1366 hmap_init(&ofproto->subfacets);
9d6ac44e 1367 ofproto->governor = NULL;
4d2a0f39 1368 ofproto->consistency_rl = LLONG_MIN;
54a9cbc9
BP
1369
1370 for (i = 0; i < N_TABLES; i++) {
1371 struct table_dpif *table = &ofproto->tables[i];
1372
1373 table->catchall_table = NULL;
1374 table->other_table = NULL;
1375 table->basis = random_uint32();
1376 }
abe529af 1377
7ee20df1
BP
1378 list_init(&ofproto->completions);
1379
abe529af
BP
1380 ofproto_dpif_unixctl_init();
1381
ccb7c863 1382 ofproto->has_mirrors = false;
daff3353
EJ
1383 ofproto->has_bundle_action = false;
1384
52a90c29
BP
1385 hmap_init(&ofproto->vlandev_map);
1386 hmap_init(&ofproto->realdev_vid_map);
1387
acf60855 1388 sset_init(&ofproto->ports);
0a740f48 1389 sset_init(&ofproto->ghost_ports);
acf60855
JP
1390 sset_init(&ofproto->port_poll_set);
1391 ofproto->port_poll_errno = 0;
1392
1393 SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
4f9e08a5 1394 struct iface_hint *iface_hint = node->data;
acf60855
JP
1395
1396 if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1397 /* Check if the datapath already has this port. */
1398 if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1399 sset_add(&ofproto->ports, node->name);
1400 }
1401
1402 free(iface_hint->br_name);
1403 free(iface_hint->br_type);
4f9e08a5 1404 free(iface_hint);
acf60855
JP
1405 shash_delete(&init_ofp_ports, node);
1406 }
1407 }
e1b1d06a 1408
b44a10b7
BP
1409 hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1410 hash_string(ofproto->up.name, 0));
6527c598 1411 memset(&ofproto->stats, 0, sizeof ofproto->stats);
0f5f95a9
BP
1412
1413 ofproto_init_tables(ofproto_, N_TABLES);
c57b2226
BP
1414 error = add_internal_flows(ofproto);
1415 ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1416
735d7efb
AZ
1417 ofproto->n_hit = 0;
1418 ofproto->n_missed = 0;
1419
655ab909
AZ
1420 ofproto->max_n_subfacet = 0;
1421 ofproto->created = time_msec();
1422 ofproto->last_minute = ofproto->created;
1423 memset(&ofproto->hourly, 0, sizeof ofproto->hourly);
1424 memset(&ofproto->daily, 0, sizeof ofproto->daily);
1425 ofproto->subfacet_add_count = 0;
1426 ofproto->subfacet_del_count = 0;
1427 ofproto->total_subfacet_add_count = 0;
1428 ofproto->total_subfacet_del_count = 0;
1429 ofproto->total_subfacet_life_span = 0;
1430 ofproto->total_subfacet_count = 0;
1431 ofproto->n_update_stats = 0;
1432
c57b2226
BP
1433 return error;
1434}
1435
1436static int
1437add_internal_flow(struct ofproto_dpif *ofproto, int id,
f25d0cf3 1438 const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
c57b2226
BP
1439{
1440 struct ofputil_flow_mod fm;
1441 int error;
1442
81a76618
BP
1443 match_init_catchall(&fm.match);
1444 fm.priority = 0;
1445 match_set_reg(&fm.match, 0, id);
623e1caf 1446 fm.new_cookie = htonll(0);
c57b2226
BP
1447 fm.cookie = htonll(0);
1448 fm.cookie_mask = htonll(0);
1449 fm.table_id = TBL_INTERNAL;
1450 fm.command = OFPFC_ADD;
1451 fm.idle_timeout = 0;
1452 fm.hard_timeout = 0;
1453 fm.buffer_id = 0;
1454 fm.out_port = 0;
1455 fm.flags = 0;
f25d0cf3
BP
1456 fm.ofpacts = ofpacts->data;
1457 fm.ofpacts_len = ofpacts->size;
c57b2226
BP
1458
1459 error = ofproto_flow_mod(&ofproto->up, &fm);
1460 if (error) {
1461 VLOG_ERR_RL(&rl, "failed to add internal flow %d (%s)",
1462 id, ofperr_to_string(error));
1463 return error;
1464 }
1465
81a76618 1466 *rulep = rule_dpif_lookup__(ofproto, &fm.match.flow, TBL_INTERNAL);
cb22974d 1467 ovs_assert(*rulep != NULL);
0f5f95a9 1468
abe529af
BP
1469 return 0;
1470}
1471
c57b2226
BP
1472static int
1473add_internal_flows(struct ofproto_dpif *ofproto)
1474{
f25d0cf3
BP
1475 struct ofpact_controller *controller;
1476 uint64_t ofpacts_stub[128 / 8];
1477 struct ofpbuf ofpacts;
c57b2226
BP
1478 int error;
1479 int id;
1480
f25d0cf3 1481 ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
c57b2226
BP
1482 id = 1;
1483
f25d0cf3
BP
1484 controller = ofpact_put_CONTROLLER(&ofpacts);
1485 controller->max_len = UINT16_MAX;
1486 controller->controller_id = 0;
1487 controller->reason = OFPR_NO_MATCH;
1488 ofpact_pad(&ofpacts);
1489
1490 error = add_internal_flow(ofproto, id++, &ofpacts, &ofproto->miss_rule);
c57b2226
BP
1491 if (error) {
1492 return error;
1493 }
1494
f25d0cf3
BP
1495 ofpbuf_clear(&ofpacts);
1496 error = add_internal_flow(ofproto, id++, &ofpacts,
c57b2226
BP
1497 &ofproto->no_packet_in_rule);
1498 return error;
1499}
1500
7ee20df1
BP
1501static void
1502complete_operations(struct ofproto_dpif *ofproto)
1503{
1504 struct dpif_completion *c, *next;
1505
1506 LIST_FOR_EACH_SAFE (c, next, list_node, &ofproto->completions) {
1507 ofoperation_complete(c->op, 0);
1508 list_remove(&c->list_node);
1509 free(c);
1510 }
1511}
1512
abe529af
BP
1513static void
1514destruct(struct ofproto *ofproto_)
1515{
1516 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7ee20df1 1517 struct rule_dpif *rule, *next_rule;
d0918789 1518 struct oftable *table;
abe529af
BP
1519 int i;
1520
b44a10b7 1521 hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
7ee20df1
BP
1522 complete_operations(ofproto);
1523
0697b5c3
BP
1524 OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
1525 struct cls_cursor cursor;
1526
d0918789 1527 cls_cursor_init(&cursor, &table->cls, NULL);
0697b5c3
BP
1528 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
1529 ofproto_rule_destroy(&rule->up);
1530 }
7ee20df1
BP
1531 }
1532
abe529af
BP
1533 for (i = 0; i < MAX_MIRRORS; i++) {
1534 mirror_destroy(ofproto->mirrors[i]);
1535 }
1536
1537 netflow_destroy(ofproto->netflow);
bae473fe 1538 dpif_sflow_destroy(ofproto->sflow);
abe529af
BP
1539 hmap_destroy(&ofproto->bundles);
1540 mac_learning_destroy(ofproto->ml);
1541
1542 hmap_destroy(&ofproto->facets);
b0f7b9b5 1543 hmap_destroy(&ofproto->subfacets);
9d6ac44e 1544 governor_destroy(ofproto->governor);
abe529af 1545
52a90c29
BP
1546 hmap_destroy(&ofproto->vlandev_map);
1547 hmap_destroy(&ofproto->realdev_vid_map);
1548
acf60855 1549 sset_destroy(&ofproto->ports);
0a740f48 1550 sset_destroy(&ofproto->ghost_ports);
acf60855 1551 sset_destroy(&ofproto->port_poll_set);
e1b1d06a 1552
acf60855 1553 close_dpif_backer(ofproto->backer);
abe529af
BP
1554}
1555
1556static int
5fcc0d00 1557run_fast(struct ofproto *ofproto_)
abe529af
BP
1558{
1559 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
0aa66d6e 1560 struct ofport_dpif *ofport;
abe529af 1561
0aa66d6e
EJ
1562 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1563 port_run_fast(ofport);
1564 }
1565
5fcc0d00
BP
1566 return 0;
1567}
1568
1569static int
1570run(struct ofproto *ofproto_)
1571{
1572 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1573 struct ofport_dpif *ofport;
1574 struct ofbundle *bundle;
1575 int error;
1576
1577 if (!clogged) {
1578 complete_operations(ofproto);
1579 }
5fcc0d00
BP
1580
1581 error = run_fast(ofproto_);
1582 if (error) {
1583 return error;
abe529af
BP
1584 }
1585
abe529af 1586 if (ofproto->netflow) {
6fca1ffb
BP
1587 if (netflow_run(ofproto->netflow)) {
1588 send_netflow_active_timeouts(ofproto);
1589 }
abe529af
BP
1590 }
1591 if (ofproto->sflow) {
bae473fe 1592 dpif_sflow_run(ofproto->sflow);
abe529af
BP
1593 }
1594
1595 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1596 port_run(ofport);
1597 }
1598 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1599 bundle_run(bundle);
1600 }
1601
21f7563c 1602 stp_run(ofproto);
2cc3c58e 1603 mac_learning_run(ofproto->ml, &ofproto->backer->revalidate_set);
abe529af 1604
6814e51f 1605 /* Check the consistency of a random facet, to aid debugging. */
4d2a0f39
EJ
1606 if (time_msec() >= ofproto->consistency_rl
1607 && !hmap_is_empty(&ofproto->facets)
2cc3c58e 1608 && !ofproto->backer->need_revalidate) {
6814e51f
BP
1609 struct facet *facet;
1610
4d2a0f39
EJ
1611 ofproto->consistency_rl = time_msec() + 250;
1612
6814e51f
BP
1613 facet = CONTAINER_OF(hmap_random_node(&ofproto->facets),
1614 struct facet, hmap_node);
2cc3c58e
EJ
1615 if (!tag_set_intersects(&ofproto->backer->revalidate_set,
1616 facet->tags)) {
6814e51f 1617 if (!facet_check_consistency(facet)) {
2cc3c58e 1618 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
6814e51f
BP
1619 }
1620 }
1621 }
1622
9d6ac44e
BP
1623 if (ofproto->governor) {
1624 size_t n_subfacets;
1625
1626 governor_run(ofproto->governor);
1627
1628 /* If the governor has shrunk to its minimum size and the number of
1629 * subfacets has dwindled, then drop the governor entirely.
1630 *
1631 * For hysteresis, the number of subfacets to drop the governor is
1632 * smaller than the number needed to trigger its creation. */
1633 n_subfacets = hmap_count(&ofproto->subfacets);
1634 if (n_subfacets * 4 < ofproto->up.flow_eviction_threshold
1635 && governor_is_idle(ofproto->governor)) {
1636 governor_destroy(ofproto->governor);
1637 ofproto->governor = NULL;
1638 }
1639 }
1640
abe529af
BP
1641 return 0;
1642}
1643
1644static void
1645wait(struct ofproto *ofproto_)
1646{
1647 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1648 struct ofport_dpif *ofport;
1649 struct ofbundle *bundle;
1650
7ee20df1
BP
1651 if (!clogged && !list_is_empty(&ofproto->completions)) {
1652 poll_immediate_wake();
1653 }
1654
acf60855
JP
1655 dpif_wait(ofproto->backer->dpif);
1656 dpif_recv_wait(ofproto->backer->dpif);
abe529af 1657 if (ofproto->sflow) {
bae473fe 1658 dpif_sflow_wait(ofproto->sflow);
abe529af 1659 }
2cc3c58e 1660 if (!tag_set_is_empty(&ofproto->backer->revalidate_set)) {
abe529af
BP
1661 poll_immediate_wake();
1662 }
1663 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1664 port_wait(ofport);
1665 }
1666 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1667 bundle_wait(bundle);
1668 }
6fca1ffb
BP
1669 if (ofproto->netflow) {
1670 netflow_wait(ofproto->netflow);
1671 }
1c313b88 1672 mac_learning_wait(ofproto->ml);
21f7563c 1673 stp_wait(ofproto);
2cc3c58e 1674 if (ofproto->backer->need_revalidate) {
abe529af
BP
1675 /* Shouldn't happen, but if it does just go around again. */
1676 VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1677 poll_immediate_wake();
abe529af 1678 }
9d6ac44e
BP
1679 if (ofproto->governor) {
1680 governor_wait(ofproto->governor);
1681 }
abe529af
BP
1682}
1683
0d085684
BP
1684static void
1685get_memory_usage(const struct ofproto *ofproto_, struct simap *usage)
1686{
1687 const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1688
1689 simap_increase(usage, "facets", hmap_count(&ofproto->facets));
1690 simap_increase(usage, "subfacets", hmap_count(&ofproto->subfacets));
1691}
1692
abe529af
BP
1693static void
1694flush(struct ofproto *ofproto_)
1695{
1696 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855
JP
1697 struct subfacet *subfacet, *next_subfacet;
1698 struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
1699 int n_batch;
b0f7b9b5 1700
acf60855
JP
1701 n_batch = 0;
1702 HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
1703 &ofproto->subfacets) {
1704 if (subfacet->path != SF_NOT_INSTALLED) {
1705 batch[n_batch++] = subfacet;
1706 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
1707 subfacet_destroy_batch(ofproto, batch, n_batch);
1708 n_batch = 0;
1709 }
1710 } else {
1711 subfacet_destroy(subfacet);
b0f7b9b5 1712 }
abe529af 1713 }
acf60855
JP
1714
1715 if (n_batch > 0) {
1716 subfacet_destroy_batch(ofproto, batch, n_batch);
1717 }
abe529af
BP
1718}
1719
6c1491fb
BP
1720static void
1721get_features(struct ofproto *ofproto_ OVS_UNUSED,
9e1fd49b 1722 bool *arp_match_ip, enum ofputil_action_bitmap *actions)
6c1491fb
BP
1723{
1724 *arp_match_ip = true;
9e1fd49b
BP
1725 *actions = (OFPUTIL_A_OUTPUT |
1726 OFPUTIL_A_SET_VLAN_VID |
1727 OFPUTIL_A_SET_VLAN_PCP |
1728 OFPUTIL_A_STRIP_VLAN |
1729 OFPUTIL_A_SET_DL_SRC |
1730 OFPUTIL_A_SET_DL_DST |
1731 OFPUTIL_A_SET_NW_SRC |
1732 OFPUTIL_A_SET_NW_DST |
1733 OFPUTIL_A_SET_NW_TOS |
1734 OFPUTIL_A_SET_TP_SRC |
1735 OFPUTIL_A_SET_TP_DST |
1736 OFPUTIL_A_ENQUEUE);
6c1491fb
BP
1737}
1738
1739static void
307975da 1740get_tables(struct ofproto *ofproto_, struct ofp12_table_stats *ots)
6c1491fb
BP
1741{
1742 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
a8d9304d 1743 struct dpif_dp_stats s;
6c1491fb
BP
1744
1745 strcpy(ots->name, "classifier");
1746
acf60855
JP
1747 dpif_get_dp_stats(ofproto->backer->dpif, &s);
1748
307975da
SH
1749 ots->lookup_count = htonll(s.n_hit + s.n_missed);
1750 ots->matched_count = htonll(s.n_hit + ofproto->n_matches);
6c1491fb
BP
1751}
1752
abe529af
BP
1753static struct ofport *
1754port_alloc(void)
1755{
1756 struct ofport_dpif *port = xmalloc(sizeof *port);
1757 return &port->up;
1758}
1759
1760static void
1761port_dealloc(struct ofport *port_)
1762{
1763 struct ofport_dpif *port = ofport_dpif_cast(port_);
1764 free(port);
1765}
1766
1767static int
1768port_construct(struct ofport *port_)
1769{
1770 struct ofport_dpif *port = ofport_dpif_cast(port_);
1771 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
b9ad7294 1772 const struct netdev *netdev = port->up.netdev;
e1b1d06a
JP
1773 struct dpif_port dpif_port;
1774 int error;
abe529af 1775
2cc3c58e 1776 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
1777 port->bundle = NULL;
1778 port->cfm = NULL;
ccc09689 1779 port->bfd = NULL;
abe529af 1780 port->tag = tag_create_random();
d5ffa7f2 1781 port->may_enable = true;
21f7563c
JP
1782 port->stp_port = NULL;
1783 port->stp_state = STP_DISABLED;
b9ad7294 1784 port->tnl_port = NULL;
8b36f51e 1785 hmap_init(&port->priorities);
52a90c29
BP
1786 port->realdev_ofp_port = 0;
1787 port->vlandev_vid = 0;
b9ad7294 1788 port->carrier_seq = netdev_get_carrier_resets(netdev);
abe529af 1789
b9ad7294 1790 if (netdev_vport_is_patch(netdev)) {
743cea45
NM
1791 /* By bailing out here, we don't submit the port to the sFlow module
1792 * to be considered for counter polling export. This is correct
1793 * because the patch port represents an interface that sFlow considers
1794 * to be "internal" to the switch as a whole, and therefore not an
1795 * candidate for counter polling. */
0a740f48
EJ
1796 port->odp_port = OVSP_NONE;
1797 return 0;
1798 }
1799
acf60855 1800 error = dpif_port_query_by_name(ofproto->backer->dpif,
b9ad7294 1801 netdev_vport_get_dpif_port(netdev),
e1b1d06a
JP
1802 &dpif_port);
1803 if (error) {
1804 return error;
1805 }
1806
1807 port->odp_port = dpif_port.port_no;
1808
b9ad7294
EJ
1809 if (netdev_get_tunnel_config(netdev)) {
1810 port->tnl_port = tnl_port_add(&port->up, port->odp_port);
1811 } else {
1812 /* Sanity-check that a mapping doesn't already exist. This
1813 * shouldn't happen for non-tunnel ports. */
1814 if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1815 VLOG_ERR("port %s already has an OpenFlow port number",
1816 dpif_port.name);
da78d43d 1817 dpif_port_destroy(&dpif_port);
b9ad7294
EJ
1818 return EBUSY;
1819 }
e1b1d06a 1820
b9ad7294
EJ
1821 hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
1822 hash_int(port->odp_port, 0));
1823 }
da78d43d 1824 dpif_port_destroy(&dpif_port);
e1b1d06a 1825
abe529af 1826 if (ofproto->sflow) {
e1b1d06a 1827 dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
abe529af
BP
1828 }
1829
1830 return 0;
1831}
1832
1833static void
1834port_destruct(struct ofport *port_)
1835{
1836 struct ofport_dpif *port = ofport_dpif_cast(port_);
1837 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
b9ad7294 1838 const char *dp_port_name = netdev_vport_get_dpif_port(port->up.netdev);
02f8d646 1839 const char *devname = netdev_get_name(port->up.netdev);
abe529af 1840
a614d823 1841 if (dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
acf60855
JP
1842 /* The underlying device is still there, so delete it. This
1843 * happens when the ofproto is being destroyed, since the caller
1844 * assumes that removal of attached ports will happen as part of
1845 * destruction. */
a614d823
KM
1846 if (!port->tnl_port) {
1847 dpif_port_del(ofproto->backer->dpif, port->odp_port);
1848 }
1849 ofproto->backer->need_revalidate = REV_RECONFIGURE;
acf60855
JP
1850 }
1851
b9ad7294 1852 if (port->odp_port != OVSP_NONE && !port->tnl_port) {
0a740f48
EJ
1853 hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
1854 }
1855
b9ad7294 1856 tnl_port_del(port->tnl_port);
02f8d646 1857 sset_find_and_delete(&ofproto->ports, devname);
0a740f48 1858 sset_find_and_delete(&ofproto->ghost_ports, devname);
2cc3c58e 1859 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af 1860 bundle_remove(port_);
a5610457 1861 set_cfm(port_, NULL);
abe529af 1862 if (ofproto->sflow) {
bae473fe 1863 dpif_sflow_del_port(ofproto->sflow, port->odp_port);
abe529af 1864 }
8b36f51e
EJ
1865
1866 ofport_clear_priorities(port);
1867 hmap_destroy(&port->priorities);
abe529af
BP
1868}
1869
1870static void
1871port_modified(struct ofport *port_)
1872{
1873 struct ofport_dpif *port = ofport_dpif_cast(port_);
1874
1875 if (port->bundle && port->bundle->bond) {
1876 bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
1877 }
1878}
1879
1880static void
9e1fd49b 1881port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
abe529af
BP
1882{
1883 struct ofport_dpif *port = ofport_dpif_cast(port_);
1884 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
9e1fd49b 1885 enum ofputil_port_config changed = old_config ^ port->up.pp.config;
abe529af 1886
9e1fd49b 1887 if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
c57b2226
BP
1888 OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1889 OFPUTIL_PC_NO_PACKET_IN)) {
2cc3c58e 1890 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7bde8dd8 1891
9e1fd49b 1892 if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
7bde8dd8
JP
1893 bundle_update(port->bundle);
1894 }
abe529af
BP
1895 }
1896}
1897
1898static int
1899set_sflow(struct ofproto *ofproto_,
1900 const struct ofproto_sflow_options *sflow_options)
1901{
1902 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
bae473fe 1903 struct dpif_sflow *ds = ofproto->sflow;
6ff686f2 1904
abe529af 1905 if (sflow_options) {
bae473fe 1906 if (!ds) {
abe529af
BP
1907 struct ofport_dpif *ofport;
1908
4213f19d 1909 ds = ofproto->sflow = dpif_sflow_create();
abe529af 1910 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
e1b1d06a 1911 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
abe529af 1912 }
2cc3c58e 1913 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af 1914 }
bae473fe 1915 dpif_sflow_set_options(ds, sflow_options);
abe529af 1916 } else {
6ff686f2
PS
1917 if (ds) {
1918 dpif_sflow_destroy(ds);
2cc3c58e 1919 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6ff686f2
PS
1920 ofproto->sflow = NULL;
1921 }
abe529af
BP
1922 }
1923 return 0;
1924}
1925
29089a54
RL
1926static int
1927set_ipfix(
1928 struct ofproto *ofproto_,
1929 const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1930 const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
1931 size_t n_flow_exporters_options)
1932{
1933 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1934 struct dpif_ipfix *di = ofproto->ipfix;
1935
1936 if (bridge_exporter_options || flow_exporters_options) {
1937 if (!di) {
1938 di = ofproto->ipfix = dpif_ipfix_create();
1939 }
1940 dpif_ipfix_set_options(
1941 di, bridge_exporter_options, flow_exporters_options,
1942 n_flow_exporters_options);
1943 } else {
1944 if (di) {
1945 dpif_ipfix_destroy(di);
1946 ofproto->ipfix = NULL;
1947 }
1948 }
1949 return 0;
1950}
1951
abe529af 1952static int
a5610457 1953set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
abe529af
BP
1954{
1955 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1956 int error;
1957
a5610457 1958 if (!s) {
abe529af
BP
1959 error = 0;
1960 } else {
1961 if (!ofport->cfm) {
8c977421
EJ
1962 struct ofproto_dpif *ofproto;
1963
1964 ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2cc3c58e 1965 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6f629657 1966 ofport->cfm = cfm_create(netdev_get_name(ofport->up.netdev));
abe529af
BP
1967 }
1968
a5610457 1969 if (cfm_configure(ofport->cfm, s)) {
abe529af
BP
1970 return 0;
1971 }
1972
1973 error = EINVAL;
1974 }
1975 cfm_destroy(ofport->cfm);
1976 ofport->cfm = NULL;
1977 return error;
1978}
1979
9a9e3786
BP
1980static bool
1981get_cfm_status(const struct ofport *ofport_,
1982 struct ofproto_cfm_status *status)
1de11730
EJ
1983{
1984 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1985
1986 if (ofport->cfm) {
9a9e3786
BP
1987 status->faults = cfm_get_fault(ofport->cfm);
1988 status->remote_opstate = cfm_get_opup(ofport->cfm);
1989 status->health = cfm_get_health(ofport->cfm);
1990 cfm_get_remote_mpids(ofport->cfm, &status->rmps, &status->n_rmps);
1991 return true;
1de11730 1992 } else {
9a9e3786 1993 return false;
1de11730
EJ
1994 }
1995}
ccc09689
EJ
1996
1997static int
1998set_bfd(struct ofport *ofport_, const struct smap *cfg)
1999{
2000 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2001 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2002 struct bfd *old;
2003
2004 old = ofport->bfd;
2005 ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev), cfg);
2006 if (ofport->bfd != old) {
2007 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2008 }
2009
2010 return 0;
2011}
2012
2013static int
2014get_bfd_status(struct ofport *ofport_, struct smap *smap)
2015{
2016 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2017
2018 if (ofport->bfd) {
2019 bfd_get_status(ofport->bfd, smap);
2020 return 0;
2021 } else {
2022 return ENOENT;
2023 }
2024}
abe529af 2025\f
21f7563c
JP
2026/* Spanning Tree. */
2027
2028static void
2029send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
2030{
2031 struct ofproto_dpif *ofproto = ofproto_;
2032 struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2033 struct ofport_dpif *ofport;
2034
2035 ofport = stp_port_get_aux(sp);
2036 if (!ofport) {
2037 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2038 ofproto->up.name, port_num);
2039 } else {
2040 struct eth_header *eth = pkt->l2;
2041
2042 netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
2043 if (eth_addr_is_zero(eth->eth_src)) {
2044 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2045 "with unknown MAC", ofproto->up.name, port_num);
2046 } else {
97d6520b 2047 send_packet(ofport, pkt);
21f7563c
JP
2048 }
2049 }
2050 ofpbuf_delete(pkt);
2051}
2052
2053/* Configures STP on 'ofproto_' using the settings defined in 's'. */
2054static int
2055set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2056{
2057 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2058
2059 /* Only revalidate flows if the configuration changed. */
2060 if (!s != !ofproto->stp) {
2cc3c58e 2061 ofproto->backer->need_revalidate = REV_RECONFIGURE;
21f7563c
JP
2062 }
2063
2064 if (s) {
2065 if (!ofproto->stp) {
2066 ofproto->stp = stp_create(ofproto_->name, s->system_id,
2067 send_bpdu_cb, ofproto);
2068 ofproto->stp_last_tick = time_msec();
2069 }
2070
2071 stp_set_bridge_id(ofproto->stp, s->system_id);
2072 stp_set_bridge_priority(ofproto->stp, s->priority);
2073 stp_set_hello_time(ofproto->stp, s->hello_time);
2074 stp_set_max_age(ofproto->stp, s->max_age);
2075 stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2076 } else {
851bf71d
EJ
2077 struct ofport *ofport;
2078
2079 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2080 set_stp_port(ofport, NULL);
2081 }
2082
21f7563c
JP
2083 stp_destroy(ofproto->stp);
2084 ofproto->stp = NULL;
2085 }
2086
2087 return 0;
2088}
2089
2090static int
2091get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2092{
2093 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2094
2095 if (ofproto->stp) {
2096 s->enabled = true;
2097 s->bridge_id = stp_get_bridge_id(ofproto->stp);
2098 s->designated_root = stp_get_designated_root(ofproto->stp);
2099 s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2100 } else {
2101 s->enabled = false;
2102 }
2103
2104 return 0;
2105}
2106
2107static void
2108update_stp_port_state(struct ofport_dpif *ofport)
2109{
2110 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2111 enum stp_state state;
2112
2113 /* Figure out new state. */
2114 state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2115 : STP_DISABLED;
2116
2117 /* Update state. */
2118 if (ofport->stp_state != state) {
9e1fd49b 2119 enum ofputil_port_state of_state;
21f7563c
JP
2120 bool fwd_change;
2121
2122 VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
2123 netdev_get_name(ofport->up.netdev),
2124 stp_state_name(ofport->stp_state),
2125 stp_state_name(state));
2126 if (stp_learn_in_state(ofport->stp_state)
2127 != stp_learn_in_state(state)) {
2128 /* xxx Learning action flows should also be flushed. */
2cc3c58e
EJ
2129 mac_learning_flush(ofproto->ml,
2130 &ofproto->backer->revalidate_set);
21f7563c
JP
2131 }
2132 fwd_change = stp_forward_in_state(ofport->stp_state)
2133 != stp_forward_in_state(state);
2134
2cc3c58e 2135 ofproto->backer->need_revalidate = REV_STP;
21f7563c
JP
2136 ofport->stp_state = state;
2137 ofport->stp_state_entered = time_msec();
2138
b308140a 2139 if (fwd_change && ofport->bundle) {
21f7563c
JP
2140 bundle_update(ofport->bundle);
2141 }
2142
2143 /* Update the STP state bits in the OpenFlow port description. */
9e1fd49b
BP
2144 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2145 of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2146 : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2147 : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2148 : state == STP_BLOCKING ? OFPUTIL_PS_STP_BLOCK
2149 : 0);
21f7563c
JP
2150 ofproto_port_set_state(&ofport->up, of_state);
2151 }
2152}
2153
2154/* Configures STP on 'ofport_' using the settings defined in 's'. The
2155 * caller is responsible for assigning STP port numbers and ensuring
2156 * there are no duplicates. */
2157static int
2158set_stp_port(struct ofport *ofport_,
2159 const struct ofproto_port_stp_settings *s)
2160{
2161 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2162 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2163 struct stp_port *sp = ofport->stp_port;
2164
2165 if (!s || !s->enable) {
2166 if (sp) {
2167 ofport->stp_port = NULL;
2168 stp_port_disable(sp);
ecd12731 2169 update_stp_port_state(ofport);
21f7563c
JP
2170 }
2171 return 0;
2172 } else if (sp && stp_port_no(sp) != s->port_num
2173 && ofport == stp_port_get_aux(sp)) {
2174 /* The port-id changed, so disable the old one if it's not
2175 * already in use by another port. */
2176 stp_port_disable(sp);
2177 }
2178
2179 sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
2180 stp_port_enable(sp);
2181
2182 stp_port_set_aux(sp, ofport);
2183 stp_port_set_priority(sp, s->priority);
2184 stp_port_set_path_cost(sp, s->path_cost);
2185
2186 update_stp_port_state(ofport);
2187
2188 return 0;
2189}
2190
2191static int
2192get_stp_port_status(struct ofport *ofport_,
2193 struct ofproto_port_stp_status *s)
2194{
2195 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2196 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2197 struct stp_port *sp = ofport->stp_port;
2198
2199 if (!ofproto->stp || !sp) {
2200 s->enabled = false;
2201 return 0;
2202 }
2203
2204 s->enabled = true;
2205 s->port_id = stp_port_get_id(sp);
2206 s->state = stp_port_get_state(sp);
2207 s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2208 s->role = stp_port_get_role(sp);
80740385 2209 stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
21f7563c
JP
2210
2211 return 0;
2212}
2213
2214static void
2215stp_run(struct ofproto_dpif *ofproto)
2216{
2217 if (ofproto->stp) {
2218 long long int now = time_msec();
2219 long long int elapsed = now - ofproto->stp_last_tick;
2220 struct stp_port *sp;
2221
2222 if (elapsed > 0) {
2223 stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2224 ofproto->stp_last_tick = now;
2225 }
2226 while (stp_get_changed_port(ofproto->stp, &sp)) {
2227 struct ofport_dpif *ofport = stp_port_get_aux(sp);
2228
2229 if (ofport) {
2230 update_stp_port_state(ofport);
2231 }
2232 }
6ae50723
EJ
2233
2234 if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
2cc3c58e 2235 mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
6ae50723 2236 }
21f7563c
JP
2237 }
2238}
2239
2240static void
2241stp_wait(struct ofproto_dpif *ofproto)
2242{
2243 if (ofproto->stp) {
2244 poll_timer_wait(1000);
2245 }
2246}
2247
2248/* Returns true if STP should process 'flow'. */
2249static bool
2250stp_should_process_flow(const struct flow *flow)
2251{
2252 return eth_addr_equals(flow->dl_dst, eth_addr_stp);
2253}
2254
2255static void
2256stp_process_packet(const struct ofport_dpif *ofport,
2257 const struct ofpbuf *packet)
2258{
2259 struct ofpbuf payload = *packet;
2260 struct eth_header *eth = payload.data;
2261 struct stp_port *sp = ofport->stp_port;
2262
2263 /* Sink packets on ports that have STP disabled when the bridge has
2264 * STP enabled. */
2265 if (!sp || stp_port_get_state(sp) == STP_DISABLED) {
2266 return;
2267 }
2268
2269 /* Trim off padding on payload. */
c573540b
BP
2270 if (payload.size > ntohs(eth->eth_type) + ETH_HEADER_LEN) {
2271 payload.size = ntohs(eth->eth_type) + ETH_HEADER_LEN;
21f7563c
JP
2272 }
2273
2274 if (ofpbuf_try_pull(&payload, ETH_HEADER_LEN + LLC_HEADER_LEN)) {
2275 stp_received_bpdu(sp, payload.data, payload.size);
2276 }
2277}
2278\f
8b36f51e
EJ
2279static struct priority_to_dscp *
2280get_priority(const struct ofport_dpif *ofport, uint32_t priority)
2281{
2282 struct priority_to_dscp *pdscp;
2283 uint32_t hash;
2284
2285 hash = hash_int(priority, 0);
2286 HMAP_FOR_EACH_IN_BUCKET (pdscp, hmap_node, hash, &ofport->priorities) {
2287 if (pdscp->priority == priority) {
2288 return pdscp;
2289 }
2290 }
2291 return NULL;
2292}
2293
2294static void
2295ofport_clear_priorities(struct ofport_dpif *ofport)
2296{
2297 struct priority_to_dscp *pdscp, *next;
2298
2299 HMAP_FOR_EACH_SAFE (pdscp, next, hmap_node, &ofport->priorities) {
2300 hmap_remove(&ofport->priorities, &pdscp->hmap_node);
2301 free(pdscp);
2302 }
2303}
2304
2305static int
2306set_queues(struct ofport *ofport_,
2307 const struct ofproto_port_queue *qdscp_list,
2308 size_t n_qdscp)
2309{
2310 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2311 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2312 struct hmap new = HMAP_INITIALIZER(&new);
2313 size_t i;
2314
2315 for (i = 0; i < n_qdscp; i++) {
2316 struct priority_to_dscp *pdscp;
2317 uint32_t priority;
2318 uint8_t dscp;
2319
2320 dscp = (qdscp_list[i].dscp << 2) & IP_DSCP_MASK;
acf60855 2321 if (dpif_queue_to_priority(ofproto->backer->dpif, qdscp_list[i].queue,
8b36f51e
EJ
2322 &priority)) {
2323 continue;
2324 }
2325
2326 pdscp = get_priority(ofport, priority);
2327 if (pdscp) {
2328 hmap_remove(&ofport->priorities, &pdscp->hmap_node);
2329 } else {
2330 pdscp = xmalloc(sizeof *pdscp);
2331 pdscp->priority = priority;
2332 pdscp->dscp = dscp;
2cc3c58e 2333 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8b36f51e
EJ
2334 }
2335
2336 if (pdscp->dscp != dscp) {
2337 pdscp->dscp = dscp;
2cc3c58e 2338 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8b36f51e
EJ
2339 }
2340
2341 hmap_insert(&new, &pdscp->hmap_node, hash_int(pdscp->priority, 0));
2342 }
2343
2344 if (!hmap_is_empty(&ofport->priorities)) {
2345 ofport_clear_priorities(ofport);
2cc3c58e 2346 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8b36f51e
EJ
2347 }
2348
2349 hmap_swap(&new, &ofport->priorities);
2350 hmap_destroy(&new);
2351
2352 return 0;
2353}
2354\f
abe529af
BP
2355/* Bundles. */
2356
b44a10b7
BP
2357/* Expires all MAC learning entries associated with 'bundle' and forces its
2358 * ofproto to revalidate every flow.
2359 *
2360 * Normally MAC learning entries are removed only from the ofproto associated
2361 * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2362 * are removed from every ofproto. When patch ports and SLB bonds are in use
2363 * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2364 * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2365 * with the host from which it migrated. */
abe529af 2366static void
b44a10b7 2367bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
abe529af
BP
2368{
2369 struct ofproto_dpif *ofproto = bundle->ofproto;
2370 struct mac_learning *ml = ofproto->ml;
2371 struct mac_entry *mac, *next_mac;
2372
2cc3c58e 2373 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2374 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
2375 if (mac->port.p == bundle) {
b44a10b7
BP
2376 if (all_ofprotos) {
2377 struct ofproto_dpif *o;
2378
2379 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2380 if (o != ofproto) {
2381 struct mac_entry *e;
2382
2383 e = mac_learning_lookup(o->ml, mac->mac, mac->vlan,
2384 NULL);
2385 if (e) {
b44a10b7
BP
2386 mac_learning_expire(o->ml, e);
2387 }
2388 }
2389 }
2390 }
2391
abe529af
BP
2392 mac_learning_expire(ml, mac);
2393 }
2394 }
2395}
2396
2397static struct ofbundle *
2398bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2399{
2400 struct ofbundle *bundle;
2401
2402 HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2403 &ofproto->bundles) {
2404 if (bundle->aux == aux) {
2405 return bundle;
2406 }
2407 }
2408 return NULL;
2409}
2410
2411/* Looks up each of the 'n_auxes' pointers in 'auxes' as bundles and adds the
2412 * ones that are found to 'bundles'. */
2413static void
2414bundle_lookup_multiple(struct ofproto_dpif *ofproto,
2415 void **auxes, size_t n_auxes,
2416 struct hmapx *bundles)
2417{
2418 size_t i;
2419
2420 hmapx_init(bundles);
2421 for (i = 0; i < n_auxes; i++) {
2422 struct ofbundle *bundle = bundle_lookup(ofproto, auxes[i]);
2423 if (bundle) {
2424 hmapx_add(bundles, bundle);
2425 }
2426 }
2427}
2428
7bde8dd8
JP
2429static void
2430bundle_update(struct ofbundle *bundle)
2431{
2432 struct ofport_dpif *port;
2433
2434 bundle->floodable = true;
2435 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
9e1fd49b
BP
2436 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2437 || !stp_forward_in_state(port->stp_state)) {
7bde8dd8
JP
2438 bundle->floodable = false;
2439 break;
2440 }
2441 }
2442}
2443
abe529af
BP
2444static void
2445bundle_del_port(struct ofport_dpif *port)
2446{
2447 struct ofbundle *bundle = port->bundle;
2448
2cc3c58e 2449 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
6f77f4ae 2450
abe529af
BP
2451 list_remove(&port->bundle_node);
2452 port->bundle = NULL;
2453
2454 if (bundle->lacp) {
2455 lacp_slave_unregister(bundle->lacp, port);
2456 }
2457 if (bundle->bond) {
2458 bond_slave_unregister(bundle->bond, port);
2459 }
2460
7bde8dd8 2461 bundle_update(bundle);
abe529af
BP
2462}
2463
2464static bool
2465bundle_add_port(struct ofbundle *bundle, uint32_t ofp_port,
df53d41c 2466 struct lacp_slave_settings *lacp)
abe529af
BP
2467{
2468 struct ofport_dpif *port;
2469
2470 port = get_ofp_port(bundle->ofproto, ofp_port);
2471 if (!port) {
2472 return false;
2473 }
2474
2475 if (port->bundle != bundle) {
2cc3c58e 2476 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2477 if (port->bundle) {
2478 bundle_del_port(port);
2479 }
2480
2481 port->bundle = bundle;
2482 list_push_back(&bundle->ports, &port->bundle_node);
9e1fd49b
BP
2483 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2484 || !stp_forward_in_state(port->stp_state)) {
abe529af
BP
2485 bundle->floodable = false;
2486 }
2487 }
2488 if (lacp) {
2cc3c58e 2489 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2490 lacp_slave_register(bundle->lacp, port, lacp);
2491 }
2492
2493 return true;
2494}
2495
2496static void
2497bundle_destroy(struct ofbundle *bundle)
2498{
2499 struct ofproto_dpif *ofproto;
2500 struct ofport_dpif *port, *next_port;
2501 int i;
2502
2503 if (!bundle) {
2504 return;
2505 }
2506
2507 ofproto = bundle->ofproto;
2508 for (i = 0; i < MAX_MIRRORS; i++) {
2509 struct ofmirror *m = ofproto->mirrors[i];
2510 if (m) {
2511 if (m->out == bundle) {
2512 mirror_destroy(m);
2513 } else if (hmapx_find_and_delete(&m->srcs, bundle)
2514 || hmapx_find_and_delete(&m->dsts, bundle)) {
2cc3c58e 2515 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2516 }
2517 }
2518 }
2519
2520 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2521 bundle_del_port(port);
2522 }
2523
b44a10b7 2524 bundle_flush_macs(bundle, true);
abe529af
BP
2525 hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2526 free(bundle->name);
2527 free(bundle->trunks);
2528 lacp_destroy(bundle->lacp);
2529 bond_destroy(bundle->bond);
2530 free(bundle);
2531}
2532
2533static int
2534bundle_set(struct ofproto *ofproto_, void *aux,
2535 const struct ofproto_bundle_settings *s)
2536{
2537 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2538 bool need_flush = false;
abe529af
BP
2539 struct ofport_dpif *port;
2540 struct ofbundle *bundle;
ecac4ebf
BP
2541 unsigned long *trunks;
2542 int vlan;
abe529af
BP
2543 size_t i;
2544 bool ok;
2545
2546 if (!s) {
2547 bundle_destroy(bundle_lookup(ofproto, aux));
2548 return 0;
2549 }
2550
cb22974d
BP
2551 ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2552 ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
abe529af
BP
2553
2554 bundle = bundle_lookup(ofproto, aux);
2555 if (!bundle) {
2556 bundle = xmalloc(sizeof *bundle);
2557
2558 bundle->ofproto = ofproto;
2559 hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2560 hash_pointer(aux, 0));
2561 bundle->aux = aux;
2562 bundle->name = NULL;
2563
2564 list_init(&bundle->ports);
ecac4ebf 2565 bundle->vlan_mode = PORT_VLAN_TRUNK;
abe529af
BP
2566 bundle->vlan = -1;
2567 bundle->trunks = NULL;
5e9ceccd 2568 bundle->use_priority_tags = s->use_priority_tags;
abe529af
BP
2569 bundle->lacp = NULL;
2570 bundle->bond = NULL;
2571
2572 bundle->floodable = true;
2573
2574 bundle->src_mirrors = 0;
2575 bundle->dst_mirrors = 0;
2576 bundle->mirror_out = 0;
2577 }
2578
2579 if (!bundle->name || strcmp(s->name, bundle->name)) {
2580 free(bundle->name);
2581 bundle->name = xstrdup(s->name);
2582 }
2583
2584 /* LACP. */
2585 if (s->lacp) {
2586 if (!bundle->lacp) {
2cc3c58e 2587 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2588 bundle->lacp = lacp_create();
2589 }
2590 lacp_configure(bundle->lacp, s->lacp);
2591 } else {
2592 lacp_destroy(bundle->lacp);
2593 bundle->lacp = NULL;
2594 }
2595
2596 /* Update set of ports. */
2597 ok = true;
2598 for (i = 0; i < s->n_slaves; i++) {
2599 if (!bundle_add_port(bundle, s->slaves[i],
df53d41c 2600 s->lacp ? &s->lacp_slaves[i] : NULL)) {
abe529af
BP
2601 ok = false;
2602 }
2603 }
2604 if (!ok || list_size(&bundle->ports) != s->n_slaves) {
2605 struct ofport_dpif *next_port;
2606
2607 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2608 for (i = 0; i < s->n_slaves; i++) {
56c769ab 2609 if (s->slaves[i] == port->up.ofp_port) {
abe529af
BP
2610 goto found;
2611 }
2612 }
2613
2614 bundle_del_port(port);
2615 found: ;
2616 }
2617 }
cb22974d 2618 ovs_assert(list_size(&bundle->ports) <= s->n_slaves);
abe529af
BP
2619
2620 if (list_is_empty(&bundle->ports)) {
2621 bundle_destroy(bundle);
2622 return EINVAL;
2623 }
2624
ecac4ebf 2625 /* Set VLAN tagging mode */
5e9ceccd
BP
2626 if (s->vlan_mode != bundle->vlan_mode
2627 || s->use_priority_tags != bundle->use_priority_tags) {
ecac4ebf 2628 bundle->vlan_mode = s->vlan_mode;
5e9ceccd 2629 bundle->use_priority_tags = s->use_priority_tags;
ecac4ebf
BP
2630 need_flush = true;
2631 }
2632
abe529af 2633 /* Set VLAN tag. */
ecac4ebf
BP
2634 vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2635 : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2636 : 0);
2637 if (vlan != bundle->vlan) {
2638 bundle->vlan = vlan;
abe529af
BP
2639 need_flush = true;
2640 }
2641
2642 /* Get trunked VLANs. */
ecac4ebf
BP
2643 switch (s->vlan_mode) {
2644 case PORT_VLAN_ACCESS:
2645 trunks = NULL;
2646 break;
2647
2648 case PORT_VLAN_TRUNK:
ebc56baa 2649 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
2650 break;
2651
2652 case PORT_VLAN_NATIVE_UNTAGGED:
2653 case PORT_VLAN_NATIVE_TAGGED:
2654 if (vlan != 0 && (!s->trunks
2655 || !bitmap_is_set(s->trunks, vlan)
2656 || bitmap_is_set(s->trunks, 0))) {
2657 /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2658 if (s->trunks) {
2659 trunks = bitmap_clone(s->trunks, 4096);
2660 } else {
2661 trunks = bitmap_allocate1(4096);
2662 }
2663 bitmap_set1(trunks, vlan);
2664 bitmap_set0(trunks, 0);
2665 } else {
ebc56baa 2666 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
2667 }
2668 break;
2669
2670 default:
2671 NOT_REACHED();
2672 }
abe529af
BP
2673 if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2674 free(bundle->trunks);
ecac4ebf
BP
2675 if (trunks == s->trunks) {
2676 bundle->trunks = vlan_bitmap_clone(trunks);
2677 } else {
2678 bundle->trunks = trunks;
2679 trunks = NULL;
2680 }
abe529af
BP
2681 need_flush = true;
2682 }
ecac4ebf
BP
2683 if (trunks != s->trunks) {
2684 free(trunks);
2685 }
abe529af
BP
2686
2687 /* Bonding. */
2688 if (!list_is_short(&bundle->ports)) {
2689 bundle->ofproto->has_bonded_bundles = true;
2690 if (bundle->bond) {
2691 if (bond_reconfigure(bundle->bond, s->bond)) {
2cc3c58e 2692 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2693 }
2694 } else {
2695 bundle->bond = bond_create(s->bond);
2cc3c58e 2696 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2697 }
2698
2699 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
df53d41c 2700 bond_slave_register(bundle->bond, port, port->up.netdev);
abe529af
BP
2701 }
2702 } else {
2703 bond_destroy(bundle->bond);
2704 bundle->bond = NULL;
2705 }
2706
2707 /* If we changed something that would affect MAC learning, un-learn
2708 * everything on this port and force flow revalidation. */
2709 if (need_flush) {
b44a10b7 2710 bundle_flush_macs(bundle, false);
abe529af
BP
2711 }
2712
2713 return 0;
2714}
2715
2716static void
2717bundle_remove(struct ofport *port_)
2718{
2719 struct ofport_dpif *port = ofport_dpif_cast(port_);
2720 struct ofbundle *bundle = port->bundle;
2721
2722 if (bundle) {
2723 bundle_del_port(port);
2724 if (list_is_empty(&bundle->ports)) {
2725 bundle_destroy(bundle);
2726 } else if (list_is_short(&bundle->ports)) {
2727 bond_destroy(bundle->bond);
2728 bundle->bond = NULL;
2729 }
2730 }
2731}
2732
2733static void
5f877369 2734send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
abe529af
BP
2735{
2736 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
2737 struct ofport_dpif *port = port_;
2738 uint8_t ea[ETH_ADDR_LEN];
2739 int error;
2740
2741 error = netdev_get_etheraddr(port->up.netdev, ea);
2742 if (!error) {
abe529af 2743 struct ofpbuf packet;
5f877369 2744 void *packet_pdu;
abe529af
BP
2745
2746 ofpbuf_init(&packet, 0);
2747 packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
5f877369
EJ
2748 pdu_size);
2749 memcpy(packet_pdu, pdu, pdu_size);
2750
97d6520b 2751 send_packet(port, &packet);
abe529af
BP
2752 ofpbuf_uninit(&packet);
2753 } else {
2754 VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
2755 "%s (%s)", port->bundle->name,
2756 netdev_get_name(port->up.netdev), strerror(error));
2757 }
2758}
2759
2760static void
2761bundle_send_learning_packets(struct ofbundle *bundle)
2762{
2763 struct ofproto_dpif *ofproto = bundle->ofproto;
2764 int error, n_packets, n_errors;
2765 struct mac_entry *e;
2766
2767 error = n_packets = n_errors = 0;
2768 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
2769 if (e->port.p != bundle) {
ea131871
JG
2770 struct ofpbuf *learning_packet;
2771 struct ofport_dpif *port;
4dd1e3ca 2772 void *port_void;
ea131871
JG
2773 int ret;
2774
4dd1e3ca
BP
2775 /* The assignment to "port" is unnecessary but makes "grep"ing for
2776 * struct ofport_dpif more effective. */
2777 learning_packet = bond_compose_learning_packet(bundle->bond,
2778 e->mac, e->vlan,
2779 &port_void);
2780 port = port_void;
97d6520b 2781 ret = send_packet(port, learning_packet);
ea131871 2782 ofpbuf_delete(learning_packet);
abe529af
BP
2783 if (ret) {
2784 error = ret;
2785 n_errors++;
2786 }
2787 n_packets++;
2788 }
2789 }
2790
2791 if (n_errors) {
2792 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2793 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2794 "packets, last error was: %s",
2795 bundle->name, n_errors, n_packets, strerror(error));
2796 } else {
2797 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2798 bundle->name, n_packets);
2799 }
2800}
2801
2802static void
2803bundle_run(struct ofbundle *bundle)
2804{
2805 if (bundle->lacp) {
2806 lacp_run(bundle->lacp, send_pdu_cb);
2807 }
2808 if (bundle->bond) {
2809 struct ofport_dpif *port;
2810
2811 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
015e08bc 2812 bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
abe529af
BP
2813 }
2814
2cc3c58e 2815 bond_run(bundle->bond, &bundle->ofproto->backer->revalidate_set,
bdebeece 2816 lacp_status(bundle->lacp));
abe529af
BP
2817 if (bond_should_send_learning_packets(bundle->bond)) {
2818 bundle_send_learning_packets(bundle);
2819 }
2820 }
2821}
2822
2823static void
2824bundle_wait(struct ofbundle *bundle)
2825{
2826 if (bundle->lacp) {
2827 lacp_wait(bundle->lacp);
2828 }
2829 if (bundle->bond) {
2830 bond_wait(bundle->bond);
2831 }
2832}
2833\f
2834/* Mirrors. */
2835
2836static int
2837mirror_scan(struct ofproto_dpif *ofproto)
2838{
2839 int idx;
2840
2841 for (idx = 0; idx < MAX_MIRRORS; idx++) {
2842 if (!ofproto->mirrors[idx]) {
2843 return idx;
2844 }
2845 }
2846 return -1;
2847}
2848
2849static struct ofmirror *
2850mirror_lookup(struct ofproto_dpif *ofproto, void *aux)
2851{
2852 int i;
2853
2854 for (i = 0; i < MAX_MIRRORS; i++) {
2855 struct ofmirror *mirror = ofproto->mirrors[i];
2856 if (mirror && mirror->aux == aux) {
2857 return mirror;
2858 }
2859 }
2860
2861 return NULL;
2862}
2863
9ba15e2a
BP
2864/* Update the 'dup_mirrors' member of each of the ofmirrors in 'ofproto'. */
2865static void
2866mirror_update_dups(struct ofproto_dpif *ofproto)
2867{
2868 int i;
2869
2870 for (i = 0; i < MAX_MIRRORS; i++) {
2871 struct ofmirror *m = ofproto->mirrors[i];
2872
2873 if (m) {
2874 m->dup_mirrors = MIRROR_MASK_C(1) << i;
2875 }
2876 }
2877
2878 for (i = 0; i < MAX_MIRRORS; i++) {
2879 struct ofmirror *m1 = ofproto->mirrors[i];
2880 int j;
2881
2882 if (!m1) {
2883 continue;
2884 }
2885
2886 for (j = i + 1; j < MAX_MIRRORS; j++) {
2887 struct ofmirror *m2 = ofproto->mirrors[j];
2888
edb0540b 2889 if (m2 && m1->out == m2->out && m1->out_vlan == m2->out_vlan) {
9ba15e2a
BP
2890 m1->dup_mirrors |= MIRROR_MASK_C(1) << j;
2891 m2->dup_mirrors |= m1->dup_mirrors;
2892 }
2893 }
2894 }
2895}
2896
abe529af
BP
2897static int
2898mirror_set(struct ofproto *ofproto_, void *aux,
2899 const struct ofproto_mirror_settings *s)
2900{
2901 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2902 mirror_mask_t mirror_bit;
2903 struct ofbundle *bundle;
2904 struct ofmirror *mirror;
2905 struct ofbundle *out;
2906 struct hmapx srcs; /* Contains "struct ofbundle *"s. */
2907 struct hmapx dsts; /* Contains "struct ofbundle *"s. */
2908 int out_vlan;
2909
2910 mirror = mirror_lookup(ofproto, aux);
2911 if (!s) {
2912 mirror_destroy(mirror);
2913 return 0;
2914 }
2915 if (!mirror) {
2916 int idx;
2917
2918 idx = mirror_scan(ofproto);
2919 if (idx < 0) {
2920 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
2921 "cannot create %s",
2922 ofproto->up.name, MAX_MIRRORS, s->name);
2923 return EFBIG;
2924 }
2925
2926 mirror = ofproto->mirrors[idx] = xzalloc(sizeof *mirror);
2927 mirror->ofproto = ofproto;
2928 mirror->idx = idx;
8b28d864 2929 mirror->aux = aux;
abe529af
BP
2930 mirror->out_vlan = -1;
2931 mirror->name = NULL;
2932 }
2933
2934 if (!mirror->name || strcmp(s->name, mirror->name)) {
2935 free(mirror->name);
2936 mirror->name = xstrdup(s->name);
2937 }
2938
2939 /* Get the new configuration. */
2940 if (s->out_bundle) {
2941 out = bundle_lookup(ofproto, s->out_bundle);
2942 if (!out) {
2943 mirror_destroy(mirror);
2944 return EINVAL;
2945 }
2946 out_vlan = -1;
2947 } else {
2948 out = NULL;
2949 out_vlan = s->out_vlan;
2950 }
2951 bundle_lookup_multiple(ofproto, s->srcs, s->n_srcs, &srcs);
2952 bundle_lookup_multiple(ofproto, s->dsts, s->n_dsts, &dsts);
2953
2954 /* If the configuration has not changed, do nothing. */
2955 if (hmapx_equals(&srcs, &mirror->srcs)
2956 && hmapx_equals(&dsts, &mirror->dsts)
2957 && vlan_bitmap_equal(mirror->vlans, s->src_vlans)
2958 && mirror->out == out
2959 && mirror->out_vlan == out_vlan)
2960 {
2961 hmapx_destroy(&srcs);
2962 hmapx_destroy(&dsts);
2963 return 0;
2964 }
2965
2966 hmapx_swap(&srcs, &mirror->srcs);
2967 hmapx_destroy(&srcs);
2968
2969 hmapx_swap(&dsts, &mirror->dsts);
2970 hmapx_destroy(&dsts);
2971
2972 free(mirror->vlans);
2973 mirror->vlans = vlan_bitmap_clone(s->src_vlans);
2974
2975 mirror->out = out;
2976 mirror->out_vlan = out_vlan;
2977
2978 /* Update bundles. */
2979 mirror_bit = MIRROR_MASK_C(1) << mirror->idx;
2980 HMAP_FOR_EACH (bundle, hmap_node, &mirror->ofproto->bundles) {
2981 if (hmapx_contains(&mirror->srcs, bundle)) {
2982 bundle->src_mirrors |= mirror_bit;
2983 } else {
2984 bundle->src_mirrors &= ~mirror_bit;
2985 }
2986
2987 if (hmapx_contains(&mirror->dsts, bundle)) {
2988 bundle->dst_mirrors |= mirror_bit;
2989 } else {
2990 bundle->dst_mirrors &= ~mirror_bit;
2991 }
2992
2993 if (mirror->out == bundle) {
2994 bundle->mirror_out |= mirror_bit;
2995 } else {
2996 bundle->mirror_out &= ~mirror_bit;
2997 }
2998 }
2999
2cc3c58e 3000 ofproto->backer->need_revalidate = REV_RECONFIGURE;
ccb7c863 3001 ofproto->has_mirrors = true;
2cc3c58e
EJ
3002 mac_learning_flush(ofproto->ml,
3003 &ofproto->backer->revalidate_set);
9ba15e2a 3004 mirror_update_dups(ofproto);
abe529af
BP
3005
3006 return 0;
3007}
3008
3009static void
3010mirror_destroy(struct ofmirror *mirror)
3011{
3012 struct ofproto_dpif *ofproto;
3013 mirror_mask_t mirror_bit;
3014 struct ofbundle *bundle;
ccb7c863 3015 int i;
abe529af
BP
3016
3017 if (!mirror) {
3018 return;
3019 }
3020
3021 ofproto = mirror->ofproto;
2cc3c58e
EJ
3022 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3023 mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
abe529af
BP
3024
3025 mirror_bit = MIRROR_MASK_C(1) << mirror->idx;
3026 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
3027 bundle->src_mirrors &= ~mirror_bit;
3028 bundle->dst_mirrors &= ~mirror_bit;
3029 bundle->mirror_out &= ~mirror_bit;
3030 }
3031
3032 hmapx_destroy(&mirror->srcs);
3033 hmapx_destroy(&mirror->dsts);
3034 free(mirror->vlans);
3035
3036 ofproto->mirrors[mirror->idx] = NULL;
3037 free(mirror->name);
3038 free(mirror);
9ba15e2a
BP
3039
3040 mirror_update_dups(ofproto);
ccb7c863
BP
3041
3042 ofproto->has_mirrors = false;
3043 for (i = 0; i < MAX_MIRRORS; i++) {
3044 if (ofproto->mirrors[i]) {
3045 ofproto->has_mirrors = true;
3046 break;
3047 }
3048 }
abe529af
BP
3049}
3050
9d24de3b
JP
3051static int
3052mirror_get_stats(struct ofproto *ofproto_, void *aux,
3053 uint64_t *packets, uint64_t *bytes)
3054{
3055 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3056 struct ofmirror *mirror = mirror_lookup(ofproto, aux);
3057
3058 if (!mirror) {
3059 *packets = *bytes = UINT64_MAX;
3060 return 0;
3061 }
3062
8844e035
EJ
3063 push_all_stats();
3064
9d24de3b
JP
3065 *packets = mirror->packet_count;
3066 *bytes = mirror->byte_count;
3067
3068 return 0;
3069}
3070
abe529af
BP
3071static int
3072set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
3073{
3074 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3075 if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
2cc3c58e 3076 mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
abe529af
BP
3077 }
3078 return 0;
3079}
3080
3081static bool
b4affc74 3082is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
abe529af
BP
3083{
3084 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3085 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
3086 return bundle && bundle->mirror_out != 0;
3087}
8402c74b
SS
3088
3089static void
b53055f4 3090forward_bpdu_changed(struct ofproto *ofproto_)
8402c74b
SS
3091{
3092 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2cc3c58e 3093 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8402c74b 3094}
e764773c
BP
3095
3096static void
c4069512
BP
3097set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
3098 size_t max_entries)
e764773c
BP
3099{
3100 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3101 mac_learning_set_idle_time(ofproto->ml, idle_time);
c4069512 3102 mac_learning_set_max_entries(ofproto->ml, max_entries);
e764773c 3103}
abe529af
BP
3104\f
3105/* Ports. */
3106
3107static struct ofport_dpif *
4acbc98d 3108get_ofp_port(const struct ofproto_dpif *ofproto, uint16_t ofp_port)
abe529af 3109{
7df6a8bd
BP
3110 struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
3111 return ofport ? ofport_dpif_cast(ofport) : NULL;
abe529af
BP
3112}
3113
3114static struct ofport_dpif *
4acbc98d 3115get_odp_port(const struct ofproto_dpif *ofproto, uint32_t odp_port)
abe529af 3116{
7c33b188
JR
3117 struct ofport_dpif *port = odp_port_to_ofport(ofproto->backer, odp_port);
3118 return port && &ofproto->up == port->up.ofproto ? port : NULL;
abe529af
BP
3119}
3120
3121static void
e1b1d06a
JP
3122ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
3123 struct ofproto_port *ofproto_port,
abe529af
BP
3124 struct dpif_port *dpif_port)
3125{
3126 ofproto_port->name = dpif_port->name;
3127 ofproto_port->type = dpif_port->type;
e1b1d06a 3128 ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
abe529af
BP
3129}
3130
0a740f48
EJ
3131static struct ofport_dpif *
3132ofport_get_peer(const struct ofport_dpif *ofport_dpif)
3133{
3134 const struct ofproto_dpif *ofproto;
3135 const char *peer;
3136
3137 peer = netdev_vport_patch_peer(ofport_dpif->up.netdev);
3138 if (!peer) {
3139 return NULL;
3140 }
3141
3142 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3143 struct ofport *ofport;
3144
3145 ofport = shash_find_data(&ofproto->up.port_by_name, peer);
3146 if (ofport && ofport->ofproto->ofproto_class == &ofproto_dpif_class) {
3147 return ofport_dpif_cast(ofport);
3148 }
3149 }
3150 return NULL;
3151}
3152
0aa66d6e
EJ
3153static void
3154port_run_fast(struct ofport_dpif *ofport)
3155{
3156 if (ofport->cfm && cfm_should_send_ccm(ofport->cfm)) {
3157 struct ofpbuf packet;
3158
3159 ofpbuf_init(&packet, 0);
3160 cfm_compose_ccm(ofport->cfm, &packet, ofport->up.pp.hw_addr);
3161 send_packet(ofport, &packet);
3162 ofpbuf_uninit(&packet);
3163 }
ccc09689
EJ
3164
3165 if (ofport->bfd && bfd_should_send_packet(ofport->bfd)) {
3166 struct ofpbuf packet;
3167
3168 ofpbuf_init(&packet, 0);
3169 bfd_put_packet(ofport->bfd, &packet, ofport->up.pp.hw_addr);
3170 send_packet(ofport, &packet);
3171 ofpbuf_uninit(&packet);
3172 }
0aa66d6e
EJ
3173}
3174
abe529af
BP
3175static void
3176port_run(struct ofport_dpif *ofport)
3177{
3e5b3fdb
EJ
3178 long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
3179 bool carrier_changed = carrier_seq != ofport->carrier_seq;
015e08bc
EJ
3180 bool enable = netdev_get_carrier(ofport->up.netdev);
3181
3e5b3fdb
EJ
3182 ofport->carrier_seq = carrier_seq;
3183
0aa66d6e 3184 port_run_fast(ofport);
b9ad7294
EJ
3185
3186 if (ofport->tnl_port
3187 && tnl_port_reconfigure(&ofport->up, ofport->odp_port,
3188 &ofport->tnl_port)) {
3189 ofproto_dpif_cast(ofport->up.ofproto)->backer->need_revalidate = true;
3190 }
3191
abe529af 3192 if (ofport->cfm) {
4653c558
EJ
3193 int cfm_opup = cfm_get_opup(ofport->cfm);
3194
abe529af 3195 cfm_run(ofport->cfm);
4653c558
EJ
3196 enable = enable && !cfm_get_fault(ofport->cfm);
3197
3198 if (cfm_opup >= 0) {
3199 enable = enable && cfm_opup;
3200 }
abe529af 3201 }
015e08bc 3202
ccc09689
EJ
3203 if (ofport->bfd) {
3204 bfd_run(ofport->bfd);
3205 enable = enable && bfd_forwarding(ofport->bfd);
3206 }
3207
015e08bc
EJ
3208 if (ofport->bundle) {
3209 enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
3e5b3fdb
EJ
3210 if (carrier_changed) {
3211 lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
3212 }
015e08bc
EJ
3213 }
3214
daff3353
EJ
3215 if (ofport->may_enable != enable) {
3216 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3217
3218 if (ofproto->has_bundle_action) {
2cc3c58e 3219 ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
daff3353
EJ
3220 }
3221 }
3222
015e08bc 3223 ofport->may_enable = enable;
abe529af
BP
3224}
3225
3226static void
3227port_wait(struct ofport_dpif *ofport)
3228{
3229 if (ofport->cfm) {
3230 cfm_wait(ofport->cfm);
3231 }
ccc09689
EJ
3232
3233 if (ofport->bfd) {
3234 bfd_wait(ofport->bfd);
3235 }
abe529af
BP
3236}
3237
3238static int
3239port_query_by_name(const struct ofproto *ofproto_, const char *devname,
3240 struct ofproto_port *ofproto_port)
3241{
3242 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3243 struct dpif_port dpif_port;
3244 int error;
3245
0a740f48
EJ
3246 if (sset_contains(&ofproto->ghost_ports, devname)) {
3247 const char *type = netdev_get_type_from_name(devname);
3248
3249 /* We may be called before ofproto->up.port_by_name is populated with
3250 * the appropriate ofport. For this reason, we must get the name and
3251 * type from the netdev layer directly. */
3252 if (type) {
3253 const struct ofport *ofport;
3254
3255 ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3256 ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3257 ofproto_port->name = xstrdup(devname);
3258 ofproto_port->type = xstrdup(type);
3259 return 0;
3260 }
3261 return ENODEV;
3262 }
3263
acf60855
JP
3264 if (!sset_contains(&ofproto->ports, devname)) {
3265 return ENODEV;
3266 }
3267 error = dpif_port_query_by_name(ofproto->backer->dpif,
3268 devname, &dpif_port);
abe529af 3269 if (!error) {
e1b1d06a 3270 ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
abe529af
BP
3271 }
3272 return error;
3273}
3274
3275static int
e1b1d06a 3276port_add(struct ofproto *ofproto_, struct netdev *netdev)
abe529af
BP
3277{
3278 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
b9ad7294
EJ
3279 const char *dp_port_name = netdev_vport_get_dpif_port(netdev);
3280 const char *devname = netdev_get_name(netdev);
abe529af 3281
0a740f48
EJ
3282 if (netdev_vport_is_patch(netdev)) {
3283 sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3284 return 0;
3285 }
3286
b9ad7294 3287 if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
7d82ab2e
KM
3288 uint32_t port_no = UINT32_MAX;
3289 int error;
3290
3291 error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
b9ad7294
EJ
3292 if (error) {
3293 return error;
3294 }
7d82ab2e
KM
3295 if (netdev_get_tunnel_config(netdev)) {
3296 simap_put(&ofproto->backer->tnl_backers, dp_port_name, port_no);
3297 }
acf60855 3298 }
b9ad7294
EJ
3299
3300 if (netdev_get_tunnel_config(netdev)) {
3301 sset_add(&ofproto->ghost_ports, devname);
b9ad7294
EJ
3302 } else {
3303 sset_add(&ofproto->ports, devname);
3304 }
3305 return 0;
3306}
3307
abe529af
BP
3308static int
3309port_del(struct ofproto *ofproto_, uint16_t ofp_port)
3310{
3311 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
b9ad7294 3312 struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
e1b1d06a 3313 int error = 0;
abe529af 3314
b9ad7294
EJ
3315 if (!ofport) {
3316 return 0;
e1b1d06a 3317 }
b9ad7294
EJ
3318
3319 sset_find_and_delete(&ofproto->ghost_ports,
3320 netdev_get_name(ofport->up.netdev));
a614d823
KM
3321 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3322 if (!ofport->tnl_port) {
b9ad7294
EJ
3323 error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
3324 if (!error) {
abe529af
BP
3325 /* The caller is going to close ofport->up.netdev. If this is a
3326 * bonded port, then the bond is using that netdev, so remove it
3327 * from the bond. The client will need to reconfigure everything
3328 * after deleting ports, so then the slave will get re-added. */
3329 bundle_remove(&ofport->up);
3330 }
3331 }
3332 return error;
3333}
3334
6527c598
PS
3335static int
3336port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3337{
3338 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3339 int error;
3340
8844e035
EJ
3341 push_all_stats();
3342
6527c598
PS
3343 error = netdev_get_stats(ofport->up.netdev, stats);
3344
ee382d89 3345 if (!error && ofport_->ofp_port == OFPP_LOCAL) {
6527c598
PS
3346 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3347
3348 /* ofproto->stats.tx_packets represents packets that we created
3349 * internally and sent to some port (e.g. packets sent with
3350 * send_packet()). Account for them as if they had come from
3351 * OFPP_LOCAL and got forwarded. */
3352
3353 if (stats->rx_packets != UINT64_MAX) {
3354 stats->rx_packets += ofproto->stats.tx_packets;
3355 }
3356
3357 if (stats->rx_bytes != UINT64_MAX) {
3358 stats->rx_bytes += ofproto->stats.tx_bytes;
3359 }
3360
3361 /* ofproto->stats.rx_packets represents packets that were received on
3362 * some port and we processed internally and dropped (e.g. STP).
4e090bc7 3363 * Account for them as if they had been forwarded to OFPP_LOCAL. */
6527c598
PS
3364
3365 if (stats->tx_packets != UINT64_MAX) {
3366 stats->tx_packets += ofproto->stats.rx_packets;
3367 }
3368
3369 if (stats->tx_bytes != UINT64_MAX) {
3370 stats->tx_bytes += ofproto->stats.rx_bytes;
3371 }
3372 }
3373
3374 return error;
3375}
3376
abe529af 3377struct port_dump_state {
acf60855
JP
3378 uint32_t bucket;
3379 uint32_t offset;
0a740f48 3380 bool ghost;
da78d43d
BP
3381
3382 struct ofproto_port port;
3383 bool has_port;
abe529af
BP
3384};
3385
3386static int
acf60855 3387port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
abe529af 3388{
0a740f48 3389 *statep = xzalloc(sizeof(struct port_dump_state));
abe529af
BP
3390 return 0;
3391}
3392
3393static int
b9ad7294 3394port_dump_next(const struct ofproto *ofproto_, void *state_,
abe529af
BP
3395 struct ofproto_port *port)
3396{
e1b1d06a 3397 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
abe529af 3398 struct port_dump_state *state = state_;
0a740f48 3399 const struct sset *sset;
acf60855 3400 struct sset_node *node;
abe529af 3401
da78d43d
BP
3402 if (state->has_port) {
3403 ofproto_port_destroy(&state->port);
3404 state->has_port = false;
3405 }
0a740f48
EJ
3406 sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
3407 while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
acf60855
JP
3408 int error;
3409
da78d43d
BP
3410 error = port_query_by_name(ofproto_, node->name, &state->port);
3411 if (!error) {
3412 *port = state->port;
3413 state->has_port = true;
3414 return 0;
3415 } else if (error != ENODEV) {
acf60855
JP
3416 return error;
3417 }
abe529af 3418 }
acf60855 3419
0a740f48
EJ
3420 if (!state->ghost) {
3421 state->ghost = true;
3422 state->bucket = 0;
3423 state->offset = 0;
3424 return port_dump_next(ofproto_, state_, port);
3425 }
3426
acf60855 3427 return EOF;
abe529af
BP
3428}
3429
3430static int
3431port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3432{
3433 struct port_dump_state *state = state_;
3434
da78d43d
BP
3435 if (state->has_port) {
3436 ofproto_port_destroy(&state->port);
3437 }
abe529af
BP
3438 free(state);
3439 return 0;
3440}
3441
3442static int
3443port_poll(const struct ofproto *ofproto_, char **devnamep)
3444{
3445 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855
JP
3446
3447 if (ofproto->port_poll_errno) {
3448 int error = ofproto->port_poll_errno;
3449 ofproto->port_poll_errno = 0;
3450 return error;
3451 }
3452
3453 if (sset_is_empty(&ofproto->port_poll_set)) {
3454 return EAGAIN;
3455 }
3456
3457 *devnamep = sset_pop(&ofproto->port_poll_set);
3458 return 0;
abe529af
BP
3459}
3460
3461static void
3462port_poll_wait(const struct ofproto *ofproto_)
3463{
3464 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 3465 dpif_port_poll_wait(ofproto->backer->dpif);
abe529af
BP
3466}
3467
3468static int
3469port_is_lacp_current(const struct ofport *ofport_)
3470{
3471 const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3472 return (ofport->bundle && ofport->bundle->lacp
3473 ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3474 : -1);
3475}
3476\f
3477/* Upcall handling. */
3478
501f8d1f
BP
3479/* Flow miss batching.
3480 *
3481 * Some dpifs implement operations faster when you hand them off in a batch.
3482 * To allow batching, "struct flow_miss" queues the dpif-related work needed
3483 * for a given flow. Each "struct flow_miss" corresponds to sending one or
3484 * more packets, plus possibly installing the flow in the dpif.
3485 *
3486 * So far we only batch the operations that affect flow setup time the most.
3487 * It's possible to batch more than that, but the benefit might be minimal. */
3488struct flow_miss {
3489 struct hmap_node hmap_node;
acf60855 3490 struct ofproto_dpif *ofproto;
501f8d1f 3491 struct flow flow;
b0f7b9b5 3492 enum odp_key_fitness key_fitness;
501f8d1f
BP
3493 const struct nlattr *key;
3494 size_t key_len;
14f94f9a 3495 struct initial_vals initial_vals;
501f8d1f 3496 struct list packets;
6a7e895f 3497 enum dpif_upcall_type upcall_type;
a088a1ff 3498 uint32_t odp_in_port;
501f8d1f
BP
3499};
3500
3501struct flow_miss_op {
c2b565b5 3502 struct dpif_op dpif_op;
5fe20d5d
BP
3503 void *garbage; /* Pointer to pass to free(), NULL if none. */
3504 uint64_t stub[1024 / 8]; /* Temporary buffer. */
501f8d1f
BP
3505};
3506
62cd7072
BP
3507/* Sends an OFPT_PACKET_IN message for 'packet' of type OFPR_NO_MATCH to each
3508 * OpenFlow controller as necessary according to their individual
29ebe880 3509 * configurations. */
62cd7072 3510static void
a39edbd4 3511send_packet_in_miss(struct ofproto_dpif *ofproto, const struct ofpbuf *packet,
29ebe880 3512 const struct flow *flow)
62cd7072
BP
3513{
3514 struct ofputil_packet_in pin;
3515
3e3252fa
EJ
3516 pin.packet = packet->data;
3517 pin.packet_len = packet->size;
62cd7072 3518 pin.reason = OFPR_NO_MATCH;
a7349929 3519 pin.controller_id = 0;
54834960
EJ
3520
3521 pin.table_id = 0;
3522 pin.cookie = 0;
3523
62cd7072 3524 pin.send_len = 0; /* not used for flow table misses */
5d6c3af0
EJ
3525
3526 flow_get_metadata(flow, &pin.fmd);
3527
d8653c38 3528 connmgr_send_packet_in(ofproto->up.connmgr, &pin);
62cd7072
BP
3529}
3530
6a7e895f 3531static enum slow_path_reason
abe529af 3532process_special(struct ofproto_dpif *ofproto, const struct flow *flow,
ffaef958 3533 const struct ofport_dpif *ofport, const struct ofpbuf *packet)
abe529af 3534{
b6e001b6 3535 if (!ofport) {
6a7e895f 3536 return 0;
ffaef958 3537 } else if (ofport->cfm && cfm_should_process_flow(ofport->cfm, flow)) {
b6e001b6 3538 if (packet) {
abe529af
BP
3539 cfm_process_heartbeat(ofport->cfm, packet);
3540 }
6a7e895f 3541 return SLOW_CFM;
ccc09689
EJ
3542 } else if (ofport->bfd && bfd_should_process_flow(flow)) {
3543 if (packet) {
3544 bfd_process_packet(ofport->bfd, flow, packet);
3545 }
3546 return SLOW_BFD;
b6e001b6
EJ
3547 } else if (ofport->bundle && ofport->bundle->lacp
3548 && flow->dl_type == htons(ETH_TYPE_LACP)) {
3549 if (packet) {
3550 lacp_process_packet(ofport->bundle->lacp, ofport, packet);
abe529af 3551 }
6a7e895f 3552 return SLOW_LACP;
21f7563c
JP
3553 } else if (ofproto->stp && stp_should_process_flow(flow)) {
3554 if (packet) {
3555 stp_process_packet(ofport, packet);
3556 }
6a7e895f 3557 return SLOW_STP;
ffaef958
BP
3558 } else {
3559 return 0;
abe529af 3560 }
abe529af
BP
3561}
3562
501f8d1f 3563static struct flow_miss *
ddbc5954
JP
3564flow_miss_find(struct hmap *todo, const struct ofproto_dpif *ofproto,
3565 const struct flow *flow, uint32_t hash)
abe529af 3566{
501f8d1f 3567 struct flow_miss *miss;
abe529af 3568
501f8d1f 3569 HMAP_FOR_EACH_WITH_HASH (miss, hmap_node, hash, todo) {
ddbc5954 3570 if (miss->ofproto == ofproto && flow_equal(&miss->flow, flow)) {
501f8d1f
BP
3571 return miss;
3572 }
3573 }
abe529af 3574
b23cdad9 3575 return NULL;
501f8d1f 3576}
abe529af 3577
9d6ac44e
BP
3578/* Partially Initializes 'op' as an "execute" operation for 'miss' and
3579 * 'packet'. The caller must initialize op->actions and op->actions_len. If
3580 * 'miss' is associated with a subfacet the caller must also initialize the
3581 * returned op->subfacet, and if anything needs to be freed after processing
3582 * the op, the caller must initialize op->garbage also. */
501f8d1f 3583static void
9d6ac44e
BP
3584init_flow_miss_execute_op(struct flow_miss *miss, struct ofpbuf *packet,
3585 struct flow_miss_op *op)
501f8d1f 3586{
14f94f9a 3587 if (miss->flow.vlan_tci != miss->initial_vals.vlan_tci) {
9d6ac44e
BP
3588 /* This packet was received on a VLAN splinter port. We
3589 * added a VLAN to the packet to make the packet resemble
3590 * the flow, but the actions were composed assuming that
3591 * the packet contained no VLAN. So, we must remove the
3592 * VLAN header from the packet before trying to execute the
3593 * actions. */
3594 eth_pop_vlan(packet);
3595 }
3596
9d6ac44e
BP
3597 op->garbage = NULL;
3598 op->dpif_op.type = DPIF_OP_EXECUTE;
3599 op->dpif_op.u.execute.key = miss->key;
3600 op->dpif_op.u.execute.key_len = miss->key_len;
3601 op->dpif_op.u.execute.packet = packet;
3602}
3603
3604/* Helper for handle_flow_miss_without_facet() and
3605 * handle_flow_miss_with_facet(). */
3606static void
3607handle_flow_miss_common(struct rule_dpif *rule,
3608 struct ofpbuf *packet, const struct flow *flow)
3609{
3610 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3611
3612 ofproto->n_matches++;
3613
3614 if (rule->up.cr.priority == FAIL_OPEN_PRIORITY) {
3615 /*
3616 * Extra-special case for fail-open mode.
3617 *
3618 * We are in fail-open mode and the packet matched the fail-open
3619 * rule, but we are connected to a controller too. We should send
3620 * the packet up to the controller in the hope that it will try to
3621 * set up a flow and thereby allow us to exit fail-open.
3622 *
3623 * See the top-level comment in fail-open.c for more information.
3624 */
3625 send_packet_in_miss(ofproto, packet, flow);
3626 }
3627}
3628
3629/* Figures out whether a flow that missed in 'ofproto', whose details are in
3630 * 'miss', is likely to be worth tracking in detail in userspace and (usually)
3631 * installing a datapath flow. The answer is usually "yes" (a return value of
3632 * true). However, for short flows the cost of bookkeeping is much higher than
3633 * the benefits, so when the datapath holds a large number of flows we impose
3634 * some heuristics to decide which flows are likely to be worth tracking. */
3635static bool
3636flow_miss_should_make_facet(struct ofproto_dpif *ofproto,
3637 struct flow_miss *miss, uint32_t hash)
3638{
3639 if (!ofproto->governor) {
3640 size_t n_subfacets;
3641
3642 n_subfacets = hmap_count(&ofproto->subfacets);
3643 if (n_subfacets * 2 <= ofproto->up.flow_eviction_threshold) {
3644 return true;
3645 }
3646
3647 ofproto->governor = governor_create(ofproto->up.name);
3648 }
3649
3650 return governor_should_install_flow(ofproto->governor, hash,
3651 list_size(&miss->packets));
3652}
3653
3654/* Handles 'miss', which matches 'rule', without creating a facet or subfacet
3655 * or creating any datapath flow. May add an "execute" operation to 'ops' and
3656 * increment '*n_ops'. */
3657static void
3658handle_flow_miss_without_facet(struct flow_miss *miss,
3659 struct rule_dpif *rule,
3660 struct flow_miss_op *ops, size_t *n_ops)
3661{
3662 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
a7752d4a 3663 long long int now = time_msec();
9d6ac44e 3664 struct action_xlate_ctx ctx;
530a1d91 3665 struct ofpbuf *packet;
2b459b83 3666
9d6ac44e
BP
3667 LIST_FOR_EACH (packet, list_node, &miss->packets) {
3668 struct flow_miss_op *op = &ops[*n_ops];
3669 struct dpif_flow_stats stats;
3670 struct ofpbuf odp_actions;
abe529af 3671
9d6ac44e 3672 COVERAGE_INC(facet_suppress);
501f8d1f 3673
9d6ac44e 3674 ofpbuf_use_stub(&odp_actions, op->stub, sizeof op->stub);
501f8d1f 3675
a7752d4a 3676 dpif_flow_stats_extract(&miss->flow, packet, now, &stats);
9d6ac44e 3677 rule_credit_stats(rule, &stats);
abe529af 3678
14f94f9a
JP
3679 action_xlate_ctx_init(&ctx, ofproto, &miss->flow,
3680 &miss->initial_vals, rule, 0, packet);
9d6ac44e 3681 ctx.resubmit_stats = &stats;
f25d0cf3 3682 xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len,
9d6ac44e 3683 &odp_actions);
abe529af 3684
9d6ac44e
BP
3685 if (odp_actions.size) {
3686 struct dpif_execute *execute = &op->dpif_op.u.execute;
3687
3688 init_flow_miss_execute_op(miss, packet, op);
3689 execute->actions = odp_actions.data;
3690 execute->actions_len = odp_actions.size;
3691 op->garbage = ofpbuf_get_uninit_pointer(&odp_actions);
3692
3693 (*n_ops)++;
3694 } else {
3695 ofpbuf_uninit(&odp_actions);
3696 }
abe529af 3697 }
9d6ac44e
BP
3698}
3699
3700/* Handles 'miss', which matches 'facet'. May add any required datapath
459b16a1
BP
3701 * operations to 'ops', incrementing '*n_ops' for each new op.
3702 *
3703 * All of the packets in 'miss' are considered to have arrived at time 'now'.
3704 * This is really important only for new facets: if we just called time_msec()
3705 * here, then the new subfacet or its packets could look (occasionally) as
3706 * though it was used some time after the facet was used. That can make a
3707 * one-packet flow look like it has a nonzero duration, which looks odd in
3708 * e.g. NetFlow statistics. */
9d6ac44e
BP
3709static void
3710handle_flow_miss_with_facet(struct flow_miss *miss, struct facet *facet,
459b16a1 3711 long long int now,
9d6ac44e
BP
3712 struct flow_miss_op *ops, size_t *n_ops)
3713{
6a7e895f
BP
3714 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
3715 enum subfacet_path want_path;
9d6ac44e
BP
3716 struct subfacet *subfacet;
3717 struct ofpbuf *packet;
abe529af 3718
a088a1ff 3719 subfacet = subfacet_create(facet, miss, now);
b0f7b9b5 3720
530a1d91 3721 LIST_FOR_EACH (packet, list_node, &miss->packets) {
5fe20d5d 3722 struct flow_miss_op *op = &ops[*n_ops];
67d91f78 3723 struct dpif_flow_stats stats;
5fe20d5d 3724 struct ofpbuf odp_actions;
67d91f78 3725
9d6ac44e 3726 handle_flow_miss_common(facet->rule, packet, &miss->flow);
501f8d1f 3727
5fe20d5d 3728 ofpbuf_use_stub(&odp_actions, op->stub, sizeof op->stub);
6a7e895f 3729 if (!subfacet->actions || subfacet->slow) {
5fe20d5d 3730 subfacet_make_actions(subfacet, packet, &odp_actions);
501f8d1f 3731 }
67d91f78 3732
459b16a1 3733 dpif_flow_stats_extract(&facet->flow, packet, now, &stats);
15baa734 3734 subfacet_update_stats(subfacet, &stats);
67d91f78 3735
9d6ac44e
BP
3736 if (subfacet->actions_len) {
3737 struct dpif_execute *execute = &op->dpif_op.u.execute;
8338659a 3738
9d6ac44e 3739 init_flow_miss_execute_op(miss, packet, op);
6a7e895f 3740 if (!subfacet->slow) {
9d6ac44e
BP
3741 execute->actions = subfacet->actions;
3742 execute->actions_len = subfacet->actions_len;
3743 ofpbuf_uninit(&odp_actions);
3744 } else {
3745 execute->actions = odp_actions.data;
3746 execute->actions_len = odp_actions.size;
3747 op->garbage = ofpbuf_get_uninit_pointer(&odp_actions);
3748 }
999fba59 3749
9d6ac44e 3750 (*n_ops)++;
5fe20d5d 3751 } else {
9d6ac44e 3752 ofpbuf_uninit(&odp_actions);
5fe20d5d 3753 }
501f8d1f
BP
3754 }
3755
6a7e895f
BP
3756 want_path = subfacet_want_path(subfacet->slow);
3757 if (miss->upcall_type == DPIF_UC_MISS || subfacet->path != want_path) {
501f8d1f 3758 struct flow_miss_op *op = &ops[(*n_ops)++];
c2b565b5 3759 struct dpif_flow_put *put = &op->dpif_op.u.flow_put;
501f8d1f 3760
c84451a6
EJ
3761 subfacet->path = want_path;
3762
5fe20d5d 3763 op->garbage = NULL;
c2b565b5 3764 op->dpif_op.type = DPIF_OP_FLOW_PUT;
501f8d1f
BP
3765 put->flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
3766 put->key = miss->key;
3767 put->key_len = miss->key_len;
6a7e895f
BP
3768 if (want_path == SF_FAST_PATH) {
3769 put->actions = subfacet->actions;
3770 put->actions_len = subfacet->actions_len;
3771 } else {
3772 compose_slow_path(ofproto, &facet->flow, subfacet->slow,
3773 op->stub, sizeof op->stub,
3774 &put->actions, &put->actions_len);
3775 }
501f8d1f
BP
3776 put->stats = NULL;
3777 }
3778}
3779
acf60855
JP
3780/* Handles flow miss 'miss'. May add any required datapath operations
3781 * to 'ops', incrementing '*n_ops' for each new op. */
9d6ac44e 3782static void
acf60855
JP
3783handle_flow_miss(struct flow_miss *miss, struct flow_miss_op *ops,
3784 size_t *n_ops)
9d6ac44e 3785{
acf60855 3786 struct ofproto_dpif *ofproto = miss->ofproto;
9d6ac44e 3787 struct facet *facet;
459b16a1 3788 long long int now;
9d6ac44e
BP
3789 uint32_t hash;
3790
3791 /* The caller must ensure that miss->hmap_node.hash contains
3792 * flow_hash(miss->flow, 0). */
3793 hash = miss->hmap_node.hash;
3794
3795 facet = facet_lookup_valid(ofproto, &miss->flow, hash);
3796 if (!facet) {
c57b2226
BP
3797 struct rule_dpif *rule = rule_dpif_lookup(ofproto, &miss->flow);
3798
3799 if (!flow_miss_should_make_facet(ofproto, miss, hash)) {
9d6ac44e
BP
3800 handle_flow_miss_without_facet(miss, rule, ops, n_ops);
3801 return;
3802 }
3803
3804 facet = facet_create(rule, &miss->flow, hash);
459b16a1
BP
3805 now = facet->used;
3806 } else {
3807 now = time_msec();
9d6ac44e 3808 }
459b16a1 3809 handle_flow_miss_with_facet(miss, facet, now, ops, n_ops);
9d6ac44e
BP
3810}
3811
8f73d537
EJ
3812static struct drop_key *
3813drop_key_lookup(const struct dpif_backer *backer, const struct nlattr *key,
3814 size_t key_len)
3815{
3816 struct drop_key *drop_key;
3817
3818 HMAP_FOR_EACH_WITH_HASH (drop_key, hmap_node, hash_bytes(key, key_len, 0),
3819 &backer->drop_keys) {
3820 if (drop_key->key_len == key_len
3821 && !memcmp(drop_key->key, key, key_len)) {
3822 return drop_key;
3823 }
3824 }
3825 return NULL;
3826}
3827
3828static void
3829drop_key_clear(struct dpif_backer *backer)
3830{
3831 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
3832 struct drop_key *drop_key, *next;
3833
3834 HMAP_FOR_EACH_SAFE (drop_key, next, hmap_node, &backer->drop_keys) {
3835 int error;
3836
3837 error = dpif_flow_del(backer->dpif, drop_key->key, drop_key->key_len,
3838 NULL);
3839 if (error && !VLOG_DROP_WARN(&rl)) {
3840 struct ds ds = DS_EMPTY_INITIALIZER;
3841 odp_flow_key_format(drop_key->key, drop_key->key_len, &ds);
3842 VLOG_WARN("Failed to delete drop key (%s) (%s)", strerror(error),
3843 ds_cstr(&ds));
3844 ds_destroy(&ds);
3845 }
3846
3847 hmap_remove(&backer->drop_keys, &drop_key->hmap_node);
3848 free(drop_key->key);
3849 free(drop_key);
3850 }
3851}
3852
e09ee259
EJ
3853/* Given a datpath, packet, and flow metadata ('backer', 'packet', and 'key'
3854 * respectively), populates 'flow' with the result of odp_flow_key_to_flow().
3855 * Optionally, if nonnull, populates 'fitnessp' with the fitness of 'flow' as
3856 * returned by odp_flow_key_to_flow(). Also, optionally populates 'ofproto'
3857 * with the ofproto_dpif, and 'odp_in_port' with the datapath in_port, that
3858 * 'packet' ingressed.
e2a6ca36 3859 *
e09ee259
EJ
3860 * If 'ofproto' is nonnull, requires 'flow''s in_port to exist. Otherwise sets
3861 * 'flow''s in_port to OFPP_NONE.
3862 *
3863 * This function does post-processing on data returned from
3864 * odp_flow_key_to_flow() to help make VLAN splinters transparent to the rest
3865 * of the upcall processing logic. In particular, if the extracted in_port is
3866 * a VLAN splinter port, it replaces flow->in_port by the "real" port, sets
3867 * flow->vlan_tci correctly for the VLAN of the VLAN splinter port, and pushes
3868 * a VLAN header onto 'packet' (if it is nonnull).
3869 *
c3f6c502
JP
3870 * Optionally, if 'initial_vals' is nonnull, sets 'initial_vals->vlan_tci'
3871 * to the VLAN TCI with which the packet was really received, that is, the
3872 * actual VLAN TCI extracted by odp_flow_key_to_flow(). (This differs from
3873 * the value returned in flow->vlan_tci only for packets received on
715b48aa 3874 * VLAN splinters.)
e09ee259 3875 *
b9ad7294
EJ
3876 * Similarly, this function also includes some logic to help with tunnels. It
3877 * may modify 'flow' as necessary to make the tunneling implementation
3878 * transparent to the upcall processing logic.
3879 *
e09ee259
EJ
3880 * Returns 0 if successful, ENODEV if the parsed flow has no associated ofport,
3881 * or some other positive errno if there are other problems. */
3882static int
3883ofproto_receive(const struct dpif_backer *backer, struct ofpbuf *packet,
3884 const struct nlattr *key, size_t key_len,
3885 struct flow *flow, enum odp_key_fitness *fitnessp,
3886 struct ofproto_dpif **ofproto, uint32_t *odp_in_port,
14f94f9a 3887 struct initial_vals *initial_vals)
e84173dc 3888{
e09ee259
EJ
3889 const struct ofport_dpif *port;
3890 enum odp_key_fitness fitness;
b9ad7294 3891 int error = ENODEV;
e09ee259
EJ
3892
3893 fitness = odp_flow_key_to_flow(key, key_len, flow);
e84173dc 3894 if (fitness == ODP_FIT_ERROR) {
e09ee259
EJ
3895 error = EINVAL;
3896 goto exit;
3897 }
3898
14f94f9a
JP
3899 if (initial_vals) {
3900 initial_vals->vlan_tci = flow->vlan_tci;
e84173dc 3901 }
e84173dc 3902
e09ee259
EJ
3903 if (odp_in_port) {
3904 *odp_in_port = flow->in_port;
3905 }
3906
3abe1835
BP
3907 port = (tnl_port_should_receive(flow)
3908 ? ofport_dpif_cast(tnl_port_receive(flow))
3909 : odp_port_to_ofport(backer, flow->in_port));
3910 flow->in_port = port ? port->up.ofp_port : OFPP_NONE;
3911 if (!port) {
3912 goto exit;
3913 }
3914
3915 /* XXX: Since the tunnel module is not scoped per backer, for a tunnel port
3916 * it's theoretically possible that we'll receive an ofport belonging to an
3917 * entirely different datapath. In practice, this can't happen because no
3918 * platforms has two separate datapaths which each support tunneling. */
3919 ovs_assert(ofproto_dpif_cast(port->up.ofproto)->backer == backer);
3920
3921 if (vsp_adjust_flow(ofproto_dpif_cast(port->up.ofproto), flow)) {
3922 if (packet) {
3923 /* Make the packet resemble the flow, so that it gets sent to
3924 * an OpenFlow controller properly, so that it looks correct
3925 * for sFlow, and so that flow_extract() will get the correct
3926 * vlan_tci if it is called on 'packet'.
3927 *
3928 * The allocated space inside 'packet' probably also contains
3929 * 'key', that is, both 'packet' and 'key' are probably part of
3930 * a struct dpif_upcall (see the large comment on that
3931 * structure definition), so pushing data on 'packet' is in
3932 * general not a good idea since it could overwrite 'key' or
3933 * free it as a side effect. However, it's OK in this special
3934 * case because we know that 'packet' is inside a Netlink
3935 * attribute: pushing 4 bytes will just overwrite the 4-byte
3936 * "struct nlattr", which is fine since we don't need that
3937 * header anymore. */
3938 eth_push_vlan(packet, flow->vlan_tci);
3939 }
3940 /* We can't reproduce 'key' from 'flow'. */
3941 fitness = fitness == ODP_FIT_PERFECT ? ODP_FIT_TOO_MUCH : fitness;
52a90c29 3942 }
e09ee259 3943 error = 0;
52a90c29 3944
b9ad7294
EJ
3945 if (ofproto) {
3946 *ofproto = ofproto_dpif_cast(port->up.ofproto);
3947 }
3948
e09ee259
EJ
3949exit:
3950 if (fitnessp) {
3951 *fitnessp = fitness;
3952 }
3953 return error;
e84173dc
BP
3954}
3955
501f8d1f 3956static void
acf60855 3957handle_miss_upcalls(struct dpif_backer *backer, struct dpif_upcall *upcalls,
501f8d1f
BP
3958 size_t n_upcalls)
3959{
3960 struct dpif_upcall *upcall;
b23cdad9
BP
3961 struct flow_miss *miss;
3962 struct flow_miss misses[FLOW_MISS_MAX_BATCH];
501f8d1f 3963 struct flow_miss_op flow_miss_ops[FLOW_MISS_MAX_BATCH * 2];
c2b565b5 3964 struct dpif_op *dpif_ops[FLOW_MISS_MAX_BATCH * 2];
501f8d1f 3965 struct hmap todo;
b23cdad9 3966 int n_misses;
501f8d1f
BP
3967 size_t n_ops;
3968 size_t i;
3969
3970 if (!n_upcalls) {
3971 return;
3972 }
3973
3974 /* Construct the to-do list.
3975 *
3976 * This just amounts to extracting the flow from each packet and sticking
3977 * the packets that have the same flow in the same "flow_miss" structure so
3978 * that we can process them together. */
3979 hmap_init(&todo);
b23cdad9 3980 n_misses = 0;
501f8d1f 3981 for (upcall = upcalls; upcall < &upcalls[n_upcalls]; upcall++) {
b23cdad9
BP
3982 struct flow_miss *miss = &misses[n_misses];
3983 struct flow_miss *existing_miss;
acf60855 3984 struct ofproto_dpif *ofproto;
a088a1ff 3985 uint32_t odp_in_port;
1d446463 3986 struct flow flow;
b23cdad9 3987 uint32_t hash;
e09ee259 3988 int error;
501f8d1f 3989
e09ee259
EJ
3990 error = ofproto_receive(backer, upcall->packet, upcall->key,
3991 upcall->key_len, &flow, &miss->key_fitness,
14f94f9a 3992 &ofproto, &odp_in_port, &miss->initial_vals);
e09ee259 3993 if (error == ENODEV) {
8f73d537
EJ
3994 struct drop_key *drop_key;
3995
acf60855
JP
3996 /* Received packet on port for which we couldn't associate
3997 * an ofproto. This can happen if a port is removed while
3998 * traffic is being received. Print a rate-limited message
8f73d537
EJ
3999 * in case it happens frequently. Install a drop flow so
4000 * that future packets of the flow are inexpensively dropped
4001 * in the kernel. */
acf60855
JP
4002 VLOG_INFO_RL(&rl, "received packet on unassociated port %"PRIu32,
4003 flow.in_port);
8f73d537
EJ
4004
4005 drop_key = drop_key_lookup(backer, upcall->key, upcall->key_len);
4006 if (!drop_key) {
4007 drop_key = xmalloc(sizeof *drop_key);
4008 drop_key->key = xmemdup(upcall->key, upcall->key_len);
4009 drop_key->key_len = upcall->key_len;
4010
4011 hmap_insert(&backer->drop_keys, &drop_key->hmap_node,
4012 hash_bytes(drop_key->key, drop_key->key_len, 0));
4013 dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
4014 drop_key->key, drop_key->key_len, NULL, 0, NULL);
4015 }
4016 continue;
acf60855 4017 }
e09ee259 4018 if (error) {
b0f7b9b5
BP
4019 continue;
4020 }
735d7efb
AZ
4021
4022 ofproto->n_missed++;
72e8bf28 4023 flow_extract(upcall->packet, flow.skb_priority, flow.skb_mark,
1d446463 4024 &flow.tunnel, flow.in_port, &miss->flow);
501f8d1f 4025
501f8d1f 4026 /* Add other packets to a to-do list. */
b23cdad9 4027 hash = flow_hash(&miss->flow, 0);
ddbc5954 4028 existing_miss = flow_miss_find(&todo, ofproto, &miss->flow, hash);
b23cdad9
BP
4029 if (!existing_miss) {
4030 hmap_insert(&todo, &miss->hmap_node, hash);
acf60855 4031 miss->ofproto = ofproto;
b23cdad9
BP
4032 miss->key = upcall->key;
4033 miss->key_len = upcall->key_len;
6a7e895f 4034 miss->upcall_type = upcall->type;
a088a1ff 4035 miss->odp_in_port = odp_in_port;
b23cdad9
BP
4036 list_init(&miss->packets);
4037
4038 n_misses++;
4039 } else {
4040 miss = existing_miss;
4041 }
501f8d1f
BP
4042 list_push_back(&miss->packets, &upcall->packet->list_node);
4043 }
4044
4045 /* Process each element in the to-do list, constructing the set of
4046 * operations to batch. */
4047 n_ops = 0;
33bb0caa 4048 HMAP_FOR_EACH (miss, hmap_node, &todo) {
acf60855 4049 handle_flow_miss(miss, flow_miss_ops, &n_ops);
abe529af 4050 }
cb22974d 4051 ovs_assert(n_ops <= ARRAY_SIZE(flow_miss_ops));
501f8d1f
BP
4052
4053 /* Execute batch. */
4054 for (i = 0; i < n_ops; i++) {
4055 dpif_ops[i] = &flow_miss_ops[i].dpif_op;
4056 }
acf60855 4057 dpif_operate(backer->dpif, dpif_ops, n_ops);
501f8d1f 4058
c84451a6 4059 /* Free memory. */
501f8d1f 4060 for (i = 0; i < n_ops; i++) {
c84451a6 4061 free(flow_miss_ops[i].garbage);
501f8d1f 4062 }
33bb0caa 4063 hmap_destroy(&todo);
abe529af
BP
4064}
4065
29089a54
RL
4066static enum { SFLOW_UPCALL, MISS_UPCALL, BAD_UPCALL, FLOW_SAMPLE_UPCALL,
4067 IPFIX_UPCALL }
6a7e895f
BP
4068classify_upcall(const struct dpif_upcall *upcall)
4069{
29089a54 4070 size_t userdata_len;
6a7e895f
BP
4071 union user_action_cookie cookie;
4072
4073 /* First look at the upcall type. */
4074 switch (upcall->type) {
4075 case DPIF_UC_ACTION:
4076 break;
4077
4078 case DPIF_UC_MISS:
4079 return MISS_UPCALL;
4080
4081 case DPIF_N_UC_TYPES:
4082 default:
4083 VLOG_WARN_RL(&rl, "upcall has unexpected type %"PRIu32, upcall->type);
4084 return BAD_UPCALL;
4085 }
4086
4087 /* "action" upcalls need a closer look. */
e995e3df
BP
4088 if (!upcall->userdata) {
4089 VLOG_WARN_RL(&rl, "action upcall missing cookie");
4090 return BAD_UPCALL;
4091 }
29089a54
RL
4092 userdata_len = nl_attr_get_size(upcall->userdata);
4093 if (userdata_len < sizeof cookie.type
4094 || userdata_len > sizeof cookie) {
e995e3df 4095 VLOG_WARN_RL(&rl, "action upcall cookie has unexpected size %zu",
29089a54 4096 userdata_len);
e995e3df
BP
4097 return BAD_UPCALL;
4098 }
29089a54
RL
4099 memset(&cookie, 0, sizeof cookie);
4100 memcpy(&cookie, nl_attr_get(upcall->userdata), userdata_len);
4101 if (userdata_len == sizeof cookie.sflow
4102 && cookie.type == USER_ACTION_COOKIE_SFLOW) {
6a7e895f 4103 return SFLOW_UPCALL;
29089a54
RL
4104 } else if (userdata_len == sizeof cookie.slow_path
4105 && cookie.type == USER_ACTION_COOKIE_SLOW_PATH) {
6a7e895f 4106 return MISS_UPCALL;
29089a54
RL
4107 } else if (userdata_len == sizeof cookie.flow_sample
4108 && cookie.type == USER_ACTION_COOKIE_FLOW_SAMPLE) {
4109 return FLOW_SAMPLE_UPCALL;
4110 } else if (userdata_len == sizeof cookie.ipfix
4111 && cookie.type == USER_ACTION_COOKIE_IPFIX) {
4112 return IPFIX_UPCALL;
4113 } else {
4114 VLOG_WARN_RL(&rl, "invalid user cookie of type %"PRIu16
4115 " and size %zu", cookie.type, userdata_len);
6a7e895f
BP
4116 return BAD_UPCALL;
4117 }
4118}
4119
abe529af 4120static void
acf60855 4121handle_sflow_upcall(struct dpif_backer *backer,
6a7e895f 4122 const struct dpif_upcall *upcall)
abe529af 4123{
acf60855 4124 struct ofproto_dpif *ofproto;
1673e0e4 4125 union user_action_cookie cookie;
e84173dc 4126 struct flow flow;
e1b1d06a 4127 uint32_t odp_in_port;
abe529af 4128
e09ee259
EJ
4129 if (ofproto_receive(backer, upcall->packet, upcall->key, upcall->key_len,
4130 &flow, NULL, &ofproto, &odp_in_port, NULL)
4131 || !ofproto->sflow) {
e84173dc
BP
4132 return;
4133 }
4134
29089a54
RL
4135 memset(&cookie, 0, sizeof cookie);
4136 memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.sflow);
e1b1d06a
JP
4137 dpif_sflow_received(ofproto->sflow, upcall->packet, &flow,
4138 odp_in_port, &cookie);
6ff686f2
PS
4139}
4140
29089a54
RL
4141static void
4142handle_flow_sample_upcall(struct dpif_backer *backer,
4143 const struct dpif_upcall *upcall)
4144{
4145 struct ofproto_dpif *ofproto;
4146 union user_action_cookie cookie;
4147 struct flow flow;
4148
4149 if (ofproto_receive(backer, upcall->packet, upcall->key, upcall->key_len,
4150 &flow, NULL, &ofproto, NULL, NULL)
4151 || !ofproto->ipfix) {
4152 return;
4153 }
4154
4155 memset(&cookie, 0, sizeof cookie);
4156 memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.flow_sample);
4157
4158 /* The flow reflects exactly the contents of the packet. Sample
4159 * the packet using it. */
4160 dpif_ipfix_flow_sample(ofproto->ipfix, upcall->packet, &flow,
4161 cookie.flow_sample.collector_set_id,
4162 cookie.flow_sample.probability,
4163 cookie.flow_sample.obs_domain_id,
4164 cookie.flow_sample.obs_point_id);
4165}
4166
4167static void
4168handle_ipfix_upcall(struct dpif_backer *backer,
4169 const struct dpif_upcall *upcall)
4170{
4171 struct ofproto_dpif *ofproto;
4172 struct flow flow;
4173
4174 if (ofproto_receive(backer, upcall->packet, upcall->key, upcall->key_len,
4175 &flow, NULL, &ofproto, NULL, NULL)
4176 || !ofproto->ipfix) {
4177 return;
4178 }
4179
4180 /* The flow reflects exactly the contents of the packet. Sample
4181 * the packet using it. */
4182 dpif_ipfix_bridge_sample(ofproto->ipfix, upcall->packet, &flow);
4183}
4184
9b16c439 4185static int
acf60855 4186handle_upcalls(struct dpif_backer *backer, unsigned int max_batch)
6ff686f2 4187{
9b16c439 4188 struct dpif_upcall misses[FLOW_MISS_MAX_BATCH];
90a7c55e
BP
4189 struct ofpbuf miss_bufs[FLOW_MISS_MAX_BATCH];
4190 uint64_t miss_buf_stubs[FLOW_MISS_MAX_BATCH][4096 / 8];
4191 int n_processed;
9b16c439
BP
4192 int n_misses;
4193 int i;
abe529af 4194
cb22974d 4195 ovs_assert(max_batch <= FLOW_MISS_MAX_BATCH);
abe529af 4196
9b16c439 4197 n_misses = 0;
90a7c55e 4198 for (n_processed = 0; n_processed < max_batch; n_processed++) {
9b16c439 4199 struct dpif_upcall *upcall = &misses[n_misses];
90a7c55e 4200 struct ofpbuf *buf = &miss_bufs[n_misses];
9b16c439
BP
4201 int error;
4202
90a7c55e
BP
4203 ofpbuf_use_stub(buf, miss_buf_stubs[n_misses],
4204 sizeof miss_buf_stubs[n_misses]);
acf60855 4205 error = dpif_recv(backer->dpif, upcall, buf);
9b16c439 4206 if (error) {
90a7c55e 4207 ofpbuf_uninit(buf);
9b16c439
BP
4208 break;
4209 }
4210
6a7e895f
BP
4211 switch (classify_upcall(upcall)) {
4212 case MISS_UPCALL:
9b16c439
BP
4213 /* Handle it later. */
4214 n_misses++;
4215 break;
4216
6a7e895f 4217 case SFLOW_UPCALL:
acf60855 4218 handle_sflow_upcall(backer, upcall);
6a7e895f
BP
4219 ofpbuf_uninit(buf);
4220 break;
4221
29089a54
RL
4222 case FLOW_SAMPLE_UPCALL:
4223 handle_flow_sample_upcall(backer, upcall);
4224 ofpbuf_uninit(buf);
4225 break;
4226
4227 case IPFIX_UPCALL:
4228 handle_ipfix_upcall(backer, upcall);
4229 ofpbuf_uninit(buf);
4230 break;
4231
6a7e895f
BP
4232 case BAD_UPCALL:
4233 ofpbuf_uninit(buf);
9b16c439
BP
4234 break;
4235 }
abe529af 4236 }
9b16c439 4237
6a7e895f 4238 /* Handle deferred MISS_UPCALL processing. */
acf60855 4239 handle_miss_upcalls(backer, misses, n_misses);
90a7c55e
BP
4240 for (i = 0; i < n_misses; i++) {
4241 ofpbuf_uninit(&miss_bufs[i]);
4242 }
9b16c439 4243
90a7c55e 4244 return n_processed;
abe529af
BP
4245}
4246\f
4247/* Flow expiration. */
4248
b0f7b9b5 4249static int subfacet_max_idle(const struct ofproto_dpif *);
acf60855 4250static void update_stats(struct dpif_backer *);
abe529af 4251static void rule_expire(struct rule_dpif *);
b0f7b9b5 4252static void expire_subfacets(struct ofproto_dpif *, int dp_max_idle);
abe529af
BP
4253
4254/* This function is called periodically by run(). Its job is to collect
4255 * updates for the flows that have been installed into the datapath, most
4256 * importantly when they last were used, and then use that information to
4257 * expire flows that have not been used recently.
4258 *
4259 * Returns the number of milliseconds after which it should be called again. */
4260static int
acf60855 4261expire(struct dpif_backer *backer)
abe529af 4262{
acf60855
JP
4263 struct ofproto_dpif *ofproto;
4264 int max_idle = INT32_MAX;
abe529af 4265
8f73d537
EJ
4266 /* Periodically clear out the drop keys in an effort to keep them
4267 * relatively few. */
4268 drop_key_clear(backer);
4269
acf60855
JP
4270 /* Update stats for each flow in the backer. */
4271 update_stats(backer);
abe529af 4272
acf60855 4273 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
e503cc19 4274 struct rule *rule, *next_rule;
acf60855 4275 int dp_max_idle;
abe529af 4276
acf60855
JP
4277 if (ofproto->backer != backer) {
4278 continue;
4279 }
0697b5c3 4280
655ab909
AZ
4281 /* Keep track of the max number of flows per ofproto_dpif. */
4282 update_max_subfacet_count(ofproto);
4283
acf60855
JP
4284 /* Expire subfacets that have been idle too long. */
4285 dp_max_idle = subfacet_max_idle(ofproto);
4286 expire_subfacets(ofproto, dp_max_idle);
4287
4288 max_idle = MIN(max_idle, dp_max_idle);
4289
4290 /* Expire OpenFlow flows whose idle_timeout or hard_timeout
4291 * has passed. */
e503cc19
SH
4292 LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
4293 &ofproto->up.expirable) {
4294 rule_expire(rule_dpif_cast(rule));
0697b5c3 4295 }
abe529af 4296
acf60855
JP
4297 /* All outstanding data in existing flows has been accounted, so it's a
4298 * good time to do bond rebalancing. */
4299 if (ofproto->has_bonded_bundles) {
4300 struct ofbundle *bundle;
abe529af 4301
acf60855
JP
4302 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
4303 if (bundle->bond) {
2cc3c58e 4304 bond_rebalance(bundle->bond, &backer->revalidate_set);
acf60855 4305 }
abe529af
BP
4306 }
4307 }
4308 }
4309
acf60855 4310 return MIN(max_idle, 1000);
abe529af
BP
4311}
4312
a218c879
BP
4313/* Updates flow table statistics given that the datapath just reported 'stats'
4314 * as 'subfacet''s statistics. */
4315static void
4316update_subfacet_stats(struct subfacet *subfacet,
4317 const struct dpif_flow_stats *stats)
4318{
4319 struct facet *facet = subfacet->facet;
4320
4321 if (stats->n_packets >= subfacet->dp_packet_count) {
4322 uint64_t extra = stats->n_packets - subfacet->dp_packet_count;
4323 facet->packet_count += extra;
4324 } else {
4325 VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
4326 }
4327
4328 if (stats->n_bytes >= subfacet->dp_byte_count) {
4329 facet->byte_count += stats->n_bytes - subfacet->dp_byte_count;
4330 } else {
4331 VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
4332 }
4333
4334 subfacet->dp_packet_count = stats->n_packets;
4335 subfacet->dp_byte_count = stats->n_bytes;
4336
4337 facet->tcp_flags |= stats->tcp_flags;
4338
4339 subfacet_update_time(subfacet, stats->used);
4340 if (facet->accounted_bytes < facet->byte_count) {
4341 facet_learn(facet);
4342 facet_account(facet);
4343 facet->accounted_bytes = facet->byte_count;
4344 }
a218c879
BP
4345}
4346
4347/* 'key' with length 'key_len' bytes is a flow in 'dpif' that we know nothing
4348 * about, or a flow that shouldn't be installed but was anyway. Delete it. */
4349static void
acf60855 4350delete_unexpected_flow(struct ofproto_dpif *ofproto,
a218c879
BP
4351 const struct nlattr *key, size_t key_len)
4352{
4353 if (!VLOG_DROP_WARN(&rl)) {
4354 struct ds s;
4355
4356 ds_init(&s);
4357 odp_flow_key_format(key, key_len, &s);
acf60855 4358 VLOG_WARN("unexpected flow on %s: %s", ofproto->up.name, ds_cstr(&s));
a218c879
BP
4359 ds_destroy(&s);
4360 }
4361
4362 COVERAGE_INC(facet_unexpected);
acf60855 4363 dpif_flow_del(ofproto->backer->dpif, key, key_len, NULL);
a218c879
BP
4364}
4365
abe529af
BP
4366/* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
4367 *
4368 * This function also pushes statistics updates to rules which each facet
4369 * resubmits into. Generally these statistics will be accurate. However, if a
4370 * facet changes the rule it resubmits into at some time in between
4371 * update_stats() runs, it is possible that statistics accrued to the
4372 * old rule will be incorrectly attributed to the new rule. This could be
4373 * avoided by calling update_stats() whenever rules are created or
4374 * deleted. However, the performance impact of making so many calls to the
4375 * datapath do not justify the benefit of having perfectly accurate statistics.
735d7efb
AZ
4376 *
4377 * In addition, this function maintains per ofproto flow hit counts. The patch
4378 * port is not treated specially. e.g. A packet ingress from br0 patched into
4379 * br1 will increase the hit count of br0 by 1, however, does not affect
4380 * the hit or miss counts of br1.
abe529af
BP
4381 */
4382static void
acf60855 4383update_stats(struct dpif_backer *backer)
abe529af
BP
4384{
4385 const struct dpif_flow_stats *stats;
4386 struct dpif_flow_dump dump;
4387 const struct nlattr *key;
3af56aef 4388 struct ofproto_dpif *ofproto;
abe529af
BP
4389 size_t key_len;
4390
acf60855 4391 dpif_flow_dump_start(&dump, backer->dpif);
abe529af 4392 while (dpif_flow_dump_next(&dump, &key, &key_len, NULL, NULL, &stats)) {
acf60855 4393 struct flow flow;
b0f7b9b5 4394 struct subfacet *subfacet;
b9ad7294 4395 struct ofport_dpif *ofport;
acf60855 4396 uint32_t key_hash;
abe529af 4397
58c6adda
EJ
4398 if (ofproto_receive(backer, NULL, key, key_len, &flow, NULL, &ofproto,
4399 NULL, NULL)) {
acf60855
JP
4400 continue;
4401 }
4402
655ab909
AZ
4403 ofproto->total_subfacet_count += hmap_count(&ofproto->subfacets);
4404 ofproto->n_update_stats++;
655ab909 4405
b9ad7294
EJ
4406 ofport = get_ofp_port(ofproto, flow.in_port);
4407 if (ofport && ofport->tnl_port) {
4408 netdev_vport_inc_rx(ofport->up.netdev, stats);
4409 }
4410
acf60855 4411 key_hash = odp_flow_key_hash(key, key_len);
9566abf9 4412 subfacet = subfacet_find(ofproto, key, key_len, key_hash);
6a7e895f
BP
4413 switch (subfacet ? subfacet->path : SF_NOT_INSTALLED) {
4414 case SF_FAST_PATH:
735d7efb
AZ
4415 /* Update ofproto_dpif's hit count. */
4416 if (stats->n_packets > subfacet->dp_packet_count) {
4417 uint64_t delta = stats->n_packets - subfacet->dp_packet_count;
4418 dpif_stats_update_hit_count(ofproto, delta);
4419 }
4420
a218c879 4421 update_subfacet_stats(subfacet, stats);
6a7e895f
BP
4422 break;
4423
4424 case SF_SLOW_PATH:
4425 /* Stats are updated per-packet. */
4426 break;
4427
4428 case SF_NOT_INSTALLED:
4429 default:
acf60855 4430 delete_unexpected_flow(ofproto, key, key_len);
6a7e895f 4431 break;
abe529af 4432 }
8fa4d1d0 4433 run_fast_rl();
abe529af
BP
4434 }
4435 dpif_flow_dump_done(&dump);
3af56aef
AZ
4436
4437 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4438 update_moving_averages(ofproto);
4439 }
4440
abe529af
BP
4441}
4442
4443/* Calculates and returns the number of milliseconds of idle time after which
b0f7b9b5
BP
4444 * subfacets should expire from the datapath. When a subfacet expires, we fold
4445 * its statistics into its facet, and when a facet's last subfacet expires, we
4446 * fold its statistic into its rule. */
abe529af 4447static int
b0f7b9b5 4448subfacet_max_idle(const struct ofproto_dpif *ofproto)
abe529af
BP
4449{
4450 /*
4451 * Idle time histogram.
4452 *
b0f7b9b5
BP
4453 * Most of the time a switch has a relatively small number of subfacets.
4454 * When this is the case we might as well keep statistics for all of them
4455 * in userspace and to cache them in the kernel datapath for performance as
abe529af
BP
4456 * well.
4457 *
b0f7b9b5 4458 * As the number of subfacets increases, the memory required to maintain
abe529af 4459 * statistics about them in userspace and in the kernel becomes
b0f7b9b5
BP
4460 * significant. However, with a large number of subfacets it is likely
4461 * that only a few of them are "heavy hitters" that consume a large amount
4462 * of bandwidth. At this point, only heavy hitters are worth caching in
4463 * the kernel and maintaining in userspaces; other subfacets we can
4464 * discard.
abe529af
BP
4465 *
4466 * The technique used to compute the idle time is to build a histogram with
b0f7b9b5 4467 * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each. Each subfacet
abe529af
BP
4468 * that is installed in the kernel gets dropped in the appropriate bucket.
4469 * After the histogram has been built, we compute the cutoff so that only
b0f7b9b5 4470 * the most-recently-used 1% of subfacets (but at least
084f5290 4471 * ofproto->up.flow_eviction_threshold flows) are kept cached. At least
b0f7b9b5
BP
4472 * the most-recently-used bucket of subfacets is kept, so actually an
4473 * arbitrary number of subfacets can be kept in any given expiration run
084f5290
SH
4474 * (though the next run will delete most of those unless they receive
4475 * additional data).
abe529af 4476 *
b0f7b9b5
BP
4477 * This requires a second pass through the subfacets, in addition to the
4478 * pass made by update_stats(), because the former function never looks at
4479 * uninstallable subfacets.
abe529af
BP
4480 */
4481 enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
4482 enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
4483 int buckets[N_BUCKETS] = { 0 };
f11c1ef4 4484 int total, subtotal, bucket;
b0f7b9b5 4485 struct subfacet *subfacet;
abe529af
BP
4486 long long int now;
4487 int i;
4488
b0f7b9b5 4489 total = hmap_count(&ofproto->subfacets);
084f5290 4490 if (total <= ofproto->up.flow_eviction_threshold) {
abe529af
BP
4491 return N_BUCKETS * BUCKET_WIDTH;
4492 }
4493
4494 /* Build histogram. */
4495 now = time_msec();
b0f7b9b5
BP
4496 HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->subfacets) {
4497 long long int idle = now - subfacet->used;
abe529af
BP
4498 int bucket = (idle <= 0 ? 0
4499 : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
4500 : (unsigned int) idle / BUCKET_WIDTH);
4501 buckets[bucket]++;
4502 }
4503
4504 /* Find the first bucket whose flows should be expired. */
f11c1ef4
SH
4505 subtotal = bucket = 0;
4506 do {
4507 subtotal += buckets[bucket++];
084f5290
SH
4508 } while (bucket < N_BUCKETS &&
4509 subtotal < MAX(ofproto->up.flow_eviction_threshold, total / 100));
abe529af
BP
4510
4511 if (VLOG_IS_DBG_ENABLED()) {
4512 struct ds s;
4513
4514 ds_init(&s);
4515 ds_put_cstr(&s, "keep");
4516 for (i = 0; i < N_BUCKETS; i++) {
4517 if (i == bucket) {
4518 ds_put_cstr(&s, ", drop");
4519 }
4520 if (buckets[i]) {
4521 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
4522 }
4523 }
4524 VLOG_INFO("%s: %s (msec:count)", ofproto->up.name, ds_cstr(&s));
4525 ds_destroy(&s);
4526 }
4527
4528 return bucket * BUCKET_WIDTH;
4529}
4530
abe529af 4531static void
b0f7b9b5 4532expire_subfacets(struct ofproto_dpif *ofproto, int dp_max_idle)
abe529af 4533{
625b0720
BP
4534 /* Cutoff time for most flows. */
4535 long long int normal_cutoff = time_msec() - dp_max_idle;
4536
4537 /* We really want to keep flows for special protocols around, so use a more
4538 * conservative cutoff. */
4539 long long int special_cutoff = time_msec() - 10000;
b99d3cee 4540
b0f7b9b5 4541 struct subfacet *subfacet, *next_subfacet;
1d85f9e5 4542 struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
b99d3cee 4543 int n_batch;
abe529af 4544
b99d3cee 4545 n_batch = 0;
b0f7b9b5
BP
4546 HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
4547 &ofproto->subfacets) {
625b0720
BP
4548 long long int cutoff;
4549
ccc09689 4550 cutoff = (subfacet->slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)
625b0720
BP
4551 ? special_cutoff
4552 : normal_cutoff);
b0f7b9b5 4553 if (subfacet->used < cutoff) {
6a7e895f 4554 if (subfacet->path != SF_NOT_INSTALLED) {
b99d3cee 4555 batch[n_batch++] = subfacet;
1d85f9e5
JP
4556 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
4557 subfacet_destroy_batch(ofproto, batch, n_batch);
b99d3cee
BP
4558 n_batch = 0;
4559 }
4560 } else {
4561 subfacet_destroy(subfacet);
4562 }
abe529af
BP
4563 }
4564 }
b99d3cee
BP
4565
4566 if (n_batch > 0) {
1d85f9e5 4567 subfacet_destroy_batch(ofproto, batch, n_batch);
b99d3cee 4568 }
abe529af
BP
4569}
4570
4571/* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
4572 * then delete it entirely. */
4573static void
4574rule_expire(struct rule_dpif *rule)
4575{
abe529af
BP
4576 struct facet *facet, *next_facet;
4577 long long int now;
4578 uint8_t reason;
4579
e2a3d183
BP
4580 if (rule->up.pending) {
4581 /* We'll have to expire it later. */
4582 return;
4583 }
4584
abe529af
BP
4585 /* Has 'rule' expired? */
4586 now = time_msec();
4587 if (rule->up.hard_timeout
308881af 4588 && now > rule->up.modified + rule->up.hard_timeout * 1000) {
abe529af 4589 reason = OFPRR_HARD_TIMEOUT;
8ea6ac3e 4590 } else if (rule->up.idle_timeout
1745cd08 4591 && now > rule->up.used + rule->up.idle_timeout * 1000) {
abe529af
BP
4592 reason = OFPRR_IDLE_TIMEOUT;
4593 } else {
4594 return;
4595 }
4596
4597 COVERAGE_INC(ofproto_dpif_expired);
4598
4599 /* Update stats. (This is a no-op if the rule expired due to an idle
4600 * timeout, because that only happens when the rule has no facets left.) */
4601 LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
15baa734 4602 facet_remove(facet);
abe529af
BP
4603 }
4604
4605 /* Get rid of the rule. */
4606 ofproto_rule_expire(&rule->up, reason);
4607}
4608\f
4609/* Facets. */
4610
f3827897 4611/* Creates and returns a new facet owned by 'rule', given a 'flow'.
abe529af
BP
4612 *
4613 * The caller must already have determined that no facet with an identical
4614 * 'flow' exists in 'ofproto' and that 'flow' is the best match for 'rule' in
f3827897
BP
4615 * the ofproto's classifier table.
4616 *
2b459b83
BP
4617 * 'hash' must be the return value of flow_hash(flow, 0).
4618 *
b0f7b9b5
BP
4619 * The facet will initially have no subfacets. The caller should create (at
4620 * least) one subfacet with subfacet_create(). */
abe529af 4621static struct facet *
2b459b83 4622facet_create(struct rule_dpif *rule, const struct flow *flow, uint32_t hash)
abe529af
BP
4623{
4624 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4625 struct facet *facet;
4626
4627 facet = xzalloc(sizeof *facet);
4628 facet->used = time_msec();
2b459b83 4629 hmap_insert(&ofproto->facets, &facet->hmap_node, hash);
abe529af
BP
4630 list_push_back(&rule->facets, &facet->list_node);
4631 facet->rule = rule;
4632 facet->flow = *flow;
b0f7b9b5 4633 list_init(&facet->subfacets);
abe529af
BP
4634 netflow_flow_init(&facet->nf_flow);
4635 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
4636
6cf474d7
EJ
4637 facet->learn_rl = time_msec() + 500;
4638
abe529af
BP
4639 return facet;
4640}
4641
4642static void
4643facet_free(struct facet *facet)
4644{
abe529af
BP
4645 free(facet);
4646}
4647
3d9e05f8 4648/* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
0a740f48 4649 * 'packet', which arrived on 'in_port'. */
3d9e05f8
BP
4650static bool
4651execute_odp_actions(struct ofproto_dpif *ofproto, const struct flow *flow,
4652 const struct nlattr *odp_actions, size_t actions_len,
4653 struct ofpbuf *packet)
4654{
4655 struct odputil_keybuf keybuf;
4656 struct ofpbuf key;
4657 int error;
4658
6ff686f2 4659 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
e1b1d06a
JP
4660 odp_flow_key_from_flow(&key, flow,
4661 ofp_port_to_odp_port(ofproto, flow->in_port));
80e5eed9 4662
acf60855 4663 error = dpif_execute(ofproto->backer->dpif, key.data, key.size,
6ff686f2 4664 odp_actions, actions_len, packet);
6ff686f2 4665 return !error;
abe529af
BP
4666}
4667
abe529af
BP
4668/* Remove 'facet' from 'ofproto' and free up the associated memory:
4669 *
4670 * - If 'facet' was installed in the datapath, uninstalls it and updates its
b0f7b9b5 4671 * rule's statistics, via subfacet_uninstall().
abe529af
BP
4672 *
4673 * - Removes 'facet' from its rule and from ofproto->facets.
4674 */
4675static void
15baa734 4676facet_remove(struct facet *facet)
abe529af 4677{
15baa734 4678 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
b0f7b9b5
BP
4679 struct subfacet *subfacet, *next_subfacet;
4680
cb22974d 4681 ovs_assert(!list_is_empty(&facet->subfacets));
551a2f6c
BP
4682
4683 /* First uninstall all of the subfacets to get final statistics. */
4684 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
15baa734 4685 subfacet_uninstall(subfacet);
551a2f6c
BP
4686 }
4687
4688 /* Flush the final stats to the rule.
4689 *
4690 * This might require us to have at least one subfacet around so that we
4691 * can use its actions for accounting in facet_account(), which is why we
4692 * have uninstalled but not yet destroyed the subfacets. */
15baa734 4693 facet_flush_stats(facet);
551a2f6c
BP
4694
4695 /* Now we're really all done so destroy everything. */
b0f7b9b5
BP
4696 LIST_FOR_EACH_SAFE (subfacet, next_subfacet, list_node,
4697 &facet->subfacets) {
15baa734 4698 subfacet_destroy__(subfacet);
b0f7b9b5 4699 }
abe529af
BP
4700 hmap_remove(&ofproto->facets, &facet->hmap_node);
4701 list_remove(&facet->list_node);
4702 facet_free(facet);
4703}
4704
3de9590b
BP
4705/* Feed information from 'facet' back into the learning table to keep it in
4706 * sync with what is actually flowing through the datapath. */
abe529af 4707static void
3de9590b 4708facet_learn(struct facet *facet)
abe529af 4709{
15baa734 4710 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
14f94f9a
JP
4711 struct subfacet *subfacet= CONTAINER_OF(list_front(&facet->subfacets),
4712 struct subfacet, list_node);
62bd7349 4713 long long int now = time_msec();
3de9590b 4714 struct action_xlate_ctx ctx;
abe529af 4715
62bd7349 4716 if (!facet->has_fin_timeout && now < facet->learn_rl) {
6cf474d7
EJ
4717 return;
4718 }
4719
62bd7349 4720 facet->learn_rl = now + 500;
6cf474d7 4721
3de9590b
BP
4722 if (!facet->has_learn
4723 && !facet->has_normal
4724 && (!facet->has_fin_timeout
4725 || !(facet->tcp_flags & (TCP_FIN | TCP_RST)))) {
abe529af
BP
4726 return;
4727 }
abe529af 4728
3de9590b 4729 action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
14f94f9a 4730 &subfacet->initial_vals,
3de9590b
BP
4731 facet->rule, facet->tcp_flags, NULL);
4732 ctx.may_learn = true;
f25d0cf3
BP
4733 xlate_actions_for_side_effects(&ctx, facet->rule->up.ofpacts,
4734 facet->rule->up.ofpacts_len);
3de9590b
BP
4735}
4736
4737static void
4738facet_account(struct facet *facet)
4739{
4740 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
1a1e3a0a 4741 struct subfacet *subfacet = facet_get_subfacet(facet);
3de9590b
BP
4742 const struct nlattr *a;
4743 unsigned int left;
4744 ovs_be16 vlan_tci;
4745 uint64_t n_bytes;
abe529af 4746
75a75043 4747 if (!facet->has_normal || !ofproto->has_bonded_bundles) {
abe529af
BP
4748 return;
4749 }
3de9590b 4750 n_bytes = facet->byte_count - facet->accounted_bytes;
d78be13b
BP
4751
4752 /* This loop feeds byte counters to bond_account() for rebalancing to use
4753 * as a basis. We also need to track the actual VLAN on which the packet
4754 * is going to be sent to ensure that it matches the one passed to
4755 * bond_choose_output_slave(). (Otherwise, we will account to the wrong
b95fc6ba
BP
4756 * hash bucket.)
4757 *
4758 * We use the actions from an arbitrary subfacet because they should all
4759 * be equally valid for our purpose. */
d78be13b 4760 vlan_tci = facet->flow.vlan_tci;
b95fc6ba
BP
4761 NL_ATTR_FOR_EACH_UNSAFE (a, left,
4762 subfacet->actions, subfacet->actions_len) {
fea393b1 4763 const struct ovs_action_push_vlan *vlan;
d78be13b 4764 struct ofport_dpif *port;
abe529af 4765
d78be13b 4766 switch (nl_attr_type(a)) {
df2c07f4 4767 case OVS_ACTION_ATTR_OUTPUT:
abe529af
BP
4768 port = get_odp_port(ofproto, nl_attr_get_u32(a));
4769 if (port && port->bundle && port->bundle->bond) {
d78be13b 4770 bond_account(port->bundle->bond, &facet->flow,
dc155bff 4771 vlan_tci_to_vid(vlan_tci), n_bytes);
abe529af 4772 }
d78be13b
BP
4773 break;
4774
fea393b1
BP
4775 case OVS_ACTION_ATTR_POP_VLAN:
4776 vlan_tci = htons(0);
d78be13b
BP
4777 break;
4778
fea393b1
BP
4779 case OVS_ACTION_ATTR_PUSH_VLAN:
4780 vlan = nl_attr_get(a);
4781 vlan_tci = vlan->vlan_tci;
d78be13b 4782 break;
abe529af
BP
4783 }
4784 }
4785}
4786
abe529af
BP
4787/* Returns true if the only action for 'facet' is to send to the controller.
4788 * (We don't report NetFlow expiration messages for such facets because they
4789 * are just part of the control logic for the network, not real traffic). */
4790static bool
4791facet_is_controller_flow(struct facet *facet)
4792{
f25d0cf3
BP
4793 if (facet) {
4794 const struct rule *rule = &facet->rule->up;
4795 const struct ofpact *ofpacts = rule->ofpacts;
4796 size_t ofpacts_len = rule->ofpacts_len;
4797
dd30ff28
BP
4798 if (ofpacts_len > 0 &&
4799 ofpacts->type == OFPACT_CONTROLLER &&
f25d0cf3
BP
4800 ofpact_next(ofpacts) >= ofpact_end(ofpacts, ofpacts_len)) {
4801 return true;
4802 }
4803 }
4804 return false;
abe529af
BP
4805}
4806
4807/* Folds all of 'facet''s statistics into its rule. Also updates the
4808 * accounting ofhook and emits a NetFlow expiration if appropriate. All of
4809 * 'facet''s statistics in the datapath should have been zeroed and folded into
4810 * its packet and byte counts before this function is called. */
4811static void
15baa734 4812facet_flush_stats(struct facet *facet)
abe529af 4813{
15baa734 4814 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
b0f7b9b5
BP
4815 struct subfacet *subfacet;
4816
4817 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
cb22974d
BP
4818 ovs_assert(!subfacet->dp_byte_count);
4819 ovs_assert(!subfacet->dp_packet_count);
b0f7b9b5 4820 }
abe529af
BP
4821
4822 facet_push_stats(facet);
3de9590b
BP
4823 if (facet->accounted_bytes < facet->byte_count) {
4824 facet_account(facet);
4825 facet->accounted_bytes = facet->byte_count;
4826 }
abe529af
BP
4827
4828 if (ofproto->netflow && !facet_is_controller_flow(facet)) {
4829 struct ofexpired expired;
4830 expired.flow = facet->flow;
4831 expired.packet_count = facet->packet_count;
4832 expired.byte_count = facet->byte_count;
4833 expired.used = facet->used;
4834 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4835 }
4836
abe529af
BP
4837 /* Reset counters to prevent double counting if 'facet' ever gets
4838 * reinstalled. */
bbb5d219 4839 facet_reset_counters(facet);
abe529af
BP
4840
4841 netflow_flow_clear(&facet->nf_flow);
0e553d9c 4842 facet->tcp_flags = 0;
abe529af
BP
4843}
4844
4845/* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
4846 * Returns it if found, otherwise a null pointer.
4847 *
2b459b83
BP
4848 * 'hash' must be the return value of flow_hash(flow, 0).
4849 *
abe529af
BP
4850 * The returned facet might need revalidation; use facet_lookup_valid()
4851 * instead if that is important. */
4852static struct facet *
2b459b83
BP
4853facet_find(struct ofproto_dpif *ofproto,
4854 const struct flow *flow, uint32_t hash)
abe529af
BP
4855{
4856 struct facet *facet;
4857
2b459b83 4858 HMAP_FOR_EACH_WITH_HASH (facet, hmap_node, hash, &ofproto->facets) {
abe529af
BP
4859 if (flow_equal(flow, &facet->flow)) {
4860 return facet;
4861 }
4862 }
4863
4864 return NULL;
4865}
4866
4867/* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
4868 * Returns it if found, otherwise a null pointer.
4869 *
2b459b83
BP
4870 * 'hash' must be the return value of flow_hash(flow, 0).
4871 *
abe529af
BP
4872 * The returned facet is guaranteed to be valid. */
4873static struct facet *
2b459b83
BP
4874facet_lookup_valid(struct ofproto_dpif *ofproto, const struct flow *flow,
4875 uint32_t hash)
abe529af 4876{
c57b2226 4877 struct facet *facet;
abe529af 4878
c57b2226 4879 facet = facet_find(ofproto, flow, hash);
abe529af 4880 if (facet
2cc3c58e
EJ
4881 && (ofproto->backer->need_revalidate
4882 || tag_set_intersects(&ofproto->backer->revalidate_set,
4883 facet->tags))) {
c57b2226 4884 facet_revalidate(facet);
f231418e
EJ
4885
4886 /* facet_revalidate() may have destroyed 'facet'. */
4887 facet = facet_find(ofproto, flow, hash);
abe529af
BP
4888 }
4889
4890 return facet;
4891}
4892
1a1e3a0a
JP
4893/* Return a subfacet from 'facet'. A facet consists of one or more
4894 * subfacets, and this function returns one of them. */
4895static struct subfacet *facet_get_subfacet(struct facet *facet)
4896{
4897 return CONTAINER_OF(list_front(&facet->subfacets), struct subfacet,
4898 list_node);
4899}
4900
6a7e895f
BP
4901static const char *
4902subfacet_path_to_string(enum subfacet_path path)
4903{
4904 switch (path) {
4905 case SF_NOT_INSTALLED:
4906 return "not installed";
4907 case SF_FAST_PATH:
4908 return "in fast path";
4909 case SF_SLOW_PATH:
4910 return "in slow path";
4911 default:
4912 return "<error>";
4913 }
4914}
4915
4916/* Returns the path in which a subfacet should be installed if its 'slow'
4917 * member has the specified value. */
4918static enum subfacet_path
4919subfacet_want_path(enum slow_path_reason slow)
4920{
4921 return slow ? SF_SLOW_PATH : SF_FAST_PATH;
4922}
4923
4924/* Returns true if 'subfacet' needs to have its datapath flow updated,
4925 * supposing that its actions have been recalculated as 'want_actions' and that
4926 * 'slow' is nonzero iff 'subfacet' should be in the slow path. */
4927static bool
4928subfacet_should_install(struct subfacet *subfacet, enum slow_path_reason slow,
4929 const struct ofpbuf *want_actions)
4930{
4931 enum subfacet_path want_path = subfacet_want_path(slow);
4932 return (want_path != subfacet->path
4933 || (want_path == SF_FAST_PATH
4934 && (subfacet->actions_len != want_actions->size
4935 || memcmp(subfacet->actions, want_actions->data,
4936 subfacet->actions_len))));
4937}
4938
6814e51f
BP
4939static bool
4940facet_check_consistency(struct facet *facet)
4941{
4942 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
4943
4944 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
4945
050ac423
BP
4946 uint64_t odp_actions_stub[1024 / 8];
4947 struct ofpbuf odp_actions;
4948
6814e51f
BP
4949 struct rule_dpif *rule;
4950 struct subfacet *subfacet;
c53e1132 4951 bool may_log = false;
6814e51f
BP
4952 bool ok;
4953
4954 /* Check the rule for consistency. */
c57b2226
BP
4955 rule = rule_dpif_lookup(ofproto, &facet->flow);
4956 ok = rule == facet->rule;
4957 if (!ok) {
c53e1132 4958 may_log = !VLOG_DROP_WARN(&rl);
c53e1132
BP
4959 if (may_log) {
4960 struct ds s;
6814e51f 4961
c53e1132
BP
4962 ds_init(&s);
4963 flow_format(&s, &facet->flow);
4964 ds_put_format(&s, ": facet associated with wrong rule (was "
4965 "table=%"PRIu8",", facet->rule->up.table_id);
4966 cls_rule_format(&facet->rule->up.cr, &s);
4967 ds_put_format(&s, ") (should have been table=%"PRIu8",",
4968 rule->up.table_id);
4969 cls_rule_format(&rule->up.cr, &s);
4970 ds_put_char(&s, ')');
6814e51f 4971
c53e1132
BP
4972 VLOG_WARN("%s", ds_cstr(&s));
4973 ds_destroy(&s);
4974 }
6814e51f
BP
4975 }
4976
4977 /* Check the datapath actions for consistency. */
050ac423 4978 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
6814e51f 4979 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
6a7e895f 4980 enum subfacet_path want_path;
6814e51f 4981 struct action_xlate_ctx ctx;
9616614b 4982 struct ds s;
6814e51f
BP
4983
4984 action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
14f94f9a 4985 &subfacet->initial_vals, rule, 0, NULL);
f25d0cf3 4986 xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len,
050ac423 4987 &odp_actions);
6814e51f 4988
6a7e895f
BP
4989 if (subfacet->path == SF_NOT_INSTALLED) {
4990 /* This only happens if the datapath reported an error when we
4991 * tried to install the flow. Don't flag another error here. */
4992 continue;
4993 }
4994
4995 want_path = subfacet_want_path(subfacet->slow);
4996 if (want_path == SF_SLOW_PATH && subfacet->path == SF_SLOW_PATH) {
4997 /* The actions for slow-path flows may legitimately vary from one
4998 * packet to the next. We're done. */
050ac423 4999 continue;
6814e51f
BP
5000 }
5001
6a7e895f 5002 if (!subfacet_should_install(subfacet, subfacet->slow, &odp_actions)) {
9616614b
BP
5003 continue;
5004 }
c53e1132 5005
9616614b
BP
5006 /* Inconsistency! */
5007 if (ok) {
5008 may_log = !VLOG_DROP_WARN(&rl);
5009 ok = false;
5010 }
5011 if (!may_log) {
5012 /* Rate-limited, skip reporting. */
5013 continue;
5014 }
c53e1132 5015
9616614b 5016 ds_init(&s);
9566abf9 5017 odp_flow_key_format(subfacet->key, subfacet->key_len, &s);
9616614b
BP
5018
5019 ds_put_cstr(&s, ": inconsistency in subfacet");
6a7e895f 5020 if (want_path != subfacet->path) {
9616614b
BP
5021 enum odp_key_fitness fitness = subfacet->key_fitness;
5022
6a7e895f
BP
5023 ds_put_format(&s, " (%s, fitness=%s)",
5024 subfacet_path_to_string(subfacet->path),
9616614b 5025 odp_key_fitness_to_string(fitness));
6a7e895f
BP
5026 ds_put_format(&s, " (should have been %s)",
5027 subfacet_path_to_string(want_path));
5028 } else if (want_path == SF_FAST_PATH) {
9616614b
BP
5029 ds_put_cstr(&s, " (actions were: ");
5030 format_odp_actions(&s, subfacet->actions,
5031 subfacet->actions_len);
5032 ds_put_cstr(&s, ") (correct actions: ");
5033 format_odp_actions(&s, odp_actions.data, odp_actions.size);
5034 ds_put_char(&s, ')');
5035 } else {
5036 ds_put_cstr(&s, " (actions: ");
5037 format_odp_actions(&s, subfacet->actions,
5038 subfacet->actions_len);
5039 ds_put_char(&s, ')');
6814e51f 5040 }
9616614b
BP
5041 VLOG_WARN("%s", ds_cstr(&s));
5042 ds_destroy(&s);
6814e51f 5043 }
050ac423 5044 ofpbuf_uninit(&odp_actions);
6814e51f
BP
5045
5046 return ok;
5047}
5048
15baa734 5049/* Re-searches the classifier for 'facet':
abe529af
BP
5050 *
5051 * - If the rule found is different from 'facet''s current rule, moves
5052 * 'facet' to the new rule and recompiles its actions.
5053 *
5054 * - If the rule found is the same as 'facet''s current rule, leaves 'facet'
f231418e
EJ
5055 * where it is and recompiles its actions anyway.
5056 *
5057 * - If any of 'facet''s subfacets correspond to a new flow according to
5058 * ofproto_receive(), 'facet' is removed. */
c57b2226 5059static void
15baa734 5060facet_revalidate(struct facet *facet)
abe529af 5061{
15baa734 5062 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
b95fc6ba
BP
5063 struct actions {
5064 struct nlattr *odp_actions;
5065 size_t actions_len;
5066 };
5067 struct actions *new_actions;
5068
abe529af 5069 struct action_xlate_ctx ctx;
050ac423
BP
5070 uint64_t odp_actions_stub[1024 / 8];
5071 struct ofpbuf odp_actions;
5072
abe529af 5073 struct rule_dpif *new_rule;
b0f7b9b5 5074 struct subfacet *subfacet;
b95fc6ba 5075 int i;
abe529af
BP
5076
5077 COVERAGE_INC(facet_revalidate);
5078
f231418e
EJ
5079 /* Check that child subfacets still correspond to this facet. Tunnel
5080 * configuration changes could cause a subfacet's OpenFlow in_port to
5081 * change. */
5082 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5083 struct ofproto_dpif *recv_ofproto;
5084 struct flow recv_flow;
5085 int error;
5086
5087 error = ofproto_receive(ofproto->backer, NULL, subfacet->key,
5088 subfacet->key_len, &recv_flow, NULL,
5089 &recv_ofproto, NULL, NULL);
5090 if (error
5091 || recv_ofproto != ofproto
5092 || memcmp(&recv_flow, &facet->flow, sizeof recv_flow)) {
5093 facet_remove(facet);
5094 return;
5095 }
5096 }
5097
c57b2226 5098 new_rule = rule_dpif_lookup(ofproto, &facet->flow);
abe529af 5099
df2c07f4 5100 /* Calculate new datapath actions.
abe529af
BP
5101 *
5102 * We do not modify any 'facet' state yet, because we might need to, e.g.,
5103 * emit a NetFlow expiration and, if so, we need to have the old state
5104 * around to properly compose it. */
abe529af 5105
df2c07f4
JP
5106 /* If the datapath actions changed or the installability changed,
5107 * then we need to talk to the datapath. */
b95fc6ba
BP
5108 i = 0;
5109 new_actions = NULL;
5110 memset(&ctx, 0, sizeof ctx);
050ac423 5111 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
b0f7b9b5 5112 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
6a7e895f 5113 enum slow_path_reason slow;
b95fc6ba 5114
e84173dc 5115 action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
14f94f9a 5116 &subfacet->initial_vals, new_rule, 0, NULL);
f25d0cf3 5117 xlate_actions(&ctx, new_rule->up.ofpacts, new_rule->up.ofpacts_len,
050ac423 5118 &odp_actions);
b0f7b9b5 5119
6a7e895f
BP
5120 slow = (subfacet->slow & SLOW_MATCH) | ctx.slow;
5121 if (subfacet_should_install(subfacet, slow, &odp_actions)) {
5122 struct dpif_flow_stats stats;
5123
5124 subfacet_install(subfacet,
5125 odp_actions.data, odp_actions.size, &stats, slow);
5126 subfacet_update_stats(subfacet, &stats);
b95fc6ba
BP
5127
5128 if (!new_actions) {
5129 new_actions = xcalloc(list_size(&facet->subfacets),
5130 sizeof *new_actions);
5131 }
050ac423
BP
5132 new_actions[i].odp_actions = xmemdup(odp_actions.data,
5133 odp_actions.size);
5134 new_actions[i].actions_len = odp_actions.size;
abe529af 5135 }
b95fc6ba 5136
b95fc6ba 5137 i++;
b0f7b9b5 5138 }
050ac423
BP
5139 ofpbuf_uninit(&odp_actions);
5140
b95fc6ba 5141 if (new_actions) {
15baa734 5142 facet_flush_stats(facet);
abe529af
BP
5143 }
5144
5145 /* Update 'facet' now that we've taken care of all the old state. */
5146 facet->tags = ctx.tags;
5147 facet->nf_flow.output_iface = ctx.nf_output_iface;
75a75043
BP
5148 facet->has_learn = ctx.has_learn;
5149 facet->has_normal = ctx.has_normal;
0e553d9c 5150 facet->has_fin_timeout = ctx.has_fin_timeout;
9d24de3b 5151 facet->mirrors = ctx.mirrors;
6a7e895f
BP
5152
5153 i = 0;
5154 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5155 subfacet->slow = (subfacet->slow & SLOW_MATCH) | ctx.slow;
5156
5157 if (new_actions && new_actions[i].odp_actions) {
5158 free(subfacet->actions);
5159 subfacet->actions = new_actions[i].odp_actions;
5160 subfacet->actions_len = new_actions[i].actions_len;
b95fc6ba 5161 }
6a7e895f 5162 i++;
abe529af 5163 }
6a7e895f
BP
5164 free(new_actions);
5165
abe529af
BP
5166 if (facet->rule != new_rule) {
5167 COVERAGE_INC(facet_changed_rule);
5168 list_remove(&facet->list_node);
5169 list_push_back(&new_rule->facets, &facet->list_node);
5170 facet->rule = new_rule;
5171 facet->used = new_rule->up.created;
9d24de3b 5172 facet->prev_used = facet->used;
abe529af 5173 }
abe529af
BP
5174}
5175
5176/* Updates 'facet''s used time. Caller is responsible for calling
5177 * facet_push_stats() to update the flows which 'facet' resubmits into. */
5178static void
15baa734 5179facet_update_time(struct facet *facet, long long int used)
abe529af 5180{
15baa734 5181 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
abe529af
BP
5182 if (used > facet->used) {
5183 facet->used = used;
1745cd08 5184 ofproto_rule_update_used(&facet->rule->up, used);
abe529af
BP
5185 netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, used);
5186 }
5187}
5188
bbb5d219
EJ
5189static void
5190facet_reset_counters(struct facet *facet)
5191{
5192 facet->packet_count = 0;
5193 facet->byte_count = 0;
9d24de3b
JP
5194 facet->prev_packet_count = 0;
5195 facet->prev_byte_count = 0;
bbb5d219
EJ
5196 facet->accounted_bytes = 0;
5197}
5198
abe529af
BP
5199static void
5200facet_push_stats(struct facet *facet)
5201{
112bc5f4 5202 struct dpif_flow_stats stats;
abe529af 5203
cb22974d
BP
5204 ovs_assert(facet->packet_count >= facet->prev_packet_count);
5205 ovs_assert(facet->byte_count >= facet->prev_byte_count);
5206 ovs_assert(facet->used >= facet->prev_used);
abe529af 5207
112bc5f4
BP
5208 stats.n_packets = facet->packet_count - facet->prev_packet_count;
5209 stats.n_bytes = facet->byte_count - facet->prev_byte_count;
5210 stats.used = facet->used;
5211 stats.tcp_flags = 0;
abe529af 5212
112bc5f4 5213 if (stats.n_packets || stats.n_bytes || facet->used > facet->prev_used) {
9d24de3b
JP
5214 facet->prev_packet_count = facet->packet_count;
5215 facet->prev_byte_count = facet->byte_count;
5216 facet->prev_used = facet->used;
abe529af 5217
eafed69b 5218 rule_credit_stats(facet->rule, &stats);
ac35f9c8 5219 flow_push_stats(facet, &stats);
9d24de3b
JP
5220
5221 update_mirror_stats(ofproto_dpif_cast(facet->rule->up.ofproto),
112bc5f4 5222 facet->mirrors, stats.n_packets, stats.n_bytes);
abe529af
BP
5223 }
5224}
5225
8844e035 5226static void
4464589e 5227push_all_stats__(bool run_fast)
8844e035
EJ
5228{
5229 static long long int rl = LLONG_MIN;
5230 struct ofproto_dpif *ofproto;
5231
5232 if (time_msec() < rl) {
5233 return;
5234 }
5235
5236 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5237 struct facet *facet;
5238
5239 HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
5240 facet_push_stats(facet);
4464589e
EJ
5241 if (run_fast) {
5242 run_fast_rl();
5243 }
8844e035
EJ
5244 }
5245 }
5246
5247 rl = time_msec() + 100;
5248}
5249
4464589e
EJ
5250static void
5251push_all_stats(void)
5252{
5253 push_all_stats__(true);
5254}
5255
abe529af 5256static void
112bc5f4 5257rule_credit_stats(struct rule_dpif *rule, const struct dpif_flow_stats *stats)
abe529af 5258{
112bc5f4
BP
5259 rule->packet_count += stats->n_packets;
5260 rule->byte_count += stats->n_bytes;
5261 ofproto_rule_update_used(&rule->up, stats->used);
abe529af
BP
5262}
5263
ac35f9c8
JP
5264/* Pushes flow statistics to the rules which 'facet->flow' resubmits
5265 * into given 'facet->rule''s actions and mirrors. */
abe529af 5266static void
ac35f9c8 5267flow_push_stats(struct facet *facet, const struct dpif_flow_stats *stats)
abe529af 5268{
ac35f9c8 5269 struct rule_dpif *rule = facet->rule;
abe529af 5270 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
1a1e3a0a 5271 struct subfacet *subfacet = facet_get_subfacet(facet);
112bc5f4 5272 struct action_xlate_ctx ctx;
abe529af 5273
112bc5f4 5274 ofproto_rule_update_used(&rule->up, stats->used);
f3b50afb 5275
14f94f9a
JP
5276 action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
5277 &subfacet->initial_vals, rule, 0, NULL);
112bc5f4 5278 ctx.resubmit_stats = stats;
f25d0cf3
BP
5279 xlate_actions_for_side_effects(&ctx, rule->up.ofpacts,
5280 rule->up.ofpacts_len);
abe529af
BP
5281}
5282\f
b0f7b9b5
BP
5283/* Subfacets. */
5284
5285static struct subfacet *
acf60855 5286subfacet_find(struct ofproto_dpif *ofproto,
9566abf9 5287 const struct nlattr *key, size_t key_len, uint32_t key_hash)
b0f7b9b5
BP
5288{
5289 struct subfacet *subfacet;
5290
5291 HMAP_FOR_EACH_WITH_HASH (subfacet, hmap_node, key_hash,
5292 &ofproto->subfacets) {
9566abf9
EJ
5293 if (subfacet->key_len == key_len
5294 && !memcmp(key, subfacet->key, key_len)) {
b0f7b9b5
BP
5295 return subfacet;
5296 }
5297 }
5298
5299 return NULL;
5300}
5301
5302/* Searches 'facet' (within 'ofproto') for a subfacet with the specified
a088a1ff
JP
5303 * 'key_fitness', 'key', and 'key_len' members in 'miss'. Returns the
5304 * existing subfacet if there is one, otherwise creates and returns a
5305 * new subfacet.
b95fc6ba
BP
5306 *
5307 * If the returned subfacet is new, then subfacet->actions will be NULL, in
5308 * which case the caller must populate the actions with
5309 * subfacet_make_actions(). */
b0f7b9b5 5310static struct subfacet *
a088a1ff
JP
5311subfacet_create(struct facet *facet, struct flow_miss *miss,
5312 long long int now)
b0f7b9b5 5313{
15baa734 5314 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
a088a1ff
JP
5315 enum odp_key_fitness key_fitness = miss->key_fitness;
5316 const struct nlattr *key = miss->key;
5317 size_t key_len = miss->key_len;
5318 uint32_t key_hash;
b0f7b9b5
BP
5319 struct subfacet *subfacet;
5320
a088a1ff
JP
5321 key_hash = odp_flow_key_hash(key, key_len);
5322
3b145dd7
BP
5323 if (list_is_empty(&facet->subfacets)) {
5324 subfacet = &facet->one_subfacet;
5325 } else {
9566abf9 5326 subfacet = subfacet_find(ofproto, key, key_len, key_hash);
3b145dd7
BP
5327 if (subfacet) {
5328 if (subfacet->facet == facet) {
5329 return subfacet;
5330 }
5331
5332 /* This shouldn't happen. */
5333 VLOG_ERR_RL(&rl, "subfacet with wrong facet");
5334 subfacet_destroy(subfacet);
b0f7b9b5
BP
5335 }
5336
3b145dd7 5337 subfacet = xmalloc(sizeof *subfacet);
b0f7b9b5
BP
5338 }
5339
b0f7b9b5
BP
5340 hmap_insert(&ofproto->subfacets, &subfacet->hmap_node, key_hash);
5341 list_push_back(&facet->subfacets, &subfacet->list_node);
5342 subfacet->facet = facet;
b0f7b9b5 5343 subfacet->key_fitness = key_fitness;
9566abf9
EJ
5344 subfacet->key = xmemdup(key, key_len);
5345 subfacet->key_len = key_len;
459b16a1 5346 subfacet->used = now;
655ab909 5347 subfacet->created = now;
26cd7e34
BP
5348 subfacet->dp_packet_count = 0;
5349 subfacet->dp_byte_count = 0;
5350 subfacet->actions_len = 0;
5351 subfacet->actions = NULL;
6a7e895f
BP
5352 subfacet->slow = (subfacet->key_fitness == ODP_FIT_TOO_LITTLE
5353 ? SLOW_MATCH
5354 : 0);
5355 subfacet->path = SF_NOT_INSTALLED;
14f94f9a 5356 subfacet->initial_vals = miss->initial_vals;
a088a1ff 5357 subfacet->odp_in_port = miss->odp_in_port;
b0f7b9b5 5358
655ab909 5359 ofproto->subfacet_add_count++;
b0f7b9b5
BP
5360 return subfacet;
5361}
5362
b0f7b9b5
BP
5363/* Uninstalls 'subfacet' from the datapath, if it is installed, removes it from
5364 * its facet within 'ofproto', and frees it. */
5365static void
15baa734 5366subfacet_destroy__(struct subfacet *subfacet)
b0f7b9b5 5367{
15baa734
BP
5368 struct facet *facet = subfacet->facet;
5369 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
5370
655ab909
AZ
5371 /* Update ofproto stats before uninstall the subfacet. */
5372 ofproto->subfacet_del_count++;
5373 ofproto->total_subfacet_life_span += (time_msec() - subfacet->created);
5374
15baa734 5375 subfacet_uninstall(subfacet);
b0f7b9b5
BP
5376 hmap_remove(&ofproto->subfacets, &subfacet->hmap_node);
5377 list_remove(&subfacet->list_node);
5378 free(subfacet->key);
b95fc6ba 5379 free(subfacet->actions);
26cd7e34
BP
5380 if (subfacet != &facet->one_subfacet) {
5381 free(subfacet);
5382 }
b0f7b9b5
BP
5383}
5384
5385/* Destroys 'subfacet', as with subfacet_destroy__(), and then if this was the
5386 * last remaining subfacet in its facet destroys the facet too. */
5387static void
15baa734 5388subfacet_destroy(struct subfacet *subfacet)
b0f7b9b5
BP
5389{
5390 struct facet *facet = subfacet->facet;
5391
551a2f6c
BP
5392 if (list_is_singleton(&facet->subfacets)) {
5393 /* facet_remove() needs at least one subfacet (it will remove it). */
15baa734 5394 facet_remove(facet);
551a2f6c 5395 } else {
15baa734 5396 subfacet_destroy__(subfacet);
b0f7b9b5
BP
5397 }
5398}
5399
1d85f9e5
JP
5400static void
5401subfacet_destroy_batch(struct ofproto_dpif *ofproto,
5402 struct subfacet **subfacets, int n)
5403{
1d85f9e5
JP
5404 struct dpif_op ops[SUBFACET_DESTROY_MAX_BATCH];
5405 struct dpif_op *opsp[SUBFACET_DESTROY_MAX_BATCH];
1d85f9e5
JP
5406 struct dpif_flow_stats stats[SUBFACET_DESTROY_MAX_BATCH];
5407 int i;
5408
5409 for (i = 0; i < n; i++) {
5410 ops[i].type = DPIF_OP_FLOW_DEL;
9566abf9
EJ
5411 ops[i].u.flow_del.key = subfacets[i]->key;
5412 ops[i].u.flow_del.key_len = subfacets[i]->key_len;
1d85f9e5
JP
5413 ops[i].u.flow_del.stats = &stats[i];
5414 opsp[i] = &ops[i];
5415 }
5416
acf60855 5417 dpif_operate(ofproto->backer->dpif, opsp, n);
1d85f9e5
JP
5418 for (i = 0; i < n; i++) {
5419 subfacet_reset_dp_stats(subfacets[i], &stats[i]);
5420 subfacets[i]->path = SF_NOT_INSTALLED;
5421 subfacet_destroy(subfacets[i]);
8fa4d1d0 5422 run_fast_rl();
1d85f9e5
JP
5423 }
5424}
5425
5fe20d5d
BP
5426/* Composes the datapath actions for 'subfacet' based on its rule's actions.
5427 * Translates the actions into 'odp_actions', which the caller must have
5428 * initialized and is responsible for uninitializing. */
b95fc6ba 5429static void
5fe20d5d
BP
5430subfacet_make_actions(struct subfacet *subfacet, const struct ofpbuf *packet,
5431 struct ofpbuf *odp_actions)
b95fc6ba
BP
5432{
5433 struct facet *facet = subfacet->facet;
18b2a258 5434 struct rule_dpif *rule = facet->rule;
15baa734 5435 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
050ac423 5436
b95fc6ba
BP
5437 struct action_xlate_ctx ctx;
5438
14f94f9a
JP
5439 action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
5440 &subfacet->initial_vals, rule, 0, packet);
f25d0cf3 5441 xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len, odp_actions);
b95fc6ba 5442 facet->tags = ctx.tags;
b95fc6ba
BP
5443 facet->has_learn = ctx.has_learn;
5444 facet->has_normal = ctx.has_normal;
0e553d9c 5445 facet->has_fin_timeout = ctx.has_fin_timeout;
b95fc6ba 5446 facet->nf_flow.output_iface = ctx.nf_output_iface;
9d24de3b 5447 facet->mirrors = ctx.mirrors;
b95fc6ba 5448
6a7e895f 5449 subfacet->slow = (subfacet->slow & SLOW_MATCH) | ctx.slow;
5fe20d5d
BP
5450 if (subfacet->actions_len != odp_actions->size
5451 || memcmp(subfacet->actions, odp_actions->data, odp_actions->size)) {
b95fc6ba 5452 free(subfacet->actions);
5fe20d5d
BP
5453 subfacet->actions_len = odp_actions->size;
5454 subfacet->actions = xmemdup(odp_actions->data, odp_actions->size);
b95fc6ba 5455 }
b95fc6ba
BP
5456}
5457
b0f7b9b5
BP
5458/* Updates 'subfacet''s datapath flow, setting its actions to 'actions_len'
5459 * bytes of actions in 'actions'. If 'stats' is non-null, statistics counters
5460 * in the datapath will be zeroed and 'stats' will be updated with traffic new
5461 * since 'subfacet' was last updated.
5462 *
5463 * Returns 0 if successful, otherwise a positive errno value. */
5464static int
15baa734 5465subfacet_install(struct subfacet *subfacet,
b0f7b9b5 5466 const struct nlattr *actions, size_t actions_len,
6a7e895f
BP
5467 struct dpif_flow_stats *stats,
5468 enum slow_path_reason slow)
b0f7b9b5 5469{
15baa734
BP
5470 struct facet *facet = subfacet->facet;
5471 struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
6a7e895f
BP
5472 enum subfacet_path path = subfacet_want_path(slow);
5473 uint64_t slow_path_stub[128 / 8];
b0f7b9b5 5474 enum dpif_flow_put_flags flags;
b0f7b9b5
BP
5475 int ret;
5476
5477 flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
5478 if (stats) {
5479 flags |= DPIF_FP_ZERO_STATS;
5480 }
5481
6a7e895f
BP
5482 if (path == SF_SLOW_PATH) {
5483 compose_slow_path(ofproto, &facet->flow, slow,
5484 slow_path_stub, sizeof slow_path_stub,
5485 &actions, &actions_len);
5486 }
5487
9566abf9
EJ
5488 ret = dpif_flow_put(ofproto->backer->dpif, flags, subfacet->key,
5489 subfacet->key_len, actions, actions_len, stats);
b0f7b9b5
BP
5490
5491 if (stats) {
5492 subfacet_reset_dp_stats(subfacet, stats);
5493 }
5494
6a7e895f
BP
5495 if (!ret) {
5496 subfacet->path = path;
5497 }
b0f7b9b5
BP
5498 return ret;
5499}
5500
6a7e895f
BP
5501static int
5502subfacet_reinstall(struct subfacet *subfacet, struct dpif_flow_stats *stats)
5503{
5504 return subfacet_install(subfacet, subfacet->actions, subfacet->actions_len,
5505 stats, subfacet->slow);
5506}
5507
b0f7b9b5
BP
5508/* If 'subfacet' is installed in the datapath, uninstalls it. */
5509static void
15baa734 5510subfacet_uninstall(struct subfacet *subfacet)
b0f7b9b5 5511{
6a7e895f 5512 if (subfacet->path != SF_NOT_INSTALLED) {
15baa734
BP
5513 struct rule_dpif *rule = subfacet->facet->rule;
5514 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
b0f7b9b5 5515 struct dpif_flow_stats stats;
b0f7b9b5
BP
5516 int error;
5517
9566abf9
EJ
5518 error = dpif_flow_del(ofproto->backer->dpif, subfacet->key,
5519 subfacet->key_len, &stats);
b0f7b9b5
BP
5520 subfacet_reset_dp_stats(subfacet, &stats);
5521 if (!error) {
15baa734 5522 subfacet_update_stats(subfacet, &stats);
b0f7b9b5 5523 }
6a7e895f 5524 subfacet->path = SF_NOT_INSTALLED;
b0f7b9b5 5525 } else {
cb22974d
BP
5526 ovs_assert(subfacet->dp_packet_count == 0);
5527 ovs_assert(subfacet->dp_byte_count == 0);
b0f7b9b5
BP
5528 }
5529}
5530
5531/* Resets 'subfacet''s datapath statistics counters. This should be called
5532 * when 'subfacet''s statistics are cleared in the datapath. If 'stats' is
5533 * non-null, it should contain the statistics returned by dpif when 'subfacet'
5534 * was reset in the datapath. 'stats' will be modified to include only
5535 * statistics new since 'subfacet' was last updated. */
5536static void
5537subfacet_reset_dp_stats(struct subfacet *subfacet,
5538 struct dpif_flow_stats *stats)
5539{
5540 if (stats
5541 && subfacet->dp_packet_count <= stats->n_packets
5542 && subfacet->dp_byte_count <= stats->n_bytes) {
5543 stats->n_packets -= subfacet->dp_packet_count;
5544 stats->n_bytes -= subfacet->dp_byte_count;
5545 }
5546
5547 subfacet->dp_packet_count = 0;
5548 subfacet->dp_byte_count = 0;
5549}
5550
5551/* Updates 'subfacet''s used time. The caller is responsible for calling
5552 * facet_push_stats() to update the flows which 'subfacet' resubmits into. */
5553static void
15baa734 5554subfacet_update_time(struct subfacet *subfacet, long long int used)
b0f7b9b5
BP
5555{
5556 if (used > subfacet->used) {
5557 subfacet->used = used;
15baa734 5558 facet_update_time(subfacet->facet, used);
b0f7b9b5
BP
5559 }
5560}
5561
5562/* Folds the statistics from 'stats' into the counters in 'subfacet'.
5563 *
5564 * Because of the meaning of a subfacet's counters, it only makes sense to do
5565 * this if 'stats' are not tracked in the datapath, that is, if 'stats'
5566 * represents a packet that was sent by hand or if it represents statistics
5567 * that have been cleared out of the datapath. */
5568static void
15baa734 5569subfacet_update_stats(struct subfacet *subfacet,
b0f7b9b5
BP
5570 const struct dpif_flow_stats *stats)
5571{
5572 if (stats->n_packets || stats->used > subfacet->used) {
5573 struct facet *facet = subfacet->facet;
5574
15baa734 5575 subfacet_update_time(subfacet, stats->used);
b0f7b9b5
BP
5576 facet->packet_count += stats->n_packets;
5577 facet->byte_count += stats->n_bytes;
0e553d9c 5578 facet->tcp_flags |= stats->tcp_flags;
b0f7b9b5
BP
5579 netflow_flow_update_flags(&facet->nf_flow, stats->tcp_flags);
5580 }
5581}
5582\f
abe529af
BP
5583/* Rules. */
5584
5585static struct rule_dpif *
c57b2226
BP
5586rule_dpif_lookup(struct ofproto_dpif *ofproto, const struct flow *flow)
5587{
c57b2226
BP
5588 struct rule_dpif *rule;
5589
5590 rule = rule_dpif_lookup__(ofproto, flow, 0);
5591 if (rule) {
5592 return rule;
5593 }
5594
c376f9a3 5595 return rule_dpif_miss_rule(ofproto, flow);
c57b2226
BP
5596}
5597
5598static struct rule_dpif *
5599rule_dpif_lookup__(struct ofproto_dpif *ofproto, const struct flow *flow,
5600 uint8_t table_id)
abe529af 5601{
7257b535
BP
5602 struct cls_rule *cls_rule;
5603 struct classifier *cls;
5604
9cdaaebe
BP
5605 if (table_id >= N_TABLES) {
5606 return NULL;
5607 }
5608
d0918789 5609 cls = &ofproto->up.tables[table_id].cls;
eadef313 5610 if (flow->nw_frag & FLOW_NW_FRAG_ANY
7257b535
BP
5611 && ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
5612 /* For OFPC_NORMAL frag_handling, we must pretend that transport ports
5613 * are unavailable. */
5614 struct flow ofpc_normal_flow = *flow;
5615 ofpc_normal_flow.tp_src = htons(0);
5616 ofpc_normal_flow.tp_dst = htons(0);
5617 cls_rule = classifier_lookup(cls, &ofpc_normal_flow);
5618 } else {
5619 cls_rule = classifier_lookup(cls, flow);
5620 }
5621 return rule_dpif_cast(rule_from_cls_rule(cls_rule));
abe529af
BP
5622}
5623
c376f9a3
IY
5624static struct rule_dpif *
5625rule_dpif_miss_rule(struct ofproto_dpif *ofproto, const struct flow *flow)
5626{
5627 struct ofport_dpif *port;
5628
5629 port = get_ofp_port(ofproto, flow->in_port);
5630 if (!port) {
5631 VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16, flow->in_port);
5632 return ofproto->miss_rule;
5633 }
5634
5635 if (port->up.pp.config & OFPUTIL_PC_NO_PACKET_IN) {
5636 return ofproto->no_packet_in_rule;
5637 }
5638 return ofproto->miss_rule;
5639}
5640
7ee20df1
BP
5641static void
5642complete_operation(struct rule_dpif *rule)
5643{
5644 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5645
54a9cbc9 5646 rule_invalidate(rule);
7ee20df1
BP
5647 if (clogged) {
5648 struct dpif_completion *c = xmalloc(sizeof *c);
5649 c->op = rule->up.pending;
5650 list_push_back(&ofproto->completions, &c->list_node);
5651 } else {
5652 ofoperation_complete(rule->up.pending, 0);
5653 }
5654}
5655
abe529af
BP
5656static struct rule *
5657rule_alloc(void)
5658{
5659 struct rule_dpif *rule = xmalloc(sizeof *rule);
5660 return &rule->up;
5661}
5662
5663static void
5664rule_dealloc(struct rule *rule_)
5665{
5666 struct rule_dpif *rule = rule_dpif_cast(rule_);
5667 free(rule);
5668}
5669
90bf1e07 5670static enum ofperr
abe529af
BP
5671rule_construct(struct rule *rule_)
5672{
5673 struct rule_dpif *rule = rule_dpif_cast(rule_);
5674 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
7ee20df1 5675 struct rule_dpif *victim;
54a9cbc9 5676 uint8_t table_id;
abe529af 5677
abe529af
BP
5678 rule->packet_count = 0;
5679 rule->byte_count = 0;
abe529af 5680
7ee20df1
BP
5681 victim = rule_dpif_cast(ofoperation_get_victim(rule->up.pending));
5682 if (victim && !list_is_empty(&victim->facets)) {
5683 struct facet *facet;
5684
5685 rule->facets = victim->facets;
5686 list_moved(&rule->facets);
5687 LIST_FOR_EACH (facet, list_node, &rule->facets) {
bbb5d219
EJ
5688 /* XXX: We're only clearing our local counters here. It's possible
5689 * that quite a few packets are unaccounted for in the datapath
5690 * statistics. These will be accounted to the new rule instead of
5691 * cleared as required. This could be fixed by clearing out the
5692 * datapath statistics for this facet, but currently it doesn't
5693 * seem worth it. */
5694 facet_reset_counters(facet);
7ee20df1
BP
5695 facet->rule = rule;
5696 }
5697 } else {
5698 /* Must avoid list_moved() in this case. */
5699 list_init(&rule->facets);
5700 }
abe529af 5701
54a9cbc9 5702 table_id = rule->up.table_id;
5cb7a798
BP
5703 if (victim) {
5704 rule->tag = victim->tag;
5705 } else if (table_id == 0) {
5706 rule->tag = 0;
5707 } else {
5708 struct flow flow;
5709
5710 miniflow_expand(&rule->up.cr.match.flow, &flow);
5711 rule->tag = rule_calculate_tag(&flow, &rule->up.cr.match.mask,
5712 ofproto->tables[table_id].basis);
5713 }
54a9cbc9 5714
7ee20df1 5715 complete_operation(rule);
abe529af
BP
5716 return 0;
5717}
5718
5719static void
5720rule_destruct(struct rule *rule_)
5721{
5722 struct rule_dpif *rule = rule_dpif_cast(rule_);
abe529af
BP
5723 struct facet *facet, *next_facet;
5724
abe529af 5725 LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
15baa734 5726 facet_revalidate(facet);
abe529af 5727 }
7ee20df1
BP
5728
5729 complete_operation(rule);
abe529af
BP
5730}
5731
5732static void
5733rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes)
5734{
5735 struct rule_dpif *rule = rule_dpif_cast(rule_);
abe529af 5736
4464589e
EJ
5737 /* push_all_stats() can handle flow misses which, when using the learn
5738 * action, can cause rules to be added and deleted. This can corrupt our
5739 * caller's datastructures which assume that rule_get_stats() doesn't have
5740 * an impact on the flow table. To be safe, we disable miss handling. */
5741 push_all_stats__(false);
bf1e8ff9 5742
abe529af
BP
5743 /* Start from historical data for 'rule' itself that are no longer tracked
5744 * in facets. This counts, for example, facets that have expired. */
5745 *packets = rule->packet_count;
5746 *bytes = rule->byte_count;
abe529af
BP
5747}
5748
0a740f48
EJ
5749static void
5750rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
5751 struct ofpbuf *packet)
abe529af 5752{
abe529af 5753 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
14f94f9a 5754 struct initial_vals initial_vals;
112bc5f4 5755 struct dpif_flow_stats stats;
abe529af 5756 struct action_xlate_ctx ctx;
050ac423
BP
5757 uint64_t odp_actions_stub[1024 / 8];
5758 struct ofpbuf odp_actions;
abe529af 5759
a7752d4a 5760 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
112bc5f4
BP
5761 rule_credit_stats(rule, &stats);
5762
14f94f9a 5763 initial_vals.vlan_tci = flow->vlan_tci;
050ac423 5764 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
14f94f9a 5765 action_xlate_ctx_init(&ctx, ofproto, flow, &initial_vals,
112bc5f4
BP
5766 rule, stats.tcp_flags, packet);
5767 ctx.resubmit_stats = &stats;
f25d0cf3 5768 xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len, &odp_actions);
112bc5f4
BP
5769
5770 execute_odp_actions(ofproto, flow, odp_actions.data,
5771 odp_actions.size, packet);
5772
050ac423 5773 ofpbuf_uninit(&odp_actions);
0a740f48 5774}
5bf0e941 5775
0a740f48
EJ
5776static enum ofperr
5777rule_execute(struct rule *rule, const struct flow *flow,
5778 struct ofpbuf *packet)
5779{
5780 rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
5781 ofpbuf_delete(packet);
5bf0e941 5782 return 0;
abe529af
BP
5783}
5784
7ee20df1
BP
5785static void
5786rule_modify_actions(struct rule *rule_)
abe529af
BP
5787{
5788 struct rule_dpif *rule = rule_dpif_cast(rule_);
7ee20df1
BP
5789
5790 complete_operation(rule);
abe529af
BP
5791}
5792\f
97d6520b 5793/* Sends 'packet' out 'ofport'.
52a90c29 5794 * May modify 'packet'.
abe529af
BP
5795 * Returns 0 if successful, otherwise a positive errno value. */
5796static int
52a90c29 5797send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
abe529af 5798{
79e15b78 5799 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
b9ad7294 5800 uint64_t odp_actions_stub[1024 / 8];
80e5eed9 5801 struct ofpbuf key, odp_actions;
0f49659a 5802 struct dpif_flow_stats stats;
80e5eed9 5803 struct odputil_keybuf keybuf;
0f49659a
EJ
5804 struct ofpact_output output;
5805 struct action_xlate_ctx ctx;
80e5eed9 5806 struct flow flow;
abe529af
BP
5807 int error;
5808
b9ad7294 5809 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
0f49659a 5810 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
b9ad7294 5811
0f49659a
EJ
5812 /* Use OFPP_NONE as the in_port to avoid special packet processing. */
5813 flow_extract(packet, 0, 0, NULL, OFPP_NONE, &flow);
5814 odp_flow_key_from_flow(&key, &flow, ofp_port_to_odp_port(ofproto,
5815 OFPP_LOCAL));
5816 dpif_flow_stats_extract(&flow, packet, time_msec(), &stats);
b9ad7294 5817
0f49659a
EJ
5818 ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
5819 output.port = ofport->up.ofp_port;
5820 output.max_len = 0;
b9ad7294 5821
0f49659a
EJ
5822 action_xlate_ctx_init(&ctx, ofproto, &flow, NULL, NULL, 0, packet);
5823 ctx.resubmit_stats = &stats;
5824 xlate_actions(&ctx, &output.ofpact, sizeof output, &odp_actions);
6ff686f2 5825
acf60855 5826 error = dpif_execute(ofproto->backer->dpif,
80e5eed9
BP
5827 key.data, key.size,
5828 odp_actions.data, odp_actions.size,
abe529af
BP
5829 packet);
5830 ofpbuf_uninit(&odp_actions);
5831
5832 if (error) {
0f49659a
EJ
5833 VLOG_WARN_RL(&rl, "%s: failed to send packet on port %s (%s)",
5834 ofproto->up.name, netdev_get_name(ofport->up.netdev),
5835 strerror(error));
abe529af 5836 }
79e15b78
EJ
5837
5838 ofproto->stats.tx_packets++;
5839 ofproto->stats.tx_bytes += packet->size;
abe529af
BP
5840 return error;
5841}
5842\f
df2c07f4 5843/* OpenFlow to datapath action translation. */
abe529af 5844
ffaef958 5845static bool may_receive(const struct ofport_dpif *, struct action_xlate_ctx *);
f25d0cf3
BP
5846static void do_xlate_actions(const struct ofpact *, size_t ofpacts_len,
5847 struct action_xlate_ctx *);
4cd78906 5848static void xlate_normal(struct action_xlate_ctx *);
abe529af 5849
6a7e895f
BP
5850/* Composes an ODP action for a "slow path" action for 'flow' within 'ofproto'.
5851 * The action will state 'slow' as the reason that the action is in the slow
5852 * path. (This is purely informational: it allows a human viewing "ovs-dpctl
5853 * dump-flows" output to see why a flow is in the slow path.)
5854 *
5855 * The 'stub_size' bytes in 'stub' will be used to store the action.
5856 * 'stub_size' must be large enough for the action.
5857 *
5858 * The action and its size will be stored in '*actionsp' and '*actions_lenp',
5859 * respectively. */
5860static void
5861compose_slow_path(const struct ofproto_dpif *ofproto, const struct flow *flow,
5862 enum slow_path_reason slow,
5863 uint64_t *stub, size_t stub_size,
5864 const struct nlattr **actionsp, size_t *actions_lenp)
5865{
5866 union user_action_cookie cookie;
5867 struct ofpbuf buf;
5868
5869 cookie.type = USER_ACTION_COOKIE_SLOW_PATH;
5870 cookie.slow_path.unused = 0;
5871 cookie.slow_path.reason = slow;
5872
5873 ofpbuf_use_stack(&buf, stub, stub_size);
ccc09689 5874 if (slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)) {
9032f11e 5875 uint32_t pid = dpif_port_get_pid(ofproto->backer->dpif, UINT32_MAX);
29089a54 5876 odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
625b0720 5877 } else {
29089a54
RL
5878 put_userspace_action(ofproto, &buf, flow, &cookie,
5879 sizeof cookie.slow_path);
625b0720 5880 }
6a7e895f
BP
5881 *actionsp = buf.data;
5882 *actions_lenp = buf.size;
5883}
5884
98403001
BP
5885static size_t
5886put_userspace_action(const struct ofproto_dpif *ofproto,
5887 struct ofpbuf *odp_actions,
5888 const struct flow *flow,
29089a54
RL
5889 const union user_action_cookie *cookie,
5890 const size_t cookie_size)
98403001 5891{
98403001
BP
5892 uint32_t pid;
5893
acf60855 5894 pid = dpif_port_get_pid(ofproto->backer->dpif,
e1b1d06a 5895 ofp_port_to_odp_port(ofproto, flow->in_port));
98403001 5896
29089a54
RL
5897 return odp_put_userspace_action(pid, cookie, cookie_size, odp_actions);
5898}
5899
5900/* Compose SAMPLE action for sFlow or IPFIX. The given probability is
5901 * the number of packets out of UINT32_MAX to sample. The given
5902 * cookie is passed back in the callback for each sampled packet.
5903 */
5904static size_t
5905compose_sample_action(const struct ofproto_dpif *ofproto,
5906 struct ofpbuf *odp_actions,
5907 const struct flow *flow,
5908 const uint32_t probability,
5909 const union user_action_cookie *cookie,
5910 const size_t cookie_size)
5911{
5912 size_t sample_offset, actions_offset;
5913 int cookie_offset;
5914
5915 sample_offset = nl_msg_start_nested(odp_actions, OVS_ACTION_ATTR_SAMPLE);
5916
5917 nl_msg_put_u32(odp_actions, OVS_SAMPLE_ATTR_PROBABILITY, probability);
5918
5919 actions_offset = nl_msg_start_nested(odp_actions, OVS_SAMPLE_ATTR_ACTIONS);
5920 cookie_offset = put_userspace_action(ofproto, odp_actions, flow, cookie,
5921 cookie_size);
5922
5923 nl_msg_end_nested(odp_actions, actions_offset);
5924 nl_msg_end_nested(odp_actions, sample_offset);
5925 return cookie_offset;
98403001
BP
5926}
5927
36fc5f18
BP
5928static void
5929compose_sflow_cookie(const struct ofproto_dpif *ofproto,
5930 ovs_be16 vlan_tci, uint32_t odp_port,
1673e0e4 5931 unsigned int n_outputs, union user_action_cookie *cookie)
36fc5f18
BP
5932{
5933 int ifindex;
5934
5935 cookie->type = USER_ACTION_COOKIE_SFLOW;
1673e0e4 5936 cookie->sflow.vlan_tci = vlan_tci;
36fc5f18
BP
5937
5938 /* See http://www.sflow.org/sflow_version_5.txt (search for "Input/output
5939 * port information") for the interpretation of cookie->output. */
5940 switch (n_outputs) {
5941 case 0:
5942 /* 0x40000000 | 256 means "packet dropped for unknown reason". */
1673e0e4 5943 cookie->sflow.output = 0x40000000 | 256;
36fc5f18
BP
5944 break;
5945
5946 case 1:
5947 ifindex = dpif_sflow_odp_port_to_ifindex(ofproto->sflow, odp_port);
5948 if (ifindex) {
1673e0e4 5949 cookie->sflow.output = ifindex;
36fc5f18
BP
5950 break;
5951 }
5952 /* Fall through. */
5953 default:
5954 /* 0x80000000 means "multiple output ports. */
1673e0e4 5955 cookie->sflow.output = 0x80000000 | n_outputs;
36fc5f18
BP
5956 break;
5957 }
5958}
5959
29089a54 5960/* Compose SAMPLE action for sFlow bridge sampling. */
6ff686f2
PS
5961static size_t
5962compose_sflow_action(const struct ofproto_dpif *ofproto,
5963 struct ofpbuf *odp_actions,
5964 const struct flow *flow,
5965 uint32_t odp_port)
5966{
6ff686f2 5967 uint32_t probability;
1673e0e4 5968 union user_action_cookie cookie;
6ff686f2
PS
5969
5970 if (!ofproto->sflow || flow->in_port == OFPP_NONE) {
5971 return 0;
5972 }
5973
6ff686f2 5974 probability = dpif_sflow_get_probability(ofproto->sflow);
36fc5f18
BP
5975 compose_sflow_cookie(ofproto, htons(0), odp_port,
5976 odp_port == OVSP_NONE ? 0 : 1, &cookie);
6ff686f2 5977
29089a54
RL
5978 return compose_sample_action(ofproto, odp_actions, flow, probability,
5979 &cookie, sizeof cookie.sflow);
5980}
5981
5982static void
5983compose_flow_sample_cookie(uint16_t probability, uint32_t collector_set_id,
5984 uint32_t obs_domain_id, uint32_t obs_point_id,
5985 union user_action_cookie *cookie)
5986{
5987 cookie->type = USER_ACTION_COOKIE_FLOW_SAMPLE;
5988 cookie->flow_sample.probability = probability;
5989 cookie->flow_sample.collector_set_id = collector_set_id;
5990 cookie->flow_sample.obs_domain_id = obs_domain_id;
5991 cookie->flow_sample.obs_point_id = obs_point_id;
5992}
5993
5994static void
5995compose_ipfix_cookie(union user_action_cookie *cookie)
5996{
5997 cookie->type = USER_ACTION_COOKIE_IPFIX;
5998}
5999
6000/* Compose SAMPLE action for IPFIX bridge sampling. */
6001static void
6002compose_ipfix_action(const struct ofproto_dpif *ofproto,
6003 struct ofpbuf *odp_actions,
6004 const struct flow *flow)
6005{
6006 uint32_t probability;
6007 union user_action_cookie cookie;
6008
6009 if (!ofproto->ipfix || flow->in_port == OFPP_NONE) {
6010 return;
6011 }
6012
6013 probability = dpif_ipfix_get_bridge_exporter_probability(ofproto->ipfix);
6014 compose_ipfix_cookie(&cookie);
6015
6016 compose_sample_action(ofproto, odp_actions, flow, probability,
6017 &cookie, sizeof cookie.ipfix);
6ff686f2
PS
6018}
6019
29089a54
RL
6020/* SAMPLE action for sFlow must be first action in any given list of
6021 * actions. At this point we do not have all information required to
6022 * build it. So try to build sample action as complete as possible. */
6ff686f2
PS
6023static void
6024add_sflow_action(struct action_xlate_ctx *ctx)
6025{
6026 ctx->user_cookie_offset = compose_sflow_action(ctx->ofproto,
6027 ctx->odp_actions,
6028 &ctx->flow, OVSP_NONE);
6029 ctx->sflow_odp_port = 0;
6030 ctx->sflow_n_outputs = 0;
6031}
6032
29089a54
RL
6033/* SAMPLE action for IPFIX must be 1st or 2nd action in any given list
6034 * of actions, eventually after the SAMPLE action for sFlow. */
6035static void
6036add_ipfix_action(struct action_xlate_ctx *ctx)
6037{
6038 compose_ipfix_action(ctx->ofproto, ctx->odp_actions, &ctx->flow);
6039}
6040
6ff686f2
PS
6041/* Fix SAMPLE action according to data collected while composing ODP actions.
6042 * We need to fix SAMPLE actions OVS_SAMPLE_ATTR_ACTIONS attribute, i.e. nested
6043 * USERSPACE action's user-cookie which is required for sflow. */
6044static void
6045fix_sflow_action(struct action_xlate_ctx *ctx)
6046{
6047 const struct flow *base = &ctx->base_flow;
1673e0e4 6048 union user_action_cookie *cookie;
6ff686f2
PS
6049
6050 if (!ctx->user_cookie_offset) {
6051 return;
6052 }
6053
6054 cookie = ofpbuf_at(ctx->odp_actions, ctx->user_cookie_offset,
a93f1927 6055 sizeof cookie->sflow);
cb22974d 6056 ovs_assert(cookie->type == USER_ACTION_COOKIE_SFLOW);
6ff686f2 6057
36fc5f18
BP
6058 compose_sflow_cookie(ctx->ofproto, base->vlan_tci,
6059 ctx->sflow_odp_port, ctx->sflow_n_outputs, cookie);
6ff686f2
PS
6060}
6061
6ff686f2 6062static void
81b1afb1
EJ
6063compose_output_action__(struct action_xlate_ctx *ctx, uint16_t ofp_port,
6064 bool check_stp)
6ff686f2 6065{
d59906fb 6066 const struct ofport_dpif *ofport = get_ofp_port(ctx->ofproto, ofp_port);
d8558b4a
JR
6067 ovs_be16 flow_vlan_tci;
6068 uint32_t flow_skb_mark;
6069 uint8_t flow_nw_tos;
a4454ac6 6070 struct priority_to_dscp *pdscp;
0a740f48
EJ
6071 uint32_t out_port, odp_port;
6072
6073 /* If 'struct flow' gets additional metadata, we'll need to zero it out
6074 * before traversing a patch port. */
cff78c88 6075 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 20);
d59906fb 6076
a4454ac6
EJ
6077 if (!ofport) {
6078 xlate_report(ctx, "Nonexistent output port");
6079 return;
6080 } else if (ofport->up.pp.config & OFPUTIL_PC_NO_FWD) {
6081 xlate_report(ctx, "OFPPC_NO_FWD set, skipping output");
6082 return;
6083 } else if (check_stp && !stp_forward_in_state(ofport->stp_state)) {
6084 xlate_report(ctx, "STP not in forwarding state, skipping output");
6085 return;
6086 }
8b36f51e 6087
0a740f48
EJ
6088 if (netdev_vport_is_patch(ofport->up.netdev)) {
6089 struct ofport_dpif *peer = ofport_get_peer(ofport);
6090 struct flow old_flow = ctx->flow;
6091 const struct ofproto_dpif *peer_ofproto;
bb374ef6 6092 enum slow_path_reason special;
ffaef958 6093 struct ofport_dpif *in_port;
0a740f48
EJ
6094
6095 if (!peer) {
6096 xlate_report(ctx, "Nonexistent patch port peer");
6097 return;
6098 }
6099
6100 peer_ofproto = ofproto_dpif_cast(peer->up.ofproto);
6101 if (peer_ofproto->backer != ctx->ofproto->backer) {
6102 xlate_report(ctx, "Patch port peer on a different datapath");
6103 return;
6104 }
6105
6106 ctx->ofproto = ofproto_dpif_cast(peer->up.ofproto);
6107 ctx->flow.in_port = peer->up.ofp_port;
6108 ctx->flow.metadata = htonll(0);
6109 memset(&ctx->flow.tunnel, 0, sizeof ctx->flow.tunnel);
6110 memset(ctx->flow.regs, 0, sizeof ctx->flow.regs);
ffaef958
BP
6111
6112 in_port = get_ofp_port(ctx->ofproto, ctx->flow.in_port);
bb374ef6
EJ
6113 special = process_special(ctx->ofproto, &ctx->flow, in_port,
6114 ctx->packet);
6115 if (special) {
6116 ctx->slow |= special;
6117 } else if (!in_port || may_receive(in_port, ctx)) {
ffaef958
BP
6118 if (!in_port || stp_forward_in_state(in_port->stp_state)) {
6119 xlate_table_action(ctx, ctx->flow.in_port, 0, true);
6120 } else {
6121 /* Forwarding is disabled by STP. Let OFPP_NORMAL and the
6122 * learning action look at the packet, then drop it. */
6123 struct flow old_base_flow = ctx->base_flow;
6124 size_t old_size = ctx->odp_actions->size;
6125 xlate_table_action(ctx, ctx->flow.in_port, 0, true);
6126 ctx->base_flow = old_base_flow;
6127 ctx->odp_actions->size = old_size;
6128 }
6129 }
6130
0a740f48
EJ
6131 ctx->flow = old_flow;
6132 ctx->ofproto = ofproto_dpif_cast(ofport->up.ofproto);
6133
6134 if (ctx->resubmit_stats) {
b9ad7294
EJ
6135 netdev_vport_inc_tx(ofport->up.netdev, ctx->resubmit_stats);
6136 netdev_vport_inc_rx(peer->up.netdev, ctx->resubmit_stats);
0a740f48
EJ
6137 }
6138
6139 return;
6140 }
6141
d8558b4a
JR
6142 flow_vlan_tci = ctx->flow.vlan_tci;
6143 flow_skb_mark = ctx->flow.skb_mark;
6144 flow_nw_tos = ctx->flow.nw_tos;
6145
a4454ac6
EJ
6146 pdscp = get_priority(ofport, ctx->flow.skb_priority);
6147 if (pdscp) {
6148 ctx->flow.nw_tos &= ~IP_DSCP_MASK;
6149 ctx->flow.nw_tos |= pdscp->dscp;
d59906fb
EJ
6150 }
6151
b9ad7294 6152 if (ofport->tnl_port) {
d8558b4a
JR
6153 /* Save tunnel metadata so that changes made due to
6154 * the Logical (tunnel) Port are not visible for any further
6155 * matches, while explicit set actions on tunnel metadata are.
6156 */
6157 struct flow_tnl flow_tnl = ctx->flow.tunnel;
b9ad7294
EJ
6158 odp_port = tnl_port_send(ofport->tnl_port, &ctx->flow);
6159 if (odp_port == OVSP_NONE) {
6160 xlate_report(ctx, "Tunneling decided against output");
88e90491 6161 goto out; /* restore flow_nw_tos */
b9ad7294
EJ
6162 }
6163
6164 if (ctx->resubmit_stats) {
6165 netdev_vport_inc_tx(ofport->up.netdev, ctx->resubmit_stats);
6166 }
6167 out_port = odp_port;
6168 commit_odp_tunnel_action(&ctx->flow, &ctx->base_flow,
6169 ctx->odp_actions);
d8558b4a 6170 ctx->flow.tunnel = flow_tnl; /* Restore tunnel metadata */
b9ad7294 6171 } else {
cf630ea3 6172 odp_port = ofport->odp_port;
b9ad7294
EJ
6173 out_port = vsp_realdev_to_vlandev(ctx->ofproto, odp_port,
6174 ctx->flow.vlan_tci);
6175 if (out_port != odp_port) {
6176 ctx->flow.vlan_tci = htons(0);
6177 }
321fa429 6178 ctx->flow.skb_mark &= ~IPSEC_MARK;
52a90c29 6179 }
5bbda0aa 6180 commit_odp_actions(&ctx->flow, &ctx->base_flow, ctx->odp_actions);
52a90c29
BP
6181 nl_msg_put_u32(ctx->odp_actions, OVS_ACTION_ATTR_OUTPUT, out_port);
6182
6ff686f2
PS
6183 ctx->sflow_odp_port = odp_port;
6184 ctx->sflow_n_outputs++;
81b1afb1 6185 ctx->nf_output_iface = ofp_port;
d8558b4a
JR
6186
6187 /* Restore flow */
52a90c29 6188 ctx->flow.vlan_tci = flow_vlan_tci;
d8558b4a 6189 ctx->flow.skb_mark = flow_skb_mark;
88e90491 6190 out:
8b36f51e 6191 ctx->flow.nw_tos = flow_nw_tos;
6ff686f2
PS
6192}
6193
abe529af 6194static void
5e48dc2b 6195compose_output_action(struct action_xlate_ctx *ctx, uint16_t ofp_port)
abe529af 6196{
81b1afb1 6197 compose_output_action__(ctx, ofp_port, true);
abe529af
BP
6198}
6199
55599423
JR
6200static void
6201tag_the_flow(struct action_xlate_ctx *ctx, struct rule_dpif *rule)
6202{
6203 struct ofproto_dpif *ofproto = ctx->ofproto;
6204 uint8_t table_id = ctx->table_id;
6205
6206 if (table_id > 0 && table_id < N_TABLES) {
6207 struct table_dpif *table = &ofproto->tables[table_id];
6208 if (table->other_table) {
6209 ctx->tags |= (rule && rule->tag
6210 ? rule->tag
6211 : rule_calculate_tag(&ctx->flow,
6212 &table->other_table->mask,
6213 table->basis));
6214 }
6215 }
6216}
6217
6218/* Common rule processing in one place to avoid duplicating code. */
6219static struct rule_dpif *
6220ctx_rule_hooks(struct action_xlate_ctx *ctx, struct rule_dpif *rule,
6221 bool may_packet_in)
6222{
6223 if (ctx->resubmit_hook) {
6224 ctx->resubmit_hook(ctx, rule);
6225 }
6226 if (rule == NULL && may_packet_in) {
6227 /* XXX
6228 * check if table configuration flags
6229 * OFPTC_TABLE_MISS_CONTROLLER, default.
6230 * OFPTC_TABLE_MISS_CONTINUE,
6231 * OFPTC_TABLE_MISS_DROP
6232 * When OF1.0, OFPTC_TABLE_MISS_CONTINUE is used. What to do?
6233 */
6234 rule = rule_dpif_miss_rule(ctx->ofproto, &ctx->flow);
6235 }
6236 if (rule && ctx->resubmit_stats) {
6237 rule_credit_stats(rule, ctx->resubmit_stats);
6238 }
6239 return rule;
6240}
6241
abe529af 6242static void
29901626 6243xlate_table_action(struct action_xlate_ctx *ctx,
1688c479 6244 uint16_t in_port, uint8_t table_id, bool may_packet_in)
abe529af
BP
6245{
6246 if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
6247 struct rule_dpif *rule;
55599423
JR
6248 uint16_t old_in_port = ctx->flow.in_port;
6249 uint8_t old_table_id = ctx->table_id;
29901626 6250
29901626 6251 ctx->table_id = table_id;
abe529af 6252
54a9cbc9 6253 /* Look up a flow with 'in_port' as the input port. */
abe529af 6254 ctx->flow.in_port = in_port;
55599423
JR
6255 rule = rule_dpif_lookup__(ctx->ofproto, &ctx->flow, table_id);
6256
6257 tag_the_flow(ctx, rule);
54a9cbc9
BP
6258
6259 /* Restore the original input port. Otherwise OFPP_NORMAL and
6260 * OFPP_IN_PORT will have surprising behavior. */
abe529af
BP
6261 ctx->flow.in_port = old_in_port;
6262
55599423 6263 rule = ctx_rule_hooks(ctx, rule, may_packet_in);
1688c479 6264
abe529af 6265 if (rule) {
18b2a258 6266 struct rule_dpif *old_rule = ctx->rule;
54834960 6267
abe529af 6268 ctx->recurse++;
18b2a258 6269 ctx->rule = rule;
f25d0cf3 6270 do_xlate_actions(rule->up.ofpacts, rule->up.ofpacts_len, ctx);
18b2a258 6271 ctx->rule = old_rule;
abe529af
BP
6272 ctx->recurse--;
6273 }
29901626
BP
6274
6275 ctx->table_id = old_table_id;
abe529af
BP
6276 } else {
6277 static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
6278
29901626 6279 VLOG_ERR_RL(&recurse_rl, "resubmit actions recursed over %d times",
abe529af 6280 MAX_RESUBMIT_RECURSION);
6a6455e5 6281 ctx->max_resubmit_trigger = true;
abe529af
BP
6282 }
6283}
6284
29901626 6285static void
f25d0cf3
BP
6286xlate_ofpact_resubmit(struct action_xlate_ctx *ctx,
6287 const struct ofpact_resubmit *resubmit)
29901626
BP
6288{
6289 uint16_t in_port;
6290 uint8_t table_id;
6291
f25d0cf3
BP
6292 in_port = resubmit->in_port;
6293 if (in_port == OFPP_IN_PORT) {
6294 in_port = ctx->flow.in_port;
6295 }
6296
6297 table_id = resubmit->table_id;
6298 if (table_id == 255) {
6299 table_id = ctx->table_id;
6300 }
29901626 6301
1688c479 6302 xlate_table_action(ctx, in_port, table_id, false);
29901626
BP
6303}
6304
abe529af 6305static void
d59906fb 6306flood_packets(struct action_xlate_ctx *ctx, bool all)
abe529af
BP
6307{
6308 struct ofport_dpif *ofport;
6309
b3e9b2ed 6310 HMAP_FOR_EACH (ofport, up.hmap_node, &ctx->ofproto->up.ports) {
abe529af 6311 uint16_t ofp_port = ofport->up.ofp_port;
d59906fb
EJ
6312
6313 if (ofp_port == ctx->flow.in_port) {
6314 continue;
6315 }
6316
5e48dc2b 6317 if (all) {
81b1afb1 6318 compose_output_action__(ctx, ofp_port, false);
9e1fd49b 6319 } else if (!(ofport->up.pp.config & OFPUTIL_PC_NO_FLOOD)) {
5e48dc2b 6320 compose_output_action(ctx, ofp_port);
abe529af
BP
6321 }
6322 }
b3e9b2ed
EJ
6323
6324 ctx->nf_output_iface = NF_OUT_FLOOD;
abe529af
BP
6325}
6326
6ff686f2 6327static void
f0fd1a17 6328execute_controller_action(struct action_xlate_ctx *ctx, int len,
a7349929
BP
6329 enum ofp_packet_in_reason reason,
6330 uint16_t controller_id)
6ff686f2 6331{
999fba59
EJ
6332 struct ofputil_packet_in pin;
6333 struct ofpbuf *packet;
6ff686f2 6334
6a7e895f 6335 ctx->slow |= SLOW_CONTROLLER;
999fba59
EJ
6336 if (!ctx->packet) {
6337 return;
6338 }
6339
6340 packet = ofpbuf_clone(ctx->packet);
6341
6342 if (packet->l2 && packet->l3) {
6343 struct eth_header *eh;
b02475c5 6344 uint16_t mpls_depth;
999fba59
EJ
6345
6346 eth_pop_vlan(packet);
6347 eh = packet->l2;
0104aba8 6348
999fba59
EJ
6349 memcpy(eh->eth_src, ctx->flow.dl_src, sizeof eh->eth_src);
6350 memcpy(eh->eth_dst, ctx->flow.dl_dst, sizeof eh->eth_dst);
6351
6352 if (ctx->flow.vlan_tci & htons(VLAN_CFI)) {
6353 eth_push_vlan(packet, ctx->flow.vlan_tci);
6354 }
6355
b02475c5
SH
6356 mpls_depth = eth_mpls_depth(packet);
6357
6358 if (mpls_depth < ctx->flow.mpls_depth) {
6359 push_mpls(packet, ctx->flow.dl_type, ctx->flow.mpls_lse);
6360 } else if (mpls_depth > ctx->flow.mpls_depth) {
6361 pop_mpls(packet, ctx->flow.dl_type);
6362 } else if (mpls_depth) {
6363 set_mpls_lse(packet, ctx->flow.mpls_lse);
6364 }
6365
999fba59
EJ
6366 if (packet->l4) {
6367 if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6368 packet_set_ipv4(packet, ctx->flow.nw_src, ctx->flow.nw_dst,
6369 ctx->flow.nw_tos, ctx->flow.nw_ttl);
6370 }
6371
6372 if (packet->l7) {
6373 if (ctx->flow.nw_proto == IPPROTO_TCP) {
6374 packet_set_tcp_port(packet, ctx->flow.tp_src,
6375 ctx->flow.tp_dst);
6376 } else if (ctx->flow.nw_proto == IPPROTO_UDP) {
6377 packet_set_udp_port(packet, ctx->flow.tp_src,
6378 ctx->flow.tp_dst);
6379 }
6380 }
6381 }
6382 }
6383
6384 pin.packet = packet->data;
6385 pin.packet_len = packet->size;
f0fd1a17 6386 pin.reason = reason;
a7349929 6387 pin.controller_id = controller_id;
54834960 6388 pin.table_id = ctx->table_id;
18b2a258 6389 pin.cookie = ctx->rule ? ctx->rule->up.flow_cookie : 0;
54834960 6390
999fba59 6391 pin.send_len = len;
999fba59
EJ
6392 flow_get_metadata(&ctx->flow, &pin.fmd);
6393
d8653c38 6394 connmgr_send_packet_in(ctx->ofproto->up.connmgr, &pin);
999fba59 6395 ofpbuf_delete(packet);
6ff686f2
PS
6396}
6397
b02475c5
SH
6398static void
6399execute_mpls_push_action(struct action_xlate_ctx *ctx, ovs_be16 eth_type)
6400{
6401 ovs_assert(eth_type_mpls(eth_type));
6402
6403 if (ctx->base_flow.mpls_depth) {
6404 ctx->flow.mpls_lse &= ~htonl(MPLS_BOS_MASK);
6405 ctx->flow.mpls_depth++;
6406 } else {
6407 ovs_be32 label;
6408 uint8_t tc, ttl;
6409
6410 if (ctx->flow.dl_type == htons(ETH_TYPE_IPV6)) {
6411 label = htonl(0x2); /* IPV6 Explicit Null. */
6412 } else {
6413 label = htonl(0x0); /* IPV4 Explicit Null. */
6414 }
6415 tc = (ctx->flow.nw_tos & IP_DSCP_MASK) >> 2;
6416 ttl = ctx->flow.nw_ttl ? ctx->flow.nw_ttl : 0x40;
6417 ctx->flow.mpls_lse = set_mpls_lse_values(ttl, tc, 1, label);
b02475c5
SH
6418 ctx->flow.mpls_depth = 1;
6419 }
6420 ctx->flow.dl_type = eth_type;
6421}
6422
6423static void
6424execute_mpls_pop_action(struct action_xlate_ctx *ctx, ovs_be16 eth_type)
6425{
6426 ovs_assert(eth_type_mpls(ctx->flow.dl_type));
6427 ovs_assert(!eth_type_mpls(eth_type));
6428
6429 if (ctx->flow.mpls_depth) {
6430 ctx->flow.mpls_depth--;
6431 ctx->flow.mpls_lse = htonl(0);
6432 if (!ctx->flow.mpls_depth) {
6433 ctx->flow.dl_type = eth_type;
b02475c5
SH
6434 }
6435 }
6436}
6437
f0fd1a17 6438static bool
c2d967a5 6439compose_dec_ttl(struct action_xlate_ctx *ctx, struct ofpact_cnt_ids *ids)
f0fd1a17
PS
6440{
6441 if (ctx->flow.dl_type != htons(ETH_TYPE_IP) &&
6442 ctx->flow.dl_type != htons(ETH_TYPE_IPV6)) {
6443 return false;
6444 }
6445
6446 if (ctx->flow.nw_ttl > 1) {
6447 ctx->flow.nw_ttl--;
6448 return false;
6449 } else {
c2d967a5
MM
6450 size_t i;
6451
6452 for (i = 0; i < ids->n_controllers; i++) {
6453 execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL,
6454 ids->cnt_ids[i]);
6455 }
f0fd1a17
PS
6456
6457 /* Stop processing for current table. */
6458 return true;
6459 }
6460}
6461
0f3f3c3d
SH
6462static bool
6463execute_set_mpls_ttl_action(struct action_xlate_ctx *ctx, uint8_t ttl)
6464{
6465 if (!eth_type_mpls(ctx->flow.dl_type)) {
6466 return true;
6467 }
6468
6469 set_mpls_lse_ttl(&ctx->flow.mpls_lse, ttl);
6470 return false;
6471}
6472
b676167a
SH
6473static bool
6474execute_dec_mpls_ttl_action(struct action_xlate_ctx *ctx)
6475{
6476 uint8_t ttl = mpls_lse_to_ttl(ctx->flow.mpls_lse);
6477
6478 if (!eth_type_mpls(ctx->flow.dl_type)) {
6479 return false;
6480 }
6481
be80bc65 6482 if (ttl > 1) {
b676167a
SH
6483 ttl--;
6484 set_mpls_lse_ttl(&ctx->flow.mpls_lse, ttl);
6485 return false;
6486 } else {
6487 execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL, 0);
6488
6489 /* Stop processing for current table. */
6490 return true;
6491 }
6492}
6493
abe529af 6494static void
f25d0cf3 6495xlate_output_action(struct action_xlate_ctx *ctx,
1688c479 6496 uint16_t port, uint16_t max_len, bool may_packet_in)
abe529af
BP
6497{
6498 uint16_t prev_nf_output_iface = ctx->nf_output_iface;
6499
6500 ctx->nf_output_iface = NF_OUT_DROP;
6501
6502 switch (port) {
6503 case OFPP_IN_PORT:
81b1afb1 6504 compose_output_action(ctx, ctx->flow.in_port);
abe529af
BP
6505 break;
6506 case OFPP_TABLE:
1688c479 6507 xlate_table_action(ctx, ctx->flow.in_port, 0, may_packet_in);
abe529af
BP
6508 break;
6509 case OFPP_NORMAL:
6510 xlate_normal(ctx);
6511 break;
6512 case OFPP_FLOOD:
d59906fb 6513 flood_packets(ctx, false);
abe529af
BP
6514 break;
6515 case OFPP_ALL:
d59906fb 6516 flood_packets(ctx, true);
abe529af
BP
6517 break;
6518 case OFPP_CONTROLLER:
a7349929 6519 execute_controller_action(ctx, max_len, OFPR_ACTION, 0);
abe529af 6520 break;
e81d2933
EJ
6521 case OFPP_NONE:
6522 break;
a0fbe94a 6523 case OFPP_LOCAL:
abe529af
BP
6524 default:
6525 if (port != ctx->flow.in_port) {
81b1afb1 6526 compose_output_action(ctx, port);
3dd3eace
BP
6527 } else {
6528 xlate_report(ctx, "skipping output to input port");
abe529af
BP
6529 }
6530 break;
6531 }
6532
6533 if (prev_nf_output_iface == NF_OUT_FLOOD) {
6534 ctx->nf_output_iface = NF_OUT_FLOOD;
6535 } else if (ctx->nf_output_iface == NF_OUT_DROP) {
6536 ctx->nf_output_iface = prev_nf_output_iface;
6537 } else if (prev_nf_output_iface != NF_OUT_DROP &&
6538 ctx->nf_output_iface != NF_OUT_FLOOD) {
6539 ctx->nf_output_iface = NF_OUT_MULTI;
6540 }
6541}
6542
f694937d
EJ
6543static void
6544xlate_output_reg_action(struct action_xlate_ctx *ctx,
f25d0cf3 6545 const struct ofpact_output_reg *or)
f694937d 6546{
f25d0cf3
BP
6547 uint64_t port = mf_get_subfield(&or->src, &ctx->flow);
6548 if (port <= UINT16_MAX) {
1688c479 6549 xlate_output_action(ctx, port, or->max_len, false);
f694937d
EJ
6550 }
6551}
6552
abe529af
BP
6553static void
6554xlate_enqueue_action(struct action_xlate_ctx *ctx,
f25d0cf3 6555 const struct ofpact_enqueue *enqueue)
abe529af 6556{
f25d0cf3
BP
6557 uint16_t ofp_port = enqueue->port;
6558 uint32_t queue_id = enqueue->queue;
abff858b 6559 uint32_t flow_priority, priority;
abe529af
BP
6560 int error;
6561
f25d0cf3 6562 /* Translate queue to priority. */
acf60855
JP
6563 error = dpif_queue_to_priority(ctx->ofproto->backer->dpif,
6564 queue_id, &priority);
abe529af
BP
6565 if (error) {
6566 /* Fall back to ordinary output action. */
1688c479 6567 xlate_output_action(ctx, enqueue->port, 0, false);
abe529af
BP
6568 return;
6569 }
6570
f25d0cf3 6571 /* Check output port. */
abe529af
BP
6572 if (ofp_port == OFPP_IN_PORT) {
6573 ofp_port = ctx->flow.in_port;
8ba855c1
BP
6574 } else if (ofp_port == ctx->flow.in_port) {
6575 return;
abe529af 6576 }
abe529af 6577
df2c07f4 6578 /* Add datapath actions. */
deedf7e7
BP
6579 flow_priority = ctx->flow.skb_priority;
6580 ctx->flow.skb_priority = priority;
81b1afb1 6581 compose_output_action(ctx, ofp_port);
deedf7e7 6582 ctx->flow.skb_priority = flow_priority;
abe529af
BP
6583
6584 /* Update NetFlow output port. */
6585 if (ctx->nf_output_iface == NF_OUT_DROP) {
4b23aebf 6586 ctx->nf_output_iface = ofp_port;
abe529af
BP
6587 } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
6588 ctx->nf_output_iface = NF_OUT_MULTI;
6589 }
6590}
6591
6592static void
f25d0cf3 6593xlate_set_queue_action(struct action_xlate_ctx *ctx, uint32_t queue_id)
abe529af 6594{
f25d0cf3 6595 uint32_t skb_priority;
abe529af 6596
acf60855
JP
6597 if (!dpif_queue_to_priority(ctx->ofproto->backer->dpif,
6598 queue_id, &skb_priority)) {
f25d0cf3
BP
6599 ctx->flow.skb_priority = skb_priority;
6600 } else {
6601 /* Couldn't translate queue to a priority. Nothing to do. A warning
abe529af 6602 * has already been logged. */
abe529af 6603 }
abe529af
BP
6604}
6605
daff3353
EJ
6606static bool
6607slave_enabled_cb(uint16_t ofp_port, void *ofproto_)
6608{
6609 struct ofproto_dpif *ofproto = ofproto_;
6610 struct ofport_dpif *port;
6611
6612 switch (ofp_port) {
6613 case OFPP_IN_PORT:
6614 case OFPP_TABLE:
6615 case OFPP_NORMAL:
6616 case OFPP_FLOOD:
6617 case OFPP_ALL:
439e4d8c 6618 case OFPP_NONE:
daff3353
EJ
6619 return true;
6620 case OFPP_CONTROLLER: /* Not supported by the bundle action. */
6621 return false;
6622 default:
6623 port = get_ofp_port(ofproto, ofp_port);
6624 return port ? port->may_enable : false;
6625 }
6626}
6627
f25d0cf3
BP
6628static void
6629xlate_bundle_action(struct action_xlate_ctx *ctx,
6630 const struct ofpact_bundle *bundle)
6631{
6632 uint16_t port;
6633
6634 port = bundle_execute(bundle, &ctx->flow, slave_enabled_cb, ctx->ofproto);
6635 if (bundle->dst.field) {
6636 nxm_reg_load(&bundle->dst, port, &ctx->flow);
6637 } else {
1688c479 6638 xlate_output_action(ctx, port, 0, false);
f25d0cf3
BP
6639 }
6640}
6641
75a75043
BP
6642static void
6643xlate_learn_action(struct action_xlate_ctx *ctx,
f25d0cf3 6644 const struct ofpact_learn *learn)
75a75043
BP
6645{
6646 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
6647 struct ofputil_flow_mod fm;
f25d0cf3
BP
6648 uint64_t ofpacts_stub[1024 / 8];
6649 struct ofpbuf ofpacts;
75a75043
BP
6650 int error;
6651
f25d0cf3
BP
6652 ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
6653 learn_execute(learn, &ctx->flow, &fm, &ofpacts);
75a75043
BP
6654
6655 error = ofproto_flow_mod(&ctx->ofproto->up, &fm);
6656 if (error && !VLOG_DROP_WARN(&rl)) {
90bf1e07
BP
6657 VLOG_WARN("learning action failed to modify flow table (%s)",
6658 ofperr_get_name(error));
75a75043
BP
6659 }
6660
f25d0cf3 6661 ofpbuf_uninit(&ofpacts);
75a75043
BP
6662}
6663
0e553d9c
BP
6664/* Reduces '*timeout' to no more than 'max'. A value of zero in either case
6665 * means "infinite". */
6666static void
6667reduce_timeout(uint16_t max, uint16_t *timeout)
6668{
6669 if (max && (!*timeout || *timeout > max)) {
6670 *timeout = max;
6671 }
6672}
6673
6674static void
6675xlate_fin_timeout(struct action_xlate_ctx *ctx,
f25d0cf3 6676 const struct ofpact_fin_timeout *oft)
0e553d9c
BP
6677{
6678 if (ctx->tcp_flags & (TCP_FIN | TCP_RST) && ctx->rule) {
6679 struct rule_dpif *rule = ctx->rule;
6680
f25d0cf3
BP
6681 reduce_timeout(oft->fin_idle_timeout, &rule->up.idle_timeout);
6682 reduce_timeout(oft->fin_hard_timeout, &rule->up.hard_timeout);
0e553d9c
BP
6683 }
6684}
6685
29089a54
RL
6686static void
6687xlate_sample_action(struct action_xlate_ctx *ctx,
6688 const struct ofpact_sample *os)
6689{
6690 union user_action_cookie cookie;
6691 /* Scale the probability from 16-bit to 32-bit while representing
6692 * the same percentage. */
6693 uint32_t probability = (os->probability << 16) | os->probability;
6694
6695 commit_odp_actions(&ctx->flow, &ctx->base_flow, ctx->odp_actions);
6696
6697 compose_flow_sample_cookie(os->probability, os->collector_set_id,
6698 os->obs_domain_id, os->obs_point_id, &cookie);
6699 compose_sample_action(ctx->ofproto, ctx->odp_actions, &ctx->flow,
6700 probability, &cookie, sizeof cookie.flow_sample);
6701}
6702
21f7563c
JP
6703static bool
6704may_receive(const struct ofport_dpif *port, struct action_xlate_ctx *ctx)
6705{
9e1fd49b
BP
6706 if (port->up.pp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
6707 ? OFPUTIL_PC_NO_RECV_STP
6708 : OFPUTIL_PC_NO_RECV)) {
21f7563c
JP
6709 return false;
6710 }
6711
6712 /* Only drop packets here if both forwarding and learning are
6713 * disabled. If just learning is enabled, we need to have
6714 * OFPP_NORMAL and the learning action have a look at the packet
6715 * before we can drop it. */
6716 if (!stp_forward_in_state(port->stp_state)
6717 && !stp_learn_in_state(port->stp_state)) {
6718 return false;
6719 }
6720
6721 return true;
6722}
6723
4863c249
JP
6724static bool
6725tunnel_ecn_ok(struct action_xlate_ctx *ctx)
6726{
6727 if (is_ip_any(&ctx->base_flow)
715b48aa 6728 && (ctx->flow.tunnel.ip_tos & IP_ECN_MASK) == IP_ECN_CE) {
29a5df0a
JP
6729 if ((ctx->base_flow.nw_tos & IP_ECN_MASK) == IP_ECN_NOT_ECT) {
6730 VLOG_WARN_RL(&rl, "dropping tunnel packet marked ECN CE"
6731 " but is not ECN capable");
6732 return false;
6733 } else {
6734 /* Set the ECN CE value in the tunneled packet. */
6735 ctx->flow.nw_tos |= IP_ECN_CE;
6736 }
4863c249
JP
6737 }
6738
6739 return true;
6740}
6741
abe529af 6742static void
f25d0cf3 6743do_xlate_actions(const struct ofpact *ofpacts, size_t ofpacts_len,
abe529af
BP
6744 struct action_xlate_ctx *ctx)
6745{
254750ce 6746 bool was_evictable = true;
f25d0cf3 6747 const struct ofpact *a;
abe529af 6748
254750ce
BP
6749 if (ctx->rule) {
6750 /* Don't let the rule we're working on get evicted underneath us. */
6751 was_evictable = ctx->rule->up.evictable;
6752 ctx->rule->up.evictable = false;
6753 }
55599423
JR
6754
6755 do_xlate_actions_again:
f25d0cf3
BP
6756 OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
6757 struct ofpact_controller *controller;
4cceacb9 6758 const struct ofpact_metadata *metadata;
38f2e360 6759
848e8809
EJ
6760 if (ctx->exit) {
6761 break;
6762 }
6763
f25d0cf3
BP
6764 switch (a->type) {
6765 case OFPACT_OUTPUT:
6766 xlate_output_action(ctx, ofpact_get_OUTPUT(a)->port,
1688c479 6767 ofpact_get_OUTPUT(a)->max_len, true);
f25d0cf3
BP
6768 break;
6769
6770 case OFPACT_CONTROLLER:
6771 controller = ofpact_get_CONTROLLER(a);
6772 execute_controller_action(ctx, controller->max_len,
6773 controller->reason,
6774 controller->controller_id);
6775 break;
690a61c5 6776
f25d0cf3
BP
6777 case OFPACT_ENQUEUE:
6778 xlate_enqueue_action(ctx, ofpact_get_ENQUEUE(a));
abe529af
BP
6779 break;
6780
f25d0cf3 6781 case OFPACT_SET_VLAN_VID:
abe529af 6782 ctx->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
f25d0cf3
BP
6783 ctx->flow.vlan_tci |= (htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid)
6784 | htons(VLAN_CFI));
abe529af
BP
6785 break;
6786
f25d0cf3 6787 case OFPACT_SET_VLAN_PCP:
abe529af 6788 ctx->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
f25d0cf3
BP
6789 ctx->flow.vlan_tci |= htons((ofpact_get_SET_VLAN_PCP(a)->vlan_pcp
6790 << VLAN_PCP_SHIFT)
6791 | VLAN_CFI);
abe529af
BP
6792 break;
6793
f25d0cf3 6794 case OFPACT_STRIP_VLAN:
abe529af 6795 ctx->flow.vlan_tci = htons(0);
abe529af
BP
6796 break;
6797
3e34fbdd 6798 case OFPACT_PUSH_VLAN:
5dca28b5 6799 /* XXX 802.1AD(QinQ) */
3e34fbdd
IY
6800 ctx->flow.vlan_tci = htons(VLAN_CFI);
6801 break;
6802
f25d0cf3
BP
6803 case OFPACT_SET_ETH_SRC:
6804 memcpy(ctx->flow.dl_src, ofpact_get_SET_ETH_SRC(a)->mac,
6805 ETH_ADDR_LEN);
abe529af
BP
6806 break;
6807
f25d0cf3
BP
6808 case OFPACT_SET_ETH_DST:
6809 memcpy(ctx->flow.dl_dst, ofpact_get_SET_ETH_DST(a)->mac,
6810 ETH_ADDR_LEN);
abe529af
BP
6811 break;
6812
f25d0cf3 6813 case OFPACT_SET_IPV4_SRC:
1b035ef2
SH
6814 if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6815 ctx->flow.nw_src = ofpact_get_SET_IPV4_SRC(a)->ipv4;
6816 }
abe529af
BP
6817 break;
6818
f25d0cf3 6819 case OFPACT_SET_IPV4_DST:
1b035ef2
SH
6820 if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6821 ctx->flow.nw_dst = ofpact_get_SET_IPV4_DST(a)->ipv4;
6822 }
abe529af
BP
6823 break;
6824
f25d0cf3 6825 case OFPACT_SET_IPV4_DSCP:
c4f2731d
PS
6826 /* OpenFlow 1.0 only supports IPv4. */
6827 if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6828 ctx->flow.nw_tos &= ~IP_DSCP_MASK;
f25d0cf3 6829 ctx->flow.nw_tos |= ofpact_get_SET_IPV4_DSCP(a)->dscp;
c4f2731d 6830 }
abe529af
BP
6831 break;
6832
f25d0cf3 6833 case OFPACT_SET_L4_SRC_PORT:
1b035ef2
SH
6834 if (is_ip_any(&ctx->flow)) {
6835 ctx->flow.tp_src = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
6836 }
abe529af
BP
6837 break;
6838
f25d0cf3 6839 case OFPACT_SET_L4_DST_PORT:
1b035ef2
SH
6840 if (is_ip_any(&ctx->flow)) {
6841 ctx->flow.tp_dst = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
6842 }
abe529af
BP
6843 break;
6844
f25d0cf3
BP
6845 case OFPACT_RESUBMIT:
6846 xlate_ofpact_resubmit(ctx, ofpact_get_RESUBMIT(a));
38f2e360
BP
6847 break;
6848
f25d0cf3 6849 case OFPACT_SET_TUNNEL:
296e07ac 6850 ctx->flow.tunnel.tun_id = htonll(ofpact_get_SET_TUNNEL(a)->tun_id);
29901626
BP
6851 break;
6852
f25d0cf3
BP
6853 case OFPACT_SET_QUEUE:
6854 xlate_set_queue_action(ctx, ofpact_get_SET_QUEUE(a)->queue_id);
abe529af
BP
6855 break;
6856
f25d0cf3 6857 case OFPACT_POP_QUEUE:
deedf7e7 6858 ctx->flow.skb_priority = ctx->orig_skb_priority;
38f2e360
BP
6859 break;
6860
f25d0cf3
BP
6861 case OFPACT_REG_MOVE:
6862 nxm_execute_reg_move(ofpact_get_REG_MOVE(a), &ctx->flow);
38f2e360
BP
6863 break;
6864
f25d0cf3
BP
6865 case OFPACT_REG_LOAD:
6866 nxm_execute_reg_load(ofpact_get_REG_LOAD(a), &ctx->flow);
38f2e360
BP
6867 break;
6868
bd85dac1
AZ
6869 case OFPACT_STACK_PUSH:
6870 nxm_execute_stack_push(ofpact_get_STACK_PUSH(a), &ctx->flow,
6871 &ctx->stack);
6872 break;
6873
6874 case OFPACT_STACK_POP:
6875 nxm_execute_stack_pop(ofpact_get_STACK_POP(a), &ctx->flow,
6876 &ctx->stack);
6877 break;
6878
b02475c5
SH
6879 case OFPACT_PUSH_MPLS:
6880 execute_mpls_push_action(ctx, ofpact_get_PUSH_MPLS(a)->ethertype);
6881 break;
6882
6883 case OFPACT_POP_MPLS:
6884 execute_mpls_pop_action(ctx, ofpact_get_POP_MPLS(a)->ethertype);
6885 break;
6886
0f3f3c3d
SH
6887 case OFPACT_SET_MPLS_TTL:
6888 if (execute_set_mpls_ttl_action(ctx, ofpact_get_SET_MPLS_TTL(a)->ttl)) {
6889 goto out;
6890 }
6891 break;
6892
b676167a
SH
6893 case OFPACT_DEC_MPLS_TTL:
6894 if (execute_dec_mpls_ttl_action(ctx)) {
6895 goto out;
6896 }
6897 break;
6898
f25d0cf3 6899 case OFPACT_DEC_TTL:
c2d967a5 6900 if (compose_dec_ttl(ctx, ofpact_get_DEC_TTL(a))) {
f25d0cf3
BP
6901 goto out;
6902 }
38f2e360
BP
6903 break;
6904
f25d0cf3
BP
6905 case OFPACT_NOTE:
6906 /* Nothing to do. */
abe529af
BP
6907 break;
6908
f25d0cf3
BP
6909 case OFPACT_MULTIPATH:
6910 multipath_execute(ofpact_get_MULTIPATH(a), &ctx->flow);
abe529af 6911 break;
daff3353 6912
f25d0cf3 6913 case OFPACT_BUNDLE:
a368bb53 6914 ctx->ofproto->has_bundle_action = true;
f25d0cf3 6915 xlate_bundle_action(ctx, ofpact_get_BUNDLE(a));
a368bb53 6916 break;
f694937d 6917
f25d0cf3
BP
6918 case OFPACT_OUTPUT_REG:
6919 xlate_output_reg_action(ctx, ofpact_get_OUTPUT_REG(a));
f694937d 6920 break;
75a75043 6921
f25d0cf3 6922 case OFPACT_LEARN:
75a75043 6923 ctx->has_learn = true;
3de9590b 6924 if (ctx->may_learn) {
f25d0cf3 6925 xlate_learn_action(ctx, ofpact_get_LEARN(a));
75a75043
BP
6926 }
6927 break;
848e8809 6928
f25d0cf3 6929 case OFPACT_EXIT:
848e8809
EJ
6930 ctx->exit = true;
6931 break;
0e553d9c 6932
f25d0cf3 6933 case OFPACT_FIN_TIMEOUT:
0e553d9c 6934 ctx->has_fin_timeout = true;
f25d0cf3 6935 xlate_fin_timeout(ctx, ofpact_get_FIN_TIMEOUT(a));
a7349929 6936 break;
8dd54666 6937
b19e8793 6938 case OFPACT_CLEAR_ACTIONS:
5dca28b5 6939 /* XXX
b19e8793
IY
6940 * Nothing to do because writa-actions is not supported for now.
6941 * When writa-actions is supported, clear-actions also must
6942 * be supported at the same time.
6943 */
6944 break;
6945
4cceacb9
JS
6946 case OFPACT_WRITE_METADATA:
6947 metadata = ofpact_get_WRITE_METADATA(a);
6948 ctx->flow.metadata &= ~metadata->mask;
6949 ctx->flow.metadata |= metadata->metadata & metadata->mask;
6950 break;
6951
8dd54666 6952 case OFPACT_GOTO_TABLE: {
55599423 6953 /* It is assumed that goto-table is the last action. */
8dd54666 6954 struct ofpact_goto_table *ogt = ofpact_get_GOTO_TABLE(a);
55599423
JR
6955 struct rule_dpif *rule;
6956
cb22974d 6957 ovs_assert(ctx->table_id < ogt->table_id);
55599423
JR
6958
6959 ctx->table_id = ogt->table_id;
6960
6961 /* Look up a flow from the new table. */
6962 rule = rule_dpif_lookup__(ctx->ofproto, &ctx->flow, ctx->table_id);
6963
6964 tag_the_flow(ctx, rule);
6965
6966 rule = ctx_rule_hooks(ctx, rule, true);
6967
6968 if (rule) {
6969 if (ctx->rule) {
6970 ctx->rule->up.evictable = was_evictable;
6971 }
6972 ctx->rule = rule;
6973 was_evictable = rule->up.evictable;
6974 rule->up.evictable = false;
6975
6976 /* Tail recursion removal. */
6977 ofpacts = rule->up.ofpacts;
6978 ofpacts_len = rule->up.ofpacts_len;
6979 goto do_xlate_actions_again;
6980 }
8dd54666
IY
6981 break;
6982 }
29089a54
RL
6983
6984 case OFPACT_SAMPLE:
6985 xlate_sample_action(ctx, ofpact_get_SAMPLE(a));
6986 break;
abe529af
BP
6987 }
6988 }
21f7563c 6989
f0fd1a17 6990out:
254750ce
BP
6991 if (ctx->rule) {
6992 ctx->rule->up.evictable = was_evictable;
6993 }
abe529af
BP
6994}
6995
6996static void
6997action_xlate_ctx_init(struct action_xlate_ctx *ctx,
6998 struct ofproto_dpif *ofproto, const struct flow *flow,
14f94f9a
JP
6999 const struct initial_vals *initial_vals,
7000 struct rule_dpif *rule,
0e553d9c 7001 uint8_t tcp_flags, const struct ofpbuf *packet)
abe529af 7002{
ef506a7c
JG
7003 /* Flow initialization rules:
7004 * - 'base_flow' must match the kernel's view of the packet at the
7005 * time that action processing starts. 'flow' represents any
7006 * transformations we wish to make through actions.
7007 * - By default 'base_flow' and 'flow' are the same since the input
7008 * packet matches the output before any actions are applied.
7009 * - When using VLAN splinters, 'base_flow''s VLAN is set to the value
7010 * of the received packet as seen by the kernel. If we later output
7011 * to another device without any modifications this will cause us to
7012 * insert a new tag since the original one was stripped off by the
7013 * VLAN device.
4110a57a
JR
7014 * - Tunnel metadata as received is retained in 'flow'. This allows
7015 * tunnel metadata matching also in later tables.
7016 * Since a kernel action for setting the tunnel metadata will only be
7017 * generated with actual tunnel output, changing the tunnel metadata
7018 * values in 'flow' (such as tun_id) will only have effect with a later
7019 * tunnel output action.
ef506a7c
JG
7020 * - Tunnel 'base_flow' is completely cleared since that is what the
7021 * kernel does. If we wish to maintain the original values an action
7022 * needs to be generated. */
7023
abe529af
BP
7024 ctx->ofproto = ofproto;
7025 ctx->flow = *flow;
e84173dc 7026 ctx->base_flow = ctx->flow;
4110a57a 7027 memset(&ctx->base_flow.tunnel, 0, sizeof ctx->base_flow.tunnel);
18b2a258 7028 ctx->rule = rule;
abe529af 7029 ctx->packet = packet;
3de9590b 7030 ctx->may_learn = packet != NULL;
0e553d9c 7031 ctx->tcp_flags = tcp_flags;
abe529af 7032 ctx->resubmit_hook = NULL;
479df176 7033 ctx->report_hook = NULL;
112bc5f4 7034 ctx->resubmit_stats = NULL;
0f49659a
EJ
7035
7036 if (initial_vals) {
7037 ctx->base_flow.vlan_tci = initial_vals->vlan_tci;
7038 }
abe529af
BP
7039}
7040
f25d0cf3
BP
7041/* Translates the 'ofpacts_len' bytes of "struct ofpacts" starting at 'ofpacts'
7042 * into datapath actions in 'odp_actions', using 'ctx'. */
050ac423 7043static void
abe529af 7044xlate_actions(struct action_xlate_ctx *ctx,
f25d0cf3 7045 const struct ofpact *ofpacts, size_t ofpacts_len,
050ac423 7046 struct ofpbuf *odp_actions)
abe529af 7047{
43d50bc8
BP
7048 /* Normally false. Set to true if we ever hit MAX_RESUBMIT_RECURSION, so
7049 * that in the future we always keep a copy of the original flow for
7050 * tracing purposes. */
7051 static bool hit_resubmit_limit;
7052
6a7e895f 7053 enum slow_path_reason special;
ffaef958 7054 struct ofport_dpif *in_port;
9ba85077 7055 struct flow orig_flow;
6a7e895f 7056
abe529af
BP
7057 COVERAGE_INC(ofproto_dpif_xlate);
7058
050ac423
BP
7059 ofpbuf_clear(odp_actions);
7060 ofpbuf_reserve(odp_actions, NL_A_U32_SIZE);
7061
7062 ctx->odp_actions = odp_actions;
97e42c92 7063 ctx->tags = 0;
6a7e895f 7064 ctx->slow = 0;
97e42c92
BP
7065 ctx->has_learn = false;
7066 ctx->has_normal = false;
0e553d9c 7067 ctx->has_fin_timeout = false;
97e42c92 7068 ctx->nf_output_iface = NF_OUT_DROP;
9d24de3b 7069 ctx->mirrors = 0;
97e42c92 7070 ctx->recurse = 0;
6a6455e5 7071 ctx->max_resubmit_trigger = false;
deedf7e7 7072 ctx->orig_skb_priority = ctx->flow.skb_priority;
97e42c92 7073 ctx->table_id = 0;
848e8809 7074 ctx->exit = false;
7257b535 7075
bd85dac1
AZ
7076 ofpbuf_use_stub(&ctx->stack, ctx->init_stack, sizeof ctx->init_stack);
7077
43d50bc8 7078 if (ctx->ofproto->has_mirrors || hit_resubmit_limit) {
ccb7c863 7079 /* Do this conditionally because the copy is expensive enough that it
9ba85077
BP
7080 * shows up in profiles. */
7081 orig_flow = ctx->flow;
ccb7c863
BP
7082 }
7083
eadef313 7084 if (ctx->flow.nw_frag & FLOW_NW_FRAG_ANY) {
7257b535
BP
7085 switch (ctx->ofproto->up.frag_handling) {
7086 case OFPC_FRAG_NORMAL:
7087 /* We must pretend that transport ports are unavailable. */
97e42c92
BP
7088 ctx->flow.tp_src = ctx->base_flow.tp_src = htons(0);
7089 ctx->flow.tp_dst = ctx->base_flow.tp_dst = htons(0);
7257b535
BP
7090 break;
7091
7092 case OFPC_FRAG_DROP:
050ac423 7093 return;
7257b535
BP
7094
7095 case OFPC_FRAG_REASM:
7096 NOT_REACHED();
7097
7098 case OFPC_FRAG_NX_MATCH:
7099 /* Nothing to do. */
7100 break;
f0fd1a17
PS
7101
7102 case OFPC_INVALID_TTL_TO_CONTROLLER:
7103 NOT_REACHED();
7257b535
BP
7104 }
7105 }
7106
ffaef958
BP
7107 in_port = get_ofp_port(ctx->ofproto, ctx->flow.in_port);
7108 special = process_special(ctx->ofproto, &ctx->flow, in_port, ctx->packet);
6a7e895f
BP
7109 if (special) {
7110 ctx->slow |= special;
abe529af 7111 } else {
6a6455e5 7112 static struct vlog_rate_limit trace_rl = VLOG_RATE_LIMIT_INIT(1, 1);
14f94f9a 7113 struct initial_vals initial_vals;
94aa0d19 7114 size_t sample_actions_len;
ee382d89 7115 uint32_t local_odp_port;
6a6455e5 7116
14f94f9a
JP
7117 initial_vals.vlan_tci = ctx->base_flow.vlan_tci;
7118
6ff686f2 7119 add_sflow_action(ctx);
29089a54 7120 add_ipfix_action(ctx);
94aa0d19 7121 sample_actions_len = ctx->odp_actions->size;
ffaef958 7122
4863c249 7123 if (tunnel_ecn_ok(ctx) && (!in_port || may_receive(in_port, ctx))) {
ffaef958
BP
7124 do_xlate_actions(ofpacts, ofpacts_len, ctx);
7125
7126 /* We've let OFPP_NORMAL and the learning action look at the
7127 * packet, so drop it now if forwarding is disabled. */
7128 if (in_port && !stp_forward_in_state(in_port->stp_state)) {
94aa0d19 7129 ctx->odp_actions->size = sample_actions_len;
ffaef958
BP
7130 }
7131 }
abe529af 7132
43d50bc8
BP
7133 if (ctx->max_resubmit_trigger && !ctx->resubmit_hook) {
7134 if (!hit_resubmit_limit) {
7135 /* We didn't record the original flow. Make sure we do from
7136 * now on. */
7137 hit_resubmit_limit = true;
7138 } else if (!VLOG_DROP_ERR(&trace_rl)) {
7139 struct ds ds = DS_EMPTY_INITIALIZER;
7140
9ba85077 7141 ofproto_trace(ctx->ofproto, &orig_flow, ctx->packet,
14f94f9a 7142 &initial_vals, &ds);
43d50bc8
BP
7143 VLOG_ERR("Trace triggered by excessive resubmit "
7144 "recursion:\n%s", ds_cstr(&ds));
7145 ds_destroy(&ds);
7146 }
6a6455e5
EJ
7147 }
7148
ee382d89 7149 local_odp_port = ofp_port_to_odp_port(ctx->ofproto, OFPP_LOCAL);
b6848f13 7150 if (!connmgr_may_set_up_flow(ctx->ofproto->up.connmgr, &ctx->flow,
ee382d89 7151 local_odp_port,
b6848f13
BP
7152 ctx->odp_actions->data,
7153 ctx->odp_actions->size)) {
6a7e895f 7154 ctx->slow |= SLOW_IN_BAND;
b6848f13
BP
7155 if (ctx->packet
7156 && connmgr_msg_in_hook(ctx->ofproto->up.connmgr, &ctx->flow,
7157 ctx->packet)) {
5e48dc2b 7158 compose_output_action(ctx, OFPP_LOCAL);
b6848f13
BP
7159 }
7160 }
ccb7c863 7161 if (ctx->ofproto->has_mirrors) {
9ba85077 7162 add_mirror_actions(ctx, &orig_flow);
ccb7c863 7163 }
a7c4eaf6 7164 fix_sflow_action(ctx);
abe529af 7165 }
bd85dac1
AZ
7166
7167 ofpbuf_uninit(&ctx->stack);
050ac423
BP
7168}
7169
f25d0cf3
BP
7170/* Translates the 'ofpacts_len' bytes of "struct ofpact"s starting at 'ofpacts'
7171 * into datapath actions, using 'ctx', and discards the datapath actions. */
050ac423
BP
7172static void
7173xlate_actions_for_side_effects(struct action_xlate_ctx *ctx,
f25d0cf3
BP
7174 const struct ofpact *ofpacts,
7175 size_t ofpacts_len)
050ac423
BP
7176{
7177 uint64_t odp_actions_stub[1024 / 8];
7178 struct ofpbuf odp_actions;
abe529af 7179
050ac423 7180 ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
f25d0cf3 7181 xlate_actions(ctx, ofpacts, ofpacts_len, &odp_actions);
050ac423 7182 ofpbuf_uninit(&odp_actions);
abe529af 7183}
479df176
BP
7184
7185static void
7186xlate_report(struct action_xlate_ctx *ctx, const char *s)
7187{
7188 if (ctx->report_hook) {
7189 ctx->report_hook(ctx, s);
7190 }
7191}
abe529af
BP
7192\f
7193/* OFPP_NORMAL implementation. */
7194
abe529af
BP
7195static struct ofport_dpif *ofbundle_get_a_port(const struct ofbundle *);
7196
ecac4ebf
BP
7197/* Given 'vid', the VID obtained from the 802.1Q header that was received as
7198 * part of a packet (specify 0 if there was no 802.1Q header), and 'in_bundle',
7199 * the bundle on which the packet was received, returns the VLAN to which the
7200 * packet belongs.
7201 *
7202 * Both 'vid' and the return value are in the range 0...4095. */
7203static uint16_t
7204input_vid_to_vlan(const struct ofbundle *in_bundle, uint16_t vid)
7205{
7206 switch (in_bundle->vlan_mode) {
7207 case PORT_VLAN_ACCESS:
7208 return in_bundle->vlan;
7209 break;
7210
7211 case PORT_VLAN_TRUNK:
7212 return vid;
7213
7214 case PORT_VLAN_NATIVE_UNTAGGED:
7215 case PORT_VLAN_NATIVE_TAGGED:
7216 return vid ? vid : in_bundle->vlan;
7217
7218 default:
7219 NOT_REACHED();
7220 }
7221}
7222
5da5ec37
BP
7223/* Checks whether a packet with the given 'vid' may ingress on 'in_bundle'.
7224 * If so, returns true. Otherwise, returns false and, if 'warn' is true, logs
7225 * a warning.
7226 *
7227 * 'vid' should be the VID obtained from the 802.1Q header that was received as
7228 * part of a packet (specify 0 if there was no 802.1Q header), in the range
7229 * 0...4095. */
7230static bool
7231input_vid_is_valid(uint16_t vid, struct ofbundle *in_bundle, bool warn)
7232{
33158a18
JP
7233 /* Allow any VID on the OFPP_NONE port. */
7234 if (in_bundle == &ofpp_none_bundle) {
7235 return true;
7236 }
7237
5da5ec37
BP
7238 switch (in_bundle->vlan_mode) {
7239 case PORT_VLAN_ACCESS:
7240 if (vid) {
7241 if (warn) {
7242 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7243 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
7244 "packet received on port %s configured as VLAN "
7245 "%"PRIu16" access port",
7246 in_bundle->ofproto->up.name, vid,
7247 in_bundle->name, in_bundle->vlan);
7248 }
7249 return false;
7250 }
7251 return true;
7252
7253 case PORT_VLAN_NATIVE_UNTAGGED:
7254 case PORT_VLAN_NATIVE_TAGGED:
7255 if (!vid) {
7256 /* Port must always carry its native VLAN. */
7257 return true;
7258 }
7259 /* Fall through. */
7260 case PORT_VLAN_TRUNK:
7261 if (!ofbundle_includes_vlan(in_bundle, vid)) {
7262 if (warn) {
7263 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7264 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" packet "
7265 "received on port %s not configured for trunking "
7266 "VLAN %"PRIu16,
7267 in_bundle->ofproto->up.name, vid,
7268 in_bundle->name, vid);
7269 }
7270 return false;
7271 }
7272 return true;
7273
7274 default:
7275 NOT_REACHED();
7276 }
7277
7278}
7279
ecac4ebf
BP
7280/* Given 'vlan', the VLAN that a packet belongs to, and
7281 * 'out_bundle', a bundle on which the packet is to be output, returns the VID
7282 * that should be included in the 802.1Q header. (If the return value is 0,
7283 * then the 802.1Q header should only be included in the packet if there is a
7284 * nonzero PCP.)
7285 *
7286 * Both 'vlan' and the return value are in the range 0...4095. */
7287static uint16_t
7288output_vlan_to_vid(const struct ofbundle *out_bundle, uint16_t vlan)
7289{
7290 switch (out_bundle->vlan_mode) {
7291 case PORT_VLAN_ACCESS:
7292 return 0;
7293
7294 case PORT_VLAN_TRUNK:
7295 case PORT_VLAN_NATIVE_TAGGED:
7296 return vlan;
7297
7298 case PORT_VLAN_NATIVE_UNTAGGED:
7299 return vlan == out_bundle->vlan ? 0 : vlan;
7300
7301 default:
7302 NOT_REACHED();
7303 }
7304}
7305
395e68ce
BP
7306static void
7307output_normal(struct action_xlate_ctx *ctx, const struct ofbundle *out_bundle,
7308 uint16_t vlan)
abe529af 7309{
395e68ce
BP
7310 struct ofport_dpif *port;
7311 uint16_t vid;
81b1afb1 7312 ovs_be16 tci, old_tci;
ecac4ebf 7313
395e68ce
BP
7314 vid = output_vlan_to_vid(out_bundle, vlan);
7315 if (!out_bundle->bond) {
7316 port = ofbundle_get_a_port(out_bundle);
7317 } else {
7318 port = bond_choose_output_slave(out_bundle->bond, &ctx->flow,
7319 vid, &ctx->tags);
7320 if (!port) {
7321 /* No slaves enabled, so drop packet. */
7322 return;
7323 }
7324 }
abe529af 7325
81b1afb1 7326 old_tci = ctx->flow.vlan_tci;
5e9ceccd
BP
7327 tci = htons(vid);
7328 if (tci || out_bundle->use_priority_tags) {
7329 tci |= ctx->flow.vlan_tci & htons(VLAN_PCP_MASK);
7330 if (tci) {
7331 tci |= htons(VLAN_CFI);
7332 }
395e68ce 7333 }
81b1afb1 7334 ctx->flow.vlan_tci = tci;
395e68ce 7335
5e48dc2b 7336 compose_output_action(ctx, port->up.ofp_port);
81b1afb1 7337 ctx->flow.vlan_tci = old_tci;
abe529af
BP
7338}
7339
7340static int
7341mirror_mask_ffs(mirror_mask_t mask)
7342{
7343 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
7344 return ffs(mask);
7345}
7346
abe529af
BP
7347static bool
7348ofbundle_trunks_vlan(const struct ofbundle *bundle, uint16_t vlan)
7349{
ecac4ebf 7350 return (bundle->vlan_mode != PORT_VLAN_ACCESS
fc3d7408 7351 && (!bundle->trunks || bitmap_is_set(bundle->trunks, vlan)));
abe529af
BP
7352}
7353
7354static bool
7355ofbundle_includes_vlan(const struct ofbundle *bundle, uint16_t vlan)
7356{
7357 return vlan == bundle->vlan || ofbundle_trunks_vlan(bundle, vlan);
7358}
7359
7360/* Returns an arbitrary interface within 'bundle'. */
7361static struct ofport_dpif *
7362ofbundle_get_a_port(const struct ofbundle *bundle)
7363{
7364 return CONTAINER_OF(list_front(&bundle->ports),
7365 struct ofport_dpif, bundle_node);
7366}
7367
abe529af
BP
7368static bool
7369vlan_is_mirrored(const struct ofmirror *m, int vlan)
7370{
fc3d7408 7371 return !m->vlans || bitmap_is_set(m->vlans, vlan);
abe529af
BP
7372}
7373
7374static void
c06bba01 7375add_mirror_actions(struct action_xlate_ctx *ctx, const struct flow *orig_flow)
abe529af
BP
7376{
7377 struct ofproto_dpif *ofproto = ctx->ofproto;
7378 mirror_mask_t mirrors;
c06bba01
JP
7379 struct ofbundle *in_bundle;
7380 uint16_t vlan;
7381 uint16_t vid;
7382 const struct nlattr *a;
7383 size_t left;
7384
3581c12c 7385 in_bundle = lookup_input_bundle(ctx->ofproto, orig_flow->in_port,
70c2fd56 7386 ctx->packet != NULL, NULL);
3581c12c 7387 if (!in_bundle) {
c06bba01
JP
7388 return;
7389 }
c06bba01
JP
7390 mirrors = in_bundle->src_mirrors;
7391
7392 /* Drop frames on bundles reserved for mirroring. */
7393 if (in_bundle->mirror_out) {
7394 if (ctx->packet != NULL) {
7395 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7396 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
7397 "%s, which is reserved exclusively for mirroring",
7398 ctx->ofproto->up.name, in_bundle->name);
7399 }
7400 return;
7401 }
7402
7403 /* Check VLAN. */
7404 vid = vlan_tci_to_vid(orig_flow->vlan_tci);
7405 if (!input_vid_is_valid(vid, in_bundle, ctx->packet != NULL)) {
7406 return;
7407 }
7408 vlan = input_vid_to_vlan(in_bundle, vid);
7409
7410 /* Look at the output ports to check for destination selections. */
7411
7412 NL_ATTR_FOR_EACH (a, left, ctx->odp_actions->data,
7413 ctx->odp_actions->size) {
7414 enum ovs_action_attr type = nl_attr_type(a);
7415 struct ofport_dpif *ofport;
7416
7417 if (type != OVS_ACTION_ATTR_OUTPUT) {
7418 continue;
7419 }
7420
7421 ofport = get_odp_port(ofproto, nl_attr_get_u32(a));
521472bc
BP
7422 if (ofport && ofport->bundle) {
7423 mirrors |= ofport->bundle->dst_mirrors;
7424 }
c06bba01 7425 }
abe529af
BP
7426
7427 if (!mirrors) {
7428 return;
7429 }
7430
c06bba01
JP
7431 /* Restore the original packet before adding the mirror actions. */
7432 ctx->flow = *orig_flow;
7433
9ba15e2a
BP
7434 while (mirrors) {
7435 struct ofmirror *m;
9ba15e2a
BP
7436
7437 m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
7438
7439 if (!vlan_is_mirrored(m, vlan)) {
8472a3ce 7440 mirrors = zero_rightmost_1bit(mirrors);
9ba15e2a
BP
7441 continue;
7442 }
7443
7444 mirrors &= ~m->dup_mirrors;
9d24de3b 7445 ctx->mirrors |= m->dup_mirrors;
9ba15e2a 7446 if (m->out) {
395e68ce 7447 output_normal(ctx, m->out, vlan);
614ec445
EJ
7448 } else if (vlan != m->out_vlan
7449 && !eth_addr_is_reserved(orig_flow->dl_dst)) {
9ba15e2a
BP
7450 struct ofbundle *bundle;
7451
7452 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
7453 if (ofbundle_includes_vlan(bundle, m->out_vlan)
395e68ce
BP
7454 && !bundle->mirror_out) {
7455 output_normal(ctx, bundle, m->out_vlan);
abe529af
BP
7456 }
7457 }
7458 }
abe529af
BP
7459 }
7460}
7461
9d24de3b
JP
7462static void
7463update_mirror_stats(struct ofproto_dpif *ofproto, mirror_mask_t mirrors,
7464 uint64_t packets, uint64_t bytes)
7465{
7466 if (!mirrors) {
7467 return;
7468 }
7469
8472a3ce 7470 for (; mirrors; mirrors = zero_rightmost_1bit(mirrors)) {
9d24de3b
JP
7471 struct ofmirror *m;
7472
7473 m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
7474
7475 if (!m) {
7476 /* In normal circumstances 'm' will not be NULL. However,
7477 * if mirrors are reconfigured, we can temporarily get out
7478 * of sync in facet_revalidate(). We could "correct" the
7479 * mirror list before reaching here, but doing that would
7480 * not properly account the traffic stats we've currently
7481 * accumulated for previous mirror configuration. */
7482 continue;
7483 }
7484
7485 m->packet_count += packets;
7486 m->byte_count += bytes;
7487 }
7488}
7489
abe529af
BP
7490/* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
7491 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
7492 * indicate this; newer upstream kernels use gratuitous ARP requests. */
7493static bool
7494is_gratuitous_arp(const struct flow *flow)
7495{
7496 return (flow->dl_type == htons(ETH_TYPE_ARP)
7497 && eth_addr_is_broadcast(flow->dl_dst)
7498 && (flow->nw_proto == ARP_OP_REPLY
7499 || (flow->nw_proto == ARP_OP_REQUEST
7500 && flow->nw_src == flow->nw_dst)));
7501}
7502
7503static void
7504update_learning_table(struct ofproto_dpif *ofproto,
7505 const struct flow *flow, int vlan,
7506 struct ofbundle *in_bundle)
7507{
7508 struct mac_entry *mac;
7509
33158a18
JP
7510 /* Don't learn the OFPP_NONE port. */
7511 if (in_bundle == &ofpp_none_bundle) {
7512 return;
7513 }
7514
abe529af
BP
7515 if (!mac_learning_may_learn(ofproto->ml, flow->dl_src, vlan)) {
7516 return;
7517 }
7518
7519 mac = mac_learning_insert(ofproto->ml, flow->dl_src, vlan);
7520 if (is_gratuitous_arp(flow)) {
7521 /* We don't want to learn from gratuitous ARP packets that are
7522 * reflected back over bond slaves so we lock the learning table. */
7523 if (!in_bundle->bond) {
7524 mac_entry_set_grat_arp_lock(mac);
7525 } else if (mac_entry_is_grat_arp_locked(mac)) {
7526 return;
7527 }
7528 }
7529
7530 if (mac_entry_is_new(mac) || mac->port.p != in_bundle) {
7531 /* The log messages here could actually be useful in debugging,
7532 * so keep the rate limit relatively high. */
7533 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
7534 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
7535 "on port %s in VLAN %d",
7536 ofproto->up.name, ETH_ADDR_ARGS(flow->dl_src),
7537 in_bundle->name, vlan);
7538
7539 mac->port.p = in_bundle;
2cc3c58e 7540 tag_set_add(&ofproto->backer->revalidate_set,
abe529af
BP
7541 mac_learning_changed(ofproto->ml, mac));
7542 }
7543}
7544
3581c12c 7545static struct ofbundle *
4acbc98d
SH
7546lookup_input_bundle(const struct ofproto_dpif *ofproto, uint16_t in_port,
7547 bool warn, struct ofport_dpif **in_ofportp)
395e68ce
BP
7548{
7549 struct ofport_dpif *ofport;
7550
7551 /* Find the port and bundle for the received packet. */
7552 ofport = get_ofp_port(ofproto, in_port);
70c2fd56
BP
7553 if (in_ofportp) {
7554 *in_ofportp = ofport;
7555 }
395e68ce 7556 if (ofport && ofport->bundle) {
3581c12c 7557 return ofport->bundle;
395e68ce
BP
7558 }
7559
70c2fd56
BP
7560 /* Special-case OFPP_NONE, which a controller may use as the ingress
7561 * port for traffic that it is sourcing. */
7562 if (in_port == OFPP_NONE) {
7563 return &ofpp_none_bundle;
7564 }
7565
395e68ce
BP
7566 /* Odd. A few possible reasons here:
7567 *
7568 * - We deleted a port but there are still a few packets queued up
7569 * from it.
7570 *
7571 * - Someone externally added a port (e.g. "ovs-dpctl add-if") that
7572 * we don't know about.
7573 *
7574 * - The ofproto client didn't configure the port as part of a bundle.
6b803ddc
EJ
7575 * This is particularly likely to happen if a packet was received on the
7576 * port after it was created, but before the client had a chance to
7577 * configure its bundle.
395e68ce
BP
7578 */
7579 if (warn) {
7580 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7581
7582 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
7583 "port %"PRIu16, ofproto->up.name, in_port);
7584 }
7585 return NULL;
7586}
7587
5da5ec37 7588/* Determines whether packets in 'flow' within 'ofproto' should be forwarded or
abe529af
BP
7589 * dropped. Returns true if they may be forwarded, false if they should be
7590 * dropped.
7591 *
395e68ce
BP
7592 * 'in_port' must be the ofport_dpif that corresponds to flow->in_port.
7593 * 'in_port' must be part of a bundle (e.g. in_port->bundle must be nonnull).
abe529af 7594 *
395e68ce
BP
7595 * 'vlan' must be the VLAN that corresponds to flow->vlan_tci on 'in_port', as
7596 * returned by input_vid_to_vlan(). It must be a valid VLAN for 'in_port', as
7597 * checked by input_vid_is_valid().
abe529af
BP
7598 *
7599 * May also add tags to '*tags', although the current implementation only does
7600 * so in one special case.
7601 */
7602static bool
479df176
BP
7603is_admissible(struct action_xlate_ctx *ctx, struct ofport_dpif *in_port,
7604 uint16_t vlan)
abe529af 7605{
479df176
BP
7606 struct ofproto_dpif *ofproto = ctx->ofproto;
7607 struct flow *flow = &ctx->flow;
395e68ce 7608 struct ofbundle *in_bundle = in_port->bundle;
abe529af 7609
395e68ce
BP
7610 /* Drop frames for reserved multicast addresses
7611 * only if forward_bpdu option is absent. */
614ec445 7612 if (!ofproto->up.forward_bpdu && eth_addr_is_reserved(flow->dl_dst)) {
479df176 7613 xlate_report(ctx, "packet has reserved destination MAC, dropping");
abe529af
BP
7614 return false;
7615 }
7616
abe529af
BP
7617 if (in_bundle->bond) {
7618 struct mac_entry *mac;
7619
7620 switch (bond_check_admissibility(in_bundle->bond, in_port,
479df176 7621 flow->dl_dst, &ctx->tags)) {
abe529af
BP
7622 case BV_ACCEPT:
7623 break;
7624
7625 case BV_DROP:
479df176 7626 xlate_report(ctx, "bonding refused admissibility, dropping");
abe529af
BP
7627 return false;
7628
7629 case BV_DROP_IF_MOVED:
7630 mac = mac_learning_lookup(ofproto->ml, flow->dl_src, vlan, NULL);
7631 if (mac && mac->port.p != in_bundle &&
7632 (!is_gratuitous_arp(flow)
7633 || mac_entry_is_grat_arp_locked(mac))) {
479df176
BP
7634 xlate_report(ctx, "SLB bond thinks this packet looped back, "
7635 "dropping");
abe529af
BP
7636 return false;
7637 }
7638 break;
7639 }
7640 }
7641
7642 return true;
7643}
7644
4cd78906 7645static void
abe529af
BP
7646xlate_normal(struct action_xlate_ctx *ctx)
7647{
395e68ce 7648 struct ofport_dpif *in_port;
abe529af 7649 struct ofbundle *in_bundle;
abe529af 7650 struct mac_entry *mac;
395e68ce
BP
7651 uint16_t vlan;
7652 uint16_t vid;
abe529af 7653
75a75043
BP
7654 ctx->has_normal = true;
7655
3581c12c 7656 in_bundle = lookup_input_bundle(ctx->ofproto, ctx->flow.in_port,
70c2fd56 7657 ctx->packet != NULL, &in_port);
3581c12c 7658 if (!in_bundle) {
479df176 7659 xlate_report(ctx, "no input bundle, dropping");
395e68ce
BP
7660 return;
7661 }
3581c12c 7662
395e68ce
BP
7663 /* Drop malformed frames. */
7664 if (ctx->flow.dl_type == htons(ETH_TYPE_VLAN) &&
7665 !(ctx->flow.vlan_tci & htons(VLAN_CFI))) {
7666 if (ctx->packet != NULL) {
7667 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7668 VLOG_WARN_RL(&rl, "bridge %s: dropping packet with partial "
7669 "VLAN tag received on port %s",
7670 ctx->ofproto->up.name, in_bundle->name);
7671 }
479df176 7672 xlate_report(ctx, "partial VLAN tag, dropping");
395e68ce
BP
7673 return;
7674 }
7675
7676 /* Drop frames on bundles reserved for mirroring. */
7677 if (in_bundle->mirror_out) {
7678 if (ctx->packet != NULL) {
7679 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7680 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
7681 "%s, which is reserved exclusively for mirroring",
7682 ctx->ofproto->up.name, in_bundle->name);
7683 }
479df176 7684 xlate_report(ctx, "input port is mirror output port, dropping");
395e68ce
BP
7685 return;
7686 }
7687
7688 /* Check VLAN. */
7689 vid = vlan_tci_to_vid(ctx->flow.vlan_tci);
7690 if (!input_vid_is_valid(vid, in_bundle, ctx->packet != NULL)) {
479df176 7691 xlate_report(ctx, "disallowed VLAN VID for this input port, dropping");
395e68ce
BP
7692 return;
7693 }
7694 vlan = input_vid_to_vlan(in_bundle, vid);
7695
7696 /* Check other admissibility requirements. */
479df176 7697 if (in_port && !is_admissible(ctx, in_port, vlan)) {
395e68ce 7698 return;
abe529af
BP
7699 }
7700
75a75043 7701 /* Learn source MAC. */
3de9590b 7702 if (ctx->may_learn) {
abe529af
BP
7703 update_learning_table(ctx->ofproto, &ctx->flow, vlan, in_bundle);
7704 }
7705
7706 /* Determine output bundle. */
7707 mac = mac_learning_lookup(ctx->ofproto->ml, ctx->flow.dl_dst, vlan,
7708 &ctx->tags);
7709 if (mac) {
c06bba01 7710 if (mac->port.p != in_bundle) {
479df176 7711 xlate_report(ctx, "forwarding to learned port");
c06bba01 7712 output_normal(ctx, mac->port.p, vlan);
479df176
BP
7713 } else {
7714 xlate_report(ctx, "learned port is input port, dropping");
c06bba01 7715 }
abe529af 7716 } else {
c06bba01 7717 struct ofbundle *bundle;
abe529af 7718
479df176 7719 xlate_report(ctx, "no learned MAC for destination, flooding");
c06bba01
JP
7720 HMAP_FOR_EACH (bundle, hmap_node, &ctx->ofproto->bundles) {
7721 if (bundle != in_bundle
7722 && ofbundle_includes_vlan(bundle, vlan)
7723 && bundle->floodable
7724 && !bundle->mirror_out) {
7725 output_normal(ctx, bundle, vlan);
7726 }
7727 }
7728 ctx->nf_output_iface = NF_OUT_FLOOD;
abe529af 7729 }
abe529af
BP
7730}
7731\f
54a9cbc9
BP
7732/* Optimized flow revalidation.
7733 *
7734 * It's a difficult problem, in general, to tell which facets need to have
7735 * their actions recalculated whenever the OpenFlow flow table changes. We
7736 * don't try to solve that general problem: for most kinds of OpenFlow flow
7737 * table changes, we recalculate the actions for every facet. This is
7738 * relatively expensive, but it's good enough if the OpenFlow flow table
7739 * doesn't change very often.
7740 *
7741 * However, we can expect one particular kind of OpenFlow flow table change to
7742 * happen frequently: changes caused by MAC learning. To avoid wasting a lot
7743 * of CPU on revalidating every facet whenever MAC learning modifies the flow
7744 * table, we add a special case that applies to flow tables in which every rule
7745 * has the same form (that is, the same wildcards), except that the table is
7746 * also allowed to have a single "catch-all" flow that matches all packets. We
7747 * optimize this case by tagging all of the facets that resubmit into the table
7748 * and invalidating the same tag whenever a flow changes in that table. The
7749 * end result is that we revalidate just the facets that need it (and sometimes
7750 * a few more, but not all of the facets or even all of the facets that
7751 * resubmit to the table modified by MAC learning). */
7752
5cb7a798 7753/* Calculates the tag to use for 'flow' and mask 'mask' when it is inserted
54a9cbc9 7754 * into an OpenFlow table with the given 'basis'. */
822d9414 7755static tag_type
5cb7a798 7756rule_calculate_tag(const struct flow *flow, const struct minimask *mask,
54a9cbc9
BP
7757 uint32_t secret)
7758{
5cb7a798 7759 if (minimask_is_catchall(mask)) {
54a9cbc9
BP
7760 return 0;
7761 } else {
5cb7a798
BP
7762 uint32_t hash = flow_hash_in_minimask(flow, mask, secret);
7763 return tag_create_deterministic(hash);
54a9cbc9
BP
7764 }
7765}
7766
7767/* Following a change to OpenFlow table 'table_id' in 'ofproto', update the
7768 * taggability of that table.
7769 *
7770 * This function must be called after *each* change to a flow table. If you
7771 * skip calling it on some changes then the pointer comparisons at the end can
7772 * be invalid if you get unlucky. For example, if a flow removal causes a
7773 * cls_table to be destroyed and then a flow insertion causes a cls_table with
7774 * different wildcards to be created with the same address, then this function
7775 * will incorrectly skip revalidation. */
7776static void
7777table_update_taggable(struct ofproto_dpif *ofproto, uint8_t table_id)
7778{
7779 struct table_dpif *table = &ofproto->tables[table_id];
d0918789 7780 const struct oftable *oftable = &ofproto->up.tables[table_id];
54a9cbc9
BP
7781 struct cls_table *catchall, *other;
7782 struct cls_table *t;
7783
7784 catchall = other = NULL;
7785
d0918789 7786 switch (hmap_count(&oftable->cls.tables)) {
54a9cbc9
BP
7787 case 0:
7788 /* We could tag this OpenFlow table but it would make the logic a
7789 * little harder and it's a corner case that doesn't seem worth it
7790 * yet. */
7791 break;
7792
7793 case 1:
7794 case 2:
d0918789 7795 HMAP_FOR_EACH (t, hmap_node, &oftable->cls.tables) {
54a9cbc9
BP
7796 if (cls_table_is_catchall(t)) {
7797 catchall = t;
7798 } else if (!other) {
7799 other = t;
7800 } else {
7801 /* Indicate that we can't tag this by setting both tables to
7802 * NULL. (We know that 'catchall' is already NULL.) */
7803 other = NULL;
7804 }
7805 }
7806 break;
7807
7808 default:
7809 /* Can't tag this table. */
7810 break;
7811 }
7812
7813 if (table->catchall_table != catchall || table->other_table != other) {
7814 table->catchall_table = catchall;
7815 table->other_table = other;
2cc3c58e 7816 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
54a9cbc9
BP
7817 }
7818}
7819
7820/* Given 'rule' that has changed in some way (either it is a rule being
7821 * inserted, a rule being deleted, or a rule whose actions are being
7822 * modified), marks facets for revalidation to ensure that packets will be
7823 * forwarded correctly according to the new state of the flow table.
7824 *
7825 * This function must be called after *each* change to a flow table. See
7826 * the comment on table_update_taggable() for more information. */
7827static void
7828rule_invalidate(const struct rule_dpif *rule)
7829{
7830 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
7831
7832 table_update_taggable(ofproto, rule->up.table_id);
7833
2cc3c58e 7834 if (!ofproto->backer->need_revalidate) {
54a9cbc9
BP
7835 struct table_dpif *table = &ofproto->tables[rule->up.table_id];
7836
7837 if (table->other_table && rule->tag) {
2cc3c58e 7838 tag_set_add(&ofproto->backer->revalidate_set, rule->tag);
54a9cbc9 7839 } else {
2cc3c58e 7840 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
54a9cbc9
BP
7841 }
7842 }
7843}
7844\f
abe529af 7845static bool
7257b535
BP
7846set_frag_handling(struct ofproto *ofproto_,
7847 enum ofp_config_flags frag_handling)
abe529af
BP
7848{
7849 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7257b535 7850 if (frag_handling != OFPC_FRAG_REASM) {
2cc3c58e 7851 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7257b535
BP
7852 return true;
7853 } else {
7854 return false;
7855 }
abe529af
BP
7856}
7857
90bf1e07 7858static enum ofperr
abe529af
BP
7859packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
7860 const struct flow *flow,
f25d0cf3 7861 const struct ofpact *ofpacts, size_t ofpacts_len)
abe529af
BP
7862{
7863 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
14f94f9a 7864 struct initial_vals initial_vals;
548de4dd
BP
7865 struct odputil_keybuf keybuf;
7866 struct dpif_flow_stats stats;
abe529af 7867
548de4dd 7868 struct ofpbuf key;
112bc5f4 7869
548de4dd
BP
7870 struct action_xlate_ctx ctx;
7871 uint64_t odp_actions_stub[1024 / 8];
7872 struct ofpbuf odp_actions;
80e5eed9 7873
548de4dd 7874 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
e1b1d06a
JP
7875 odp_flow_key_from_flow(&key, flow,
7876 ofp_port_to_odp_port(ofproto, flow->in_port));
050ac423 7877
548de4dd 7878 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
abe529af 7879
14f94f9a
JP
7880 initial_vals.vlan_tci = flow->vlan_tci;
7881 action_xlate_ctx_init(&ctx, ofproto, flow, &initial_vals, NULL,
548de4dd
BP
7882 packet_get_tcp_flags(packet, flow), packet);
7883 ctx.resubmit_stats = &stats;
2284188b 7884
548de4dd
BP
7885 ofpbuf_use_stub(&odp_actions,
7886 odp_actions_stub, sizeof odp_actions_stub);
7887 xlate_actions(&ctx, ofpacts, ofpacts_len, &odp_actions);
acf60855 7888 dpif_execute(ofproto->backer->dpif, key.data, key.size,
548de4dd
BP
7889 odp_actions.data, odp_actions.size, packet);
7890 ofpbuf_uninit(&odp_actions);
2284188b 7891
548de4dd 7892 return 0;
abe529af 7893}
6fca1ffb
BP
7894\f
7895/* NetFlow. */
7896
7897static int
7898set_netflow(struct ofproto *ofproto_,
7899 const struct netflow_options *netflow_options)
7900{
7901 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7902
7903 if (netflow_options) {
7904 if (!ofproto->netflow) {
7905 ofproto->netflow = netflow_create();
7906 }
7907 return netflow_set_options(ofproto->netflow, netflow_options);
7908 } else {
7909 netflow_destroy(ofproto->netflow);
7910 ofproto->netflow = NULL;
7911 return 0;
7912 }
7913}
abe529af
BP
7914
7915static void
7916get_netflow_ids(const struct ofproto *ofproto_,
7917 uint8_t *engine_type, uint8_t *engine_id)
7918{
7919 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7920
acf60855 7921 dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
abe529af 7922}
6fca1ffb
BP
7923
7924static void
7925send_active_timeout(struct ofproto_dpif *ofproto, struct facet *facet)
7926{
7927 if (!facet_is_controller_flow(facet) &&
7928 netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
b0f7b9b5 7929 struct subfacet *subfacet;
6fca1ffb
BP
7930 struct ofexpired expired;
7931
b0f7b9b5 7932 LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
6a7e895f 7933 if (subfacet->path == SF_FAST_PATH) {
b0f7b9b5 7934 struct dpif_flow_stats stats;
6fca1ffb 7935
6a7e895f 7936 subfacet_reinstall(subfacet, &stats);
15baa734 7937 subfacet_update_stats(subfacet, &stats);
b0f7b9b5 7938 }
6fca1ffb
BP
7939 }
7940
7941 expired.flow = facet->flow;
7942 expired.packet_count = facet->packet_count;
7943 expired.byte_count = facet->byte_count;
7944 expired.used = facet->used;
7945 netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
7946 }
7947}
7948
7949static void
7950send_netflow_active_timeouts(struct ofproto_dpif *ofproto)
7951{
7952 struct facet *facet;
7953
7954 HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
7955 send_active_timeout(ofproto, facet);
7956 }
7957}
abe529af
BP
7958\f
7959static struct ofproto_dpif *
7960ofproto_dpif_lookup(const char *name)
7961{
b44a10b7
BP
7962 struct ofproto_dpif *ofproto;
7963
7964 HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
7965 hash_string(name, 0), &all_ofproto_dpifs) {
7966 if (!strcmp(ofproto->up.name, name)) {
7967 return ofproto;
7968 }
7969 }
7970 return NULL;
abe529af
BP
7971}
7972
f0a3aa2e 7973static void
96e466a3 7974ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
0e15264f 7975 const char *argv[], void *aux OVS_UNUSED)
f0a3aa2e 7976{
490df1ef 7977 struct ofproto_dpif *ofproto;
f0a3aa2e 7978
96e466a3
EJ
7979 if (argc > 1) {
7980 ofproto = ofproto_dpif_lookup(argv[1]);
7981 if (!ofproto) {
bde9f75d 7982 unixctl_command_reply_error(conn, "no such bridge");
96e466a3
EJ
7983 return;
7984 }
2cc3c58e 7985 mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
96e466a3
EJ
7986 } else {
7987 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2cc3c58e 7988 mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
96e466a3 7989 }
f0a3aa2e 7990 }
f0a3aa2e 7991
bde9f75d 7992 unixctl_command_reply(conn, "table successfully flushed");
f0a3aa2e
AA
7993}
7994
abe529af 7995static void
0e15264f
BP
7996ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
7997 const char *argv[], void *aux OVS_UNUSED)
abe529af
BP
7998{
7999 struct ds ds = DS_EMPTY_INITIALIZER;
8000 const struct ofproto_dpif *ofproto;
8001 const struct mac_entry *e;
8002
0e15264f 8003 ofproto = ofproto_dpif_lookup(argv[1]);
abe529af 8004 if (!ofproto) {
bde9f75d 8005 unixctl_command_reply_error(conn, "no such bridge");
abe529af
BP
8006 return;
8007 }
8008
8009 ds_put_cstr(&ds, " port VLAN MAC Age\n");
8010 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
8011 struct ofbundle *bundle = e->port.p;
8012 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
8013 ofbundle_get_a_port(bundle)->odp_port,
e764773c
BP
8014 e->vlan, ETH_ADDR_ARGS(e->mac),
8015 mac_entry_age(ofproto->ml, e));
abe529af 8016 }
bde9f75d 8017 unixctl_command_reply(conn, ds_cstr(&ds));
abe529af
BP
8018 ds_destroy(&ds);
8019}
8020
6a6455e5 8021struct trace_ctx {
abe529af
BP
8022 struct action_xlate_ctx ctx;
8023 struct flow flow;
8024 struct ds *result;
8025};
8026
8027static void
29901626
BP
8028trace_format_rule(struct ds *result, uint8_t table_id, int level,
8029 const struct rule_dpif *rule)
abe529af
BP
8030{
8031 ds_put_char_multiple(result, '\t', level);
8032 if (!rule) {
8033 ds_put_cstr(result, "No match\n");
8034 return;
8035 }
8036
29901626
BP
8037 ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
8038 table_id, ntohll(rule->up.flow_cookie));
79feb7df 8039 cls_rule_format(&rule->up.cr, result);
abe529af
BP
8040 ds_put_char(result, '\n');
8041
8042 ds_put_char_multiple(result, '\t', level);
8043 ds_put_cstr(result, "OpenFlow ");
f25d0cf3 8044 ofpacts_format(rule->up.ofpacts, rule->up.ofpacts_len, result);
abe529af
BP
8045 ds_put_char(result, '\n');
8046}
8047
8048static void
8049trace_format_flow(struct ds *result, int level, const char *title,
6a6455e5 8050 struct trace_ctx *trace)
abe529af
BP
8051{
8052 ds_put_char_multiple(result, '\t', level);
8053 ds_put_format(result, "%s: ", title);
8054 if (flow_equal(&trace->ctx.flow, &trace->flow)) {
8055 ds_put_cstr(result, "unchanged");
8056 } else {
8057 flow_format(result, &trace->ctx.flow);
8058 trace->flow = trace->ctx.flow;
8059 }
8060 ds_put_char(result, '\n');
8061}
8062
eb9e1c26
EJ
8063static void
8064trace_format_regs(struct ds *result, int level, const char *title,
6a6455e5 8065 struct trace_ctx *trace)
eb9e1c26
EJ
8066{
8067 size_t i;
8068
8069 ds_put_char_multiple(result, '\t', level);
8070 ds_put_format(result, "%s:", title);
8071 for (i = 0; i < FLOW_N_REGS; i++) {
8072 ds_put_format(result, " reg%zu=0x%"PRIx32, i, trace->flow.regs[i]);
8073 }
8074 ds_put_char(result, '\n');
8075}
8076
1ed8d352
EJ
8077static void
8078trace_format_odp(struct ds *result, int level, const char *title,
6a6455e5 8079 struct trace_ctx *trace)
1ed8d352
EJ
8080{
8081 struct ofpbuf *odp_actions = trace->ctx.odp_actions;
8082
8083 ds_put_char_multiple(result, '\t', level);
8084 ds_put_format(result, "%s: ", title);
8085 format_odp_actions(result, odp_actions->data, odp_actions->size);
8086 ds_put_char(result, '\n');
8087}
8088
abe529af
BP
8089static void
8090trace_resubmit(struct action_xlate_ctx *ctx, struct rule_dpif *rule)
8091{
6a6455e5 8092 struct trace_ctx *trace = CONTAINER_OF(ctx, struct trace_ctx, ctx);
abe529af
BP
8093 struct ds *result = trace->result;
8094
8095 ds_put_char(result, '\n');
8096 trace_format_flow(result, ctx->recurse + 1, "Resubmitted flow", trace);
eb9e1c26 8097 trace_format_regs(result, ctx->recurse + 1, "Resubmitted regs", trace);
1ed8d352 8098 trace_format_odp(result, ctx->recurse + 1, "Resubmitted odp", trace);
29901626 8099 trace_format_rule(result, ctx->table_id, ctx->recurse + 1, rule);
abe529af
BP
8100}
8101
479df176
BP
8102static void
8103trace_report(struct action_xlate_ctx *ctx, const char *s)
8104{
8105 struct trace_ctx *trace = CONTAINER_OF(ctx, struct trace_ctx, ctx);
8106 struct ds *result = trace->result;
8107
8108 ds_put_char_multiple(result, '\t', ctx->recurse);
8109 ds_put_cstr(result, s);
8110 ds_put_char(result, '\n');
8111}
8112
abe529af 8113static void
0e15264f 8114ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
abe529af
BP
8115 void *aux OVS_UNUSED)
8116{
0e15264f 8117 const char *dpname = argv[1];
abe529af 8118 struct ofproto_dpif *ofproto;
876b0e1c
BP
8119 struct ofpbuf odp_key;
8120 struct ofpbuf *packet;
14f94f9a 8121 struct initial_vals initial_vals;
abe529af
BP
8122 struct ds result;
8123 struct flow flow;
abe529af
BP
8124 char *s;
8125
876b0e1c
BP
8126 packet = NULL;
8127 ofpbuf_init(&odp_key, 0);
abe529af
BP
8128 ds_init(&result);
8129
e84173dc
BP
8130 ofproto = ofproto_dpif_lookup(dpname);
8131 if (!ofproto) {
bde9f75d
EJ
8132 unixctl_command_reply_error(conn, "Unknown ofproto (use ofproto/list "
8133 "for help)");
e84173dc
BP
8134 goto exit;
8135 }
0e15264f 8136 if (argc == 3 || (argc == 4 && !strcmp(argv[3], "-generate"))) {
8b3b8dd1 8137 /* ofproto/trace dpname flow [-generate] */
0e15264f
BP
8138 const char *flow_s = argv[2];
8139 const char *generate_s = argv[3];
876b0e1c 8140
31a19d69
BP
8141 /* Allow 'flow_s' to be either a datapath flow or an OpenFlow-like
8142 * flow. We guess which type it is based on whether 'flow_s' contains
8143 * an '(', since a datapath flow always contains '(') but an
8144 * OpenFlow-like flow should not (in fact it's allowed but I believe
8145 * that's not documented anywhere).
8146 *
8147 * An alternative would be to try to parse 'flow_s' both ways, but then
8148 * it would be tricky giving a sensible error message. After all, do
8149 * you just say "syntax error" or do you present both error messages?
8150 * Both choices seem lousy. */
8151 if (strchr(flow_s, '(')) {
8152 int error;
8153
8154 /* Convert string to datapath key. */
8155 ofpbuf_init(&odp_key, 0);
8156 error = odp_flow_key_from_string(flow_s, NULL, &odp_key);
8157 if (error) {
8158 unixctl_command_reply_error(conn, "Bad flow syntax");
8159 goto exit;
8160 }
876b0e1c 8161
6d199116
BP
8162 /* The user might have specified the wrong ofproto but within the
8163 * same backer. That's OK, ofproto_receive() can find the right
8164 * one for us. */
e09ee259 8165 if (ofproto_receive(ofproto->backer, NULL, odp_key.data,
6d199116 8166 odp_key.size, &flow, NULL, &ofproto, NULL,
14f94f9a 8167 &initial_vals)) {
31a19d69
BP
8168 unixctl_command_reply_error(conn, "Invalid flow");
8169 goto exit;
8170 }
6d199116 8171 ds_put_format(&result, "Bridge: %s\n", ofproto->up.name);
31a19d69
BP
8172 } else {
8173 char *error_s;
8174
8175 error_s = parse_ofp_exact_flow(&flow, argv[2]);
8176 if (error_s) {
8177 unixctl_command_reply_error(conn, error_s);
8178 free(error_s);
8179 goto exit;
8180 }
8181
14f94f9a 8182 initial_vals.vlan_tci = flow.vlan_tci;
876b0e1c 8183 }
8b3b8dd1
BP
8184
8185 /* Generate a packet, if requested. */
0e15264f 8186 if (generate_s) {
8b3b8dd1
BP
8187 packet = ofpbuf_new(0);
8188 flow_compose(packet, &flow);
8189 }
72e8bf28
AA
8190 } else if (argc == 7) {
8191 /* ofproto/trace dpname priority tun_id in_port mark packet */
0e15264f
BP
8192 const char *priority_s = argv[2];
8193 const char *tun_id_s = argv[3];
8194 const char *in_port_s = argv[4];
72e8bf28
AA
8195 const char *mark_s = argv[5];
8196 const char *packet_s = argv[6];
9b56fe13 8197 uint32_t in_port = atoi(in_port_s);
0e15264f
BP
8198 ovs_be64 tun_id = htonll(strtoull(tun_id_s, NULL, 0));
8199 uint32_t priority = atoi(priority_s);
72e8bf28 8200 uint32_t mark = atoi(mark_s);
e22f1753 8201 const char *msg;
0e15264f 8202
e22f1753
BP
8203 msg = eth_from_hex(packet_s, &packet);
8204 if (msg) {
bde9f75d 8205 unixctl_command_reply_error(conn, msg);
876b0e1c
BP
8206 goto exit;
8207 }
8208
8209 ds_put_cstr(&result, "Packet: ");
c499c75d 8210 s = ofp_packet_to_string(packet->data, packet->size);
876b0e1c
BP
8211 ds_put_cstr(&result, s);
8212 free(s);
8213
72e8bf28 8214 flow_extract(packet, priority, mark, NULL, in_port, &flow);
296e07ac 8215 flow.tunnel.tun_id = tun_id;
14f94f9a 8216 initial_vals.vlan_tci = flow.vlan_tci;
876b0e1c 8217 } else {
bde9f75d 8218 unixctl_command_reply_error(conn, "Bad command syntax");
abe529af
BP
8219 goto exit;
8220 }
8221
14f94f9a 8222 ofproto_trace(ofproto, &flow, packet, &initial_vals, &result);
6a6455e5
EJ
8223 unixctl_command_reply(conn, ds_cstr(&result));
8224
8225exit:
8226 ds_destroy(&result);
8227 ofpbuf_delete(packet);
8228 ofpbuf_uninit(&odp_key);
8229}
8230
8231static void
8232ofproto_trace(struct ofproto_dpif *ofproto, const struct flow *flow,
14f94f9a
JP
8233 const struct ofpbuf *packet,
8234 const struct initial_vals *initial_vals, struct ds *ds)
6a6455e5
EJ
8235{
8236 struct rule_dpif *rule;
8237
8238 ds_put_cstr(ds, "Flow: ");
8239 flow_format(ds, flow);
8240 ds_put_char(ds, '\n');
abe529af 8241
c57b2226
BP
8242 rule = rule_dpif_lookup(ofproto, flow);
8243
6a6455e5 8244 trace_format_rule(ds, 0, 0, rule);
c57b2226
BP
8245 if (rule == ofproto->miss_rule) {
8246 ds_put_cstr(ds, "\nNo match, flow generates \"packet in\"s.\n");
8247 } else if (rule == ofproto->no_packet_in_rule) {
8248 ds_put_cstr(ds, "\nNo match, packets dropped because "
8249 "OFPPC_NO_PACKET_IN is set on in_port.\n");
8250 }
8251
abe529af 8252 if (rule) {
050ac423
BP
8253 uint64_t odp_actions_stub[1024 / 8];
8254 struct ofpbuf odp_actions;
8255
6a6455e5 8256 struct trace_ctx trace;
0e553d9c 8257 uint8_t tcp_flags;
abe529af 8258
6a6455e5
EJ
8259 tcp_flags = packet ? packet_get_tcp_flags(packet, flow) : 0;
8260 trace.result = ds;
8261 trace.flow = *flow;
050ac423
BP
8262 ofpbuf_use_stub(&odp_actions,
8263 odp_actions_stub, sizeof odp_actions_stub);
14f94f9a 8264 action_xlate_ctx_init(&trace.ctx, ofproto, flow, initial_vals,
0e553d9c 8265 rule, tcp_flags, packet);
abe529af 8266 trace.ctx.resubmit_hook = trace_resubmit;
479df176 8267 trace.ctx.report_hook = trace_report;
f25d0cf3 8268 xlate_actions(&trace.ctx, rule->up.ofpacts, rule->up.ofpacts_len,
050ac423 8269 &odp_actions);
abe529af 8270
6a6455e5
EJ
8271 ds_put_char(ds, '\n');
8272 trace_format_flow(ds, 0, "Final flow", &trace);
8273 ds_put_cstr(ds, "Datapath actions: ");
050ac423
BP
8274 format_odp_actions(ds, odp_actions.data, odp_actions.size);
8275 ofpbuf_uninit(&odp_actions);
876b0e1c 8276
6a7e895f
BP
8277 if (trace.ctx.slow) {
8278 enum slow_path_reason slow;
8279
8280 ds_put_cstr(ds, "\nThis flow is handled by the userspace "
8281 "slow path because it:");
8282 for (slow = trace.ctx.slow; slow; ) {
8283 enum slow_path_reason bit = rightmost_1bit(slow);
8284
8285 switch (bit) {
8286 case SLOW_CFM:
8287 ds_put_cstr(ds, "\n\t- Consists of CFM packets.");
8288 break;
8289 case SLOW_LACP:
8290 ds_put_cstr(ds, "\n\t- Consists of LACP packets.");
8291 break;
8292 case SLOW_STP:
8293 ds_put_cstr(ds, "\n\t- Consists of STP packets.");
8294 break;
ccc09689
EJ
8295 case SLOW_BFD:
8296 ds_put_cstr(ds, "\n\t- Consists of BFD packets.");
8297 break;
6a7e895f
BP
8298 case SLOW_IN_BAND:
8299 ds_put_cstr(ds, "\n\t- Needs in-band special case "
8300 "processing.");
8301 if (!packet) {
8302 ds_put_cstr(ds, "\n\t (The datapath actions are "
8303 "incomplete--for complete actions, "
8304 "please supply a packet.)");
8305 }
8306 break;
8307 case SLOW_CONTROLLER:
8308 ds_put_cstr(ds, "\n\t- Sends \"packet-in\" messages "
8309 "to the OpenFlow controller.");
8310 break;
8311 case SLOW_MATCH:
8312 ds_put_cstr(ds, "\n\t- Needs more specific matching "
8313 "than the datapath supports.");
8314 break;
8315 }
8316
8317 slow &= ~bit;
8318 }
8319
8320 if (slow & ~SLOW_MATCH) {
8321 ds_put_cstr(ds, "\nThe datapath actions above do not reflect "
8322 "the special slow-path processing.");
876b0e1c
BP
8323 }
8324 }
abe529af 8325 }
abe529af
BP
8326}
8327
7ee20df1 8328static void
0e15264f
BP
8329ofproto_dpif_clog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
8330 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7ee20df1
BP
8331{
8332 clogged = true;
bde9f75d 8333 unixctl_command_reply(conn, NULL);
7ee20df1
BP
8334}
8335
8336static void
0e15264f
BP
8337ofproto_dpif_unclog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
8338 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7ee20df1
BP
8339{
8340 clogged = false;
bde9f75d 8341 unixctl_command_reply(conn, NULL);
7ee20df1
BP
8342}
8343
6814e51f
BP
8344/* Runs a self-check of flow translations in 'ofproto'. Appends a message to
8345 * 'reply' describing the results. */
8346static void
8347ofproto_dpif_self_check__(struct ofproto_dpif *ofproto, struct ds *reply)
8348{
8349 struct facet *facet;
8350 int errors;
8351
8352 errors = 0;
8353 HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
8354 if (!facet_check_consistency(facet)) {
8355 errors++;
8356 }
8357 }
8358 if (errors) {
2cc3c58e 8359 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
6814e51f
BP
8360 }
8361
8362 if (errors) {
8363 ds_put_format(reply, "%s: self-check failed (%d errors)\n",
8364 ofproto->up.name, errors);
8365 } else {
8366 ds_put_format(reply, "%s: self-check passed\n", ofproto->up.name);
8367 }
8368}
8369
8370static void
8371ofproto_dpif_self_check(struct unixctl_conn *conn,
8372 int argc, const char *argv[], void *aux OVS_UNUSED)
8373{
8374 struct ds reply = DS_EMPTY_INITIALIZER;
8375 struct ofproto_dpif *ofproto;
8376
8377 if (argc > 1) {
8378 ofproto = ofproto_dpif_lookup(argv[1]);
8379 if (!ofproto) {
bde9f75d
EJ
8380 unixctl_command_reply_error(conn, "Unknown ofproto (use "
8381 "ofproto/list for help)");
6814e51f
BP
8382 return;
8383 }
8384 ofproto_dpif_self_check__(ofproto, &reply);
8385 } else {
8386 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
8387 ofproto_dpif_self_check__(ofproto, &reply);
8388 }
8389 }
8390
bde9f75d 8391 unixctl_command_reply(conn, ds_cstr(&reply));
6814e51f
BP
8392 ds_destroy(&reply);
8393}
8394
27022416
JP
8395/* Store the current ofprotos in 'ofproto_shash'. Returns a sorted list
8396 * of the 'ofproto_shash' nodes. It is the responsibility of the caller
8397 * to destroy 'ofproto_shash' and free the returned value. */
8398static const struct shash_node **
8399get_ofprotos(struct shash *ofproto_shash)
8400{
8401 const struct ofproto_dpif *ofproto;
8402
8403 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
8404 char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
8405 shash_add_nocopy(ofproto_shash, name, ofproto);
8406 }
8407
8408 return shash_sort(ofproto_shash);
8409}
8410
8411static void
8412ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
8413 const char *argv[] OVS_UNUSED,
8414 void *aux OVS_UNUSED)
8415{
8416 struct ds ds = DS_EMPTY_INITIALIZER;
8417 struct shash ofproto_shash;
8418 const struct shash_node **sorted_ofprotos;
8419 int i;
8420
8421 shash_init(&ofproto_shash);
8422 sorted_ofprotos = get_ofprotos(&ofproto_shash);
8423 for (i = 0; i < shash_count(&ofproto_shash); i++) {
8424 const struct shash_node *node = sorted_ofprotos[i];
8425 ds_put_format(&ds, "%s\n", node->name);
8426 }
8427
8428 shash_destroy(&ofproto_shash);
8429 free(sorted_ofprotos);
8430
8431 unixctl_command_reply(conn, ds_cstr(&ds));
8432 ds_destroy(&ds);
8433}
8434
8435static void
8436show_dp_format(const struct ofproto_dpif *ofproto, struct ds *ds)
8437{
27022416
JP
8438 const struct shash_node **ports;
8439 int i;
655ab909
AZ
8440 struct avg_subfacet_rates lifetime;
8441 unsigned long long int minutes;
8442 const int min_ms = 60 * 1000; /* milliseconds in one minute. */
8443
8444 minutes = (time_msec() - ofproto->created) / min_ms;
8445
8446 if (minutes > 0) {
8447 lifetime.add_rate = (double)ofproto->total_subfacet_add_count
8448 / minutes;
8449 lifetime.del_rate = (double)ofproto->total_subfacet_del_count
8450 / minutes;
8451 }else {
8452 lifetime.add_rate = 0.0;
8453 lifetime.del_rate = 0.0;
8454 }
27022416 8455
acf60855
JP
8456 ds_put_format(ds, "%s (%s):\n", ofproto->up.name,
8457 dpif_name(ofproto->backer->dpif));
27022416 8458 ds_put_format(ds,
735d7efb
AZ
8459 "\tlookups: hit:%"PRIu64" missed:%"PRIu64"\n",
8460 ofproto->n_hit, ofproto->n_missed);
655ab909
AZ
8461 ds_put_format(ds, "\tflows: cur: %zu, avg: %5.3f, max: %d,"
8462 " life span: %llu(ms)\n",
8463 hmap_count(&ofproto->subfacets),
8464 avg_subfacet_count(ofproto),
8465 ofproto->max_n_subfacet,
8466 avg_subfacet_life_span(ofproto));
8467 if (minutes >= 60) {
8468 show_dp_rates(ds, "\t\thourly avg:", &ofproto->hourly);
8469 }
8470 if (minutes >= 60 * 24) {
8471 show_dp_rates(ds, "\t\tdaily avg:", &ofproto->daily);
8472 }
8473 show_dp_rates(ds, "\t\toverall avg:", &lifetime);
27022416
JP
8474
8475 ports = shash_sort(&ofproto->up.port_by_name);
8476 for (i = 0; i < shash_count(&ofproto->up.port_by_name); i++) {
8477 const struct shash_node *node = ports[i];
8478 struct ofport *ofport = node->data;
8479 const char *name = netdev_get_name(ofport->netdev);
8480 const char *type = netdev_get_type(ofport->netdev);
0a740f48
EJ
8481 uint32_t odp_port;
8482
8483 ds_put_format(ds, "\t%s %u/", name, ofport->ofp_port);
8484
8485 odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
8486 if (odp_port != OVSP_NONE) {
8487 ds_put_format(ds, "%"PRIu32":", odp_port);
8488 } else {
8489 ds_put_cstr(ds, "none:");
8490 }
27022416 8491
27022416
JP
8492 if (strcmp(type, "system")) {
8493 struct netdev *netdev;
8494 int error;
8495
8496 ds_put_format(ds, " (%s", type);
8497
8498 error = netdev_open(name, type, &netdev);
8499 if (!error) {
8500 struct smap config;
8501
8502 smap_init(&config);
8503 error = netdev_get_config(netdev, &config);
8504 if (!error) {
8505 const struct smap_node **nodes;
8506 size_t i;
8507
8508 nodes = smap_sort(&config);
8509 for (i = 0; i < smap_count(&config); i++) {
8510 const struct smap_node *node = nodes[i];
8511 ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
8512 node->key, node->value);
8513 }
8514 free(nodes);
8515 }
8516 smap_destroy(&config);
8517
8518 netdev_close(netdev);
8519 }
8520 ds_put_char(ds, ')');
8521 }
8522 ds_put_char(ds, '\n');
8523 }
8524 free(ports);
8525}
8526
8527static void
8528ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc,
8529 const char *argv[], void *aux OVS_UNUSED)
8530{
8531 struct ds ds = DS_EMPTY_INITIALIZER;
8532 const struct ofproto_dpif *ofproto;
8533
8534 if (argc > 1) {
8535 int i;
8536 for (i = 1; i < argc; i++) {
8537 ofproto = ofproto_dpif_lookup(argv[i]);
8538 if (!ofproto) {
8539 ds_put_format(&ds, "Unknown bridge %s (use dpif/dump-dps "
8540 "for help)", argv[i]);
8541 unixctl_command_reply_error(conn, ds_cstr(&ds));
8542 return;
8543 }
8544 show_dp_format(ofproto, &ds);
8545 }
8546 } else {
8547 struct shash ofproto_shash;
8548 const struct shash_node **sorted_ofprotos;
8549 int i;
8550
8551 shash_init(&ofproto_shash);
8552 sorted_ofprotos = get_ofprotos(&ofproto_shash);
8553 for (i = 0; i < shash_count(&ofproto_shash); i++) {
8554 const struct shash_node *node = sorted_ofprotos[i];
8555 show_dp_format(node->data, &ds);
8556 }
8557
8558 shash_destroy(&ofproto_shash);
8559 free(sorted_ofprotos);
8560 }
8561
8562 unixctl_command_reply(conn, ds_cstr(&ds));
8563 ds_destroy(&ds);
8564}
8565
8566static void
8567ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
8568 int argc OVS_UNUSED, const char *argv[],
8569 void *aux OVS_UNUSED)
8570{
8571 struct ds ds = DS_EMPTY_INITIALIZER;
8572 const struct ofproto_dpif *ofproto;
8573 struct subfacet *subfacet;
8574
8575 ofproto = ofproto_dpif_lookup(argv[1]);
8576 if (!ofproto) {
8577 unixctl_command_reply_error(conn, "no such bridge");
8578 return;
8579 }
8580
af37354d
EJ
8581 update_stats(ofproto->backer);
8582
27022416 8583 HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->subfacets) {
9566abf9 8584 odp_flow_key_format(subfacet->key, subfacet->key_len, &ds);
27022416
JP
8585
8586 ds_put_format(&ds, ", packets:%"PRIu64", bytes:%"PRIu64", used:",
8587 subfacet->dp_packet_count, subfacet->dp_byte_count);
8588 if (subfacet->used) {
8589 ds_put_format(&ds, "%.3fs",
8590 (time_msec() - subfacet->used) / 1000.0);
8591 } else {
8592 ds_put_format(&ds, "never");
8593 }
8594 if (subfacet->facet->tcp_flags) {
8595 ds_put_cstr(&ds, ", flags:");
8596 packet_format_tcp_flags(&ds, subfacet->facet->tcp_flags);
8597 }
8598
8599 ds_put_cstr(&ds, ", actions:");
f2245da3
JP
8600 if (subfacet->slow) {
8601 uint64_t slow_path_stub[128 / 8];
8602 const struct nlattr *actions;
8603 size_t actions_len;
8604
8605 compose_slow_path(ofproto, &subfacet->facet->flow, subfacet->slow,
8606 slow_path_stub, sizeof slow_path_stub,
8607 &actions, &actions_len);
8608 format_odp_actions(&ds, actions, actions_len);
8609 } else {
8610 format_odp_actions(&ds, subfacet->actions, subfacet->actions_len);
8611 }
27022416
JP
8612 ds_put_char(&ds, '\n');
8613 }
8614
8615 unixctl_command_reply(conn, ds_cstr(&ds));
8616 ds_destroy(&ds);
8617}
8618
8619static void
8620ofproto_unixctl_dpif_del_flows(struct unixctl_conn *conn,
8621 int argc OVS_UNUSED, const char *argv[],
8622 void *aux OVS_UNUSED)
8623{
8624 struct ds ds = DS_EMPTY_INITIALIZER;
8625 struct ofproto_dpif *ofproto;
8626
8627 ofproto = ofproto_dpif_lookup(argv[1]);
8628 if (!ofproto) {
8629 unixctl_command_reply_error(conn, "no such bridge");
8630 return;
8631 }
8632
8633 flush(&ofproto->up);
8634
8635 unixctl_command_reply(conn, ds_cstr(&ds));
8636 ds_destroy(&ds);
8637}
8638
abe529af
BP
8639static void
8640ofproto_dpif_unixctl_init(void)
8641{
8642 static bool registered;
8643 if (registered) {
8644 return;
8645 }
8646 registered = true;
8647
0e15264f
BP
8648 unixctl_command_register(
8649 "ofproto/trace",
72e8bf28
AA
8650 "bridge {priority tun_id in_port mark packet | odp_flow [-generate]}",
8651 2, 6, ofproto_unixctl_trace, NULL);
96e466a3 8652 unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
0e15264f
BP
8653 ofproto_unixctl_fdb_flush, NULL);
8654 unixctl_command_register("fdb/show", "bridge", 1, 1,
8655 ofproto_unixctl_fdb_show, NULL);
8656 unixctl_command_register("ofproto/clog", "", 0, 0,
8657 ofproto_dpif_clog, NULL);
8658 unixctl_command_register("ofproto/unclog", "", 0, 0,
8659 ofproto_dpif_unclog, NULL);
6814e51f
BP
8660 unixctl_command_register("ofproto/self-check", "[bridge]", 0, 1,
8661 ofproto_dpif_self_check, NULL);
27022416
JP
8662 unixctl_command_register("dpif/dump-dps", "", 0, 0,
8663 ofproto_unixctl_dpif_dump_dps, NULL);
8664 unixctl_command_register("dpif/show", "[bridge]", 0, INT_MAX,
8665 ofproto_unixctl_dpif_show, NULL);
8666 unixctl_command_register("dpif/dump-flows", "bridge", 1, 1,
8667 ofproto_unixctl_dpif_dump_flows, NULL);
8668 unixctl_command_register("dpif/del-flows", "bridge", 1, 1,
8669 ofproto_unixctl_dpif_del_flows, NULL);
abe529af
BP
8670}
8671\f
52a90c29
BP
8672/* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
8673 *
8674 * This is deprecated. It is only for compatibility with broken device drivers
8675 * in old versions of Linux that do not properly support VLANs when VLAN
8676 * devices are not used. When broken device drivers are no longer in
8677 * widespread use, we will delete these interfaces. */
8678
8679static int
8680set_realdev(struct ofport *ofport_, uint16_t realdev_ofp_port, int vid)
8681{
8682 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
8683 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
8684
8685 if (realdev_ofp_port == ofport->realdev_ofp_port
8686 && vid == ofport->vlandev_vid) {
8687 return 0;
8688 }
8689
2cc3c58e 8690 ofproto->backer->need_revalidate = REV_RECONFIGURE;
52a90c29
BP
8691
8692 if (ofport->realdev_ofp_port) {
8693 vsp_remove(ofport);
8694 }
8695 if (realdev_ofp_port && ofport->bundle) {
8696 /* vlandevs are enslaved to their realdevs, so they are not allowed to
8697 * themselves be part of a bundle. */
8698 bundle_set(ofport->up.ofproto, ofport->bundle, NULL);
8699 }
8700
8701 ofport->realdev_ofp_port = realdev_ofp_port;
8702 ofport->vlandev_vid = vid;
8703
8704 if (realdev_ofp_port) {
8705 vsp_add(ofport, realdev_ofp_port, vid);
8706 }
8707
8708 return 0;
8709}
8710
8711static uint32_t
8712hash_realdev_vid(uint16_t realdev_ofp_port, int vid)
8713{
8714 return hash_2words(realdev_ofp_port, vid);
8715}
8716
40e05935
BP
8717/* Returns the ODP port number of the Linux VLAN device that corresponds to
8718 * 'vlan_tci' on the network device with port number 'realdev_odp_port' in
8719 * 'ofproto'. For example, given 'realdev_odp_port' of eth0 and 'vlan_tci' 9,
8720 * it would return the port number of eth0.9.
8721 *
8722 * Unless VLAN splinters are enabled for port 'realdev_odp_port', this
8723 * function just returns its 'realdev_odp_port' argument. */
52a90c29
BP
8724static uint32_t
8725vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
8726 uint32_t realdev_odp_port, ovs_be16 vlan_tci)
8727{
8728 if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
e1b1d06a 8729 uint16_t realdev_ofp_port;
52a90c29
BP
8730 int vid = vlan_tci_to_vid(vlan_tci);
8731 const struct vlan_splinter *vsp;
8732
e1b1d06a 8733 realdev_ofp_port = odp_port_to_ofp_port(ofproto, realdev_odp_port);
52a90c29
BP
8734 HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
8735 hash_realdev_vid(realdev_ofp_port, vid),
8736 &ofproto->realdev_vid_map) {
8737 if (vsp->realdev_ofp_port == realdev_ofp_port
8738 && vsp->vid == vid) {
e1b1d06a 8739 return ofp_port_to_odp_port(ofproto, vsp->vlandev_ofp_port);
52a90c29
BP
8740 }
8741 }
8742 }
8743 return realdev_odp_port;
8744}
8745
8746static struct vlan_splinter *
8747vlandev_find(const struct ofproto_dpif *ofproto, uint16_t vlandev_ofp_port)
8748{
8749 struct vlan_splinter *vsp;
8750
8751 HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node, hash_int(vlandev_ofp_port, 0),
8752 &ofproto->vlandev_map) {
8753 if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
8754 return vsp;
8755 }
8756 }
8757
8758 return NULL;
8759}
8760
40e05935
BP
8761/* Returns the OpenFlow port number of the "real" device underlying the Linux
8762 * VLAN device with OpenFlow port number 'vlandev_ofp_port' and stores the
8763 * VLAN VID of the Linux VLAN device in '*vid'. For example, given
8764 * 'vlandev_ofp_port' of eth0.9, it would return the OpenFlow port number of
8765 * eth0 and store 9 in '*vid'.
8766 *
8767 * Returns 0 and does not modify '*vid' if 'vlandev_ofp_port' is not a Linux
8768 * VLAN device. Unless VLAN splinters are enabled, this is what this function
8769 * always does.*/
52a90c29
BP
8770static uint16_t
8771vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
40e05935 8772 uint16_t vlandev_ofp_port, int *vid)
52a90c29
BP
8773{
8774 if (!hmap_is_empty(&ofproto->vlandev_map)) {
8775 const struct vlan_splinter *vsp;
8776
8777 vsp = vlandev_find(ofproto, vlandev_ofp_port);
8778 if (vsp) {
8779 if (vid) {
8780 *vid = vsp->vid;
8781 }
8782 return vsp->realdev_ofp_port;
8783 }
8784 }
8785 return 0;
8786}
8787
b98d8985
BP
8788/* Given 'flow', a flow representing a packet received on 'ofproto', checks
8789 * whether 'flow->in_port' represents a Linux VLAN device. If so, changes
8790 * 'flow->in_port' to the "real" device backing the VLAN device, sets
8791 * 'flow->vlan_tci' to the VLAN VID, and returns true. Otherwise (which is
8792 * always the case unless VLAN splinters are enabled), returns false without
8793 * making any changes. */
8794static bool
8795vsp_adjust_flow(const struct ofproto_dpif *ofproto, struct flow *flow)
8796{
8797 uint16_t realdev;
8798 int vid;
8799
8800 realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port, &vid);
8801 if (!realdev) {
8802 return false;
8803 }
8804
8805 /* Cause the flow to be processed as if it came in on the real device with
8806 * the VLAN device's VLAN ID. */
8807 flow->in_port = realdev;
8808 flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
8809 return true;
8810}
8811
52a90c29
BP
8812static void
8813vsp_remove(struct ofport_dpif *port)
8814{
8815 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
8816 struct vlan_splinter *vsp;
8817
8818 vsp = vlandev_find(ofproto, port->up.ofp_port);
8819 if (vsp) {
8820 hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
8821 hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
8822 free(vsp);
8823
8824 port->realdev_ofp_port = 0;
8825 } else {
8826 VLOG_ERR("missing vlan device record");
8827 }
8828}
8829
8830static void
8831vsp_add(struct ofport_dpif *port, uint16_t realdev_ofp_port, int vid)
8832{
8833 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
8834
8835 if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
8836 && (vsp_realdev_to_vlandev(ofproto, realdev_ofp_port, htons(vid))
8837 == realdev_ofp_port)) {
8838 struct vlan_splinter *vsp;
8839
8840 vsp = xmalloc(sizeof *vsp);
8841 hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
8842 hash_int(port->up.ofp_port, 0));
8843 hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
8844 hash_realdev_vid(realdev_ofp_port, vid));
8845 vsp->realdev_ofp_port = realdev_ofp_port;
8846 vsp->vlandev_ofp_port = port->up.ofp_port;
8847 vsp->vid = vid;
8848
8849 port->realdev_ofp_port = realdev_ofp_port;
8850 } else {
8851 VLOG_ERR("duplicate vlan device record");
8852 }
8853}
e1b1d06a
JP
8854
8855static uint32_t
8856ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, uint16_t ofp_port)
8857{
8858 const struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
8859 return ofport ? ofport->odp_port : OVSP_NONE;
8860}
8861
acf60855
JP
8862static struct ofport_dpif *
8863odp_port_to_ofport(const struct dpif_backer *backer, uint32_t odp_port)
e1b1d06a
JP
8864{
8865 struct ofport_dpif *port;
8866
8867 HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node,
8868 hash_int(odp_port, 0),
acf60855 8869 &backer->odp_to_ofport_map) {
e1b1d06a 8870 if (port->odp_port == odp_port) {
acf60855 8871 return port;
e1b1d06a
JP
8872 }
8873 }
8874
acf60855
JP
8875 return NULL;
8876}
8877
8878static uint16_t
8879odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, uint32_t odp_port)
8880{
8881 struct ofport_dpif *port;
8882
8883 port = odp_port_to_ofport(ofproto->backer, odp_port);
6472ba11 8884 if (port && &ofproto->up == port->up.ofproto) {
acf60855
JP
8885 return port->up.ofp_port;
8886 } else {
8887 return OFPP_NONE;
8888 }
e1b1d06a 8889}
655ab909
AZ
8890static unsigned long long int
8891avg_subfacet_life_span(const struct ofproto_dpif *ofproto)
8892{
8893 unsigned long long int dc;
8894 unsigned long long int avg;
8895
8896 dc = ofproto->total_subfacet_del_count + ofproto->subfacet_del_count;
8897 avg = dc ? ofproto->total_subfacet_life_span / dc : 0;
8898
8899 return avg;
8900}
8901
8902static double
8903avg_subfacet_count(const struct ofproto_dpif *ofproto)
8904{
8905 double avg_c = 0.0;
8906
8907 if (ofproto->n_update_stats) {
8908 avg_c = (double)ofproto->total_subfacet_count
8909 / ofproto->n_update_stats;
8910 }
8911
8912 return avg_c;
8913}
8914
8915static void
8916show_dp_rates(struct ds *ds, const char *heading,
8917 const struct avg_subfacet_rates *rates)
8918{
8919 ds_put_format(ds, "%s add rate: %5.3f/min, del rate: %5.3f/min\n",
8920 heading, rates->add_rate, rates->del_rate);
8921}
8922
8923static void
8924update_max_subfacet_count(struct ofproto_dpif *ofproto)
8925{
8926 ofproto->max_n_subfacet = MAX(ofproto->max_n_subfacet,
8927 hmap_count(&ofproto->subfacets));
8928}
8929
8930/* Compute exponentially weighted moving average, adding 'new' as the newest,
8931 * most heavily weighted element. 'base' designates the rate of decay: after
8932 * 'base' further updates, 'new''s weight in the EWMA decays to about 1/e
8933 * (about .37). */
8934static void
8935exp_mavg(double *avg, int base, double new)
8936{
8937 *avg = (*avg * (base - 1) + new) / base;
8938}
8939
8940static void
8941update_moving_averages(struct ofproto_dpif *ofproto)
8942{
8943 const int min_ms = 60 * 1000; /* milliseconds in one minute. */
8944
8945 /* Update hourly averages on the minute boundaries. */
8946 if (time_msec() - ofproto->last_minute >= min_ms) {
8947 exp_mavg(&ofproto->hourly.add_rate, 60, ofproto->subfacet_add_count);
8948 exp_mavg(&ofproto->hourly.del_rate, 60, ofproto->subfacet_del_count);
8949
8950 /* Update daily averages on the hour boundaries. */
8951 if ((ofproto->last_minute - ofproto->created) / min_ms % 60 == 59) {
8952 exp_mavg(&ofproto->daily.add_rate, 24, ofproto->hourly.add_rate);
8953 exp_mavg(&ofproto->daily.del_rate, 24, ofproto->hourly.del_rate);
8954 }
8955
8956 ofproto->total_subfacet_add_count += ofproto->subfacet_add_count;
8957 ofproto->total_subfacet_del_count += ofproto->subfacet_del_count;
8958 ofproto->subfacet_add_count = 0;
8959 ofproto->subfacet_del_count = 0;
8960 ofproto->last_minute += min_ms;
8961 }
8962}
e1b1d06a 8963
735d7efb
AZ
8964static void
8965dpif_stats_update_hit_count(struct ofproto_dpif *ofproto, uint64_t delta)
8966{
8967 ofproto->n_hit += delta;
8968}
8969
abe529af 8970const struct ofproto_class ofproto_dpif_class = {
b0408fca 8971 init,
abe529af
BP
8972 enumerate_types,
8973 enumerate_names,
8974 del,
0aeaabc8 8975 port_open_type,
acf60855
JP
8976 type_run,
8977 type_run_fast,
8978 type_wait,
abe529af
BP
8979 alloc,
8980 construct,
8981 destruct,
8982 dealloc,
8983 run,
5fcc0d00 8984 run_fast,
abe529af 8985 wait,
0d085684 8986 get_memory_usage,
abe529af 8987 flush,
6c1491fb
BP
8988 get_features,
8989 get_tables,
abe529af
BP
8990 port_alloc,
8991 port_construct,
8992 port_destruct,
8993 port_dealloc,
8994 port_modified,
8995 port_reconfigured,
8996 port_query_by_name,
8997 port_add,
8998 port_del,
6527c598 8999 port_get_stats,
abe529af
BP
9000 port_dump_start,
9001 port_dump_next,
9002 port_dump_done,
9003 port_poll,
9004 port_poll_wait,
9005 port_is_lacp_current,
0ab6decf 9006 NULL, /* rule_choose_table */
abe529af
BP
9007 rule_alloc,
9008 rule_construct,
9009 rule_destruct,
9010 rule_dealloc,
abe529af
BP
9011 rule_get_stats,
9012 rule_execute,
9013 rule_modify_actions,
7257b535 9014 set_frag_handling,
abe529af
BP
9015 packet_out,
9016 set_netflow,
9017 get_netflow_ids,
9018 set_sflow,
29089a54 9019 set_ipfix,
abe529af 9020 set_cfm,
9a9e3786 9021 get_cfm_status,
ccc09689
EJ
9022 set_bfd,
9023 get_bfd_status,
21f7563c
JP
9024 set_stp,
9025 get_stp_status,
9026 set_stp_port,
9027 get_stp_port_status,
8b36f51e 9028 set_queues,
abe529af
BP
9029 bundle_set,
9030 bundle_remove,
9031 mirror_set,
9d24de3b 9032 mirror_get_stats,
abe529af
BP
9033 set_flood_vlans,
9034 is_mirror_output_bundle,
8402c74b 9035 forward_bpdu_changed,
c4069512 9036 set_mac_table_config,
52a90c29 9037 set_realdev,
abe529af 9038};