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