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