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