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