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