cca23cac7be20b5d1a152333a2ea5ae62363b7af
[sliver-openvswitch.git] / ofproto / ofproto-dpif.c
1 /*
2  * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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 "multipath.h"
38 #include "netdev.h"
39 #include "netlink.h"
40 #include "nx-match.h"
41 #include "odp-util.h"
42 #include "ofp-util.h"
43 #include "ofpbuf.h"
44 #include "ofp-print.h"
45 #include "ofproto-dpif-sflow.h"
46 #include "poll-loop.h"
47 #include "timer.h"
48 #include "unaligned.h"
49 #include "unixctl.h"
50 #include "vlan-bitmap.h"
51 #include "vlog.h"
52
53 VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
54
55 COVERAGE_DEFINE(ofproto_dpif_ctlr_action);
56 COVERAGE_DEFINE(ofproto_dpif_expired);
57 COVERAGE_DEFINE(ofproto_dpif_no_packet_in);
58 COVERAGE_DEFINE(ofproto_dpif_xlate);
59 COVERAGE_DEFINE(facet_changed_rule);
60 COVERAGE_DEFINE(facet_invalidated);
61 COVERAGE_DEFINE(facet_revalidate);
62 COVERAGE_DEFINE(facet_unexpected);
63
64 /* Maximum depth of flow table recursion (due to resubmit actions) in a
65  * flow translation. */
66 #define MAX_RESUBMIT_RECURSION 32
67
68 /* Number of implemented OpenFlow tables. */
69 enum { N_TABLES = 255 };
70 BUILD_ASSERT_DECL(N_TABLES >= 1 && N_TABLES <= 255);
71
72 struct ofport_dpif;
73 struct ofproto_dpif;
74
75 struct rule_dpif {
76     struct rule up;
77
78     long long int used;         /* Time last used; time created if not used. */
79
80     /* These statistics:
81      *
82      *   - Do include packets and bytes from facets that have been deleted or
83      *     whose own statistics have been folded into the rule.
84      *
85      *   - Do include packets and bytes sent "by hand" that were accounted to
86      *     the rule without any facet being involved (this is a rare corner
87      *     case in rule_execute()).
88      *
89      *   - Do not include packet or bytes that can be obtained from any facet's
90      *     packet_count or byte_count member or that can be obtained from the
91      *     datapath by, e.g., dpif_flow_get() for any subfacet.
92      */
93     uint64_t packet_count;       /* Number of packets received. */
94     uint64_t byte_count;         /* Number of bytes received. */
95
96     tag_type tag;                /* Caches rule_calculate_tag() result. */
97
98     struct list facets;          /* List of "struct facet"s. */
99 };
100
101 static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
102 {
103     return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
104 }
105
106 static struct rule_dpif *rule_dpif_lookup(struct ofproto_dpif *,
107                                           const struct flow *, uint8_t table);
108
109 static void flow_push_stats(const struct rule_dpif *, const struct flow *,
110                             uint64_t packets, uint64_t bytes,
111                             long long int used);
112
113 static uint32_t rule_calculate_tag(const struct flow *,
114                                    const struct flow_wildcards *,
115                                    uint32_t basis);
116 static void rule_invalidate(const struct rule_dpif *);
117
118 #define MAX_MIRRORS 32
119 typedef uint32_t mirror_mask_t;
120 #define MIRROR_MASK_C(X) UINT32_C(X)
121 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
122 struct ofmirror {
123     struct ofproto_dpif *ofproto; /* Owning ofproto. */
124     size_t idx;                 /* In ofproto's "mirrors" array. */
125     void *aux;                  /* Key supplied by ofproto's client. */
126     char *name;                 /* Identifier for log messages. */
127
128     /* Selection criteria. */
129     struct hmapx srcs;          /* Contains "struct ofbundle *"s. */
130     struct hmapx dsts;          /* Contains "struct ofbundle *"s. */
131     unsigned long *vlans;       /* Bitmap of chosen VLANs, NULL selects all. */
132
133     /* Output (exactly one of out == NULL and out_vlan == -1 is true). */
134     struct ofbundle *out;       /* Output port or NULL. */
135     int out_vlan;               /* Output VLAN or -1. */
136     mirror_mask_t dup_mirrors;  /* Bitmap of mirrors with the same output. */
137
138     /* Counters. */
139     int64_t packet_count;       /* Number of packets sent. */
140     int64_t byte_count;         /* Number of bytes sent. */
141 };
142
143 static void mirror_destroy(struct ofmirror *);
144 static void update_mirror_stats(struct ofproto_dpif *ofproto,
145                                 mirror_mask_t mirrors,
146                                 uint64_t packets, uint64_t bytes);
147
148 struct ofbundle {
149     struct ofproto_dpif *ofproto; /* Owning ofproto. */
150     struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
151     void *aux;                  /* Key supplied by ofproto's client. */
152     char *name;                 /* Identifier for log messages. */
153
154     /* Configuration. */
155     struct list ports;          /* Contains "struct ofport"s. */
156     enum port_vlan_mode vlan_mode; /* VLAN mode */
157     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
158     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1.
159                                  * NULL if all VLANs are trunked. */
160     struct lacp *lacp;          /* LACP if LACP is enabled, otherwise NULL. */
161     struct bond *bond;          /* Nonnull iff more than one port. */
162     bool use_priority_tags;     /* Use 802.1p tag for frames in VLAN 0? */
163
164     /* Status. */
165     bool floodable;             /* True if no port has OFPPC_NO_FLOOD set. */
166
167     /* Port mirroring info. */
168     mirror_mask_t src_mirrors;  /* Mirrors triggered when packet received. */
169     mirror_mask_t dst_mirrors;  /* Mirrors triggered when packet sent. */
170     mirror_mask_t mirror_out;   /* Mirrors that output to this bundle. */
171 };
172
173 static void bundle_remove(struct ofport *);
174 static void bundle_update(struct ofbundle *);
175 static void bundle_destroy(struct ofbundle *);
176 static void bundle_del_port(struct ofport_dpif *);
177 static void bundle_run(struct ofbundle *);
178 static void bundle_wait(struct ofbundle *);
179 static struct ofbundle *lookup_input_bundle(struct ofproto_dpif *,
180                                             uint16_t in_port, bool warn);
181
182 /* A controller may use OFPP_NONE as the ingress port to indicate that
183  * it did not arrive on a "real" port.  'ofpp_none_bundle' exists for
184  * when an input bundle is needed for validation (e.g., mirroring or
185  * OFPP_NORMAL processing).  It is not connected to an 'ofproto' or have
186  * any 'port' structs, so care must be taken when dealing with it. */
187 static struct ofbundle ofpp_none_bundle = {
188     .name      = "OFPP_NONE",
189     .vlan_mode = PORT_VLAN_TRUNK
190 };
191
192 static void stp_run(struct ofproto_dpif *ofproto);
193 static void stp_wait(struct ofproto_dpif *ofproto);
194
195 static bool ofbundle_includes_vlan(const struct ofbundle *, uint16_t vlan);
196
197 struct action_xlate_ctx {
198 /* action_xlate_ctx_init() initializes these members. */
199
200     /* The ofproto. */
201     struct ofproto_dpif *ofproto;
202
203     /* Flow to which the OpenFlow actions apply.  xlate_actions() will modify
204      * this flow when actions change header fields. */
205     struct flow flow;
206
207     /* The packet corresponding to 'flow', or a null pointer if we are
208      * revalidating without a packet to refer to. */
209     const struct ofpbuf *packet;
210
211     /* Should OFPP_NORMAL MAC learning and NXAST_LEARN actions execute?  We
212      * want to execute them if we are actually processing a packet, or if we
213      * are accounting for packets that the datapath has processed, but not if
214      * we are just revalidating. */
215     bool may_learn;
216
217     /* If nonnull, called just before executing a resubmit action.
218      *
219      * This is normally null so the client has to set it manually after
220      * calling action_xlate_ctx_init(). */
221     void (*resubmit_hook)(struct action_xlate_ctx *, struct rule_dpif *);
222
223 /* xlate_actions() initializes and uses these members.  The client might want
224  * to look at them after it returns. */
225
226     struct ofpbuf *odp_actions; /* Datapath actions. */
227     tag_type tags;              /* Tags associated with actions. */
228     bool may_set_up_flow;       /* True ordinarily; false if the actions must
229                                  * be reassessed for every packet. */
230     bool has_learn;             /* Actions include NXAST_LEARN? */
231     bool has_normal;            /* Actions output to OFPP_NORMAL? */
232     uint16_t nf_output_iface;   /* Output interface index for NetFlow. */
233     mirror_mask_t mirrors;      /* Bitmap of associated mirrors. */
234
235 /* xlate_actions() initializes and uses these members, but the client has no
236  * reason to look at them. */
237
238     int recurse;                /* Recursion level, via xlate_table_action. */
239     struct flow base_flow;      /* Flow at the last commit. */
240     uint32_t original_priority; /* Priority when packet arrived. */
241     uint8_t table_id;           /* OpenFlow table ID where flow was found. */
242     uint32_t sflow_n_outputs;   /* Number of output ports. */
243     uint16_t sflow_odp_port;    /* Output port for composing sFlow action. */
244     uint16_t user_cookie_offset;/* Used for user_action_cookie fixup. */
245     bool exit;                  /* No further actions should be processed. */
246 };
247
248 static void action_xlate_ctx_init(struct action_xlate_ctx *,
249                                   struct ofproto_dpif *, const struct flow *,
250                                   ovs_be16 initial_tci, const struct ofpbuf *);
251 static struct ofpbuf *xlate_actions(struct action_xlate_ctx *,
252                                     const union ofp_action *in, size_t n_in);
253
254 /* An exact-match instantiation of an OpenFlow flow.
255  *
256  * A facet associates a "struct flow", which represents the Open vSwitch
257  * userspace idea of an exact-match flow, with one or more subfacets.  Each
258  * subfacet tracks the datapath's idea of the exact-match flow equivalent to
259  * the facet.  When the kernel module (or other dpif implementation) and Open
260  * vSwitch userspace agree on the definition of a flow key, there is exactly
261  * one subfacet per facet.  If the dpif implementation supports more-specific
262  * flow matching than userspace, however, a facet can have more than one
263  * subfacet, each of which corresponds to some distinction in flow that
264  * userspace simply doesn't understand.
265  *
266  * Flow expiration works in terms of subfacets, so a facet must have at least
267  * one subfacet or it will never expire, leaking memory. */
268 struct facet {
269     /* Owners. */
270     struct hmap_node hmap_node;  /* In owning ofproto's 'facets' hmap. */
271     struct list list_node;       /* In owning rule's 'facets' list. */
272     struct rule_dpif *rule;      /* Owning rule. */
273
274     /* Owned data. */
275     struct list subfacets;
276     long long int used;         /* Time last used; time created if not used. */
277
278     /* Key. */
279     struct flow flow;
280
281     /* These statistics:
282      *
283      *   - Do include packets and bytes sent "by hand", e.g. with
284      *     dpif_execute().
285      *
286      *   - Do include packets and bytes that were obtained from the datapath
287      *     when a subfacet's statistics were reset (e.g. dpif_flow_put() with
288      *     DPIF_FP_ZERO_STATS).
289      *
290      *   - Do not include packets or bytes that can be obtained from the
291      *     datapath for any existing subfacet.
292      */
293     uint64_t packet_count;       /* Number of packets received. */
294     uint64_t byte_count;         /* Number of bytes received. */
295
296     /* Resubmit statistics. */
297     uint64_t prev_packet_count;  /* Number of packets from last stats push. */
298     uint64_t prev_byte_count;    /* Number of bytes from last stats push. */
299     long long int prev_used;     /* Used time from last stats push. */
300
301     /* Accounting. */
302     uint64_t accounted_bytes;    /* Bytes processed by facet_account(). */
303     struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
304
305     /* Properties of datapath actions.
306      *
307      * Every subfacet has its own actions because actions can differ slightly
308      * between splintered and non-splintered subfacets due to the VLAN tag
309      * being initially different (present vs. absent).  All of them have these
310      * properties in common so we just store one copy of them here. */
311     bool may_install;            /* Reassess actions for every packet? */
312     bool has_learn;              /* Actions include NXAST_LEARN? */
313     bool has_normal;             /* Actions output to OFPP_NORMAL? */
314     tag_type tags;               /* Tags that would require revalidation. */
315     mirror_mask_t mirrors;       /* Bitmap of dependent mirrors. */
316 };
317
318 static struct facet *facet_create(struct rule_dpif *, const struct flow *);
319 static void facet_remove(struct ofproto_dpif *, struct facet *);
320 static void facet_free(struct facet *);
321
322 static struct facet *facet_find(struct ofproto_dpif *, const struct flow *);
323 static struct facet *facet_lookup_valid(struct ofproto_dpif *,
324                                         const struct flow *);
325 static bool facet_revalidate(struct ofproto_dpif *, struct facet *);
326
327 static bool execute_controller_action(struct ofproto_dpif *,
328                                       const struct flow *,
329                                       const struct nlattr *odp_actions,
330                                       size_t actions_len,
331                                       struct ofpbuf *packet, bool clone);
332
333 static void facet_flush_stats(struct ofproto_dpif *, struct facet *);
334
335 static void facet_update_time(struct ofproto_dpif *, struct facet *,
336                               long long int used);
337 static void facet_reset_counters(struct facet *);
338 static void facet_push_stats(struct facet *);
339 static void facet_account(struct ofproto_dpif *, struct facet *);
340
341 static bool facet_is_controller_flow(struct facet *);
342
343 /* A dpif flow and actions associated with a facet.
344  *
345  * See also the large comment on struct facet. */
346 struct subfacet {
347     /* Owners. */
348     struct hmap_node hmap_node; /* In struct ofproto_dpif 'subfacets' list. */
349     struct list list_node;      /* In struct facet's 'facets' list. */
350     struct facet *facet;        /* Owning facet. */
351
352     /* Key.
353      *
354      * To save memory in the common case, 'key' is NULL if 'key_fitness' is
355      * ODP_FIT_PERFECT, that is, odp_flow_key_from_flow() can accurately
356      * regenerate the ODP flow key from ->facet->flow. */
357     enum odp_key_fitness key_fitness;
358     struct nlattr *key;
359     int key_len;
360
361     long long int used;         /* Time last used; time created if not used. */
362
363     uint64_t dp_packet_count;   /* Last known packet count in the datapath. */
364     uint64_t dp_byte_count;     /* Last known byte count in the datapath. */
365
366     /* Datapath actions.
367      *
368      * These should be essentially identical for every subfacet in a facet, but
369      * may differ in trivial ways due to VLAN splinters. */
370     size_t actions_len;         /* Number of bytes in actions[]. */
371     struct nlattr *actions;     /* Datapath actions. */
372
373     bool installed;             /* Installed in datapath? */
374
375     /* This value is normally the same as ->facet->flow.vlan_tci.  Only VLAN
376      * splinters can cause it to differ.  This value should be removed when
377      * the VLAN splinters feature is no longer needed.  */
378     ovs_be16 initial_tci;       /* Initial VLAN TCI value. */
379 };
380
381 static struct subfacet *subfacet_create(struct ofproto_dpif *, struct facet *,
382                                         enum odp_key_fitness,
383                                         const struct nlattr *key,
384                                         size_t key_len, ovs_be16 initial_tci);
385 static struct subfacet *subfacet_find(struct ofproto_dpif *,
386                                       const struct nlattr *key, size_t key_len);
387 static void subfacet_destroy(struct ofproto_dpif *, struct subfacet *);
388 static void subfacet_destroy__(struct ofproto_dpif *, struct subfacet *);
389 static void subfacet_reset_dp_stats(struct subfacet *,
390                                     struct dpif_flow_stats *);
391 static void subfacet_update_time(struct ofproto_dpif *, struct subfacet *,
392                                  long long int used);
393 static void subfacet_update_stats(struct ofproto_dpif *, struct subfacet *,
394                                   const struct dpif_flow_stats *);
395 static void subfacet_make_actions(struct ofproto_dpif *, struct subfacet *,
396                                   const struct ofpbuf *packet);
397 static int subfacet_install(struct ofproto_dpif *, struct subfacet *,
398                             const struct nlattr *actions, size_t actions_len,
399                             struct dpif_flow_stats *);
400 static void subfacet_uninstall(struct ofproto_dpif *, struct subfacet *);
401
402 struct ofport_dpif {
403     struct ofport up;
404
405     uint32_t odp_port;
406     struct ofbundle *bundle;    /* Bundle that contains this port, if any. */
407     struct list bundle_node;    /* In struct ofbundle's "ports" list. */
408     struct cfm *cfm;            /* Connectivity Fault Management, if any. */
409     tag_type tag;               /* Tag associated with this port. */
410     uint32_t bond_stable_id;    /* stable_id to use as bond slave, or 0. */
411     bool may_enable;            /* May be enabled in bonds. */
412
413     /* Spanning tree. */
414     struct stp_port *stp_port;  /* Spanning Tree Protocol, if any. */
415     enum stp_state stp_state;   /* Always STP_DISABLED if STP not in use. */
416     long long int stp_state_entered;
417
418     struct hmap priorities;     /* Map of attached 'priority_to_dscp's. */
419
420     /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
421      *
422      * This is deprecated.  It is only for compatibility with broken device
423      * drivers in old versions of Linux that do not properly support VLANs when
424      * VLAN devices are not used.  When broken device drivers are no longer in
425      * widespread use, we will delete these interfaces. */
426     uint16_t realdev_ofp_port;
427     int vlandev_vid;
428 };
429
430 /* Node in 'ofport_dpif''s 'priorities' map.  Used to maintain a map from
431  * 'priority' (the datapath's term for QoS queue) to the dscp bits which all
432  * traffic egressing the 'ofport' with that priority should be marked with. */
433 struct priority_to_dscp {
434     struct hmap_node hmap_node; /* Node in 'ofport_dpif''s 'priorities' map. */
435     uint32_t priority;          /* Priority of this queue (see struct flow). */
436
437     uint8_t dscp;               /* DSCP bits to mark outgoing traffic with. */
438 };
439
440 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
441  *
442  * This is deprecated.  It is only for compatibility with broken device drivers
443  * in old versions of Linux that do not properly support VLANs when VLAN
444  * devices are not used.  When broken device drivers are no longer in
445  * widespread use, we will delete these interfaces. */
446 struct vlan_splinter {
447     struct hmap_node realdev_vid_node;
448     struct hmap_node vlandev_node;
449     uint16_t realdev_ofp_port;
450     uint16_t vlandev_ofp_port;
451     int vid;
452 };
453
454 static uint32_t vsp_realdev_to_vlandev(const struct ofproto_dpif *,
455                                        uint32_t realdev, ovs_be16 vlan_tci);
456 static uint16_t vsp_vlandev_to_realdev(const struct ofproto_dpif *,
457                                        uint16_t vlandev, int *vid);
458 static void vsp_remove(struct ofport_dpif *);
459 static void vsp_add(struct ofport_dpif *, uint16_t realdev_ofp_port, int vid);
460
461 static struct ofport_dpif *
462 ofport_dpif_cast(const struct ofport *ofport)
463 {
464     assert(ofport->ofproto->ofproto_class == &ofproto_dpif_class);
465     return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
466 }
467
468 static void port_run(struct ofport_dpif *);
469 static void port_wait(struct ofport_dpif *);
470 static int set_cfm(struct ofport *, const struct cfm_settings *);
471 static void ofport_clear_priorities(struct ofport_dpif *);
472
473 struct dpif_completion {
474     struct list list_node;
475     struct ofoperation *op;
476 };
477
478 /* Extra information about a classifier table.
479  * Currently used just for optimized flow revalidation. */
480 struct table_dpif {
481     /* If either of these is nonnull, then this table has a form that allows
482      * flows to be tagged to avoid revalidating most flows for the most common
483      * kinds of flow table changes. */
484     struct cls_table *catchall_table; /* Table that wildcards all fields. */
485     struct cls_table *other_table;    /* Table with any other wildcard set. */
486     uint32_t basis;                   /* Keeps each table's tags separate. */
487 };
488
489 struct ofproto_dpif {
490     struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
491     struct ofproto up;
492     struct dpif *dpif;
493     int max_ports;
494
495     /* Statistics. */
496     uint64_t n_matches;
497
498     /* Bridging. */
499     struct netflow *netflow;
500     struct dpif_sflow *sflow;
501     struct hmap bundles;        /* Contains "struct ofbundle"s. */
502     struct mac_learning *ml;
503     struct ofmirror *mirrors[MAX_MIRRORS];
504     bool has_bonded_bundles;
505
506     /* Expiration. */
507     struct timer next_expiration;
508
509     /* Facets. */
510     struct hmap facets;
511     struct hmap subfacets;
512
513     /* Revalidation. */
514     struct table_dpif tables[N_TABLES];
515     bool need_revalidate;
516     struct tag_set revalidate_set;
517
518     /* Support for debugging async flow mods. */
519     struct list completions;
520
521     bool has_bundle_action; /* True when the first bundle action appears. */
522
523     /* Spanning tree. */
524     struct stp *stp;
525     long long int stp_last_tick;
526
527     /* VLAN splinters. */
528     struct hmap realdev_vid_map; /* (realdev,vid) -> vlandev. */
529     struct hmap vlandev_map;     /* vlandev -> (realdev,vid). */
530 };
531
532 /* Defer flow mod completion until "ovs-appctl ofproto/unclog"?  (Useful only
533  * for debugging the asynchronous flow_mod implementation.) */
534 static bool clogged;
535
536 /* All existing ofproto_dpif instances, indexed by ->up.name. */
537 static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
538
539 static void ofproto_dpif_unixctl_init(void);
540
541 static struct ofproto_dpif *
542 ofproto_dpif_cast(const struct ofproto *ofproto)
543 {
544     assert(ofproto->ofproto_class == &ofproto_dpif_class);
545     return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
546 }
547
548 static struct ofport_dpif *get_ofp_port(struct ofproto_dpif *,
549                                         uint16_t ofp_port);
550 static struct ofport_dpif *get_odp_port(struct ofproto_dpif *,
551                                         uint32_t odp_port);
552
553 /* Packet processing. */
554 static void update_learning_table(struct ofproto_dpif *,
555                                   const struct flow *, int vlan,
556                                   struct ofbundle *);
557 /* Upcalls. */
558 #define FLOW_MISS_MAX_BATCH 50
559 static int handle_upcalls(struct ofproto_dpif *, unsigned int max_batch);
560
561 /* Flow expiration. */
562 static int expire(struct ofproto_dpif *);
563
564 /* NetFlow. */
565 static void send_netflow_active_timeouts(struct ofproto_dpif *);
566
567 /* Utilities. */
568 static int send_packet(const struct ofport_dpif *, struct ofpbuf *packet);
569 static size_t
570 compose_sflow_action(const struct ofproto_dpif *, struct ofpbuf *odp_actions,
571                      const struct flow *, uint32_t odp_port);
572 static void add_mirror_actions(struct action_xlate_ctx *ctx,
573                                const struct flow *flow);
574 /* Global variables. */
575 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
576 \f
577 /* Factory functions. */
578
579 static void
580 enumerate_types(struct sset *types)
581 {
582     dp_enumerate_types(types);
583 }
584
585 static int
586 enumerate_names(const char *type, struct sset *names)
587 {
588     return dp_enumerate_names(type, names);
589 }
590
591 static int
592 del(const char *type, const char *name)
593 {
594     struct dpif *dpif;
595     int error;
596
597     error = dpif_open(name, type, &dpif);
598     if (!error) {
599         error = dpif_delete(dpif);
600         dpif_close(dpif);
601     }
602     return error;
603 }
604 \f
605 /* Basic life-cycle. */
606
607 static struct ofproto *
608 alloc(void)
609 {
610     struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
611     return &ofproto->up;
612 }
613
614 static void
615 dealloc(struct ofproto *ofproto_)
616 {
617     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
618     free(ofproto);
619 }
620
621 static int
622 construct(struct ofproto *ofproto_, int *n_tablesp)
623 {
624     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
625     const char *name = ofproto->up.name;
626     int error;
627     int i;
628
629     error = dpif_create_and_open(name, ofproto->up.type, &ofproto->dpif);
630     if (error) {
631         VLOG_ERR("failed to open datapath %s: %s", name, strerror(error));
632         return error;
633     }
634
635     ofproto->max_ports = dpif_get_max_ports(ofproto->dpif);
636     ofproto->n_matches = 0;
637
638     dpif_flow_flush(ofproto->dpif);
639     dpif_recv_purge(ofproto->dpif);
640
641     error = dpif_recv_set_mask(ofproto->dpif,
642                                ((1u << DPIF_UC_MISS) |
643                                 (1u << DPIF_UC_ACTION)));
644     if (error) {
645         VLOG_ERR("failed to listen on datapath %s: %s", name, strerror(error));
646         dpif_close(ofproto->dpif);
647         return error;
648     }
649
650     ofproto->netflow = NULL;
651     ofproto->sflow = NULL;
652     ofproto->stp = NULL;
653     hmap_init(&ofproto->bundles);
654     ofproto->ml = mac_learning_create();
655     for (i = 0; i < MAX_MIRRORS; i++) {
656         ofproto->mirrors[i] = NULL;
657     }
658     ofproto->has_bonded_bundles = false;
659
660     timer_set_duration(&ofproto->next_expiration, 1000);
661
662     hmap_init(&ofproto->facets);
663     hmap_init(&ofproto->subfacets);
664
665     for (i = 0; i < N_TABLES; i++) {
666         struct table_dpif *table = &ofproto->tables[i];
667
668         table->catchall_table = NULL;
669         table->other_table = NULL;
670         table->basis = random_uint32();
671     }
672     ofproto->need_revalidate = false;
673     tag_set_init(&ofproto->revalidate_set);
674
675     list_init(&ofproto->completions);
676
677     ofproto_dpif_unixctl_init();
678
679     ofproto->has_bundle_action = false;
680
681     hmap_init(&ofproto->vlandev_map);
682     hmap_init(&ofproto->realdev_vid_map);
683
684     hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
685                 hash_string(ofproto->up.name, 0));
686
687     *n_tablesp = N_TABLES;
688     return 0;
689 }
690
691 static void
692 complete_operations(struct ofproto_dpif *ofproto)
693 {
694     struct dpif_completion *c, *next;
695
696     LIST_FOR_EACH_SAFE (c, next, list_node, &ofproto->completions) {
697         ofoperation_complete(c->op, 0);
698         list_remove(&c->list_node);
699         free(c);
700     }
701 }
702
703 static void
704 destruct(struct ofproto *ofproto_)
705 {
706     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
707     struct rule_dpif *rule, *next_rule;
708     struct classifier *table;
709     int i;
710
711     hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
712     complete_operations(ofproto);
713
714     OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
715         struct cls_cursor cursor;
716
717         cls_cursor_init(&cursor, table, NULL);
718         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
719             ofproto_rule_destroy(&rule->up);
720         }
721     }
722
723     for (i = 0; i < MAX_MIRRORS; i++) {
724         mirror_destroy(ofproto->mirrors[i]);
725     }
726
727     netflow_destroy(ofproto->netflow);
728     dpif_sflow_destroy(ofproto->sflow);
729     hmap_destroy(&ofproto->bundles);
730     mac_learning_destroy(ofproto->ml);
731
732     hmap_destroy(&ofproto->facets);
733     hmap_destroy(&ofproto->subfacets);
734
735     hmap_destroy(&ofproto->vlandev_map);
736     hmap_destroy(&ofproto->realdev_vid_map);
737
738     dpif_close(ofproto->dpif);
739 }
740
741 static int
742 run_fast(struct ofproto *ofproto_)
743 {
744     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
745     unsigned int work;
746
747     /* Handle one or more batches of upcalls, until there's nothing left to do
748      * or until we do a fixed total amount of work.
749      *
750      * We do work in batches because it can be much cheaper to set up a number
751      * of flows and fire off their patches all at once.  We do multiple batches
752      * because in some cases handling a packet can cause another packet to be
753      * queued almost immediately as part of the return flow.  Both
754      * optimizations can make major improvements on some benchmarks and
755      * presumably for real traffic as well. */
756     work = 0;
757     while (work < FLOW_MISS_MAX_BATCH) {
758         int retval = handle_upcalls(ofproto, FLOW_MISS_MAX_BATCH - work);
759         if (retval <= 0) {
760             return -retval;
761         }
762         work += retval;
763     }
764     return 0;
765 }
766
767 static int
768 run(struct ofproto *ofproto_)
769 {
770     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
771     struct ofport_dpif *ofport;
772     struct ofbundle *bundle;
773     int error;
774
775     if (!clogged) {
776         complete_operations(ofproto);
777     }
778     dpif_run(ofproto->dpif);
779
780     error = run_fast(ofproto_);
781     if (error) {
782         return error;
783     }
784
785     if (timer_expired(&ofproto->next_expiration)) {
786         int delay = expire(ofproto);
787         timer_set_duration(&ofproto->next_expiration, delay);
788     }
789
790     if (ofproto->netflow) {
791         if (netflow_run(ofproto->netflow)) {
792             send_netflow_active_timeouts(ofproto);
793         }
794     }
795     if (ofproto->sflow) {
796         dpif_sflow_run(ofproto->sflow);
797     }
798
799     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
800         port_run(ofport);
801     }
802     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
803         bundle_run(bundle);
804     }
805
806     stp_run(ofproto);
807     mac_learning_run(ofproto->ml, &ofproto->revalidate_set);
808
809     /* Now revalidate if there's anything to do. */
810     if (ofproto->need_revalidate
811         || !tag_set_is_empty(&ofproto->revalidate_set)) {
812         struct tag_set revalidate_set = ofproto->revalidate_set;
813         bool revalidate_all = ofproto->need_revalidate;
814         struct facet *facet, *next;
815
816         /* Clear the revalidation flags. */
817         tag_set_init(&ofproto->revalidate_set);
818         ofproto->need_revalidate = false;
819
820         HMAP_FOR_EACH_SAFE (facet, next, hmap_node, &ofproto->facets) {
821             if (revalidate_all
822                 || tag_set_intersects(&revalidate_set, facet->tags)) {
823                 facet_revalidate(ofproto, facet);
824             }
825         }
826     }
827
828     return 0;
829 }
830
831 static void
832 wait(struct ofproto *ofproto_)
833 {
834     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
835     struct ofport_dpif *ofport;
836     struct ofbundle *bundle;
837
838     if (!clogged && !list_is_empty(&ofproto->completions)) {
839         poll_immediate_wake();
840     }
841
842     dpif_wait(ofproto->dpif);
843     dpif_recv_wait(ofproto->dpif);
844     if (ofproto->sflow) {
845         dpif_sflow_wait(ofproto->sflow);
846     }
847     if (!tag_set_is_empty(&ofproto->revalidate_set)) {
848         poll_immediate_wake();
849     }
850     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
851         port_wait(ofport);
852     }
853     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
854         bundle_wait(bundle);
855     }
856     if (ofproto->netflow) {
857         netflow_wait(ofproto->netflow);
858     }
859     mac_learning_wait(ofproto->ml);
860     stp_wait(ofproto);
861     if (ofproto->need_revalidate) {
862         /* Shouldn't happen, but if it does just go around again. */
863         VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
864         poll_immediate_wake();
865     } else {
866         timer_wait(&ofproto->next_expiration);
867     }
868 }
869
870 static void
871 flush(struct ofproto *ofproto_)
872 {
873     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
874     struct facet *facet, *next_facet;
875
876     HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
877         /* Mark the facet as not installed so that facet_remove() doesn't
878          * bother trying to uninstall it.  There is no point in uninstalling it
879          * individually since we are about to blow away all the facets with
880          * dpif_flow_flush(). */
881         struct subfacet *subfacet;
882
883         LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
884             subfacet->installed = false;
885             subfacet->dp_packet_count = 0;
886             subfacet->dp_byte_count = 0;
887         }
888         facet_remove(ofproto, facet);
889     }
890     dpif_flow_flush(ofproto->dpif);
891 }
892
893 static void
894 get_features(struct ofproto *ofproto_ OVS_UNUSED,
895              bool *arp_match_ip, uint32_t *actions)
896 {
897     *arp_match_ip = true;
898     *actions = ((1u << OFPAT_OUTPUT) |
899                 (1u << OFPAT_SET_VLAN_VID) |
900                 (1u << OFPAT_SET_VLAN_PCP) |
901                 (1u << OFPAT_STRIP_VLAN) |
902                 (1u << OFPAT_SET_DL_SRC) |
903                 (1u << OFPAT_SET_DL_DST) |
904                 (1u << OFPAT_SET_NW_SRC) |
905                 (1u << OFPAT_SET_NW_DST) |
906                 (1u << OFPAT_SET_NW_TOS) |
907                 (1u << OFPAT_SET_TP_SRC) |
908                 (1u << OFPAT_SET_TP_DST) |
909                 (1u << OFPAT_ENQUEUE));
910 }
911
912 static void
913 get_tables(struct ofproto *ofproto_, struct ofp_table_stats *ots)
914 {
915     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
916     struct dpif_dp_stats s;
917
918     strcpy(ots->name, "classifier");
919
920     dpif_get_dp_stats(ofproto->dpif, &s);
921     put_32aligned_be64(&ots->lookup_count, htonll(s.n_hit + s.n_missed));
922     put_32aligned_be64(&ots->matched_count,
923                        htonll(s.n_hit + ofproto->n_matches));
924 }
925
926 static struct ofport *
927 port_alloc(void)
928 {
929     struct ofport_dpif *port = xmalloc(sizeof *port);
930     return &port->up;
931 }
932
933 static void
934 port_dealloc(struct ofport *port_)
935 {
936     struct ofport_dpif *port = ofport_dpif_cast(port_);
937     free(port);
938 }
939
940 static int
941 port_construct(struct ofport *port_)
942 {
943     struct ofport_dpif *port = ofport_dpif_cast(port_);
944     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
945
946     ofproto->need_revalidate = true;
947     port->odp_port = ofp_port_to_odp_port(port->up.ofp_port);
948     port->bundle = NULL;
949     port->cfm = NULL;
950     port->tag = tag_create_random();
951     port->may_enable = true;
952     port->stp_port = NULL;
953     port->stp_state = STP_DISABLED;
954     hmap_init(&port->priorities);
955     port->realdev_ofp_port = 0;
956     port->vlandev_vid = 0;
957
958     if (ofproto->sflow) {
959         dpif_sflow_add_port(ofproto->sflow, port->odp_port,
960                             netdev_get_name(port->up.netdev));
961     }
962
963     return 0;
964 }
965
966 static void
967 port_destruct(struct ofport *port_)
968 {
969     struct ofport_dpif *port = ofport_dpif_cast(port_);
970     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
971
972     ofproto->need_revalidate = true;
973     bundle_remove(port_);
974     set_cfm(port_, NULL);
975     if (ofproto->sflow) {
976         dpif_sflow_del_port(ofproto->sflow, port->odp_port);
977     }
978
979     ofport_clear_priorities(port);
980     hmap_destroy(&port->priorities);
981 }
982
983 static void
984 port_modified(struct ofport *port_)
985 {
986     struct ofport_dpif *port = ofport_dpif_cast(port_);
987
988     if (port->bundle && port->bundle->bond) {
989         bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
990     }
991 }
992
993 static void
994 port_reconfigured(struct ofport *port_, ovs_be32 old_config)
995 {
996     struct ofport_dpif *port = ofport_dpif_cast(port_);
997     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
998     ovs_be32 changed = old_config ^ port->up.opp.config;
999
1000     if (changed & htonl(OFPPC_NO_RECV | OFPPC_NO_RECV_STP |
1001                         OFPPC_NO_FWD | OFPPC_NO_FLOOD)) {
1002         ofproto->need_revalidate = true;
1003
1004         if (changed & htonl(OFPPC_NO_FLOOD) && port->bundle) {
1005             bundle_update(port->bundle);
1006         }
1007     }
1008 }
1009
1010 static int
1011 set_sflow(struct ofproto *ofproto_,
1012           const struct ofproto_sflow_options *sflow_options)
1013 {
1014     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1015     struct dpif_sflow *ds = ofproto->sflow;
1016
1017     if (sflow_options) {
1018         if (!ds) {
1019             struct ofport_dpif *ofport;
1020
1021             ds = ofproto->sflow = dpif_sflow_create(ofproto->dpif);
1022             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1023                 dpif_sflow_add_port(ds, ofport->odp_port,
1024                                     netdev_get_name(ofport->up.netdev));
1025             }
1026             ofproto->need_revalidate = true;
1027         }
1028         dpif_sflow_set_options(ds, sflow_options);
1029     } else {
1030         if (ds) {
1031             dpif_sflow_destroy(ds);
1032             ofproto->need_revalidate = true;
1033             ofproto->sflow = NULL;
1034         }
1035     }
1036     return 0;
1037 }
1038
1039 static int
1040 set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
1041 {
1042     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1043     int error;
1044
1045     if (!s) {
1046         error = 0;
1047     } else {
1048         if (!ofport->cfm) {
1049             struct ofproto_dpif *ofproto;
1050
1051             ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1052             ofproto->need_revalidate = true;
1053             ofport->cfm = cfm_create(netdev_get_name(ofport->up.netdev));
1054         }
1055
1056         if (cfm_configure(ofport->cfm, s)) {
1057             return 0;
1058         }
1059
1060         error = EINVAL;
1061     }
1062     cfm_destroy(ofport->cfm);
1063     ofport->cfm = NULL;
1064     return error;
1065 }
1066
1067 static int
1068 get_cfm_fault(const struct ofport *ofport_)
1069 {
1070     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1071
1072     return ofport->cfm ? cfm_get_fault(ofport->cfm) : -1;
1073 }
1074
1075 static int
1076 get_cfm_remote_mpids(const struct ofport *ofport_, const uint64_t **rmps,
1077                      size_t *n_rmps)
1078 {
1079     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1080
1081     if (ofport->cfm) {
1082         cfm_get_remote_mpids(ofport->cfm, rmps, n_rmps);
1083         return 0;
1084     } else {
1085         return -1;
1086     }
1087 }
1088 \f
1089 /* Spanning Tree. */
1090
1091 static void
1092 send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
1093 {
1094     struct ofproto_dpif *ofproto = ofproto_;
1095     struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
1096     struct ofport_dpif *ofport;
1097
1098     ofport = stp_port_get_aux(sp);
1099     if (!ofport) {
1100         VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
1101                      ofproto->up.name, port_num);
1102     } else {
1103         struct eth_header *eth = pkt->l2;
1104
1105         netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
1106         if (eth_addr_is_zero(eth->eth_src)) {
1107             VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
1108                          "with unknown MAC", ofproto->up.name, port_num);
1109         } else {
1110             send_packet(ofport, pkt);
1111         }
1112     }
1113     ofpbuf_delete(pkt);
1114 }
1115
1116 /* Configures STP on 'ofproto_' using the settings defined in 's'. */
1117 static int
1118 set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
1119 {
1120     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1121
1122     /* Only revalidate flows if the configuration changed. */
1123     if (!s != !ofproto->stp) {
1124         ofproto->need_revalidate = true;
1125     }
1126
1127     if (s) {
1128         if (!ofproto->stp) {
1129             ofproto->stp = stp_create(ofproto_->name, s->system_id,
1130                                       send_bpdu_cb, ofproto);
1131             ofproto->stp_last_tick = time_msec();
1132         }
1133
1134         stp_set_bridge_id(ofproto->stp, s->system_id);
1135         stp_set_bridge_priority(ofproto->stp, s->priority);
1136         stp_set_hello_time(ofproto->stp, s->hello_time);
1137         stp_set_max_age(ofproto->stp, s->max_age);
1138         stp_set_forward_delay(ofproto->stp, s->fwd_delay);
1139     }  else {
1140         stp_destroy(ofproto->stp);
1141         ofproto->stp = NULL;
1142     }
1143
1144     return 0;
1145 }
1146
1147 static int
1148 get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
1149 {
1150     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1151
1152     if (ofproto->stp) {
1153         s->enabled = true;
1154         s->bridge_id = stp_get_bridge_id(ofproto->stp);
1155         s->designated_root = stp_get_designated_root(ofproto->stp);
1156         s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
1157     } else {
1158         s->enabled = false;
1159     }
1160
1161     return 0;
1162 }
1163
1164 static void
1165 update_stp_port_state(struct ofport_dpif *ofport)
1166 {
1167     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1168     enum stp_state state;
1169
1170     /* Figure out new state. */
1171     state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
1172                              : STP_DISABLED;
1173
1174     /* Update state. */
1175     if (ofport->stp_state != state) {
1176         ovs_be32 of_state;
1177         bool fwd_change;
1178
1179         VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
1180                     netdev_get_name(ofport->up.netdev),
1181                     stp_state_name(ofport->stp_state),
1182                     stp_state_name(state));
1183         if (stp_learn_in_state(ofport->stp_state)
1184                 != stp_learn_in_state(state)) {
1185             /* xxx Learning action flows should also be flushed. */
1186             mac_learning_flush(ofproto->ml);
1187         }
1188         fwd_change = stp_forward_in_state(ofport->stp_state)
1189                         != stp_forward_in_state(state);
1190
1191         ofproto->need_revalidate = true;
1192         ofport->stp_state = state;
1193         ofport->stp_state_entered = time_msec();
1194
1195         if (fwd_change && ofport->bundle) {
1196             bundle_update(ofport->bundle);
1197         }
1198
1199         /* Update the STP state bits in the OpenFlow port description. */
1200         of_state = (ofport->up.opp.state & htonl(~OFPPS_STP_MASK))
1201                          | htonl(state == STP_LISTENING ? OFPPS_STP_LISTEN
1202                                : state == STP_LEARNING ? OFPPS_STP_LEARN
1203                                : state == STP_FORWARDING ? OFPPS_STP_FORWARD
1204                                : state == STP_BLOCKING ?  OFPPS_STP_BLOCK
1205                                : 0);
1206         ofproto_port_set_state(&ofport->up, of_state);
1207     }
1208 }
1209
1210 /* Configures STP on 'ofport_' using the settings defined in 's'.  The
1211  * caller is responsible for assigning STP port numbers and ensuring
1212  * there are no duplicates. */
1213 static int
1214 set_stp_port(struct ofport *ofport_,
1215              const struct ofproto_port_stp_settings *s)
1216 {
1217     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1218     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1219     struct stp_port *sp = ofport->stp_port;
1220
1221     if (!s || !s->enable) {
1222         if (sp) {
1223             ofport->stp_port = NULL;
1224             stp_port_disable(sp);
1225             update_stp_port_state(ofport);
1226         }
1227         return 0;
1228     } else if (sp && stp_port_no(sp) != s->port_num
1229             && ofport == stp_port_get_aux(sp)) {
1230         /* The port-id changed, so disable the old one if it's not
1231          * already in use by another port. */
1232         stp_port_disable(sp);
1233     }
1234
1235     sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
1236     stp_port_enable(sp);
1237
1238     stp_port_set_aux(sp, ofport);
1239     stp_port_set_priority(sp, s->priority);
1240     stp_port_set_path_cost(sp, s->path_cost);
1241
1242     update_stp_port_state(ofport);
1243
1244     return 0;
1245 }
1246
1247 static int
1248 get_stp_port_status(struct ofport *ofport_,
1249                     struct ofproto_port_stp_status *s)
1250 {
1251     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1252     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1253     struct stp_port *sp = ofport->stp_port;
1254
1255     if (!ofproto->stp || !sp) {
1256         s->enabled = false;
1257         return 0;
1258     }
1259
1260     s->enabled = true;
1261     s->port_id = stp_port_get_id(sp);
1262     s->state = stp_port_get_state(sp);
1263     s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
1264     s->role = stp_port_get_role(sp);
1265     stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
1266
1267     return 0;
1268 }
1269
1270 static void
1271 stp_run(struct ofproto_dpif *ofproto)
1272 {
1273     if (ofproto->stp) {
1274         long long int now = time_msec();
1275         long long int elapsed = now - ofproto->stp_last_tick;
1276         struct stp_port *sp;
1277
1278         if (elapsed > 0) {
1279             stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
1280             ofproto->stp_last_tick = now;
1281         }
1282         while (stp_get_changed_port(ofproto->stp, &sp)) {
1283             struct ofport_dpif *ofport = stp_port_get_aux(sp);
1284
1285             if (ofport) {
1286                 update_stp_port_state(ofport);
1287             }
1288         }
1289     }
1290 }
1291
1292 static void
1293 stp_wait(struct ofproto_dpif *ofproto)
1294 {
1295     if (ofproto->stp) {
1296         poll_timer_wait(1000);
1297     }
1298 }
1299
1300 /* Returns true if STP should process 'flow'. */
1301 static bool
1302 stp_should_process_flow(const struct flow *flow)
1303 {
1304     return eth_addr_equals(flow->dl_dst, eth_addr_stp);
1305 }
1306
1307 static void
1308 stp_process_packet(const struct ofport_dpif *ofport,
1309                    const struct ofpbuf *packet)
1310 {
1311     struct ofpbuf payload = *packet;
1312     struct eth_header *eth = payload.data;
1313     struct stp_port *sp = ofport->stp_port;
1314
1315     /* Sink packets on ports that have STP disabled when the bridge has
1316      * STP enabled. */
1317     if (!sp || stp_port_get_state(sp) == STP_DISABLED) {
1318         return;
1319     }
1320
1321     /* Trim off padding on payload. */
1322     if (payload.size > ntohs(eth->eth_type) + ETH_HEADER_LEN) {
1323         payload.size = ntohs(eth->eth_type) + ETH_HEADER_LEN;
1324     }
1325
1326     if (ofpbuf_try_pull(&payload, ETH_HEADER_LEN + LLC_HEADER_LEN)) {
1327         stp_received_bpdu(sp, payload.data, payload.size);
1328     }
1329 }
1330 \f
1331 static struct priority_to_dscp *
1332 get_priority(const struct ofport_dpif *ofport, uint32_t priority)
1333 {
1334     struct priority_to_dscp *pdscp;
1335     uint32_t hash;
1336
1337     hash = hash_int(priority, 0);
1338     HMAP_FOR_EACH_IN_BUCKET (pdscp, hmap_node, hash, &ofport->priorities) {
1339         if (pdscp->priority == priority) {
1340             return pdscp;
1341         }
1342     }
1343     return NULL;
1344 }
1345
1346 static void
1347 ofport_clear_priorities(struct ofport_dpif *ofport)
1348 {
1349     struct priority_to_dscp *pdscp, *next;
1350
1351     HMAP_FOR_EACH_SAFE (pdscp, next, hmap_node, &ofport->priorities) {
1352         hmap_remove(&ofport->priorities, &pdscp->hmap_node);
1353         free(pdscp);
1354     }
1355 }
1356
1357 static int
1358 set_queues(struct ofport *ofport_,
1359            const struct ofproto_port_queue *qdscp_list,
1360            size_t n_qdscp)
1361 {
1362     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1363     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1364     struct hmap new = HMAP_INITIALIZER(&new);
1365     size_t i;
1366
1367     for (i = 0; i < n_qdscp; i++) {
1368         struct priority_to_dscp *pdscp;
1369         uint32_t priority;
1370         uint8_t dscp;
1371
1372         dscp = (qdscp_list[i].dscp << 2) & IP_DSCP_MASK;
1373         if (dpif_queue_to_priority(ofproto->dpif, qdscp_list[i].queue,
1374                                    &priority)) {
1375             continue;
1376         }
1377
1378         pdscp = get_priority(ofport, priority);
1379         if (pdscp) {
1380             hmap_remove(&ofport->priorities, &pdscp->hmap_node);
1381         } else {
1382             pdscp = xmalloc(sizeof *pdscp);
1383             pdscp->priority = priority;
1384             pdscp->dscp = dscp;
1385             ofproto->need_revalidate = true;
1386         }
1387
1388         if (pdscp->dscp != dscp) {
1389             pdscp->dscp = dscp;
1390             ofproto->need_revalidate = true;
1391         }
1392
1393         hmap_insert(&new, &pdscp->hmap_node, hash_int(pdscp->priority, 0));
1394     }
1395
1396     if (!hmap_is_empty(&ofport->priorities)) {
1397         ofport_clear_priorities(ofport);
1398         ofproto->need_revalidate = true;
1399     }
1400
1401     hmap_swap(&new, &ofport->priorities);
1402     hmap_destroy(&new);
1403
1404     return 0;
1405 }
1406 \f
1407 /* Bundles. */
1408
1409 /* Expires all MAC learning entries associated with 'bundle' and forces its
1410  * ofproto to revalidate every flow.
1411  *
1412  * Normally MAC learning entries are removed only from the ofproto associated
1413  * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
1414  * are removed from every ofproto.  When patch ports and SLB bonds are in use
1415  * and a VM migration happens and the gratuitous ARPs are somehow lost, this
1416  * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
1417  * with the host from which it migrated. */
1418 static void
1419 bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
1420 {
1421     struct ofproto_dpif *ofproto = bundle->ofproto;
1422     struct mac_learning *ml = ofproto->ml;
1423     struct mac_entry *mac, *next_mac;
1424
1425     ofproto->need_revalidate = true;
1426     LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
1427         if (mac->port.p == bundle) {
1428             if (all_ofprotos) {
1429                 struct ofproto_dpif *o;
1430
1431                 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1432                     if (o != ofproto) {
1433                         struct mac_entry *e;
1434
1435                         e = mac_learning_lookup(o->ml, mac->mac, mac->vlan,
1436                                                 NULL);
1437                         if (e) {
1438                             tag_set_add(&o->revalidate_set, e->tag);
1439                             mac_learning_expire(o->ml, e);
1440                         }
1441                     }
1442                 }
1443             }
1444
1445             mac_learning_expire(ml, mac);
1446         }
1447     }
1448 }
1449
1450 static struct ofbundle *
1451 bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
1452 {
1453     struct ofbundle *bundle;
1454
1455     HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
1456                              &ofproto->bundles) {
1457         if (bundle->aux == aux) {
1458             return bundle;
1459         }
1460     }
1461     return NULL;
1462 }
1463
1464 /* Looks up each of the 'n_auxes' pointers in 'auxes' as bundles and adds the
1465  * ones that are found to 'bundles'. */
1466 static void
1467 bundle_lookup_multiple(struct ofproto_dpif *ofproto,
1468                        void **auxes, size_t n_auxes,
1469                        struct hmapx *bundles)
1470 {
1471     size_t i;
1472
1473     hmapx_init(bundles);
1474     for (i = 0; i < n_auxes; i++) {
1475         struct ofbundle *bundle = bundle_lookup(ofproto, auxes[i]);
1476         if (bundle) {
1477             hmapx_add(bundles, bundle);
1478         }
1479     }
1480 }
1481
1482 static void
1483 bundle_update(struct ofbundle *bundle)
1484 {
1485     struct ofport_dpif *port;
1486
1487     bundle->floodable = true;
1488     LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
1489         if (port->up.opp.config & htonl(OFPPC_NO_FLOOD)) {
1490             bundle->floodable = false;
1491             break;
1492         }
1493     }
1494 }
1495
1496 static void
1497 bundle_del_port(struct ofport_dpif *port)
1498 {
1499     struct ofbundle *bundle = port->bundle;
1500
1501     bundle->ofproto->need_revalidate = true;
1502
1503     list_remove(&port->bundle_node);
1504     port->bundle = NULL;
1505
1506     if (bundle->lacp) {
1507         lacp_slave_unregister(bundle->lacp, port);
1508     }
1509     if (bundle->bond) {
1510         bond_slave_unregister(bundle->bond, port);
1511     }
1512
1513     bundle_update(bundle);
1514 }
1515
1516 static bool
1517 bundle_add_port(struct ofbundle *bundle, uint32_t ofp_port,
1518                 struct lacp_slave_settings *lacp,
1519                 uint32_t bond_stable_id)
1520 {
1521     struct ofport_dpif *port;
1522
1523     port = get_ofp_port(bundle->ofproto, ofp_port);
1524     if (!port) {
1525         return false;
1526     }
1527
1528     if (port->bundle != bundle) {
1529         bundle->ofproto->need_revalidate = true;
1530         if (port->bundle) {
1531             bundle_del_port(port);
1532         }
1533
1534         port->bundle = bundle;
1535         list_push_back(&bundle->ports, &port->bundle_node);
1536         if (port->up.opp.config & htonl(OFPPC_NO_FLOOD)) {
1537             bundle->floodable = false;
1538         }
1539     }
1540     if (lacp) {
1541         port->bundle->ofproto->need_revalidate = true;
1542         lacp_slave_register(bundle->lacp, port, lacp);
1543     }
1544
1545     port->bond_stable_id = bond_stable_id;
1546
1547     return true;
1548 }
1549
1550 static void
1551 bundle_destroy(struct ofbundle *bundle)
1552 {
1553     struct ofproto_dpif *ofproto;
1554     struct ofport_dpif *port, *next_port;
1555     int i;
1556
1557     if (!bundle) {
1558         return;
1559     }
1560
1561     ofproto = bundle->ofproto;
1562     for (i = 0; i < MAX_MIRRORS; i++) {
1563         struct ofmirror *m = ofproto->mirrors[i];
1564         if (m) {
1565             if (m->out == bundle) {
1566                 mirror_destroy(m);
1567             } else if (hmapx_find_and_delete(&m->srcs, bundle)
1568                        || hmapx_find_and_delete(&m->dsts, bundle)) {
1569                 ofproto->need_revalidate = true;
1570             }
1571         }
1572     }
1573
1574     LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
1575         bundle_del_port(port);
1576     }
1577
1578     bundle_flush_macs(bundle, true);
1579     hmap_remove(&ofproto->bundles, &bundle->hmap_node);
1580     free(bundle->name);
1581     free(bundle->trunks);
1582     lacp_destroy(bundle->lacp);
1583     bond_destroy(bundle->bond);
1584     free(bundle);
1585 }
1586
1587 static int
1588 bundle_set(struct ofproto *ofproto_, void *aux,
1589            const struct ofproto_bundle_settings *s)
1590 {
1591     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1592     bool need_flush = false;
1593     struct ofport_dpif *port;
1594     struct ofbundle *bundle;
1595     unsigned long *trunks;
1596     int vlan;
1597     size_t i;
1598     bool ok;
1599
1600     if (!s) {
1601         bundle_destroy(bundle_lookup(ofproto, aux));
1602         return 0;
1603     }
1604
1605     assert(s->n_slaves == 1 || s->bond != NULL);
1606     assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
1607
1608     bundle = bundle_lookup(ofproto, aux);
1609     if (!bundle) {
1610         bundle = xmalloc(sizeof *bundle);
1611
1612         bundle->ofproto = ofproto;
1613         hmap_insert(&ofproto->bundles, &bundle->hmap_node,
1614                     hash_pointer(aux, 0));
1615         bundle->aux = aux;
1616         bundle->name = NULL;
1617
1618         list_init(&bundle->ports);
1619         bundle->vlan_mode = PORT_VLAN_TRUNK;
1620         bundle->vlan = -1;
1621         bundle->trunks = NULL;
1622         bundle->use_priority_tags = s->use_priority_tags;
1623         bundle->lacp = NULL;
1624         bundle->bond = NULL;
1625
1626         bundle->floodable = true;
1627
1628         bundle->src_mirrors = 0;
1629         bundle->dst_mirrors = 0;
1630         bundle->mirror_out = 0;
1631     }
1632
1633     if (!bundle->name || strcmp(s->name, bundle->name)) {
1634         free(bundle->name);
1635         bundle->name = xstrdup(s->name);
1636     }
1637
1638     /* LACP. */
1639     if (s->lacp) {
1640         if (!bundle->lacp) {
1641             ofproto->need_revalidate = true;
1642             bundle->lacp = lacp_create();
1643         }
1644         lacp_configure(bundle->lacp, s->lacp);
1645     } else {
1646         lacp_destroy(bundle->lacp);
1647         bundle->lacp = NULL;
1648     }
1649
1650     /* Update set of ports. */
1651     ok = true;
1652     for (i = 0; i < s->n_slaves; i++) {
1653         if (!bundle_add_port(bundle, s->slaves[i],
1654                              s->lacp ? &s->lacp_slaves[i] : NULL,
1655                              s->bond_stable_ids ? s->bond_stable_ids[i] : 0)) {
1656             ok = false;
1657         }
1658     }
1659     if (!ok || list_size(&bundle->ports) != s->n_slaves) {
1660         struct ofport_dpif *next_port;
1661
1662         LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
1663             for (i = 0; i < s->n_slaves; i++) {
1664                 if (s->slaves[i] == port->up.ofp_port) {
1665                     goto found;
1666                 }
1667             }
1668
1669             bundle_del_port(port);
1670         found: ;
1671         }
1672     }
1673     assert(list_size(&bundle->ports) <= s->n_slaves);
1674
1675     if (list_is_empty(&bundle->ports)) {
1676         bundle_destroy(bundle);
1677         return EINVAL;
1678     }
1679
1680     /* Set VLAN tagging mode */
1681     if (s->vlan_mode != bundle->vlan_mode
1682         || s->use_priority_tags != bundle->use_priority_tags) {
1683         bundle->vlan_mode = s->vlan_mode;
1684         bundle->use_priority_tags = s->use_priority_tags;
1685         need_flush = true;
1686     }
1687
1688     /* Set VLAN tag. */
1689     vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
1690             : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
1691             : 0);
1692     if (vlan != bundle->vlan) {
1693         bundle->vlan = vlan;
1694         need_flush = true;
1695     }
1696
1697     /* Get trunked VLANs. */
1698     switch (s->vlan_mode) {
1699     case PORT_VLAN_ACCESS:
1700         trunks = NULL;
1701         break;
1702
1703     case PORT_VLAN_TRUNK:
1704         trunks = (unsigned long *) s->trunks;
1705         break;
1706
1707     case PORT_VLAN_NATIVE_UNTAGGED:
1708     case PORT_VLAN_NATIVE_TAGGED:
1709         if (vlan != 0 && (!s->trunks
1710                           || !bitmap_is_set(s->trunks, vlan)
1711                           || bitmap_is_set(s->trunks, 0))) {
1712             /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
1713             if (s->trunks) {
1714                 trunks = bitmap_clone(s->trunks, 4096);
1715             } else {
1716                 trunks = bitmap_allocate1(4096);
1717             }
1718             bitmap_set1(trunks, vlan);
1719             bitmap_set0(trunks, 0);
1720         } else {
1721             trunks = (unsigned long *) s->trunks;
1722         }
1723         break;
1724
1725     default:
1726         NOT_REACHED();
1727     }
1728     if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
1729         free(bundle->trunks);
1730         if (trunks == s->trunks) {
1731             bundle->trunks = vlan_bitmap_clone(trunks);
1732         } else {
1733             bundle->trunks = trunks;
1734             trunks = NULL;
1735         }
1736         need_flush = true;
1737     }
1738     if (trunks != s->trunks) {
1739         free(trunks);
1740     }
1741
1742     /* Bonding. */
1743     if (!list_is_short(&bundle->ports)) {
1744         bundle->ofproto->has_bonded_bundles = true;
1745         if (bundle->bond) {
1746             if (bond_reconfigure(bundle->bond, s->bond)) {
1747                 ofproto->need_revalidate = true;
1748             }
1749         } else {
1750             bundle->bond = bond_create(s->bond);
1751             ofproto->need_revalidate = true;
1752         }
1753
1754         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
1755             bond_slave_register(bundle->bond, port, port->bond_stable_id,
1756                                 port->up.netdev);
1757         }
1758     } else {
1759         bond_destroy(bundle->bond);
1760         bundle->bond = NULL;
1761     }
1762
1763     /* If we changed something that would affect MAC learning, un-learn
1764      * everything on this port and force flow revalidation. */
1765     if (need_flush) {
1766         bundle_flush_macs(bundle, false);
1767     }
1768
1769     return 0;
1770 }
1771
1772 static void
1773 bundle_remove(struct ofport *port_)
1774 {
1775     struct ofport_dpif *port = ofport_dpif_cast(port_);
1776     struct ofbundle *bundle = port->bundle;
1777
1778     if (bundle) {
1779         bundle_del_port(port);
1780         if (list_is_empty(&bundle->ports)) {
1781             bundle_destroy(bundle);
1782         } else if (list_is_short(&bundle->ports)) {
1783             bond_destroy(bundle->bond);
1784             bundle->bond = NULL;
1785         }
1786     }
1787 }
1788
1789 static void
1790 send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
1791 {
1792     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
1793     struct ofport_dpif *port = port_;
1794     uint8_t ea[ETH_ADDR_LEN];
1795     int error;
1796
1797     error = netdev_get_etheraddr(port->up.netdev, ea);
1798     if (!error) {
1799         struct ofpbuf packet;
1800         void *packet_pdu;
1801
1802         ofpbuf_init(&packet, 0);
1803         packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
1804                                  pdu_size);
1805         memcpy(packet_pdu, pdu, pdu_size);
1806
1807         send_packet(port, &packet);
1808         ofpbuf_uninit(&packet);
1809     } else {
1810         VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
1811                     "%s (%s)", port->bundle->name,
1812                     netdev_get_name(port->up.netdev), strerror(error));
1813     }
1814 }
1815
1816 static void
1817 bundle_send_learning_packets(struct ofbundle *bundle)
1818 {
1819     struct ofproto_dpif *ofproto = bundle->ofproto;
1820     int error, n_packets, n_errors;
1821     struct mac_entry *e;
1822
1823     error = n_packets = n_errors = 0;
1824     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
1825         if (e->port.p != bundle) {
1826             struct ofpbuf *learning_packet;
1827             struct ofport_dpif *port;
1828             int ret;
1829
1830             learning_packet = bond_compose_learning_packet(bundle->bond, e->mac,
1831                                                            e->vlan,
1832                                                            (void **)&port);
1833             ret = send_packet(port, learning_packet);
1834             ofpbuf_delete(learning_packet);
1835             if (ret) {
1836                 error = ret;
1837                 n_errors++;
1838             }
1839             n_packets++;
1840         }
1841     }
1842
1843     if (n_errors) {
1844         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1845         VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
1846                      "packets, last error was: %s",
1847                      bundle->name, n_errors, n_packets, strerror(error));
1848     } else {
1849         VLOG_DBG("bond %s: sent %d gratuitous learning packets",
1850                  bundle->name, n_packets);
1851     }
1852 }
1853
1854 static void
1855 bundle_run(struct ofbundle *bundle)
1856 {
1857     if (bundle->lacp) {
1858         lacp_run(bundle->lacp, send_pdu_cb);
1859     }
1860     if (bundle->bond) {
1861         struct ofport_dpif *port;
1862
1863         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
1864             bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
1865         }
1866
1867         bond_run(bundle->bond, &bundle->ofproto->revalidate_set,
1868                  lacp_negotiated(bundle->lacp));
1869         if (bond_should_send_learning_packets(bundle->bond)) {
1870             bundle_send_learning_packets(bundle);
1871         }
1872     }
1873 }
1874
1875 static void
1876 bundle_wait(struct ofbundle *bundle)
1877 {
1878     if (bundle->lacp) {
1879         lacp_wait(bundle->lacp);
1880     }
1881     if (bundle->bond) {
1882         bond_wait(bundle->bond);
1883     }
1884 }
1885 \f
1886 /* Mirrors. */
1887
1888 static int
1889 mirror_scan(struct ofproto_dpif *ofproto)
1890 {
1891     int idx;
1892
1893     for (idx = 0; idx < MAX_MIRRORS; idx++) {
1894         if (!ofproto->mirrors[idx]) {
1895             return idx;
1896         }
1897     }
1898     return -1;
1899 }
1900
1901 static struct ofmirror *
1902 mirror_lookup(struct ofproto_dpif *ofproto, void *aux)
1903 {
1904     int i;
1905
1906     for (i = 0; i < MAX_MIRRORS; i++) {
1907         struct ofmirror *mirror = ofproto->mirrors[i];
1908         if (mirror && mirror->aux == aux) {
1909             return mirror;
1910         }
1911     }
1912
1913     return NULL;
1914 }
1915
1916 /* Update the 'dup_mirrors' member of each of the ofmirrors in 'ofproto'. */
1917 static void
1918 mirror_update_dups(struct ofproto_dpif *ofproto)
1919 {
1920     int i;
1921
1922     for (i = 0; i < MAX_MIRRORS; i++) {
1923         struct ofmirror *m = ofproto->mirrors[i];
1924
1925         if (m) {
1926             m->dup_mirrors = MIRROR_MASK_C(1) << i;
1927         }
1928     }
1929
1930     for (i = 0; i < MAX_MIRRORS; i++) {
1931         struct ofmirror *m1 = ofproto->mirrors[i];
1932         int j;
1933
1934         if (!m1) {
1935             continue;
1936         }
1937
1938         for (j = i + 1; j < MAX_MIRRORS; j++) {
1939             struct ofmirror *m2 = ofproto->mirrors[j];
1940
1941             if (m2 && m1->out == m2->out && m1->out_vlan == m2->out_vlan) {
1942                 m1->dup_mirrors |= MIRROR_MASK_C(1) << j;
1943                 m2->dup_mirrors |= m1->dup_mirrors;
1944             }
1945         }
1946     }
1947 }
1948
1949 static int
1950 mirror_set(struct ofproto *ofproto_, void *aux,
1951            const struct ofproto_mirror_settings *s)
1952 {
1953     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1954     mirror_mask_t mirror_bit;
1955     struct ofbundle *bundle;
1956     struct ofmirror *mirror;
1957     struct ofbundle *out;
1958     struct hmapx srcs;          /* Contains "struct ofbundle *"s. */
1959     struct hmapx dsts;          /* Contains "struct ofbundle *"s. */
1960     int out_vlan;
1961
1962     mirror = mirror_lookup(ofproto, aux);
1963     if (!s) {
1964         mirror_destroy(mirror);
1965         return 0;
1966     }
1967     if (!mirror) {
1968         int idx;
1969
1970         idx = mirror_scan(ofproto);
1971         if (idx < 0) {
1972             VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
1973                       "cannot create %s",
1974                       ofproto->up.name, MAX_MIRRORS, s->name);
1975             return EFBIG;
1976         }
1977
1978         mirror = ofproto->mirrors[idx] = xzalloc(sizeof *mirror);
1979         mirror->ofproto = ofproto;
1980         mirror->idx = idx;
1981         mirror->aux = aux;
1982         mirror->out_vlan = -1;
1983         mirror->name = NULL;
1984     }
1985
1986     if (!mirror->name || strcmp(s->name, mirror->name)) {
1987         free(mirror->name);
1988         mirror->name = xstrdup(s->name);
1989     }
1990
1991     /* Get the new configuration. */
1992     if (s->out_bundle) {
1993         out = bundle_lookup(ofproto, s->out_bundle);
1994         if (!out) {
1995             mirror_destroy(mirror);
1996             return EINVAL;
1997         }
1998         out_vlan = -1;
1999     } else {
2000         out = NULL;
2001         out_vlan = s->out_vlan;
2002     }
2003     bundle_lookup_multiple(ofproto, s->srcs, s->n_srcs, &srcs);
2004     bundle_lookup_multiple(ofproto, s->dsts, s->n_dsts, &dsts);
2005
2006     /* If the configuration has not changed, do nothing. */
2007     if (hmapx_equals(&srcs, &mirror->srcs)
2008         && hmapx_equals(&dsts, &mirror->dsts)
2009         && vlan_bitmap_equal(mirror->vlans, s->src_vlans)
2010         && mirror->out == out
2011         && mirror->out_vlan == out_vlan)
2012     {
2013         hmapx_destroy(&srcs);
2014         hmapx_destroy(&dsts);
2015         return 0;
2016     }
2017
2018     hmapx_swap(&srcs, &mirror->srcs);
2019     hmapx_destroy(&srcs);
2020
2021     hmapx_swap(&dsts, &mirror->dsts);
2022     hmapx_destroy(&dsts);
2023
2024     free(mirror->vlans);
2025     mirror->vlans = vlan_bitmap_clone(s->src_vlans);
2026
2027     mirror->out = out;
2028     mirror->out_vlan = out_vlan;
2029
2030     /* Update bundles. */
2031     mirror_bit = MIRROR_MASK_C(1) << mirror->idx;
2032     HMAP_FOR_EACH (bundle, hmap_node, &mirror->ofproto->bundles) {
2033         if (hmapx_contains(&mirror->srcs, bundle)) {
2034             bundle->src_mirrors |= mirror_bit;
2035         } else {
2036             bundle->src_mirrors &= ~mirror_bit;
2037         }
2038
2039         if (hmapx_contains(&mirror->dsts, bundle)) {
2040             bundle->dst_mirrors |= mirror_bit;
2041         } else {
2042             bundle->dst_mirrors &= ~mirror_bit;
2043         }
2044
2045         if (mirror->out == bundle) {
2046             bundle->mirror_out |= mirror_bit;
2047         } else {
2048             bundle->mirror_out &= ~mirror_bit;
2049         }
2050     }
2051
2052     ofproto->need_revalidate = true;
2053     mac_learning_flush(ofproto->ml);
2054     mirror_update_dups(ofproto);
2055
2056     return 0;
2057 }
2058
2059 static void
2060 mirror_destroy(struct ofmirror *mirror)
2061 {
2062     struct ofproto_dpif *ofproto;
2063     mirror_mask_t mirror_bit;
2064     struct ofbundle *bundle;
2065
2066     if (!mirror) {
2067         return;
2068     }
2069
2070     ofproto = mirror->ofproto;
2071     ofproto->need_revalidate = true;
2072     mac_learning_flush(ofproto->ml);
2073
2074     mirror_bit = MIRROR_MASK_C(1) << mirror->idx;
2075     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
2076         bundle->src_mirrors &= ~mirror_bit;
2077         bundle->dst_mirrors &= ~mirror_bit;
2078         bundle->mirror_out &= ~mirror_bit;
2079     }
2080
2081     hmapx_destroy(&mirror->srcs);
2082     hmapx_destroy(&mirror->dsts);
2083     free(mirror->vlans);
2084
2085     ofproto->mirrors[mirror->idx] = NULL;
2086     free(mirror->name);
2087     free(mirror);
2088
2089     mirror_update_dups(ofproto);
2090 }
2091
2092 static int
2093 mirror_get_stats(struct ofproto *ofproto_, void *aux,
2094                  uint64_t *packets, uint64_t *bytes)
2095 {
2096     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2097     struct ofmirror *mirror = mirror_lookup(ofproto, aux);
2098
2099     if (!mirror) {
2100         *packets = *bytes = UINT64_MAX;
2101         return 0;
2102     }
2103
2104     *packets = mirror->packet_count;
2105     *bytes = mirror->byte_count;
2106
2107     return 0;
2108 }
2109
2110 static int
2111 set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
2112 {
2113     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2114     if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
2115         ofproto->need_revalidate = true;
2116         mac_learning_flush(ofproto->ml);
2117     }
2118     return 0;
2119 }
2120
2121 static bool
2122 is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
2123 {
2124     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2125     struct ofbundle *bundle = bundle_lookup(ofproto, aux);
2126     return bundle && bundle->mirror_out != 0;
2127 }
2128
2129 static void
2130 forward_bpdu_changed(struct ofproto *ofproto_)
2131 {
2132     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2133     /* Revalidate cached flows whenever forward_bpdu option changes. */
2134     ofproto->need_revalidate = true;
2135 }
2136 \f
2137 /* Ports. */
2138
2139 static struct ofport_dpif *
2140 get_ofp_port(struct ofproto_dpif *ofproto, uint16_t ofp_port)
2141 {
2142     struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
2143     return ofport ? ofport_dpif_cast(ofport) : NULL;
2144 }
2145
2146 static struct ofport_dpif *
2147 get_odp_port(struct ofproto_dpif *ofproto, uint32_t odp_port)
2148 {
2149     return get_ofp_port(ofproto, odp_port_to_ofp_port(odp_port));
2150 }
2151
2152 static void
2153 ofproto_port_from_dpif_port(struct ofproto_port *ofproto_port,
2154                             struct dpif_port *dpif_port)
2155 {
2156     ofproto_port->name = dpif_port->name;
2157     ofproto_port->type = dpif_port->type;
2158     ofproto_port->ofp_port = odp_port_to_ofp_port(dpif_port->port_no);
2159 }
2160
2161 static void
2162 port_run(struct ofport_dpif *ofport)
2163 {
2164     bool enable = netdev_get_carrier(ofport->up.netdev);
2165
2166     if (ofport->cfm) {
2167         cfm_run(ofport->cfm);
2168
2169         if (cfm_should_send_ccm(ofport->cfm)) {
2170             struct ofpbuf packet;
2171
2172             ofpbuf_init(&packet, 0);
2173             cfm_compose_ccm(ofport->cfm, &packet, ofport->up.opp.hw_addr);
2174             send_packet(ofport, &packet);
2175             ofpbuf_uninit(&packet);
2176         }
2177
2178         enable = enable && !cfm_get_fault(ofport->cfm)
2179             && cfm_get_opup(ofport->cfm);
2180     }
2181
2182     if (ofport->bundle) {
2183         enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
2184     }
2185
2186     if (ofport->may_enable != enable) {
2187         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2188
2189         if (ofproto->has_bundle_action) {
2190             ofproto->need_revalidate = true;
2191         }
2192     }
2193
2194     ofport->may_enable = enable;
2195 }
2196
2197 static void
2198 port_wait(struct ofport_dpif *ofport)
2199 {
2200     if (ofport->cfm) {
2201         cfm_wait(ofport->cfm);
2202     }
2203 }
2204
2205 static int
2206 port_query_by_name(const struct ofproto *ofproto_, const char *devname,
2207                    struct ofproto_port *ofproto_port)
2208 {
2209     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2210     struct dpif_port dpif_port;
2211     int error;
2212
2213     error = dpif_port_query_by_name(ofproto->dpif, devname, &dpif_port);
2214     if (!error) {
2215         ofproto_port_from_dpif_port(ofproto_port, &dpif_port);
2216     }
2217     return error;
2218 }
2219
2220 static int
2221 port_add(struct ofproto *ofproto_, struct netdev *netdev, uint16_t *ofp_portp)
2222 {
2223     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2224     uint16_t odp_port;
2225     int error;
2226
2227     error = dpif_port_add(ofproto->dpif, netdev, &odp_port);
2228     if (!error) {
2229         *ofp_portp = odp_port_to_ofp_port(odp_port);
2230     }
2231     return error;
2232 }
2233
2234 static int
2235 port_del(struct ofproto *ofproto_, uint16_t ofp_port)
2236 {
2237     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2238     int error;
2239
2240     error = dpif_port_del(ofproto->dpif, ofp_port_to_odp_port(ofp_port));
2241     if (!error) {
2242         struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
2243         if (ofport) {
2244             /* The caller is going to close ofport->up.netdev.  If this is a
2245              * bonded port, then the bond is using that netdev, so remove it
2246              * from the bond.  The client will need to reconfigure everything
2247              * after deleting ports, so then the slave will get re-added. */
2248             bundle_remove(&ofport->up);
2249         }
2250     }
2251     return error;
2252 }
2253
2254 struct port_dump_state {
2255     struct dpif_port_dump dump;
2256     bool done;
2257 };
2258
2259 static int
2260 port_dump_start(const struct ofproto *ofproto_, void **statep)
2261 {
2262     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2263     struct port_dump_state *state;
2264
2265     *statep = state = xmalloc(sizeof *state);
2266     dpif_port_dump_start(&state->dump, ofproto->dpif);
2267     state->done = false;
2268     return 0;
2269 }
2270
2271 static int
2272 port_dump_next(const struct ofproto *ofproto_ OVS_UNUSED, void *state_,
2273                struct ofproto_port *port)
2274 {
2275     struct port_dump_state *state = state_;
2276     struct dpif_port dpif_port;
2277
2278     if (dpif_port_dump_next(&state->dump, &dpif_port)) {
2279         ofproto_port_from_dpif_port(port, &dpif_port);
2280         return 0;
2281     } else {
2282         int error = dpif_port_dump_done(&state->dump);
2283         state->done = true;
2284         return error ? error : EOF;
2285     }
2286 }
2287
2288 static int
2289 port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
2290 {
2291     struct port_dump_state *state = state_;
2292
2293     if (!state->done) {
2294         dpif_port_dump_done(&state->dump);
2295     }
2296     free(state);
2297     return 0;
2298 }
2299
2300 static int
2301 port_poll(const struct ofproto *ofproto_, char **devnamep)
2302 {
2303     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2304     return dpif_port_poll(ofproto->dpif, devnamep);
2305 }
2306
2307 static void
2308 port_poll_wait(const struct ofproto *ofproto_)
2309 {
2310     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2311     dpif_port_poll_wait(ofproto->dpif);
2312 }
2313
2314 static int
2315 port_is_lacp_current(const struct ofport *ofport_)
2316 {
2317     const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2318     return (ofport->bundle && ofport->bundle->lacp
2319             ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
2320             : -1);
2321 }
2322 \f
2323 /* Upcall handling. */
2324
2325 /* Flow miss batching.
2326  *
2327  * Some dpifs implement operations faster when you hand them off in a batch.
2328  * To allow batching, "struct flow_miss" queues the dpif-related work needed
2329  * for a given flow.  Each "struct flow_miss" corresponds to sending one or
2330  * more packets, plus possibly installing the flow in the dpif.
2331  *
2332  * So far we only batch the operations that affect flow setup time the most.
2333  * It's possible to batch more than that, but the benefit might be minimal. */
2334 struct flow_miss {
2335     struct hmap_node hmap_node;
2336     struct flow flow;
2337     enum odp_key_fitness key_fitness;
2338     const struct nlattr *key;
2339     size_t key_len;
2340     ovs_be16 initial_tci;
2341     struct list packets;
2342 };
2343
2344 struct flow_miss_op {
2345     union dpif_op dpif_op;
2346     struct subfacet *subfacet;
2347 };
2348
2349 /* Sends an OFPT_PACKET_IN message for 'packet' of type OFPR_NO_MATCH to each
2350  * OpenFlow controller as necessary according to their individual
2351  * configurations.
2352  *
2353  * If 'clone' is true, the caller retains ownership of 'packet'.  Otherwise,
2354  * ownership is transferred to this function. */
2355 static void
2356 send_packet_in_miss(struct ofproto_dpif *ofproto, struct ofpbuf *packet,
2357                     const struct flow *flow, bool clone)
2358 {
2359     struct ofputil_packet_in pin;
2360
2361     pin.packet = packet;
2362     pin.in_port = flow->in_port;
2363     pin.reason = OFPR_NO_MATCH;
2364     pin.buffer_id = 0;          /* not yet known */
2365     pin.send_len = 0;           /* not used for flow table misses */
2366     connmgr_send_packet_in(ofproto->up.connmgr, &pin, flow,
2367                            clone ? NULL : packet);
2368 }
2369
2370 /* Sends an OFPT_PACKET_IN message for 'packet' of type OFPR_ACTION to each
2371  * OpenFlow controller as necessary according to their individual
2372  * configurations.
2373  *
2374  * 'send_len' should be the number of bytes of 'packet' to send to the
2375  * controller, as specified in the action that caused the packet to be sent.
2376  *
2377  * If 'clone' is true, the caller retains ownership of 'upcall->packet'.
2378  * Otherwise, ownership is transferred to this function. */
2379 static void
2380 send_packet_in_action(struct ofproto_dpif *ofproto, struct ofpbuf *packet,
2381                       uint64_t userdata, const struct flow *flow, bool clone)
2382 {
2383     struct ofputil_packet_in pin;
2384     struct user_action_cookie cookie;
2385
2386     memcpy(&cookie, &userdata, sizeof(cookie));
2387
2388     pin.packet = packet;
2389     pin.in_port = flow->in_port;
2390     pin.reason = OFPR_ACTION;
2391     pin.buffer_id = 0;          /* not yet known */
2392     pin.send_len = cookie.data;
2393     connmgr_send_packet_in(ofproto->up.connmgr, &pin, flow,
2394                            clone ? NULL : packet);
2395 }
2396
2397 static bool
2398 process_special(struct ofproto_dpif *ofproto, const struct flow *flow,
2399                 const struct ofpbuf *packet)
2400 {
2401     struct ofport_dpif *ofport = get_ofp_port(ofproto, flow->in_port);
2402
2403     if (!ofport) {
2404         return false;
2405     }
2406
2407     if (ofport->cfm && cfm_should_process_flow(ofport->cfm, flow)) {
2408         if (packet) {
2409             cfm_process_heartbeat(ofport->cfm, packet);
2410         }
2411         return true;
2412     } else if (ofport->bundle && ofport->bundle->lacp
2413                && flow->dl_type == htons(ETH_TYPE_LACP)) {
2414         if (packet) {
2415             lacp_process_packet(ofport->bundle->lacp, ofport, packet);
2416         }
2417         return true;
2418     } else if (ofproto->stp && stp_should_process_flow(flow)) {
2419         if (packet) {
2420             stp_process_packet(ofport, packet);
2421         }
2422         return true;
2423     }
2424     return false;
2425 }
2426
2427 static struct flow_miss *
2428 flow_miss_create(struct hmap *todo, const struct flow *flow,
2429                  enum odp_key_fitness key_fitness,
2430                  const struct nlattr *key, size_t key_len,
2431                  ovs_be16 initial_tci)
2432 {
2433     uint32_t hash = flow_hash(flow, 0);
2434     struct flow_miss *miss;
2435
2436     HMAP_FOR_EACH_WITH_HASH (miss, hmap_node, hash, todo) {
2437         if (flow_equal(&miss->flow, flow)) {
2438             return miss;
2439         }
2440     }
2441
2442     miss = xmalloc(sizeof *miss);
2443     hmap_insert(todo, &miss->hmap_node, hash);
2444     miss->flow = *flow;
2445     miss->key_fitness = key_fitness;
2446     miss->key = key;
2447     miss->key_len = key_len;
2448     miss->initial_tci = initial_tci;
2449     list_init(&miss->packets);
2450     return miss;
2451 }
2452
2453 static void
2454 handle_flow_miss(struct ofproto_dpif *ofproto, struct flow_miss *miss,
2455                  struct flow_miss_op *ops, size_t *n_ops)
2456 {
2457     const struct flow *flow = &miss->flow;
2458     struct ofpbuf *packet, *next_packet;
2459     struct subfacet *subfacet;
2460     struct facet *facet;
2461
2462     facet = facet_lookup_valid(ofproto, flow);
2463     if (!facet) {
2464         struct rule_dpif *rule;
2465
2466         rule = rule_dpif_lookup(ofproto, flow, 0);
2467         if (!rule) {
2468             /* Don't send a packet-in if OFPPC_NO_PACKET_IN asserted. */
2469             struct ofport_dpif *port = get_ofp_port(ofproto, flow->in_port);
2470             if (port) {
2471                 if (port->up.opp.config & htonl(OFPPC_NO_PACKET_IN)) {
2472                     COVERAGE_INC(ofproto_dpif_no_packet_in);
2473                     /* XXX install 'drop' flow entry */
2474                     return;
2475                 }
2476             } else {
2477                 VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16,
2478                              flow->in_port);
2479             }
2480
2481             LIST_FOR_EACH_SAFE (packet, next_packet, list_node,
2482                                 &miss->packets) {
2483                 list_remove(&packet->list_node);
2484                 send_packet_in_miss(ofproto, packet, flow, false);
2485             }
2486
2487             return;
2488         }
2489
2490         facet = facet_create(rule, flow);
2491     }
2492
2493     subfacet = subfacet_create(ofproto, facet,
2494                                miss->key_fitness, miss->key, miss->key_len,
2495                                miss->initial_tci);
2496
2497     LIST_FOR_EACH_SAFE (packet, next_packet, list_node, &miss->packets) {
2498         struct dpif_flow_stats stats;
2499
2500         list_remove(&packet->list_node);
2501         ofproto->n_matches++;
2502
2503         if (facet->rule->up.cr.priority == FAIL_OPEN_PRIORITY) {
2504             /*
2505              * Extra-special case for fail-open mode.
2506              *
2507              * We are in fail-open mode and the packet matched the fail-open
2508              * rule, but we are connected to a controller too.  We should send
2509              * the packet up to the controller in the hope that it will try to
2510              * set up a flow and thereby allow us to exit fail-open.
2511              *
2512              * See the top-level comment in fail-open.c for more information.
2513              */
2514             send_packet_in_miss(ofproto, packet, flow, true);
2515         }
2516
2517         if (!facet->may_install || !subfacet->actions) {
2518             subfacet_make_actions(ofproto, subfacet, packet);
2519         }
2520
2521         /* Credit statistics to subfacet for this packet.  We must do this now
2522          * because execute_controller_action() below may destroy 'packet'. */
2523         dpif_flow_stats_extract(&facet->flow, packet, &stats);
2524         subfacet_update_stats(ofproto, subfacet, &stats);
2525
2526         if (!execute_controller_action(ofproto, &facet->flow,
2527                                        subfacet->actions,
2528                                        subfacet->actions_len, packet, true)) {
2529             struct flow_miss_op *op = &ops[(*n_ops)++];
2530             struct dpif_execute *execute = &op->dpif_op.execute;
2531
2532             if (flow->vlan_tci != subfacet->initial_tci) {
2533                 /* This packet was received on a VLAN splinter port.  We added
2534                  * a VLAN to the packet to make the packet resemble the flow,
2535                  * but the actions were composed assuming that the packet
2536                  * contained no VLAN.  So, we must remove the VLAN header from
2537                  * the packet before trying to execute the actions. */
2538                 eth_pop_vlan(packet);
2539             }
2540
2541             op->subfacet = subfacet;
2542             execute->type = DPIF_OP_EXECUTE;
2543             execute->key = miss->key;
2544             execute->key_len = miss->key_len;
2545             execute->actions
2546                 = (facet->may_install
2547                    ? subfacet->actions
2548                    : xmemdup(subfacet->actions, subfacet->actions_len));
2549             execute->actions_len = subfacet->actions_len;
2550             execute->packet = packet;
2551         }
2552     }
2553
2554     if (facet->may_install && subfacet->key_fitness != ODP_FIT_TOO_LITTLE) {
2555         struct flow_miss_op *op = &ops[(*n_ops)++];
2556         struct dpif_flow_put *put = &op->dpif_op.flow_put;
2557
2558         op->subfacet = subfacet;
2559         put->type = DPIF_OP_FLOW_PUT;
2560         put->flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
2561         put->key = miss->key;
2562         put->key_len = miss->key_len;
2563         put->actions = subfacet->actions;
2564         put->actions_len = subfacet->actions_len;
2565         put->stats = NULL;
2566     }
2567 }
2568
2569 /* Like odp_flow_key_to_flow(), this function converts the 'key_len' bytes of
2570  * OVS_KEY_ATTR_* attributes in 'key' to a flow structure in 'flow' and returns
2571  * an ODP_FIT_* value that indicates how well 'key' fits our expectations for
2572  * what a flow key should contain.
2573  *
2574  * This function also includes some logic to help make VLAN splinters
2575  * transparent to the rest of the upcall processing logic.  In particular, if
2576  * the extracted in_port is a VLAN splinter port, it replaces flow->in_port by
2577  * the "real" port, sets flow->vlan_tci correctly for the VLAN of the VLAN
2578  * splinter port, and pushes a VLAN header onto 'packet' (if it is nonnull).
2579  *
2580  * Sets '*initial_tci' to the VLAN TCI with which the packet was really
2581  * received, that is, the actual VLAN TCI extracted by odp_flow_key_to_flow().
2582  * (This differs from the value returned in flow->vlan_tci only for packets
2583  * received on VLAN splinters.)
2584  */
2585 static enum odp_key_fitness
2586 ofproto_dpif_extract_flow_key(const struct ofproto_dpif *ofproto,
2587                               const struct nlattr *key, size_t key_len,
2588                               struct flow *flow, ovs_be16 *initial_tci,
2589                               struct ofpbuf *packet)
2590 {
2591     enum odp_key_fitness fitness;
2592     uint16_t realdev;
2593     int vid;
2594
2595     fitness = odp_flow_key_to_flow(key, key_len, flow);
2596     if (fitness == ODP_FIT_ERROR) {
2597         return fitness;
2598     }
2599     *initial_tci = flow->vlan_tci;
2600
2601     realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port, &vid);
2602     if (realdev) {
2603         /* Cause the flow to be processed as if it came in on the real device
2604          * with the VLAN device's VLAN ID. */
2605         flow->in_port = realdev;
2606         flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
2607         if (packet) {
2608             /* Make the packet resemble the flow, so that it gets sent to an
2609              * OpenFlow controller properly, so that it looks correct for
2610              * sFlow, and so that flow_extract() will get the correct vlan_tci
2611              * if it is called on 'packet'.
2612              *
2613              * The allocated space inside 'packet' probably also contains
2614              * 'key', that is, both 'packet' and 'key' are probably part of a
2615              * struct dpif_upcall (see the large comment on that structure
2616              * definition), so pushing data on 'packet' is in general not a
2617              * good idea since it could overwrite 'key' or free it as a side
2618              * effect.  However, it's OK in this special case because we know
2619              * that 'packet' is inside a Netlink attribute: pushing 4 bytes
2620              * will just overwrite the 4-byte "struct nlattr", which is fine
2621              * since we don't need that header anymore. */
2622             eth_push_vlan(packet, flow->vlan_tci);
2623         }
2624
2625         /* Let the caller know that we can't reproduce 'key' from 'flow'. */
2626         if (fitness == ODP_FIT_PERFECT) {
2627             fitness = ODP_FIT_TOO_MUCH;
2628         }
2629     }
2630
2631     return fitness;
2632 }
2633
2634 static void
2635 handle_miss_upcalls(struct ofproto_dpif *ofproto, struct dpif_upcall *upcalls,
2636                     size_t n_upcalls)
2637 {
2638     struct dpif_upcall *upcall;
2639     struct flow_miss *miss, *next_miss;
2640     struct flow_miss_op flow_miss_ops[FLOW_MISS_MAX_BATCH * 2];
2641     union dpif_op *dpif_ops[FLOW_MISS_MAX_BATCH * 2];
2642     struct hmap todo;
2643     size_t n_ops;
2644     size_t i;
2645
2646     if (!n_upcalls) {
2647         return;
2648     }
2649
2650     /* Construct the to-do list.
2651      *
2652      * This just amounts to extracting the flow from each packet and sticking
2653      * the packets that have the same flow in the same "flow_miss" structure so
2654      * that we can process them together. */
2655     hmap_init(&todo);
2656     for (upcall = upcalls; upcall < &upcalls[n_upcalls]; upcall++) {
2657         enum odp_key_fitness fitness;
2658         struct flow_miss *miss;
2659         ovs_be16 initial_tci;
2660         struct flow flow;
2661
2662         /* Obtain metadata and check userspace/kernel agreement on flow match,
2663          * then set 'flow''s header pointers. */
2664         fitness = ofproto_dpif_extract_flow_key(ofproto,
2665                                                 upcall->key, upcall->key_len,
2666                                                 &flow, &initial_tci,
2667                                                 upcall->packet);
2668         if (fitness == ODP_FIT_ERROR) {
2669             ofpbuf_delete(upcall->packet);
2670             continue;
2671         }
2672         flow_extract(upcall->packet, flow.priority, flow.tun_id,
2673                      flow.in_port, &flow);
2674
2675         /* Handle 802.1ag, LACP, and STP specially. */
2676         if (process_special(ofproto, &flow, upcall->packet)) {
2677             ofpbuf_delete(upcall->packet);
2678             ofproto->n_matches++;
2679             continue;
2680         }
2681
2682         /* Add other packets to a to-do list. */
2683         miss = flow_miss_create(&todo, &flow, fitness,
2684                                 upcall->key, upcall->key_len, initial_tci);
2685         list_push_back(&miss->packets, &upcall->packet->list_node);
2686     }
2687
2688     /* Process each element in the to-do list, constructing the set of
2689      * operations to batch. */
2690     n_ops = 0;
2691     HMAP_FOR_EACH_SAFE (miss, next_miss, hmap_node, &todo) {
2692         handle_flow_miss(ofproto, miss, flow_miss_ops, &n_ops);
2693         ofpbuf_list_delete(&miss->packets);
2694         hmap_remove(&todo, &miss->hmap_node);
2695         free(miss);
2696     }
2697     assert(n_ops <= ARRAY_SIZE(flow_miss_ops));
2698     hmap_destroy(&todo);
2699
2700     /* Execute batch. */
2701     for (i = 0; i < n_ops; i++) {
2702         dpif_ops[i] = &flow_miss_ops[i].dpif_op;
2703     }
2704     dpif_operate(ofproto->dpif, dpif_ops, n_ops);
2705
2706     /* Free memory and update facets. */
2707     for (i = 0; i < n_ops; i++) {
2708         struct flow_miss_op *op = &flow_miss_ops[i];
2709         struct dpif_execute *execute;
2710         struct dpif_flow_put *put;
2711
2712         switch (op->dpif_op.type) {
2713         case DPIF_OP_EXECUTE:
2714             execute = &op->dpif_op.execute;
2715             if (op->subfacet->actions != execute->actions) {
2716                 free((struct nlattr *) execute->actions);
2717             }
2718             ofpbuf_delete((struct ofpbuf *) execute->packet);
2719             break;
2720
2721         case DPIF_OP_FLOW_PUT:
2722             put = &op->dpif_op.flow_put;
2723             if (!put->error) {
2724                 op->subfacet->installed = true;
2725             }
2726             break;
2727         }
2728     }
2729 }
2730
2731 static void
2732 handle_userspace_upcall(struct ofproto_dpif *ofproto,
2733                         struct dpif_upcall *upcall)
2734 {
2735     struct user_action_cookie cookie;
2736     enum odp_key_fitness fitness;
2737     ovs_be16 initial_tci;
2738     struct flow flow;
2739
2740     memcpy(&cookie, &upcall->userdata, sizeof(cookie));
2741
2742     fitness = ofproto_dpif_extract_flow_key(ofproto, upcall->key,
2743                                             upcall->key_len, &flow,
2744                                             &initial_tci, upcall->packet);
2745     if (fitness == ODP_FIT_ERROR) {
2746         ofpbuf_delete(upcall->packet);
2747         return;
2748     }
2749
2750     if (cookie.type == USER_ACTION_COOKIE_SFLOW) {
2751         if (ofproto->sflow) {
2752             dpif_sflow_received(ofproto->sflow, upcall->packet, &flow,
2753                                 &cookie);
2754         }
2755         ofpbuf_delete(upcall->packet);
2756     } else if (cookie.type == USER_ACTION_COOKIE_CONTROLLER) {
2757         COVERAGE_INC(ofproto_dpif_ctlr_action);
2758         send_packet_in_action(ofproto, upcall->packet, upcall->userdata,
2759                               &flow, false);
2760     } else {
2761         VLOG_WARN_RL(&rl, "invalid user cookie : 0x%"PRIx64, upcall->userdata);
2762         ofpbuf_delete(upcall->packet);
2763     }
2764 }
2765
2766 static int
2767 handle_upcalls(struct ofproto_dpif *ofproto, unsigned int max_batch)
2768 {
2769     struct dpif_upcall misses[FLOW_MISS_MAX_BATCH];
2770     int n_misses;
2771     int i;
2772
2773     assert (max_batch <= FLOW_MISS_MAX_BATCH);
2774
2775     n_misses = 0;
2776     for (i = 0; i < max_batch; i++) {
2777         struct dpif_upcall *upcall = &misses[n_misses];
2778         int error;
2779
2780         error = dpif_recv(ofproto->dpif, upcall);
2781         if (error) {
2782             break;
2783         }
2784
2785         switch (upcall->type) {
2786         case DPIF_UC_ACTION:
2787             handle_userspace_upcall(ofproto, upcall);
2788             break;
2789
2790         case DPIF_UC_MISS:
2791             /* Handle it later. */
2792             n_misses++;
2793             break;
2794
2795         case DPIF_N_UC_TYPES:
2796         default:
2797             VLOG_WARN_RL(&rl, "upcall has unexpected type %"PRIu32,
2798                          upcall->type);
2799             break;
2800         }
2801     }
2802
2803     handle_miss_upcalls(ofproto, misses, n_misses);
2804
2805     return i;
2806 }
2807 \f
2808 /* Flow expiration. */
2809
2810 static int subfacet_max_idle(const struct ofproto_dpif *);
2811 static void update_stats(struct ofproto_dpif *);
2812 static void rule_expire(struct rule_dpif *);
2813 static void expire_subfacets(struct ofproto_dpif *, int dp_max_idle);
2814
2815 /* This function is called periodically by run().  Its job is to collect
2816  * updates for the flows that have been installed into the datapath, most
2817  * importantly when they last were used, and then use that information to
2818  * expire flows that have not been used recently.
2819  *
2820  * Returns the number of milliseconds after which it should be called again. */
2821 static int
2822 expire(struct ofproto_dpif *ofproto)
2823 {
2824     struct rule_dpif *rule, *next_rule;
2825     struct classifier *table;
2826     int dp_max_idle;
2827
2828     /* Update stats for each flow in the datapath. */
2829     update_stats(ofproto);
2830
2831     /* Expire subfacets that have been idle too long. */
2832     dp_max_idle = subfacet_max_idle(ofproto);
2833     expire_subfacets(ofproto, dp_max_idle);
2834
2835     /* Expire OpenFlow flows whose idle_timeout or hard_timeout has passed. */
2836     OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
2837         struct cls_cursor cursor;
2838
2839         cls_cursor_init(&cursor, table, NULL);
2840         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
2841             rule_expire(rule);
2842         }
2843     }
2844
2845     /* All outstanding data in existing flows has been accounted, so it's a
2846      * good time to do bond rebalancing. */
2847     if (ofproto->has_bonded_bundles) {
2848         struct ofbundle *bundle;
2849
2850         HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
2851             if (bundle->bond) {
2852                 bond_rebalance(bundle->bond, &ofproto->revalidate_set);
2853             }
2854         }
2855     }
2856
2857     return MIN(dp_max_idle, 1000);
2858 }
2859
2860 /* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
2861  *
2862  * This function also pushes statistics updates to rules which each facet
2863  * resubmits into.  Generally these statistics will be accurate.  However, if a
2864  * facet changes the rule it resubmits into at some time in between
2865  * update_stats() runs, it is possible that statistics accrued to the
2866  * old rule will be incorrectly attributed to the new rule.  This could be
2867  * avoided by calling update_stats() whenever rules are created or
2868  * deleted.  However, the performance impact of making so many calls to the
2869  * datapath do not justify the benefit of having perfectly accurate statistics.
2870  */
2871 static void
2872 update_stats(struct ofproto_dpif *p)
2873 {
2874     const struct dpif_flow_stats *stats;
2875     struct dpif_flow_dump dump;
2876     const struct nlattr *key;
2877     size_t key_len;
2878
2879     dpif_flow_dump_start(&dump, p->dpif);
2880     while (dpif_flow_dump_next(&dump, &key, &key_len, NULL, NULL, &stats)) {
2881         struct subfacet *subfacet;
2882
2883         subfacet = subfacet_find(p, key, key_len);
2884         if (subfacet && subfacet->installed) {
2885             struct facet *facet = subfacet->facet;
2886
2887             if (stats->n_packets >= subfacet->dp_packet_count) {
2888                 uint64_t extra = stats->n_packets - subfacet->dp_packet_count;
2889                 facet->packet_count += extra;
2890             } else {
2891                 VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
2892             }
2893
2894             if (stats->n_bytes >= subfacet->dp_byte_count) {
2895                 facet->byte_count += stats->n_bytes - subfacet->dp_byte_count;
2896             } else {
2897                 VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
2898             }
2899
2900             subfacet->dp_packet_count = stats->n_packets;
2901             subfacet->dp_byte_count = stats->n_bytes;
2902
2903             subfacet_update_time(p, subfacet, stats->used);
2904             facet_account(p, facet);
2905             facet_push_stats(facet);
2906         } else {
2907             if (!VLOG_DROP_WARN(&rl)) {
2908                 struct ds s;
2909
2910                 ds_init(&s);
2911                 odp_flow_key_format(key, key_len, &s);
2912                 VLOG_WARN("unexpected flow from datapath %s", ds_cstr(&s));
2913                 ds_destroy(&s);
2914             }
2915
2916             COVERAGE_INC(facet_unexpected);
2917             /* There's a flow in the datapath that we know nothing about, or a
2918              * flow that shouldn't be installed but was anyway.  Delete it. */
2919             dpif_flow_del(p->dpif, key, key_len, NULL);
2920         }
2921     }
2922     dpif_flow_dump_done(&dump);
2923 }
2924
2925 /* Calculates and returns the number of milliseconds of idle time after which
2926  * subfacets should expire from the datapath.  When a subfacet expires, we fold
2927  * its statistics into its facet, and when a facet's last subfacet expires, we
2928  * fold its statistic into its rule. */
2929 static int
2930 subfacet_max_idle(const struct ofproto_dpif *ofproto)
2931 {
2932     /*
2933      * Idle time histogram.
2934      *
2935      * Most of the time a switch has a relatively small number of subfacets.
2936      * When this is the case we might as well keep statistics for all of them
2937      * in userspace and to cache them in the kernel datapath for performance as
2938      * well.
2939      *
2940      * As the number of subfacets increases, the memory required to maintain
2941      * statistics about them in userspace and in the kernel becomes
2942      * significant.  However, with a large number of subfacets it is likely
2943      * that only a few of them are "heavy hitters" that consume a large amount
2944      * of bandwidth.  At this point, only heavy hitters are worth caching in
2945      * the kernel and maintaining in userspaces; other subfacets we can
2946      * discard.
2947      *
2948      * The technique used to compute the idle time is to build a histogram with
2949      * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each.  Each subfacet
2950      * that is installed in the kernel gets dropped in the appropriate bucket.
2951      * After the histogram has been built, we compute the cutoff so that only
2952      * the most-recently-used 1% of subfacets (but at least
2953      * ofproto->up.flow_eviction_threshold flows) are kept cached.  At least
2954      * the most-recently-used bucket of subfacets is kept, so actually an
2955      * arbitrary number of subfacets can be kept in any given expiration run
2956      * (though the next run will delete most of those unless they receive
2957      * additional data).
2958      *
2959      * This requires a second pass through the subfacets, in addition to the
2960      * pass made by update_stats(), because the former function never looks at
2961      * uninstallable subfacets.
2962      */
2963     enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
2964     enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
2965     int buckets[N_BUCKETS] = { 0 };
2966     int total, subtotal, bucket;
2967     struct subfacet *subfacet;
2968     long long int now;
2969     int i;
2970
2971     total = hmap_count(&ofproto->subfacets);
2972     if (total <= ofproto->up.flow_eviction_threshold) {
2973         return N_BUCKETS * BUCKET_WIDTH;
2974     }
2975
2976     /* Build histogram. */
2977     now = time_msec();
2978     HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->subfacets) {
2979         long long int idle = now - subfacet->used;
2980         int bucket = (idle <= 0 ? 0
2981                       : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
2982                       : (unsigned int) idle / BUCKET_WIDTH);
2983         buckets[bucket]++;
2984     }
2985
2986     /* Find the first bucket whose flows should be expired. */
2987     subtotal = bucket = 0;
2988     do {
2989         subtotal += buckets[bucket++];
2990     } while (bucket < N_BUCKETS &&
2991              subtotal < MAX(ofproto->up.flow_eviction_threshold, total / 100));
2992
2993     if (VLOG_IS_DBG_ENABLED()) {
2994         struct ds s;
2995
2996         ds_init(&s);
2997         ds_put_cstr(&s, "keep");
2998         for (i = 0; i < N_BUCKETS; i++) {
2999             if (i == bucket) {
3000                 ds_put_cstr(&s, ", drop");
3001             }
3002             if (buckets[i]) {
3003                 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
3004             }
3005         }
3006         VLOG_INFO("%s: %s (msec:count)", ofproto->up.name, ds_cstr(&s));
3007         ds_destroy(&s);
3008     }
3009
3010     return bucket * BUCKET_WIDTH;
3011 }
3012
3013 static void
3014 expire_subfacets(struct ofproto_dpif *ofproto, int dp_max_idle)
3015 {
3016     long long int cutoff = time_msec() - dp_max_idle;
3017     struct subfacet *subfacet, *next_subfacet;
3018
3019     HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
3020                         &ofproto->subfacets) {
3021         if (subfacet->used < cutoff) {
3022             subfacet_destroy(ofproto, subfacet);
3023         }
3024     }
3025 }
3026
3027 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
3028  * then delete it entirely. */
3029 static void
3030 rule_expire(struct rule_dpif *rule)
3031 {
3032     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3033     struct facet *facet, *next_facet;
3034     long long int now;
3035     uint8_t reason;
3036
3037     /* Has 'rule' expired? */
3038     now = time_msec();
3039     if (rule->up.hard_timeout
3040         && now > rule->up.modified + rule->up.hard_timeout * 1000) {
3041         reason = OFPRR_HARD_TIMEOUT;
3042     } else if (rule->up.idle_timeout && list_is_empty(&rule->facets)
3043                && now > rule->used + rule->up.idle_timeout * 1000) {
3044         reason = OFPRR_IDLE_TIMEOUT;
3045     } else {
3046         return;
3047     }
3048
3049     COVERAGE_INC(ofproto_dpif_expired);
3050
3051     /* Update stats.  (This is a no-op if the rule expired due to an idle
3052      * timeout, because that only happens when the rule has no facets left.) */
3053     LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
3054         facet_remove(ofproto, facet);
3055     }
3056
3057     /* Get rid of the rule. */
3058     ofproto_rule_expire(&rule->up, reason);
3059 }
3060 \f
3061 /* Facets. */
3062
3063 /* Creates and returns a new facet owned by 'rule', given a 'flow'.
3064  *
3065  * The caller must already have determined that no facet with an identical
3066  * 'flow' exists in 'ofproto' and that 'flow' is the best match for 'rule' in
3067  * the ofproto's classifier table.
3068  *
3069  * The facet will initially have no subfacets.  The caller should create (at
3070  * least) one subfacet with subfacet_create(). */
3071 static struct facet *
3072 facet_create(struct rule_dpif *rule, const struct flow *flow)
3073 {
3074     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3075     struct facet *facet;
3076
3077     facet = xzalloc(sizeof *facet);
3078     facet->used = time_msec();
3079     hmap_insert(&ofproto->facets, &facet->hmap_node, flow_hash(flow, 0));
3080     list_push_back(&rule->facets, &facet->list_node);
3081     facet->rule = rule;
3082     facet->flow = *flow;
3083     list_init(&facet->subfacets);
3084     netflow_flow_init(&facet->nf_flow);
3085     netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
3086
3087     return facet;
3088 }
3089
3090 static void
3091 facet_free(struct facet *facet)
3092 {
3093     free(facet);
3094 }
3095
3096 /* If the 'actions_len' bytes of actions in 'odp_actions' are just a single
3097  * OVS_ACTION_ATTR_USERSPACE action, executes it internally and returns true.
3098  * Otherwise, returns false without doing anything.
3099  *
3100  * If 'clone' is true, the caller always retains ownership of 'packet'.
3101  * Otherwise, ownership is transferred to this function if it returns true. */
3102 static bool
3103 execute_controller_action(struct ofproto_dpif *ofproto,
3104                           const struct flow *flow,
3105                           const struct nlattr *odp_actions, size_t actions_len,
3106                           struct ofpbuf *packet, bool clone)
3107 {
3108     if (actions_len
3109         && odp_actions->nla_type == OVS_ACTION_ATTR_USERSPACE
3110         && NLA_ALIGN(odp_actions->nla_len) == actions_len) {
3111         /* As an optimization, avoid a round-trip from userspace to kernel to
3112          * userspace.  This also avoids possibly filling up kernel packet
3113          * buffers along the way.
3114          *
3115          * This optimization will not accidentally catch sFlow
3116          * OVS_ACTION_ATTR_USERSPACE actions, since those are encapsulated
3117          * inside OVS_ACTION_ATTR_SAMPLE. */
3118         const struct nlattr *nla;
3119
3120         nla = nl_attr_find_nested(odp_actions, OVS_USERSPACE_ATTR_USERDATA);
3121         send_packet_in_action(ofproto, packet, nl_attr_get_u64(nla), flow,
3122                               clone);
3123         return true;
3124     } else {
3125         return false;
3126     }
3127 }
3128
3129 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
3130  * 'packet', which arrived on 'in_port'.
3131  *
3132  * Takes ownership of 'packet'. */
3133 static bool
3134 execute_odp_actions(struct ofproto_dpif *ofproto, const struct flow *flow,
3135                     const struct nlattr *odp_actions, size_t actions_len,
3136                     struct ofpbuf *packet)
3137 {
3138     struct odputil_keybuf keybuf;
3139     struct ofpbuf key;
3140     int error;
3141
3142     if (execute_controller_action(ofproto, flow, odp_actions, actions_len,
3143                                   packet, false)) {
3144         return true;
3145     }
3146
3147     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
3148     odp_flow_key_from_flow(&key, flow);
3149
3150     error = dpif_execute(ofproto->dpif, key.data, key.size,
3151                          odp_actions, actions_len, packet);
3152
3153     ofpbuf_delete(packet);
3154     return !error;
3155 }
3156
3157 /* Remove 'facet' from 'ofproto' and free up the associated memory:
3158  *
3159  *   - If 'facet' was installed in the datapath, uninstalls it and updates its
3160  *     rule's statistics, via subfacet_uninstall().
3161  *
3162  *   - Removes 'facet' from its rule and from ofproto->facets.
3163  */
3164 static void
3165 facet_remove(struct ofproto_dpif *ofproto, struct facet *facet)
3166 {
3167     struct subfacet *subfacet, *next_subfacet;
3168
3169     LIST_FOR_EACH_SAFE (subfacet, next_subfacet, list_node,
3170                         &facet->subfacets) {
3171         subfacet_destroy__(ofproto, subfacet);
3172     }
3173
3174     facet_flush_stats(ofproto, facet);
3175     hmap_remove(&ofproto->facets, &facet->hmap_node);
3176     list_remove(&facet->list_node);
3177     facet_free(facet);
3178 }
3179
3180 static void
3181 facet_account(struct ofproto_dpif *ofproto, struct facet *facet)
3182 {
3183     uint64_t n_bytes;
3184     struct subfacet *subfacet;
3185     const struct nlattr *a;
3186     unsigned int left;
3187     ovs_be16 vlan_tci;
3188
3189     if (facet->byte_count <= facet->accounted_bytes) {
3190         return;
3191     }
3192     n_bytes = facet->byte_count - facet->accounted_bytes;
3193     facet->accounted_bytes = facet->byte_count;
3194
3195     /* Feed information from the active flows back into the learning table to
3196      * ensure that table is always in sync with what is actually flowing
3197      * through the datapath. */
3198     if (facet->has_learn || facet->has_normal) {
3199         struct action_xlate_ctx ctx;
3200
3201         action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
3202                               facet->flow.vlan_tci, NULL);
3203         ctx.may_learn = true;
3204         ofpbuf_delete(xlate_actions(&ctx, facet->rule->up.actions,
3205                                     facet->rule->up.n_actions));
3206     }
3207
3208     if (!facet->has_normal || !ofproto->has_bonded_bundles) {
3209         return;
3210     }
3211
3212     /* This loop feeds byte counters to bond_account() for rebalancing to use
3213      * as a basis.  We also need to track the actual VLAN on which the packet
3214      * is going to be sent to ensure that it matches the one passed to
3215      * bond_choose_output_slave().  (Otherwise, we will account to the wrong
3216      * hash bucket.)
3217      *
3218      * We use the actions from an arbitrary subfacet because they should all
3219      * be equally valid for our purpose. */
3220     subfacet = CONTAINER_OF(list_front(&facet->subfacets),
3221                             struct subfacet, list_node);
3222     vlan_tci = facet->flow.vlan_tci;
3223     NL_ATTR_FOR_EACH_UNSAFE (a, left,
3224                              subfacet->actions, subfacet->actions_len) {
3225         const struct ovs_action_push_vlan *vlan;
3226         struct ofport_dpif *port;
3227
3228         switch (nl_attr_type(a)) {
3229         case OVS_ACTION_ATTR_OUTPUT:
3230             port = get_odp_port(ofproto, nl_attr_get_u32(a));
3231             if (port && port->bundle && port->bundle->bond) {
3232                 bond_account(port->bundle->bond, &facet->flow,
3233                              vlan_tci_to_vid(vlan_tci), n_bytes);
3234             }
3235             break;
3236
3237         case OVS_ACTION_ATTR_POP_VLAN:
3238             vlan_tci = htons(0);
3239             break;
3240
3241         case OVS_ACTION_ATTR_PUSH_VLAN:
3242             vlan = nl_attr_get(a);
3243             vlan_tci = vlan->vlan_tci;
3244             break;
3245         }
3246     }
3247 }
3248
3249 /* Returns true if the only action for 'facet' is to send to the controller.
3250  * (We don't report NetFlow expiration messages for such facets because they
3251  * are just part of the control logic for the network, not real traffic). */
3252 static bool
3253 facet_is_controller_flow(struct facet *facet)
3254 {
3255     return (facet
3256             && facet->rule->up.n_actions == 1
3257             && action_outputs_to_port(&facet->rule->up.actions[0],
3258                                       htons(OFPP_CONTROLLER)));
3259 }
3260
3261 /* Folds all of 'facet''s statistics into its rule.  Also updates the
3262  * accounting ofhook and emits a NetFlow expiration if appropriate.  All of
3263  * 'facet''s statistics in the datapath should have been zeroed and folded into
3264  * its packet and byte counts before this function is called. */
3265 static void
3266 facet_flush_stats(struct ofproto_dpif *ofproto, struct facet *facet)
3267 {
3268     struct subfacet *subfacet;
3269
3270     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
3271         assert(!subfacet->dp_byte_count);
3272         assert(!subfacet->dp_packet_count);
3273     }
3274
3275     facet_push_stats(facet);
3276     facet_account(ofproto, facet);
3277
3278     if (ofproto->netflow && !facet_is_controller_flow(facet)) {
3279         struct ofexpired expired;
3280         expired.flow = facet->flow;
3281         expired.packet_count = facet->packet_count;
3282         expired.byte_count = facet->byte_count;
3283         expired.used = facet->used;
3284         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
3285     }
3286
3287     facet->rule->packet_count += facet->packet_count;
3288     facet->rule->byte_count += facet->byte_count;
3289
3290     /* Reset counters to prevent double counting if 'facet' ever gets
3291      * reinstalled. */
3292     facet_reset_counters(facet);
3293
3294     netflow_flow_clear(&facet->nf_flow);
3295 }
3296
3297 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
3298  * Returns it if found, otherwise a null pointer.
3299  *
3300  * The returned facet might need revalidation; use facet_lookup_valid()
3301  * instead if that is important. */
3302 static struct facet *
3303 facet_find(struct ofproto_dpif *ofproto, const struct flow *flow)
3304 {
3305     struct facet *facet;
3306
3307     HMAP_FOR_EACH_WITH_HASH (facet, hmap_node, flow_hash(flow, 0),
3308                              &ofproto->facets) {
3309         if (flow_equal(flow, &facet->flow)) {
3310             return facet;
3311         }
3312     }
3313
3314     return NULL;
3315 }
3316
3317 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
3318  * Returns it if found, otherwise a null pointer.
3319  *
3320  * The returned facet is guaranteed to be valid. */
3321 static struct facet *
3322 facet_lookup_valid(struct ofproto_dpif *ofproto, const struct flow *flow)
3323 {
3324     struct facet *facet = facet_find(ofproto, flow);
3325
3326     /* The facet we found might not be valid, since we could be in need of
3327      * revalidation.  If it is not valid, don't return it. */
3328     if (facet
3329         && (ofproto->need_revalidate
3330             || tag_set_intersects(&ofproto->revalidate_set, facet->tags))
3331         && !facet_revalidate(ofproto, facet)) {
3332         COVERAGE_INC(facet_invalidated);
3333         return NULL;
3334     }
3335
3336     return facet;
3337 }
3338
3339 /* Re-searches 'ofproto''s classifier for a rule matching 'facet':
3340  *
3341  *   - If the rule found is different from 'facet''s current rule, moves
3342  *     'facet' to the new rule and recompiles its actions.
3343  *
3344  *   - If the rule found is the same as 'facet''s current rule, leaves 'facet'
3345  *     where it is and recompiles its actions anyway.
3346  *
3347  *   - If there is none, destroys 'facet'.
3348  *
3349  * Returns true if 'facet' still exists, false if it has been destroyed. */
3350 static bool
3351 facet_revalidate(struct ofproto_dpif *ofproto, struct facet *facet)
3352 {
3353     struct actions {
3354         struct nlattr *odp_actions;
3355         size_t actions_len;
3356     };
3357     struct actions *new_actions;
3358
3359     struct action_xlate_ctx ctx;
3360     struct rule_dpif *new_rule;
3361     struct subfacet *subfacet;
3362     bool actions_changed;
3363     int i;
3364
3365     COVERAGE_INC(facet_revalidate);
3366
3367     /* Determine the new rule. */
3368     new_rule = rule_dpif_lookup(ofproto, &facet->flow, 0);
3369     if (!new_rule) {
3370         /* No new rule, so delete the facet. */
3371         facet_remove(ofproto, facet);
3372         return false;
3373     }
3374
3375     /* Calculate new datapath actions.
3376      *
3377      * We do not modify any 'facet' state yet, because we might need to, e.g.,
3378      * emit a NetFlow expiration and, if so, we need to have the old state
3379      * around to properly compose it. */
3380
3381     /* If the datapath actions changed or the installability changed,
3382      * then we need to talk to the datapath. */
3383     i = 0;
3384     new_actions = NULL;
3385     memset(&ctx, 0, sizeof ctx);
3386     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
3387         struct ofpbuf *odp_actions;
3388         bool should_install;
3389
3390         action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
3391                               subfacet->initial_tci, NULL);
3392         odp_actions = xlate_actions(&ctx, new_rule->up.actions,
3393                                     new_rule->up.n_actions);
3394         actions_changed = (subfacet->actions_len != odp_actions->size
3395                            || memcmp(subfacet->actions, odp_actions->data,
3396                                      subfacet->actions_len));
3397
3398         should_install = (ctx.may_set_up_flow
3399                           && subfacet->key_fitness != ODP_FIT_TOO_LITTLE);
3400         if (actions_changed || should_install != subfacet->installed) {
3401             if (should_install) {
3402                 struct dpif_flow_stats stats;
3403
3404                 subfacet_install(ofproto, subfacet,
3405                                  odp_actions->data, odp_actions->size, &stats);
3406                 subfacet_update_stats(ofproto, subfacet, &stats);
3407             } else {
3408                 subfacet_uninstall(ofproto, subfacet);
3409             }
3410
3411             if (!new_actions) {
3412                 new_actions = xcalloc(list_size(&facet->subfacets),
3413                                       sizeof *new_actions);
3414             }
3415             new_actions[i].odp_actions = xmemdup(odp_actions->data,
3416                                                  odp_actions->size);
3417             new_actions[i].actions_len = odp_actions->size;
3418         }
3419
3420         ofpbuf_delete(odp_actions);
3421         i++;
3422     }
3423     if (new_actions) {
3424         facet_flush_stats(ofproto, facet);
3425     }
3426
3427     /* Update 'facet' now that we've taken care of all the old state. */
3428     facet->tags = ctx.tags;
3429     facet->nf_flow.output_iface = ctx.nf_output_iface;
3430     facet->may_install = ctx.may_set_up_flow;
3431     facet->has_learn = ctx.has_learn;
3432     facet->has_normal = ctx.has_normal;
3433     facet->mirrors = ctx.mirrors;
3434     if (new_actions) {
3435         i = 0;
3436         LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
3437             if (new_actions[i].odp_actions) {
3438                 free(subfacet->actions);
3439                 subfacet->actions = new_actions[i].odp_actions;
3440                 subfacet->actions_len = new_actions[i].actions_len;
3441             }
3442             i++;
3443         }
3444         free(new_actions);
3445     }
3446     if (facet->rule != new_rule) {
3447         COVERAGE_INC(facet_changed_rule);
3448         list_remove(&facet->list_node);
3449         list_push_back(&new_rule->facets, &facet->list_node);
3450         facet->rule = new_rule;
3451         facet->used = new_rule->up.created;
3452         facet->prev_used = facet->used;
3453     }
3454
3455     return true;
3456 }
3457
3458 /* Updates 'facet''s used time.  Caller is responsible for calling
3459  * facet_push_stats() to update the flows which 'facet' resubmits into. */
3460 static void
3461 facet_update_time(struct ofproto_dpif *ofproto, struct facet *facet,
3462                   long long int used)
3463 {
3464     if (used > facet->used) {
3465         facet->used = used;
3466         if (used > facet->rule->used) {
3467             facet->rule->used = used;
3468         }
3469         netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, used);
3470     }
3471 }
3472
3473 static void
3474 facet_reset_counters(struct facet *facet)
3475 {
3476     facet->packet_count = 0;
3477     facet->byte_count = 0;
3478     facet->prev_packet_count = 0;
3479     facet->prev_byte_count = 0;
3480     facet->accounted_bytes = 0;
3481 }
3482
3483 static void
3484 facet_push_stats(struct facet *facet)
3485 {
3486     uint64_t new_packets, new_bytes;
3487
3488     assert(facet->packet_count >= facet->prev_packet_count);
3489     assert(facet->byte_count >= facet->prev_byte_count);
3490     assert(facet->used >= facet->prev_used);
3491
3492     new_packets = facet->packet_count - facet->prev_packet_count;
3493     new_bytes = facet->byte_count - facet->prev_byte_count;
3494
3495     if (new_packets || new_bytes || facet->used > facet->prev_used) {
3496         facet->prev_packet_count = facet->packet_count;
3497         facet->prev_byte_count = facet->byte_count;
3498         facet->prev_used = facet->used;
3499
3500         flow_push_stats(facet->rule, &facet->flow,
3501                         new_packets, new_bytes, facet->used);
3502
3503         update_mirror_stats(ofproto_dpif_cast(facet->rule->up.ofproto),
3504                             facet->mirrors, new_packets, new_bytes);
3505     }
3506 }
3507
3508 struct ofproto_push {
3509     struct action_xlate_ctx ctx;
3510     uint64_t packets;
3511     uint64_t bytes;
3512     long long int used;
3513 };
3514
3515 static void
3516 push_resubmit(struct action_xlate_ctx *ctx, struct rule_dpif *rule)
3517 {
3518     struct ofproto_push *push = CONTAINER_OF(ctx, struct ofproto_push, ctx);
3519
3520     if (rule) {
3521         rule->packet_count += push->packets;
3522         rule->byte_count += push->bytes;
3523         rule->used = MAX(push->used, rule->used);
3524     }
3525 }
3526
3527 /* Pushes flow statistics to the rules which 'flow' resubmits into given
3528  * 'rule''s actions and mirrors. */
3529 static void
3530 flow_push_stats(const struct rule_dpif *rule,
3531                 const struct flow *flow, uint64_t packets, uint64_t bytes,
3532                 long long int used)
3533 {
3534     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3535     struct ofproto_push push;
3536
3537     push.packets = packets;
3538     push.bytes = bytes;
3539     push.used = used;
3540
3541     action_xlate_ctx_init(&push.ctx, ofproto, flow, flow->vlan_tci, NULL);
3542     push.ctx.resubmit_hook = push_resubmit;
3543     ofpbuf_delete(xlate_actions(&push.ctx,
3544                                 rule->up.actions, rule->up.n_actions));
3545 }
3546 \f
3547 /* Subfacets. */
3548
3549 static struct subfacet *
3550 subfacet_find__(struct ofproto_dpif *ofproto,
3551                 const struct nlattr *key, size_t key_len, uint32_t key_hash,
3552                 const struct flow *flow)
3553 {
3554     struct subfacet *subfacet;
3555
3556     HMAP_FOR_EACH_WITH_HASH (subfacet, hmap_node, key_hash,
3557                              &ofproto->subfacets) {
3558         if (subfacet->key
3559             ? (subfacet->key_len == key_len
3560                && !memcmp(key, subfacet->key, key_len))
3561             : flow_equal(flow, &subfacet->facet->flow)) {
3562             return subfacet;
3563         }
3564     }
3565
3566     return NULL;
3567 }
3568
3569 /* Searches 'facet' (within 'ofproto') for a subfacet with the specified
3570  * 'key_fitness', 'key', and 'key_len'.  Returns the existing subfacet if
3571  * there is one, otherwise creates and returns a new subfacet.
3572  *
3573  * If the returned subfacet is new, then subfacet->actions will be NULL, in
3574  * which case the caller must populate the actions with
3575  * subfacet_make_actions(). */
3576 static struct subfacet *
3577 subfacet_create(struct ofproto_dpif *ofproto, struct facet *facet,
3578                 enum odp_key_fitness key_fitness,
3579                 const struct nlattr *key, size_t key_len, ovs_be16 initial_tci)
3580 {
3581     uint32_t key_hash = odp_flow_key_hash(key, key_len);
3582     struct subfacet *subfacet;
3583
3584     subfacet = subfacet_find__(ofproto, key, key_len, key_hash, &facet->flow);
3585     if (subfacet) {
3586         if (subfacet->facet == facet) {
3587             return subfacet;
3588         }
3589
3590         /* This shouldn't happen. */
3591         VLOG_ERR_RL(&rl, "subfacet with wrong facet");
3592         subfacet_destroy(ofproto, subfacet);
3593     }
3594
3595     subfacet = xzalloc(sizeof *subfacet);
3596     hmap_insert(&ofproto->subfacets, &subfacet->hmap_node, key_hash);
3597     list_push_back(&facet->subfacets, &subfacet->list_node);
3598     subfacet->facet = facet;
3599     subfacet->used = time_msec();
3600     subfacet->key_fitness = key_fitness;
3601     if (key_fitness != ODP_FIT_PERFECT) {
3602         subfacet->key = xmemdup(key, key_len);
3603         subfacet->key_len = key_len;
3604     }
3605     subfacet->installed = false;
3606     subfacet->initial_tci = initial_tci;
3607
3608     return subfacet;
3609 }
3610
3611 /* Searches 'ofproto' for a subfacet with the given 'key', 'key_len', and
3612  * 'flow'.  Returns the subfacet if one exists, otherwise NULL. */
3613 static struct subfacet *
3614 subfacet_find(struct ofproto_dpif *ofproto,
3615               const struct nlattr *key, size_t key_len)
3616 {
3617     uint32_t key_hash = odp_flow_key_hash(key, key_len);
3618     enum odp_key_fitness fitness;
3619     struct flow flow;
3620
3621     fitness = odp_flow_key_to_flow(key, key_len, &flow);
3622     if (fitness == ODP_FIT_ERROR) {
3623         return NULL;
3624     }
3625
3626     return subfacet_find__(ofproto, key, key_len, key_hash, &flow);
3627 }
3628
3629 /* Uninstalls 'subfacet' from the datapath, if it is installed, removes it from
3630  * its facet within 'ofproto', and frees it. */
3631 static void
3632 subfacet_destroy__(struct ofproto_dpif *ofproto, struct subfacet *subfacet)
3633 {
3634     subfacet_uninstall(ofproto, subfacet);
3635     hmap_remove(&ofproto->subfacets, &subfacet->hmap_node);
3636     list_remove(&subfacet->list_node);
3637     free(subfacet->key);
3638     free(subfacet->actions);
3639     free(subfacet);
3640 }
3641
3642 /* Destroys 'subfacet', as with subfacet_destroy__(), and then if this was the
3643  * last remaining subfacet in its facet destroys the facet too. */
3644 static void
3645 subfacet_destroy(struct ofproto_dpif *ofproto, struct subfacet *subfacet)
3646 {
3647     struct facet *facet = subfacet->facet;
3648
3649     subfacet_destroy__(ofproto, subfacet);
3650     if (list_is_empty(&facet->subfacets)) {
3651         facet_remove(ofproto, facet);
3652     }
3653 }
3654
3655 /* Initializes 'key' with the sequence of OVS_KEY_ATTR_* Netlink attributes
3656  * that can be used to refer to 'subfacet'.  The caller must provide 'keybuf'
3657  * for use as temporary storage. */
3658 static void
3659 subfacet_get_key(struct subfacet *subfacet, struct odputil_keybuf *keybuf,
3660                  struct ofpbuf *key)
3661 {
3662     if (!subfacet->key) {
3663         ofpbuf_use_stack(key, keybuf, sizeof *keybuf);
3664         odp_flow_key_from_flow(key, &subfacet->facet->flow);
3665     } else {
3666         ofpbuf_use_const(key, subfacet->key, subfacet->key_len);
3667     }
3668 }
3669
3670 /* Composes the datapath actions for 'subfacet' based on its rule's actions. */
3671 static void
3672 subfacet_make_actions(struct ofproto_dpif *p, struct subfacet *subfacet,
3673                       const struct ofpbuf *packet)
3674 {
3675     struct facet *facet = subfacet->facet;
3676     const struct rule_dpif *rule = facet->rule;
3677     struct ofpbuf *odp_actions;
3678     struct action_xlate_ctx ctx;
3679
3680     action_xlate_ctx_init(&ctx, p, &facet->flow, subfacet->initial_tci,
3681                           packet);
3682     odp_actions = xlate_actions(&ctx, rule->up.actions, rule->up.n_actions);
3683     facet->tags = ctx.tags;
3684     facet->may_install = ctx.may_set_up_flow;
3685     facet->has_learn = ctx.has_learn;
3686     facet->has_normal = ctx.has_normal;
3687     facet->nf_flow.output_iface = ctx.nf_output_iface;
3688     facet->mirrors = ctx.mirrors;
3689
3690     if (subfacet->actions_len != odp_actions->size
3691         || memcmp(subfacet->actions, odp_actions->data, odp_actions->size)) {
3692         free(subfacet->actions);
3693         subfacet->actions_len = odp_actions->size;
3694         subfacet->actions = xmemdup(odp_actions->data, odp_actions->size);
3695     }
3696
3697     ofpbuf_delete(odp_actions);
3698 }
3699
3700 /* Updates 'subfacet''s datapath flow, setting its actions to 'actions_len'
3701  * bytes of actions in 'actions'.  If 'stats' is non-null, statistics counters
3702  * in the datapath will be zeroed and 'stats' will be updated with traffic new
3703  * since 'subfacet' was last updated.
3704  *
3705  * Returns 0 if successful, otherwise a positive errno value. */
3706 static int
3707 subfacet_install(struct ofproto_dpif *ofproto, struct subfacet *subfacet,
3708                  const struct nlattr *actions, size_t actions_len,
3709                  struct dpif_flow_stats *stats)
3710 {
3711     struct odputil_keybuf keybuf;
3712     enum dpif_flow_put_flags flags;
3713     struct ofpbuf key;
3714     int ret;
3715
3716     flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
3717     if (stats) {
3718         flags |= DPIF_FP_ZERO_STATS;
3719     }
3720
3721     subfacet_get_key(subfacet, &keybuf, &key);
3722     ret = dpif_flow_put(ofproto->dpif, flags, key.data, key.size,
3723                         actions, actions_len, stats);
3724
3725     if (stats) {
3726         subfacet_reset_dp_stats(subfacet, stats);
3727     }
3728
3729     return ret;
3730 }
3731
3732 /* If 'subfacet' is installed in the datapath, uninstalls it. */
3733 static void
3734 subfacet_uninstall(struct ofproto_dpif *p, struct subfacet *subfacet)
3735 {
3736     if (subfacet->installed) {
3737         struct odputil_keybuf keybuf;
3738         struct dpif_flow_stats stats;
3739         struct ofpbuf key;
3740         int error;
3741
3742         subfacet_get_key(subfacet, &keybuf, &key);
3743         error = dpif_flow_del(p->dpif, key.data, key.size, &stats);
3744         subfacet_reset_dp_stats(subfacet, &stats);
3745         if (!error) {
3746             subfacet_update_stats(p, subfacet, &stats);
3747         }
3748         subfacet->installed = false;
3749     } else {
3750         assert(subfacet->dp_packet_count == 0);
3751         assert(subfacet->dp_byte_count == 0);
3752     }
3753 }
3754
3755 /* Resets 'subfacet''s datapath statistics counters.  This should be called
3756  * when 'subfacet''s statistics are cleared in the datapath.  If 'stats' is
3757  * non-null, it should contain the statistics returned by dpif when 'subfacet'
3758  * was reset in the datapath.  'stats' will be modified to include only
3759  * statistics new since 'subfacet' was last updated. */
3760 static void
3761 subfacet_reset_dp_stats(struct subfacet *subfacet,
3762                         struct dpif_flow_stats *stats)
3763 {
3764     if (stats
3765         && subfacet->dp_packet_count <= stats->n_packets
3766         && subfacet->dp_byte_count <= stats->n_bytes) {
3767         stats->n_packets -= subfacet->dp_packet_count;
3768         stats->n_bytes -= subfacet->dp_byte_count;
3769     }
3770
3771     subfacet->dp_packet_count = 0;
3772     subfacet->dp_byte_count = 0;
3773 }
3774
3775 /* Updates 'subfacet''s used time.  The caller is responsible for calling
3776  * facet_push_stats() to update the flows which 'subfacet' resubmits into. */
3777 static void
3778 subfacet_update_time(struct ofproto_dpif *ofproto, struct subfacet *subfacet,
3779                      long long int used)
3780 {
3781     if (used > subfacet->used) {
3782         subfacet->used = used;
3783         facet_update_time(ofproto, subfacet->facet, used);
3784     }
3785 }
3786
3787 /* Folds the statistics from 'stats' into the counters in 'subfacet'.
3788  *
3789  * Because of the meaning of a subfacet's counters, it only makes sense to do
3790  * this if 'stats' are not tracked in the datapath, that is, if 'stats'
3791  * represents a packet that was sent by hand or if it represents statistics
3792  * that have been cleared out of the datapath. */
3793 static void
3794 subfacet_update_stats(struct ofproto_dpif *ofproto, struct subfacet *subfacet,
3795                       const struct dpif_flow_stats *stats)
3796 {
3797     if (stats->n_packets || stats->used > subfacet->used) {
3798         struct facet *facet = subfacet->facet;
3799
3800         subfacet_update_time(ofproto, subfacet, stats->used);
3801         facet->packet_count += stats->n_packets;
3802         facet->byte_count += stats->n_bytes;
3803         facet_push_stats(facet);
3804         netflow_flow_update_flags(&facet->nf_flow, stats->tcp_flags);
3805     }
3806 }
3807 \f
3808 /* Rules. */
3809
3810 static struct rule_dpif *
3811 rule_dpif_lookup(struct ofproto_dpif *ofproto, const struct flow *flow,
3812                  uint8_t table_id)
3813 {
3814     struct cls_rule *cls_rule;
3815     struct classifier *cls;
3816
3817     if (table_id >= N_TABLES) {
3818         return NULL;
3819     }
3820
3821     cls = &ofproto->up.tables[table_id];
3822     if (flow->nw_frag & FLOW_NW_FRAG_ANY
3823         && ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
3824         /* For OFPC_NORMAL frag_handling, we must pretend that transport ports
3825          * are unavailable. */
3826         struct flow ofpc_normal_flow = *flow;
3827         ofpc_normal_flow.tp_src = htons(0);
3828         ofpc_normal_flow.tp_dst = htons(0);
3829         cls_rule = classifier_lookup(cls, &ofpc_normal_flow);
3830     } else {
3831         cls_rule = classifier_lookup(cls, flow);
3832     }
3833     return rule_dpif_cast(rule_from_cls_rule(cls_rule));
3834 }
3835
3836 static void
3837 complete_operation(struct rule_dpif *rule)
3838 {
3839     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3840
3841     rule_invalidate(rule);
3842     if (clogged) {
3843         struct dpif_completion *c = xmalloc(sizeof *c);
3844         c->op = rule->up.pending;
3845         list_push_back(&ofproto->completions, &c->list_node);
3846     } else {
3847         ofoperation_complete(rule->up.pending, 0);
3848     }
3849 }
3850
3851 static struct rule *
3852 rule_alloc(void)
3853 {
3854     struct rule_dpif *rule = xmalloc(sizeof *rule);
3855     return &rule->up;
3856 }
3857
3858 static void
3859 rule_dealloc(struct rule *rule_)
3860 {
3861     struct rule_dpif *rule = rule_dpif_cast(rule_);
3862     free(rule);
3863 }
3864
3865 static int
3866 rule_construct(struct rule *rule_)
3867 {
3868     struct rule_dpif *rule = rule_dpif_cast(rule_);
3869     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3870     struct rule_dpif *victim;
3871     uint8_t table_id;
3872     int error;
3873
3874     error = validate_actions(rule->up.actions, rule->up.n_actions,
3875                              &rule->up.cr.flow, ofproto->max_ports);
3876     if (error) {
3877         return error;
3878     }
3879
3880     rule->used = rule->up.created;
3881     rule->packet_count = 0;
3882     rule->byte_count = 0;
3883
3884     victim = rule_dpif_cast(ofoperation_get_victim(rule->up.pending));
3885     if (victim && !list_is_empty(&victim->facets)) {
3886         struct facet *facet;
3887
3888         rule->facets = victim->facets;
3889         list_moved(&rule->facets);
3890         LIST_FOR_EACH (facet, list_node, &rule->facets) {
3891             /* XXX: We're only clearing our local counters here.  It's possible
3892              * that quite a few packets are unaccounted for in the datapath
3893              * statistics.  These will be accounted to the new rule instead of
3894              * cleared as required.  This could be fixed by clearing out the
3895              * datapath statistics for this facet, but currently it doesn't
3896              * seem worth it. */
3897             facet_reset_counters(facet);
3898             facet->rule = rule;
3899         }
3900     } else {
3901         /* Must avoid list_moved() in this case. */
3902         list_init(&rule->facets);
3903     }
3904
3905     table_id = rule->up.table_id;
3906     rule->tag = (victim ? victim->tag
3907                  : table_id == 0 ? 0
3908                  : rule_calculate_tag(&rule->up.cr.flow, &rule->up.cr.wc,
3909                                       ofproto->tables[table_id].basis));
3910
3911     complete_operation(rule);
3912     return 0;
3913 }
3914
3915 static void
3916 rule_destruct(struct rule *rule_)
3917 {
3918     struct rule_dpif *rule = rule_dpif_cast(rule_);
3919     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3920     struct facet *facet, *next_facet;
3921
3922     LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
3923         facet_revalidate(ofproto, facet);
3924     }
3925
3926     complete_operation(rule);
3927 }
3928
3929 static void
3930 rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes)
3931 {
3932     struct rule_dpif *rule = rule_dpif_cast(rule_);
3933     struct facet *facet;
3934
3935     /* Start from historical data for 'rule' itself that are no longer tracked
3936      * in facets.  This counts, for example, facets that have expired. */
3937     *packets = rule->packet_count;
3938     *bytes = rule->byte_count;
3939
3940     /* Add any statistics that are tracked by facets.  This includes
3941      * statistical data recently updated by ofproto_update_stats() as well as
3942      * stats for packets that were executed "by hand" via dpif_execute(). */
3943     LIST_FOR_EACH (facet, list_node, &rule->facets) {
3944         *packets += facet->packet_count;
3945         *bytes += facet->byte_count;
3946     }
3947 }
3948
3949 static int
3950 rule_execute(struct rule *rule_, const struct flow *flow,
3951              struct ofpbuf *packet)
3952 {
3953     struct rule_dpif *rule = rule_dpif_cast(rule_);
3954     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3955     struct action_xlate_ctx ctx;
3956     struct ofpbuf *odp_actions;
3957     size_t size;
3958
3959     action_xlate_ctx_init(&ctx, ofproto, flow, flow->vlan_tci, packet);
3960     odp_actions = xlate_actions(&ctx, rule->up.actions, rule->up.n_actions);
3961     size = packet->size;
3962     if (execute_odp_actions(ofproto, flow, odp_actions->data,
3963                             odp_actions->size, packet)) {
3964         rule->used = time_msec();
3965         rule->packet_count++;
3966         rule->byte_count += size;
3967         flow_push_stats(rule, flow, 1, size, rule->used);
3968     }
3969     ofpbuf_delete(odp_actions);
3970
3971     return 0;
3972 }
3973
3974 static void
3975 rule_modify_actions(struct rule *rule_)
3976 {
3977     struct rule_dpif *rule = rule_dpif_cast(rule_);
3978     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3979     int error;
3980
3981     error = validate_actions(rule->up.actions, rule->up.n_actions,
3982                              &rule->up.cr.flow, ofproto->max_ports);
3983     if (error) {
3984         ofoperation_complete(rule->up.pending, error);
3985         return;
3986     }
3987
3988     complete_operation(rule);
3989 }
3990 \f
3991 /* Sends 'packet' out 'ofport'.
3992  * May modify 'packet'.
3993  * Returns 0 if successful, otherwise a positive errno value. */
3994 static int
3995 send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
3996 {
3997     const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3998     struct ofpbuf key, odp_actions;
3999     struct odputil_keybuf keybuf;
4000     uint16_t odp_port;
4001     struct flow flow;
4002     int error;
4003
4004     flow_extract((struct ofpbuf *) packet, 0, 0, 0, &flow);
4005     odp_port = vsp_realdev_to_vlandev(ofproto, ofport->odp_port,
4006                                       flow.vlan_tci);
4007     if (odp_port != ofport->odp_port) {
4008         eth_pop_vlan(packet);
4009         flow.vlan_tci = htons(0);
4010     }
4011
4012     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
4013     odp_flow_key_from_flow(&key, &flow);
4014
4015     ofpbuf_init(&odp_actions, 32);
4016     compose_sflow_action(ofproto, &odp_actions, &flow, odp_port);
4017
4018     nl_msg_put_u32(&odp_actions, OVS_ACTION_ATTR_OUTPUT, odp_port);
4019     error = dpif_execute(ofproto->dpif,
4020                          key.data, key.size,
4021                          odp_actions.data, odp_actions.size,
4022                          packet);
4023     ofpbuf_uninit(&odp_actions);
4024
4025     if (error) {
4026         VLOG_WARN_RL(&rl, "%s: failed to send packet on port %"PRIu32" (%s)",
4027                      ofproto->up.name, odp_port, strerror(error));
4028     }
4029     return error;
4030 }
4031 \f
4032 /* OpenFlow to datapath action translation. */
4033
4034 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
4035                              struct action_xlate_ctx *ctx);
4036 static void xlate_normal(struct action_xlate_ctx *);
4037
4038 static size_t
4039 put_userspace_action(const struct ofproto_dpif *ofproto,
4040                      struct ofpbuf *odp_actions,
4041                      const struct flow *flow,
4042                      const struct user_action_cookie *cookie)
4043 {
4044     uint32_t pid;
4045
4046     pid = dpif_port_get_pid(ofproto->dpif,
4047                             ofp_port_to_odp_port(flow->in_port));
4048
4049     return odp_put_userspace_action(pid, cookie, odp_actions);
4050 }
4051
4052 /* Compose SAMPLE action for sFlow. */
4053 static size_t
4054 compose_sflow_action(const struct ofproto_dpif *ofproto,
4055                      struct ofpbuf *odp_actions,
4056                      const struct flow *flow,
4057                      uint32_t odp_port)
4058 {
4059     uint32_t port_ifindex;
4060     uint32_t probability;
4061     struct user_action_cookie cookie;
4062     size_t sample_offset, actions_offset;
4063     int cookie_offset, n_output;
4064
4065     if (!ofproto->sflow || flow->in_port == OFPP_NONE) {
4066         return 0;
4067     }
4068
4069     if (odp_port == OVSP_NONE) {
4070         port_ifindex = 0;
4071         n_output = 0;
4072     } else {
4073         port_ifindex = dpif_sflow_odp_port_to_ifindex(ofproto->sflow, odp_port);
4074         n_output = 1;
4075     }
4076
4077     sample_offset = nl_msg_start_nested(odp_actions, OVS_ACTION_ATTR_SAMPLE);
4078
4079     /* Number of packets out of UINT_MAX to sample. */
4080     probability = dpif_sflow_get_probability(ofproto->sflow);
4081     nl_msg_put_u32(odp_actions, OVS_SAMPLE_ATTR_PROBABILITY, probability);
4082
4083     actions_offset = nl_msg_start_nested(odp_actions, OVS_SAMPLE_ATTR_ACTIONS);
4084
4085     cookie.type = USER_ACTION_COOKIE_SFLOW;
4086     cookie.data = port_ifindex;
4087     cookie.n_output = n_output;
4088     cookie.vlan_tci = 0;
4089     cookie_offset = put_userspace_action(ofproto, odp_actions, flow, &cookie);
4090
4091     nl_msg_end_nested(odp_actions, actions_offset);
4092     nl_msg_end_nested(odp_actions, sample_offset);
4093     return cookie_offset;
4094 }
4095
4096 /* SAMPLE action must be first action in any given list of actions.
4097  * At this point we do not have all information required to build it. So try to
4098  * build sample action as complete as possible. */
4099 static void
4100 add_sflow_action(struct action_xlate_ctx *ctx)
4101 {
4102     ctx->user_cookie_offset = compose_sflow_action(ctx->ofproto,
4103                                                    ctx->odp_actions,
4104                                                    &ctx->flow, OVSP_NONE);
4105     ctx->sflow_odp_port = 0;
4106     ctx->sflow_n_outputs = 0;
4107 }
4108
4109 /* Fix SAMPLE action according to data collected while composing ODP actions.
4110  * We need to fix SAMPLE actions OVS_SAMPLE_ATTR_ACTIONS attribute, i.e. nested
4111  * USERSPACE action's user-cookie which is required for sflow. */
4112 static void
4113 fix_sflow_action(struct action_xlate_ctx *ctx)
4114 {
4115     const struct flow *base = &ctx->base_flow;
4116     struct user_action_cookie *cookie;
4117
4118     if (!ctx->user_cookie_offset) {
4119         return;
4120     }
4121
4122     cookie = ofpbuf_at(ctx->odp_actions, ctx->user_cookie_offset,
4123                      sizeof(*cookie));
4124     assert(cookie != NULL);
4125     assert(cookie->type == USER_ACTION_COOKIE_SFLOW);
4126
4127     if (ctx->sflow_n_outputs) {
4128         cookie->data = dpif_sflow_odp_port_to_ifindex(ctx->ofproto->sflow,
4129                                                     ctx->sflow_odp_port);
4130     }
4131     if (ctx->sflow_n_outputs >= 255) {
4132         cookie->n_output = 255;
4133     } else {
4134         cookie->n_output = ctx->sflow_n_outputs;
4135     }
4136     cookie->vlan_tci = base->vlan_tci;
4137 }
4138
4139 static void
4140 compose_output_action__(struct action_xlate_ctx *ctx, uint16_t ofp_port,
4141                         bool check_stp)
4142 {
4143     const struct ofport_dpif *ofport = get_ofp_port(ctx->ofproto, ofp_port);
4144     uint16_t odp_port = ofp_port_to_odp_port(ofp_port);
4145     ovs_be16 flow_vlan_tci = ctx->flow.vlan_tci;
4146     uint8_t flow_nw_tos = ctx->flow.nw_tos;
4147     uint16_t out_port;
4148
4149     if (ofport) {
4150         struct priority_to_dscp *pdscp;
4151
4152         if (ofport->up.opp.config & htonl(OFPPC_NO_FWD)
4153             || (check_stp && !stp_forward_in_state(ofport->stp_state))) {
4154             return;
4155         }
4156
4157         pdscp = get_priority(ofport, ctx->flow.priority);
4158         if (pdscp) {
4159             ctx->flow.nw_tos &= ~IP_DSCP_MASK;
4160             ctx->flow.nw_tos |= pdscp->dscp;
4161         }
4162     } else {
4163         /* We may not have an ofport record for this port, but it doesn't hurt
4164          * to allow forwarding to it anyhow.  Maybe such a port will appear
4165          * later and we're pre-populating the flow table.  */
4166     }
4167
4168     out_port = vsp_realdev_to_vlandev(ctx->ofproto, odp_port,
4169                                       ctx->flow.vlan_tci);
4170     if (out_port != odp_port) {
4171         ctx->flow.vlan_tci = htons(0);
4172     }
4173     commit_odp_actions(&ctx->flow, &ctx->base_flow, ctx->odp_actions);
4174     nl_msg_put_u32(ctx->odp_actions, OVS_ACTION_ATTR_OUTPUT, out_port);
4175
4176     ctx->sflow_odp_port = odp_port;
4177     ctx->sflow_n_outputs++;
4178     ctx->nf_output_iface = ofp_port;
4179     ctx->flow.vlan_tci = flow_vlan_tci;
4180     ctx->flow.nw_tos = flow_nw_tos;
4181 }
4182
4183 static void
4184 compose_output_action(struct action_xlate_ctx *ctx, uint16_t ofp_port)
4185 {
4186     compose_output_action__(ctx, ofp_port, true);
4187 }
4188
4189 static void
4190 xlate_table_action(struct action_xlate_ctx *ctx,
4191                    uint16_t in_port, uint8_t table_id)
4192 {
4193     if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
4194         struct ofproto_dpif *ofproto = ctx->ofproto;
4195         struct rule_dpif *rule;
4196         uint16_t old_in_port;
4197         uint8_t old_table_id;
4198
4199         old_table_id = ctx->table_id;
4200         ctx->table_id = table_id;
4201
4202         /* Look up a flow with 'in_port' as the input port. */
4203         old_in_port = ctx->flow.in_port;
4204         ctx->flow.in_port = in_port;
4205         rule = rule_dpif_lookup(ofproto, &ctx->flow, table_id);
4206
4207         /* Tag the flow. */
4208         if (table_id > 0 && table_id < N_TABLES) {
4209             struct table_dpif *table = &ofproto->tables[table_id];
4210             if (table->other_table) {
4211                 ctx->tags |= (rule
4212                               ? rule->tag
4213                               : rule_calculate_tag(&ctx->flow,
4214                                                    &table->other_table->wc,
4215                                                    table->basis));
4216             }
4217         }
4218
4219         /* Restore the original input port.  Otherwise OFPP_NORMAL and
4220          * OFPP_IN_PORT will have surprising behavior. */
4221         ctx->flow.in_port = old_in_port;
4222
4223         if (ctx->resubmit_hook) {
4224             ctx->resubmit_hook(ctx, rule);
4225         }
4226
4227         if (rule) {
4228             ctx->recurse++;
4229             do_xlate_actions(rule->up.actions, rule->up.n_actions, ctx);
4230             ctx->recurse--;
4231         }
4232
4233         ctx->table_id = old_table_id;
4234     } else {
4235         static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
4236
4237         VLOG_ERR_RL(&recurse_rl, "resubmit actions recursed over %d times",
4238                     MAX_RESUBMIT_RECURSION);
4239     }
4240 }
4241
4242 static void
4243 xlate_resubmit_table(struct action_xlate_ctx *ctx,
4244                      const struct nx_action_resubmit *nar)
4245 {
4246     uint16_t in_port;
4247     uint8_t table_id;
4248
4249     in_port = (nar->in_port == htons(OFPP_IN_PORT)
4250                ? ctx->flow.in_port
4251                : ntohs(nar->in_port));
4252     table_id = nar->table == 255 ? ctx->table_id : nar->table;
4253
4254     xlate_table_action(ctx, in_port, table_id);
4255 }
4256
4257 static void
4258 flood_packets(struct action_xlate_ctx *ctx, bool all)
4259 {
4260     struct ofport_dpif *ofport;
4261
4262     HMAP_FOR_EACH (ofport, up.hmap_node, &ctx->ofproto->up.ports) {
4263         uint16_t ofp_port = ofport->up.ofp_port;
4264
4265         if (ofp_port == ctx->flow.in_port) {
4266             continue;
4267         }
4268
4269         if (all) {
4270             compose_output_action__(ctx, ofp_port, false);
4271         } else if (!(ofport->up.opp.config & htonl(OFPPC_NO_FLOOD))) {
4272             compose_output_action(ctx, ofp_port);
4273         }
4274     }
4275
4276     ctx->nf_output_iface = NF_OUT_FLOOD;
4277 }
4278
4279 static void
4280 compose_controller_action(struct action_xlate_ctx *ctx, int len)
4281 {
4282     struct user_action_cookie cookie;
4283
4284     commit_odp_actions(&ctx->flow, &ctx->base_flow, ctx->odp_actions);
4285     cookie.type = USER_ACTION_COOKIE_CONTROLLER;
4286     cookie.data = len;
4287     cookie.n_output = 0;
4288     cookie.vlan_tci = 0;
4289     put_userspace_action(ctx->ofproto, ctx->odp_actions, &ctx->flow, &cookie);
4290 }
4291
4292 static void
4293 xlate_output_action__(struct action_xlate_ctx *ctx,
4294                       uint16_t port, uint16_t max_len)
4295 {
4296     uint16_t prev_nf_output_iface = ctx->nf_output_iface;
4297
4298     ctx->nf_output_iface = NF_OUT_DROP;
4299
4300     switch (port) {
4301     case OFPP_IN_PORT:
4302         compose_output_action(ctx, ctx->flow.in_port);
4303         break;
4304     case OFPP_TABLE:
4305         xlate_table_action(ctx, ctx->flow.in_port, ctx->table_id);
4306         break;
4307     case OFPP_NORMAL:
4308         xlate_normal(ctx);
4309         break;
4310     case OFPP_FLOOD:
4311         flood_packets(ctx,  false);
4312         break;
4313     case OFPP_ALL:
4314         flood_packets(ctx, true);
4315         break;
4316     case OFPP_CONTROLLER:
4317         compose_controller_action(ctx, max_len);
4318         break;
4319     case OFPP_LOCAL:
4320         compose_output_action(ctx, OFPP_LOCAL);
4321         break;
4322     case OFPP_NONE:
4323         break;
4324     default:
4325         if (port != ctx->flow.in_port) {
4326             compose_output_action(ctx, port);
4327         }
4328         break;
4329     }
4330
4331     if (prev_nf_output_iface == NF_OUT_FLOOD) {
4332         ctx->nf_output_iface = NF_OUT_FLOOD;
4333     } else if (ctx->nf_output_iface == NF_OUT_DROP) {
4334         ctx->nf_output_iface = prev_nf_output_iface;
4335     } else if (prev_nf_output_iface != NF_OUT_DROP &&
4336                ctx->nf_output_iface != NF_OUT_FLOOD) {
4337         ctx->nf_output_iface = NF_OUT_MULTI;
4338     }
4339 }
4340
4341 static void
4342 xlate_output_reg_action(struct action_xlate_ctx *ctx,
4343                         const struct nx_action_output_reg *naor)
4344 {
4345     uint64_t ofp_port;
4346
4347     ofp_port = nxm_read_field_bits(naor->src, naor->ofs_nbits, &ctx->flow);
4348
4349     if (ofp_port <= UINT16_MAX) {
4350         xlate_output_action__(ctx, ofp_port, ntohs(naor->max_len));
4351     }
4352 }
4353
4354 static void
4355 xlate_output_action(struct action_xlate_ctx *ctx,
4356                     const struct ofp_action_output *oao)
4357 {
4358     xlate_output_action__(ctx, ntohs(oao->port), ntohs(oao->max_len));
4359 }
4360
4361 static void
4362 xlate_enqueue_action(struct action_xlate_ctx *ctx,
4363                      const struct ofp_action_enqueue *oae)
4364 {
4365     uint16_t ofp_port;
4366     uint32_t flow_priority, priority;
4367     int error;
4368
4369     error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(oae->queue_id),
4370                                    &priority);
4371     if (error) {
4372         /* Fall back to ordinary output action. */
4373         xlate_output_action__(ctx, ntohs(oae->port), 0);
4374         return;
4375     }
4376
4377     /* Figure out datapath output port. */
4378     ofp_port = ntohs(oae->port);
4379     if (ofp_port == OFPP_IN_PORT) {
4380         ofp_port = ctx->flow.in_port;
4381     } else if (ofp_port == ctx->flow.in_port) {
4382         return;
4383     }
4384
4385     /* Add datapath actions. */
4386     flow_priority = ctx->flow.priority;
4387     ctx->flow.priority = priority;
4388     compose_output_action(ctx, ofp_port);
4389     ctx->flow.priority = flow_priority;
4390
4391     /* Update NetFlow output port. */
4392     if (ctx->nf_output_iface == NF_OUT_DROP) {
4393         ctx->nf_output_iface = ofp_port;
4394     } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
4395         ctx->nf_output_iface = NF_OUT_MULTI;
4396     }
4397 }
4398
4399 static void
4400 xlate_set_queue_action(struct action_xlate_ctx *ctx,
4401                        const struct nx_action_set_queue *nasq)
4402 {
4403     uint32_t priority;
4404     int error;
4405
4406     error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(nasq->queue_id),
4407                                    &priority);
4408     if (error) {
4409         /* Couldn't translate queue to a priority, so ignore.  A warning
4410          * has already been logged. */
4411         return;
4412     }
4413
4414     ctx->flow.priority = priority;
4415 }
4416
4417 struct xlate_reg_state {
4418     ovs_be16 vlan_tci;
4419     ovs_be64 tun_id;
4420 };
4421
4422 static void
4423 xlate_autopath(struct action_xlate_ctx *ctx,
4424                const struct nx_action_autopath *naa)
4425 {
4426     uint16_t ofp_port = ntohl(naa->id);
4427     struct ofport_dpif *port = get_ofp_port(ctx->ofproto, ofp_port);
4428
4429     if (!port || !port->bundle) {
4430         ofp_port = OFPP_NONE;
4431     } else if (port->bundle->bond) {
4432         /* Autopath does not support VLAN hashing. */
4433         struct ofport_dpif *slave = bond_choose_output_slave(
4434             port->bundle->bond, &ctx->flow, 0, &ctx->tags);
4435         if (slave) {
4436             ofp_port = slave->up.ofp_port;
4437         }
4438     }
4439     autopath_execute(naa, &ctx->flow, ofp_port);
4440 }
4441
4442 static bool
4443 slave_enabled_cb(uint16_t ofp_port, void *ofproto_)
4444 {
4445     struct ofproto_dpif *ofproto = ofproto_;
4446     struct ofport_dpif *port;
4447
4448     switch (ofp_port) {
4449     case OFPP_IN_PORT:
4450     case OFPP_TABLE:
4451     case OFPP_NORMAL:
4452     case OFPP_FLOOD:
4453     case OFPP_ALL:
4454     case OFPP_NONE:
4455         return true;
4456     case OFPP_CONTROLLER: /* Not supported by the bundle action. */
4457         return false;
4458     default:
4459         port = get_ofp_port(ofproto, ofp_port);
4460         return port ? port->may_enable : false;
4461     }
4462 }
4463
4464 static void
4465 xlate_learn_action(struct action_xlate_ctx *ctx,
4466                    const struct nx_action_learn *learn)
4467 {
4468     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
4469     struct ofputil_flow_mod fm;
4470     int error;
4471
4472     learn_execute(learn, &ctx->flow, &fm);
4473
4474     error = ofproto_flow_mod(&ctx->ofproto->up, &fm);
4475     if (error && !VLOG_DROP_WARN(&rl)) {
4476         char *msg = ofputil_error_to_string(error);
4477         VLOG_WARN("learning action failed to modify flow table (%s)", msg);
4478         free(msg);
4479     }
4480
4481     free(fm.actions);
4482 }
4483
4484 static bool
4485 may_receive(const struct ofport_dpif *port, struct action_xlate_ctx *ctx)
4486 {
4487     if (port->up.opp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
4488                                ? htonl(OFPPC_NO_RECV_STP)
4489                                : htonl(OFPPC_NO_RECV))) {
4490         return false;
4491     }
4492
4493     /* Only drop packets here if both forwarding and learning are
4494      * disabled.  If just learning is enabled, we need to have
4495      * OFPP_NORMAL and the learning action have a look at the packet
4496      * before we can drop it. */
4497     if (!stp_forward_in_state(port->stp_state)
4498             && !stp_learn_in_state(port->stp_state)) {
4499         return false;
4500     }
4501
4502     return true;
4503 }
4504
4505 static void
4506 do_xlate_actions(const union ofp_action *in, size_t n_in,
4507                  struct action_xlate_ctx *ctx)
4508 {
4509     const struct ofport_dpif *port;
4510     const union ofp_action *ia;
4511     size_t left;
4512
4513     port = get_ofp_port(ctx->ofproto, ctx->flow.in_port);
4514     if (port && !may_receive(port, ctx)) {
4515         /* Drop this flow. */
4516         return;
4517     }
4518
4519     OFPUTIL_ACTION_FOR_EACH_UNSAFE (ia, left, in, n_in) {
4520         const struct ofp_action_dl_addr *oada;
4521         const struct nx_action_resubmit *nar;
4522         const struct nx_action_set_tunnel *nast;
4523         const struct nx_action_set_queue *nasq;
4524         const struct nx_action_multipath *nam;
4525         const struct nx_action_autopath *naa;
4526         const struct nx_action_bundle *nab;
4527         const struct nx_action_output_reg *naor;
4528         enum ofputil_action_code code;
4529         ovs_be64 tun_id;
4530
4531         if (ctx->exit) {
4532             break;
4533         }
4534
4535         code = ofputil_decode_action_unsafe(ia);
4536         switch (code) {
4537         case OFPUTIL_OFPAT_OUTPUT:
4538             xlate_output_action(ctx, &ia->output);
4539             break;
4540
4541         case OFPUTIL_OFPAT_SET_VLAN_VID:
4542             ctx->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
4543             ctx->flow.vlan_tci |= ia->vlan_vid.vlan_vid | htons(VLAN_CFI);
4544             break;
4545
4546         case OFPUTIL_OFPAT_SET_VLAN_PCP:
4547             ctx->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
4548             ctx->flow.vlan_tci |= htons(
4549                 (ia->vlan_pcp.vlan_pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
4550             break;
4551
4552         case OFPUTIL_OFPAT_STRIP_VLAN:
4553             ctx->flow.vlan_tci = htons(0);
4554             break;
4555
4556         case OFPUTIL_OFPAT_SET_DL_SRC:
4557             oada = ((struct ofp_action_dl_addr *) ia);
4558             memcpy(ctx->flow.dl_src, oada->dl_addr, ETH_ADDR_LEN);
4559             break;
4560
4561         case OFPUTIL_OFPAT_SET_DL_DST:
4562             oada = ((struct ofp_action_dl_addr *) ia);
4563             memcpy(ctx->flow.dl_dst, oada->dl_addr, ETH_ADDR_LEN);
4564             break;
4565
4566         case OFPUTIL_OFPAT_SET_NW_SRC:
4567             ctx->flow.nw_src = ia->nw_addr.nw_addr;
4568             break;
4569
4570         case OFPUTIL_OFPAT_SET_NW_DST:
4571             ctx->flow.nw_dst = ia->nw_addr.nw_addr;
4572             break;
4573
4574         case OFPUTIL_OFPAT_SET_NW_TOS:
4575             ctx->flow.nw_tos &= ~IP_DSCP_MASK;
4576             ctx->flow.nw_tos |= ia->nw_tos.nw_tos & IP_DSCP_MASK;
4577             break;
4578
4579         case OFPUTIL_OFPAT_SET_TP_SRC:
4580             ctx->flow.tp_src = ia->tp_port.tp_port;
4581             break;
4582
4583         case OFPUTIL_OFPAT_SET_TP_DST:
4584             ctx->flow.tp_dst = ia->tp_port.tp_port;
4585             break;
4586
4587         case OFPUTIL_OFPAT_ENQUEUE:
4588             xlate_enqueue_action(ctx, (const struct ofp_action_enqueue *) ia);
4589             break;
4590
4591         case OFPUTIL_NXAST_RESUBMIT:
4592             nar = (const struct nx_action_resubmit *) ia;
4593             xlate_table_action(ctx, ntohs(nar->in_port), ctx->table_id);
4594             break;
4595
4596         case OFPUTIL_NXAST_RESUBMIT_TABLE:
4597             xlate_resubmit_table(ctx, (const struct nx_action_resubmit *) ia);
4598             break;
4599
4600         case OFPUTIL_NXAST_SET_TUNNEL:
4601             nast = (const struct nx_action_set_tunnel *) ia;
4602             tun_id = htonll(ntohl(nast->tun_id));
4603             ctx->flow.tun_id = tun_id;
4604             break;
4605
4606         case OFPUTIL_NXAST_SET_QUEUE:
4607             nasq = (const struct nx_action_set_queue *) ia;
4608             xlate_set_queue_action(ctx, nasq);
4609             break;
4610
4611         case OFPUTIL_NXAST_POP_QUEUE:
4612             ctx->flow.priority = ctx->original_priority;
4613             break;
4614
4615         case OFPUTIL_NXAST_REG_MOVE:
4616             nxm_execute_reg_move((const struct nx_action_reg_move *) ia,
4617                                  &ctx->flow);
4618             break;
4619
4620         case OFPUTIL_NXAST_REG_LOAD:
4621             nxm_execute_reg_load((const struct nx_action_reg_load *) ia,
4622                                  &ctx->flow);
4623             break;
4624
4625         case OFPUTIL_NXAST_NOTE:
4626             /* Nothing to do. */
4627             break;
4628
4629         case OFPUTIL_NXAST_SET_TUNNEL64:
4630             tun_id = ((const struct nx_action_set_tunnel64 *) ia)->tun_id;
4631             ctx->flow.tun_id = tun_id;
4632             break;
4633
4634         case OFPUTIL_NXAST_MULTIPATH:
4635             nam = (const struct nx_action_multipath *) ia;
4636             multipath_execute(nam, &ctx->flow);
4637             break;
4638
4639         case OFPUTIL_NXAST_AUTOPATH:
4640             naa = (const struct nx_action_autopath *) ia;
4641             xlate_autopath(ctx, naa);
4642             break;
4643
4644         case OFPUTIL_NXAST_BUNDLE:
4645             ctx->ofproto->has_bundle_action = true;
4646             nab = (const struct nx_action_bundle *) ia;
4647             xlate_output_action__(ctx, bundle_execute(nab, &ctx->flow,
4648                                                       slave_enabled_cb,
4649                                                       ctx->ofproto), 0);
4650             break;
4651
4652         case OFPUTIL_NXAST_BUNDLE_LOAD:
4653             ctx->ofproto->has_bundle_action = true;
4654             nab = (const struct nx_action_bundle *) ia;
4655             bundle_execute_load(nab, &ctx->flow, slave_enabled_cb,
4656                                 ctx->ofproto);
4657             break;
4658
4659         case OFPUTIL_NXAST_OUTPUT_REG:
4660             naor = (const struct nx_action_output_reg *) ia;
4661             xlate_output_reg_action(ctx, naor);
4662             break;
4663
4664         case OFPUTIL_NXAST_LEARN:
4665             ctx->has_learn = true;
4666             if (ctx->may_learn) {
4667                 xlate_learn_action(ctx, (const struct nx_action_learn *) ia);
4668             }
4669             break;
4670
4671         case OFPUTIL_NXAST_EXIT:
4672             ctx->exit = true;
4673             break;
4674         }
4675     }
4676
4677     /* We've let OFPP_NORMAL and the learning action look at the packet,
4678      * so drop it now if forwarding is disabled. */
4679     if (port && !stp_forward_in_state(port->stp_state)) {
4680         ofpbuf_clear(ctx->odp_actions);
4681         add_sflow_action(ctx);
4682     }
4683 }
4684
4685 static void
4686 action_xlate_ctx_init(struct action_xlate_ctx *ctx,
4687                       struct ofproto_dpif *ofproto, const struct flow *flow,
4688                       ovs_be16 initial_tci, const struct ofpbuf *packet)
4689 {
4690     ctx->ofproto = ofproto;
4691     ctx->flow = *flow;
4692     ctx->base_flow = ctx->flow;
4693     ctx->base_flow.tun_id = 0;
4694     ctx->base_flow.vlan_tci = initial_tci;
4695     ctx->packet = packet;
4696     ctx->may_learn = packet != NULL;
4697     ctx->resubmit_hook = NULL;
4698 }
4699
4700 static struct ofpbuf *
4701 xlate_actions(struct action_xlate_ctx *ctx,
4702               const union ofp_action *in, size_t n_in)
4703 {
4704     struct flow orig_flow = ctx->flow;
4705
4706     COVERAGE_INC(ofproto_dpif_xlate);
4707
4708     ctx->odp_actions = ofpbuf_new(512);
4709     ofpbuf_reserve(ctx->odp_actions, NL_A_U32_SIZE);
4710     ctx->tags = 0;
4711     ctx->may_set_up_flow = true;
4712     ctx->has_learn = false;
4713     ctx->has_normal = false;
4714     ctx->nf_output_iface = NF_OUT_DROP;
4715     ctx->mirrors = 0;
4716     ctx->recurse = 0;
4717     ctx->original_priority = ctx->flow.priority;
4718     ctx->table_id = 0;
4719     ctx->exit = false;
4720
4721     if (ctx->flow.nw_frag & FLOW_NW_FRAG_ANY) {
4722         switch (ctx->ofproto->up.frag_handling) {
4723         case OFPC_FRAG_NORMAL:
4724             /* We must pretend that transport ports are unavailable. */
4725             ctx->flow.tp_src = ctx->base_flow.tp_src = htons(0);
4726             ctx->flow.tp_dst = ctx->base_flow.tp_dst = htons(0);
4727             break;
4728
4729         case OFPC_FRAG_DROP:
4730             return ctx->odp_actions;
4731
4732         case OFPC_FRAG_REASM:
4733             NOT_REACHED();
4734
4735         case OFPC_FRAG_NX_MATCH:
4736             /* Nothing to do. */
4737             break;
4738         }
4739     }
4740
4741     if (process_special(ctx->ofproto, &ctx->flow, ctx->packet)) {
4742         ctx->may_set_up_flow = false;
4743         return ctx->odp_actions;
4744     } else {
4745         add_sflow_action(ctx);
4746         do_xlate_actions(in, n_in, ctx);
4747
4748         if (!connmgr_may_set_up_flow(ctx->ofproto->up.connmgr, &ctx->flow,
4749                                      ctx->odp_actions->data,
4750                                      ctx->odp_actions->size)) {
4751             ctx->may_set_up_flow = false;
4752             if (ctx->packet
4753                 && connmgr_msg_in_hook(ctx->ofproto->up.connmgr, &ctx->flow,
4754                                        ctx->packet)) {
4755                 compose_output_action(ctx, OFPP_LOCAL);
4756             }
4757         }
4758         add_mirror_actions(ctx, &orig_flow);
4759         fix_sflow_action(ctx);
4760     }
4761
4762     return ctx->odp_actions;
4763 }
4764 \f
4765 /* OFPP_NORMAL implementation. */
4766
4767 static struct ofport_dpif *ofbundle_get_a_port(const struct ofbundle *);
4768
4769 /* Given 'vid', the VID obtained from the 802.1Q header that was received as
4770  * part of a packet (specify 0 if there was no 802.1Q header), and 'in_bundle',
4771  * the bundle on which the packet was received, returns the VLAN to which the
4772  * packet belongs.
4773  *
4774  * Both 'vid' and the return value are in the range 0...4095. */
4775 static uint16_t
4776 input_vid_to_vlan(const struct ofbundle *in_bundle, uint16_t vid)
4777 {
4778     switch (in_bundle->vlan_mode) {
4779     case PORT_VLAN_ACCESS:
4780         return in_bundle->vlan;
4781         break;
4782
4783     case PORT_VLAN_TRUNK:
4784         return vid;
4785
4786     case PORT_VLAN_NATIVE_UNTAGGED:
4787     case PORT_VLAN_NATIVE_TAGGED:
4788         return vid ? vid : in_bundle->vlan;
4789
4790     default:
4791         NOT_REACHED();
4792     }
4793 }
4794
4795 /* Checks whether a packet with the given 'vid' may ingress on 'in_bundle'.
4796  * If so, returns true.  Otherwise, returns false and, if 'warn' is true, logs
4797  * a warning.
4798  *
4799  * 'vid' should be the VID obtained from the 802.1Q header that was received as
4800  * part of a packet (specify 0 if there was no 802.1Q header), in the range
4801  * 0...4095. */
4802 static bool
4803 input_vid_is_valid(uint16_t vid, struct ofbundle *in_bundle, bool warn)
4804 {
4805     /* Allow any VID on the OFPP_NONE port. */
4806     if (in_bundle == &ofpp_none_bundle) {
4807         return true;
4808     }
4809
4810     switch (in_bundle->vlan_mode) {
4811     case PORT_VLAN_ACCESS:
4812         if (vid) {
4813             if (warn) {
4814                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4815                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
4816                              "packet received on port %s configured as VLAN "
4817                              "%"PRIu16" access port",
4818                              in_bundle->ofproto->up.name, vid,
4819                              in_bundle->name, in_bundle->vlan);
4820             }
4821             return false;
4822         }
4823         return true;
4824
4825     case PORT_VLAN_NATIVE_UNTAGGED:
4826     case PORT_VLAN_NATIVE_TAGGED:
4827         if (!vid) {
4828             /* Port must always carry its native VLAN. */
4829             return true;
4830         }
4831         /* Fall through. */
4832     case PORT_VLAN_TRUNK:
4833         if (!ofbundle_includes_vlan(in_bundle, vid)) {
4834             if (warn) {
4835                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4836                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" packet "
4837                              "received on port %s not configured for trunking "
4838                              "VLAN %"PRIu16,
4839                              in_bundle->ofproto->up.name, vid,
4840                              in_bundle->name, vid);
4841             }
4842             return false;
4843         }
4844         return true;
4845
4846     default:
4847         NOT_REACHED();
4848     }
4849
4850 }
4851
4852 /* Given 'vlan', the VLAN that a packet belongs to, and
4853  * 'out_bundle', a bundle on which the packet is to be output, returns the VID
4854  * that should be included in the 802.1Q header.  (If the return value is 0,
4855  * then the 802.1Q header should only be included in the packet if there is a
4856  * nonzero PCP.)
4857  *
4858  * Both 'vlan' and the return value are in the range 0...4095. */
4859 static uint16_t
4860 output_vlan_to_vid(const struct ofbundle *out_bundle, uint16_t vlan)
4861 {
4862     switch (out_bundle->vlan_mode) {
4863     case PORT_VLAN_ACCESS:
4864         return 0;
4865
4866     case PORT_VLAN_TRUNK:
4867     case PORT_VLAN_NATIVE_TAGGED:
4868         return vlan;
4869
4870     case PORT_VLAN_NATIVE_UNTAGGED:
4871         return vlan == out_bundle->vlan ? 0 : vlan;
4872
4873     default:
4874         NOT_REACHED();
4875     }
4876 }
4877
4878 static void
4879 output_normal(struct action_xlate_ctx *ctx, const struct ofbundle *out_bundle,
4880               uint16_t vlan)
4881 {
4882     struct ofport_dpif *port;
4883     uint16_t vid;
4884     ovs_be16 tci, old_tci;
4885
4886     vid = output_vlan_to_vid(out_bundle, vlan);
4887     if (!out_bundle->bond) {
4888         port = ofbundle_get_a_port(out_bundle);
4889     } else {
4890         port = bond_choose_output_slave(out_bundle->bond, &ctx->flow,
4891                                         vid, &ctx->tags);
4892         if (!port) {
4893             /* No slaves enabled, so drop packet. */
4894             return;
4895         }
4896     }
4897
4898     old_tci = ctx->flow.vlan_tci;
4899     tci = htons(vid);
4900     if (tci || out_bundle->use_priority_tags) {
4901         tci |= ctx->flow.vlan_tci & htons(VLAN_PCP_MASK);
4902         if (tci) {
4903             tci |= htons(VLAN_CFI);
4904         }
4905     }
4906     ctx->flow.vlan_tci = tci;
4907
4908     compose_output_action(ctx, port->up.ofp_port);
4909     ctx->flow.vlan_tci = old_tci;
4910 }
4911
4912 static int
4913 mirror_mask_ffs(mirror_mask_t mask)
4914 {
4915     BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
4916     return ffs(mask);
4917 }
4918
4919 static bool
4920 ofbundle_trunks_vlan(const struct ofbundle *bundle, uint16_t vlan)
4921 {
4922     return (bundle->vlan_mode != PORT_VLAN_ACCESS
4923             && (!bundle->trunks || bitmap_is_set(bundle->trunks, vlan)));
4924 }
4925
4926 static bool
4927 ofbundle_includes_vlan(const struct ofbundle *bundle, uint16_t vlan)
4928 {
4929     return vlan == bundle->vlan || ofbundle_trunks_vlan(bundle, vlan);
4930 }
4931
4932 /* Returns an arbitrary interface within 'bundle'. */
4933 static struct ofport_dpif *
4934 ofbundle_get_a_port(const struct ofbundle *bundle)
4935 {
4936     return CONTAINER_OF(list_front(&bundle->ports),
4937                         struct ofport_dpif, bundle_node);
4938 }
4939
4940 static bool
4941 vlan_is_mirrored(const struct ofmirror *m, int vlan)
4942 {
4943     return !m->vlans || bitmap_is_set(m->vlans, vlan);
4944 }
4945
4946 /* Returns true if a packet with Ethernet destination MAC 'dst' may be mirrored
4947  * to a VLAN.  In general most packets may be mirrored but we want to drop
4948  * protocols that may confuse switches. */
4949 static bool
4950 eth_dst_may_rspan(const uint8_t dst[ETH_ADDR_LEN])
4951 {
4952     /* If you change this function's behavior, please update corresponding
4953      * documentation in vswitch.xml at the same time. */
4954     if (dst[0] != 0x01) {
4955         /* All the currently banned MACs happen to start with 01 currently, so
4956          * this is a quick way to eliminate most of the good ones. */
4957     } else {
4958         if (eth_addr_is_reserved(dst)) {
4959             /* Drop STP, IEEE pause frames, and other reserved protocols
4960              * (01-80-c2-00-00-0x). */
4961             return false;
4962         }
4963
4964         if (dst[0] == 0x01 && dst[1] == 0x00 && dst[2] == 0x0c) {
4965             /* Cisco OUI. */
4966             if ((dst[3] & 0xfe) == 0xcc &&
4967                 (dst[4] & 0xfe) == 0xcc &&
4968                 (dst[5] & 0xfe) == 0xcc) {
4969                 /* Drop the following protocols plus others following the same
4970                    pattern:
4971
4972                    CDP, VTP, DTP, PAgP  (01-00-0c-cc-cc-cc)
4973                    Spanning Tree PVSTP+ (01-00-0c-cc-cc-cd)
4974                    STP Uplink Fast      (01-00-0c-cd-cd-cd) */
4975                 return false;
4976             }
4977
4978             if (!(dst[3] | dst[4] | dst[5])) {
4979                 /* Drop Inter Switch Link packets (01-00-0c-00-00-00). */
4980                 return false;
4981             }
4982         }
4983     }
4984     return true;
4985 }
4986
4987 static void
4988 add_mirror_actions(struct action_xlate_ctx *ctx, const struct flow *orig_flow)
4989 {
4990     struct ofproto_dpif *ofproto = ctx->ofproto;
4991     mirror_mask_t mirrors;
4992     struct ofbundle *in_bundle;
4993     uint16_t vlan;
4994     uint16_t vid;
4995     const struct nlattr *a;
4996     size_t left;
4997
4998     in_bundle = lookup_input_bundle(ctx->ofproto, orig_flow->in_port,
4999                                     ctx->packet != NULL);
5000     if (!in_bundle) {
5001         return;
5002     }
5003     mirrors = in_bundle->src_mirrors;
5004
5005     /* Drop frames on bundles reserved for mirroring. */
5006     if (in_bundle->mirror_out) {
5007         if (ctx->packet != NULL) {
5008             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
5009             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
5010                          "%s, which is reserved exclusively for mirroring",
5011                          ctx->ofproto->up.name, in_bundle->name);
5012         }
5013         return;
5014     }
5015
5016     /* Check VLAN. */
5017     vid = vlan_tci_to_vid(orig_flow->vlan_tci);
5018     if (!input_vid_is_valid(vid, in_bundle, ctx->packet != NULL)) {
5019         return;
5020     }
5021     vlan = input_vid_to_vlan(in_bundle, vid);
5022
5023     /* Look at the output ports to check for destination selections. */
5024
5025     NL_ATTR_FOR_EACH (a, left, ctx->odp_actions->data,
5026                       ctx->odp_actions->size) {
5027         enum ovs_action_attr type = nl_attr_type(a);
5028         struct ofport_dpif *ofport;
5029
5030         if (type != OVS_ACTION_ATTR_OUTPUT) {
5031             continue;
5032         }
5033
5034         ofport = get_odp_port(ofproto, nl_attr_get_u32(a));
5035         if (ofport && ofport->bundle) {
5036             mirrors |= ofport->bundle->dst_mirrors;
5037         }
5038     }
5039
5040     if (!mirrors) {
5041         return;
5042     }
5043
5044     /* Restore the original packet before adding the mirror actions. */
5045     ctx->flow = *orig_flow;
5046
5047     while (mirrors) {
5048         struct ofmirror *m;
5049
5050         m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
5051
5052         if (!vlan_is_mirrored(m, vlan)) {
5053             mirrors &= mirrors - 1;
5054             continue;
5055         }
5056
5057         mirrors &= ~m->dup_mirrors;
5058         ctx->mirrors |= m->dup_mirrors;
5059         if (m->out) {
5060             output_normal(ctx, m->out, vlan);
5061         } else if (eth_dst_may_rspan(orig_flow->dl_dst)
5062                    && vlan != m->out_vlan) {
5063             struct ofbundle *bundle;
5064
5065             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
5066                 if (ofbundle_includes_vlan(bundle, m->out_vlan)
5067                     && !bundle->mirror_out) {
5068                     output_normal(ctx, bundle, m->out_vlan);
5069                 }
5070             }
5071         }
5072     }
5073 }
5074
5075 static void
5076 update_mirror_stats(struct ofproto_dpif *ofproto, mirror_mask_t mirrors,
5077                     uint64_t packets, uint64_t bytes)
5078 {
5079     if (!mirrors) {
5080         return;
5081     }
5082
5083     for (; mirrors; mirrors &= mirrors - 1) {
5084         struct ofmirror *m;
5085
5086         m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
5087
5088         if (!m) {
5089             /* In normal circumstances 'm' will not be NULL.  However,
5090              * if mirrors are reconfigured, we can temporarily get out
5091              * of sync in facet_revalidate().  We could "correct" the
5092              * mirror list before reaching here, but doing that would
5093              * not properly account the traffic stats we've currently
5094              * accumulated for previous mirror configuration. */
5095             continue;
5096         }
5097
5098         m->packet_count += packets;
5099         m->byte_count += bytes;
5100     }
5101 }
5102
5103 /* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
5104  * migration.  Older Citrix-patched Linux DomU used gratuitous ARP replies to
5105  * indicate this; newer upstream kernels use gratuitous ARP requests. */
5106 static bool
5107 is_gratuitous_arp(const struct flow *flow)
5108 {
5109     return (flow->dl_type == htons(ETH_TYPE_ARP)
5110             && eth_addr_is_broadcast(flow->dl_dst)
5111             && (flow->nw_proto == ARP_OP_REPLY
5112                 || (flow->nw_proto == ARP_OP_REQUEST
5113                     && flow->nw_src == flow->nw_dst)));
5114 }
5115
5116 static void
5117 update_learning_table(struct ofproto_dpif *ofproto,
5118                       const struct flow *flow, int vlan,
5119                       struct ofbundle *in_bundle)
5120 {
5121     struct mac_entry *mac;
5122
5123     /* Don't learn the OFPP_NONE port. */
5124     if (in_bundle == &ofpp_none_bundle) {
5125         return;
5126     }
5127
5128     if (!mac_learning_may_learn(ofproto->ml, flow->dl_src, vlan)) {
5129         return;
5130     }
5131
5132     mac = mac_learning_insert(ofproto->ml, flow->dl_src, vlan);
5133     if (is_gratuitous_arp(flow)) {
5134         /* We don't want to learn from gratuitous ARP packets that are
5135          * reflected back over bond slaves so we lock the learning table. */
5136         if (!in_bundle->bond) {
5137             mac_entry_set_grat_arp_lock(mac);
5138         } else if (mac_entry_is_grat_arp_locked(mac)) {
5139             return;
5140         }
5141     }
5142
5143     if (mac_entry_is_new(mac) || mac->port.p != in_bundle) {
5144         /* The log messages here could actually be useful in debugging,
5145          * so keep the rate limit relatively high. */
5146         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
5147         VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
5148                     "on port %s in VLAN %d",
5149                     ofproto->up.name, ETH_ADDR_ARGS(flow->dl_src),
5150                     in_bundle->name, vlan);
5151
5152         mac->port.p = in_bundle;
5153         tag_set_add(&ofproto->revalidate_set,
5154                     mac_learning_changed(ofproto->ml, mac));
5155     }
5156 }
5157
5158 static struct ofbundle *
5159 lookup_input_bundle(struct ofproto_dpif *ofproto, uint16_t in_port, bool warn)
5160 {
5161     struct ofport_dpif *ofport;
5162
5163     /* Special-case OFPP_NONE, which a controller may use as the ingress
5164      * port for traffic that it is sourcing. */
5165     if (in_port == OFPP_NONE) {
5166         return &ofpp_none_bundle;
5167     }
5168
5169     /* Find the port and bundle for the received packet. */
5170     ofport = get_ofp_port(ofproto, in_port);
5171     if (ofport && ofport->bundle) {
5172         return ofport->bundle;
5173     }
5174
5175     /* Odd.  A few possible reasons here:
5176      *
5177      * - We deleted a port but there are still a few packets queued up
5178      *   from it.
5179      *
5180      * - Someone externally added a port (e.g. "ovs-dpctl add-if") that
5181      *   we don't know about.
5182      *
5183      * - The ofproto client didn't configure the port as part of a bundle.
5184      */
5185     if (warn) {
5186         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
5187
5188         VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
5189                      "port %"PRIu16, ofproto->up.name, in_port);
5190     }
5191     return NULL;
5192 }
5193
5194 /* Determines whether packets in 'flow' within 'ofproto' should be forwarded or
5195  * dropped.  Returns true if they may be forwarded, false if they should be
5196  * dropped.
5197  *
5198  * 'in_port' must be the ofport_dpif that corresponds to flow->in_port.
5199  * 'in_port' must be part of a bundle (e.g. in_port->bundle must be nonnull).
5200  *
5201  * 'vlan' must be the VLAN that corresponds to flow->vlan_tci on 'in_port', as
5202  * returned by input_vid_to_vlan().  It must be a valid VLAN for 'in_port', as
5203  * checked by input_vid_is_valid().
5204  *
5205  * May also add tags to '*tags', although the current implementation only does
5206  * so in one special case.
5207  */
5208 static bool
5209 is_admissible(struct ofproto_dpif *ofproto, const struct flow *flow,
5210               struct ofport_dpif *in_port, uint16_t vlan, tag_type *tags)
5211 {
5212     struct ofbundle *in_bundle = in_port->bundle;
5213
5214     /* Drop frames for reserved multicast addresses
5215      * only if forward_bpdu option is absent. */
5216     if (eth_addr_is_reserved(flow->dl_dst) && !ofproto->up.forward_bpdu) {
5217         return false;
5218     }
5219
5220     if (in_bundle->bond) {
5221         struct mac_entry *mac;
5222
5223         switch (bond_check_admissibility(in_bundle->bond, in_port,
5224                                          flow->dl_dst, tags)) {
5225         case BV_ACCEPT:
5226             break;
5227
5228         case BV_DROP:
5229             return false;
5230
5231         case BV_DROP_IF_MOVED:
5232             mac = mac_learning_lookup(ofproto->ml, flow->dl_src, vlan, NULL);
5233             if (mac && mac->port.p != in_bundle &&
5234                 (!is_gratuitous_arp(flow)
5235                  || mac_entry_is_grat_arp_locked(mac))) {
5236                 return false;
5237             }
5238             break;
5239         }
5240     }
5241
5242     return true;
5243 }
5244
5245 static void
5246 xlate_normal(struct action_xlate_ctx *ctx)
5247 {
5248     struct ofport_dpif *in_port;
5249     struct ofbundle *in_bundle;
5250     struct mac_entry *mac;
5251     uint16_t vlan;
5252     uint16_t vid;
5253
5254     ctx->has_normal = true;
5255
5256     in_bundle = lookup_input_bundle(ctx->ofproto, ctx->flow.in_port,
5257                                   ctx->packet != NULL);
5258     if (!in_bundle) {
5259         return;
5260     }
5261
5262     /* We know 'in_port' exists unless it is "ofpp_none_bundle",
5263      * since lookup_input_bundle() succeeded. */
5264     in_port = get_ofp_port(ctx->ofproto, ctx->flow.in_port);
5265
5266     /* Drop malformed frames. */
5267     if (ctx->flow.dl_type == htons(ETH_TYPE_VLAN) &&
5268         !(ctx->flow.vlan_tci & htons(VLAN_CFI))) {
5269         if (ctx->packet != NULL) {
5270             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
5271             VLOG_WARN_RL(&rl, "bridge %s: dropping packet with partial "
5272                          "VLAN tag received on port %s",
5273                          ctx->ofproto->up.name, in_bundle->name);
5274         }
5275         return;
5276     }
5277
5278     /* Drop frames on bundles reserved for mirroring. */
5279     if (in_bundle->mirror_out) {
5280         if (ctx->packet != NULL) {
5281             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
5282             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
5283                          "%s, which is reserved exclusively for mirroring",
5284                          ctx->ofproto->up.name, in_bundle->name);
5285         }
5286         return;
5287     }
5288
5289     /* Check VLAN. */
5290     vid = vlan_tci_to_vid(ctx->flow.vlan_tci);
5291     if (!input_vid_is_valid(vid, in_bundle, ctx->packet != NULL)) {
5292         return;
5293     }
5294     vlan = input_vid_to_vlan(in_bundle, vid);
5295
5296     /* Check other admissibility requirements. */
5297     if (in_port &&
5298          !is_admissible(ctx->ofproto, &ctx->flow, in_port, vlan, &ctx->tags)) {
5299         return;
5300     }
5301
5302     /* Learn source MAC. */
5303     if (ctx->may_learn) {
5304         update_learning_table(ctx->ofproto, &ctx->flow, vlan, in_bundle);
5305     }
5306
5307     /* Determine output bundle. */
5308     mac = mac_learning_lookup(ctx->ofproto->ml, ctx->flow.dl_dst, vlan,
5309                               &ctx->tags);
5310     if (mac) {
5311         if (mac->port.p != in_bundle) {
5312             output_normal(ctx, mac->port.p, vlan);
5313         }
5314     } else if (!ctx->packet && !eth_addr_is_multicast(ctx->flow.dl_dst)) {
5315         /* If we are revalidating but don't have a learning entry then eject
5316          * the flow.  Installing a flow that floods packets opens up a window
5317          * of time where we could learn from a packet reflected on a bond and
5318          * blackhole packets before the learning table is updated to reflect
5319          * the correct port. */
5320         ctx->may_set_up_flow = false;
5321         return;
5322     } else {
5323         struct ofbundle *bundle;
5324
5325         HMAP_FOR_EACH (bundle, hmap_node, &ctx->ofproto->bundles) {
5326             if (bundle != in_bundle
5327                 && ofbundle_includes_vlan(bundle, vlan)
5328                 && bundle->floodable
5329                 && !bundle->mirror_out) {
5330                 output_normal(ctx, bundle, vlan);
5331             }
5332         }
5333         ctx->nf_output_iface = NF_OUT_FLOOD;
5334     }
5335 }
5336 \f
5337 /* Optimized flow revalidation.
5338  *
5339  * It's a difficult problem, in general, to tell which facets need to have
5340  * their actions recalculated whenever the OpenFlow flow table changes.  We
5341  * don't try to solve that general problem: for most kinds of OpenFlow flow
5342  * table changes, we recalculate the actions for every facet.  This is
5343  * relatively expensive, but it's good enough if the OpenFlow flow table
5344  * doesn't change very often.
5345  *
5346  * However, we can expect one particular kind of OpenFlow flow table change to
5347  * happen frequently: changes caused by MAC learning.  To avoid wasting a lot
5348  * of CPU on revalidating every facet whenever MAC learning modifies the flow
5349  * table, we add a special case that applies to flow tables in which every rule
5350  * has the same form (that is, the same wildcards), except that the table is
5351  * also allowed to have a single "catch-all" flow that matches all packets.  We
5352  * optimize this case by tagging all of the facets that resubmit into the table
5353  * and invalidating the same tag whenever a flow changes in that table.  The
5354  * end result is that we revalidate just the facets that need it (and sometimes
5355  * a few more, but not all of the facets or even all of the facets that
5356  * resubmit to the table modified by MAC learning). */
5357
5358 /* Calculates the tag to use for 'flow' and wildcards 'wc' when it is inserted
5359  * into an OpenFlow table with the given 'basis'. */
5360 static uint32_t
5361 rule_calculate_tag(const struct flow *flow, const struct flow_wildcards *wc,
5362                    uint32_t secret)
5363 {
5364     if (flow_wildcards_is_catchall(wc)) {
5365         return 0;
5366     } else {
5367         struct flow tag_flow = *flow;
5368         flow_zero_wildcards(&tag_flow, wc);
5369         return tag_create_deterministic(flow_hash(&tag_flow, secret));
5370     }
5371 }
5372
5373 /* Following a change to OpenFlow table 'table_id' in 'ofproto', update the
5374  * taggability of that table.
5375  *
5376  * This function must be called after *each* change to a flow table.  If you
5377  * skip calling it on some changes then the pointer comparisons at the end can
5378  * be invalid if you get unlucky.  For example, if a flow removal causes a
5379  * cls_table to be destroyed and then a flow insertion causes a cls_table with
5380  * different wildcards to be created with the same address, then this function
5381  * will incorrectly skip revalidation. */
5382 static void
5383 table_update_taggable(struct ofproto_dpif *ofproto, uint8_t table_id)
5384 {
5385     struct table_dpif *table = &ofproto->tables[table_id];
5386     const struct classifier *cls = &ofproto->up.tables[table_id];
5387     struct cls_table *catchall, *other;
5388     struct cls_table *t;
5389
5390     catchall = other = NULL;
5391
5392     switch (hmap_count(&cls->tables)) {
5393     case 0:
5394         /* We could tag this OpenFlow table but it would make the logic a
5395          * little harder and it's a corner case that doesn't seem worth it
5396          * yet. */
5397         break;
5398
5399     case 1:
5400     case 2:
5401         HMAP_FOR_EACH (t, hmap_node, &cls->tables) {
5402             if (cls_table_is_catchall(t)) {
5403                 catchall = t;
5404             } else if (!other) {
5405                 other = t;
5406             } else {
5407                 /* Indicate that we can't tag this by setting both tables to
5408                  * NULL.  (We know that 'catchall' is already NULL.) */
5409                 other = NULL;
5410             }
5411         }
5412         break;
5413
5414     default:
5415         /* Can't tag this table. */
5416         break;
5417     }
5418
5419     if (table->catchall_table != catchall || table->other_table != other) {
5420         table->catchall_table = catchall;
5421         table->other_table = other;
5422         ofproto->need_revalidate = true;
5423     }
5424 }
5425
5426 /* Given 'rule' that has changed in some way (either it is a rule being
5427  * inserted, a rule being deleted, or a rule whose actions are being
5428  * modified), marks facets for revalidation to ensure that packets will be
5429  * forwarded correctly according to the new state of the flow table.
5430  *
5431  * This function must be called after *each* change to a flow table.  See
5432  * the comment on table_update_taggable() for more information. */
5433 static void
5434 rule_invalidate(const struct rule_dpif *rule)
5435 {
5436     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5437
5438     table_update_taggable(ofproto, rule->up.table_id);
5439
5440     if (!ofproto->need_revalidate) {
5441         struct table_dpif *table = &ofproto->tables[rule->up.table_id];
5442
5443         if (table->other_table && rule->tag) {
5444             tag_set_add(&ofproto->revalidate_set, rule->tag);
5445         } else {
5446             ofproto->need_revalidate = true;
5447         }
5448     }
5449 }
5450 \f
5451 static bool
5452 set_frag_handling(struct ofproto *ofproto_,
5453                   enum ofp_config_flags frag_handling)
5454 {
5455     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5456
5457     if (frag_handling != OFPC_FRAG_REASM) {
5458         ofproto->need_revalidate = true;
5459         return true;
5460     } else {
5461         return false;
5462     }
5463 }
5464
5465 static int
5466 packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
5467            const struct flow *flow,
5468            const union ofp_action *ofp_actions, size_t n_ofp_actions)
5469 {
5470     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5471     int error;
5472
5473     if (flow->in_port >= ofproto->max_ports && flow->in_port < OFPP_MAX) {
5474         return ofp_mkerr_nicira(OFPET_BAD_REQUEST, NXBRC_BAD_IN_PORT);
5475     }
5476
5477     error = validate_actions(ofp_actions, n_ofp_actions, flow,
5478                              ofproto->max_ports);
5479     if (!error) {
5480         struct odputil_keybuf keybuf;
5481         struct action_xlate_ctx ctx;
5482         struct ofpbuf *odp_actions;
5483         struct ofpbuf key;
5484
5485         ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5486         odp_flow_key_from_flow(&key, flow);
5487
5488         action_xlate_ctx_init(&ctx, ofproto, flow, flow->vlan_tci, packet);
5489         odp_actions = xlate_actions(&ctx, ofp_actions, n_ofp_actions);
5490         dpif_execute(ofproto->dpif, key.data, key.size,
5491                      odp_actions->data, odp_actions->size, packet);
5492         ofpbuf_delete(odp_actions);
5493     }
5494     return error;
5495 }
5496 \f
5497 /* NetFlow. */
5498
5499 static int
5500 set_netflow(struct ofproto *ofproto_,
5501             const struct netflow_options *netflow_options)
5502 {
5503     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5504
5505     if (netflow_options) {
5506         if (!ofproto->netflow) {
5507             ofproto->netflow = netflow_create();
5508         }
5509         return netflow_set_options(ofproto->netflow, netflow_options);
5510     } else {
5511         netflow_destroy(ofproto->netflow);
5512         ofproto->netflow = NULL;
5513         return 0;
5514     }
5515 }
5516
5517 static void
5518 get_netflow_ids(const struct ofproto *ofproto_,
5519                 uint8_t *engine_type, uint8_t *engine_id)
5520 {
5521     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5522
5523     dpif_get_netflow_ids(ofproto->dpif, engine_type, engine_id);
5524 }
5525
5526 static void
5527 send_active_timeout(struct ofproto_dpif *ofproto, struct facet *facet)
5528 {
5529     if (!facet_is_controller_flow(facet) &&
5530         netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
5531         struct subfacet *subfacet;
5532         struct ofexpired expired;
5533
5534         LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5535             if (subfacet->installed) {
5536                 struct dpif_flow_stats stats;
5537
5538                 subfacet_install(ofproto, subfacet, subfacet->actions,
5539                                  subfacet->actions_len, &stats);
5540                 subfacet_update_stats(ofproto, subfacet, &stats);
5541             }
5542         }
5543
5544         expired.flow = facet->flow;
5545         expired.packet_count = facet->packet_count;
5546         expired.byte_count = facet->byte_count;
5547         expired.used = facet->used;
5548         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
5549     }
5550 }
5551
5552 static void
5553 send_netflow_active_timeouts(struct ofproto_dpif *ofproto)
5554 {
5555     struct facet *facet;
5556
5557     HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
5558         send_active_timeout(ofproto, facet);
5559     }
5560 }
5561 \f
5562 static struct ofproto_dpif *
5563 ofproto_dpif_lookup(const char *name)
5564 {
5565     struct ofproto_dpif *ofproto;
5566
5567     HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
5568                              hash_string(name, 0), &all_ofproto_dpifs) {
5569         if (!strcmp(ofproto->up.name, name)) {
5570             return ofproto;
5571         }
5572     }
5573     return NULL;
5574 }
5575
5576 static void
5577 ofproto_unixctl_fdb_flush(struct unixctl_conn *conn,
5578                          const char *args, void *aux OVS_UNUSED)
5579 {
5580     const struct ofproto_dpif *ofproto;
5581
5582     ofproto = ofproto_dpif_lookup(args);
5583     if (!ofproto) {
5584         unixctl_command_reply(conn, 501, "no such bridge");
5585         return;
5586     }
5587     mac_learning_flush(ofproto->ml);
5588
5589     unixctl_command_reply(conn, 200, "table successfully flushed");
5590 }
5591
5592 static void
5593 ofproto_unixctl_fdb_show(struct unixctl_conn *conn,
5594                          const char *args, void *aux OVS_UNUSED)
5595 {
5596     struct ds ds = DS_EMPTY_INITIALIZER;
5597     const struct ofproto_dpif *ofproto;
5598     const struct mac_entry *e;
5599
5600     ofproto = ofproto_dpif_lookup(args);
5601     if (!ofproto) {
5602         unixctl_command_reply(conn, 501, "no such bridge");
5603         return;
5604     }
5605
5606     ds_put_cstr(&ds, " port  VLAN  MAC                Age\n");
5607     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
5608         struct ofbundle *bundle = e->port.p;
5609         ds_put_format(&ds, "%5d  %4d  "ETH_ADDR_FMT"  %3d\n",
5610                       ofbundle_get_a_port(bundle)->odp_port,
5611                       e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
5612     }
5613     unixctl_command_reply(conn, 200, ds_cstr(&ds));
5614     ds_destroy(&ds);
5615 }
5616
5617 struct ofproto_trace {
5618     struct action_xlate_ctx ctx;
5619     struct flow flow;
5620     struct ds *result;
5621 };
5622
5623 static void
5624 trace_format_rule(struct ds *result, uint8_t table_id, int level,
5625                   const struct rule_dpif *rule)
5626 {
5627     ds_put_char_multiple(result, '\t', level);
5628     if (!rule) {
5629         ds_put_cstr(result, "No match\n");
5630         return;
5631     }
5632
5633     ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
5634                   table_id, ntohll(rule->up.flow_cookie));
5635     cls_rule_format(&rule->up.cr, result);
5636     ds_put_char(result, '\n');
5637
5638     ds_put_char_multiple(result, '\t', level);
5639     ds_put_cstr(result, "OpenFlow ");
5640     ofp_print_actions(result, rule->up.actions, rule->up.n_actions);
5641     ds_put_char(result, '\n');
5642 }
5643
5644 static void
5645 trace_format_flow(struct ds *result, int level, const char *title,
5646                  struct ofproto_trace *trace)
5647 {
5648     ds_put_char_multiple(result, '\t', level);
5649     ds_put_format(result, "%s: ", title);
5650     if (flow_equal(&trace->ctx.flow, &trace->flow)) {
5651         ds_put_cstr(result, "unchanged");
5652     } else {
5653         flow_format(result, &trace->ctx.flow);
5654         trace->flow = trace->ctx.flow;
5655     }
5656     ds_put_char(result, '\n');
5657 }
5658
5659 static void
5660 trace_format_regs(struct ds *result, int level, const char *title,
5661                   struct ofproto_trace *trace)
5662 {
5663     size_t i;
5664
5665     ds_put_char_multiple(result, '\t', level);
5666     ds_put_format(result, "%s:", title);
5667     for (i = 0; i < FLOW_N_REGS; i++) {
5668         ds_put_format(result, " reg%zu=0x%"PRIx32, i, trace->flow.regs[i]);
5669     }
5670     ds_put_char(result, '\n');
5671 }
5672
5673 static void
5674 trace_resubmit(struct action_xlate_ctx *ctx, struct rule_dpif *rule)
5675 {
5676     struct ofproto_trace *trace = CONTAINER_OF(ctx, struct ofproto_trace, ctx);
5677     struct ds *result = trace->result;
5678
5679     ds_put_char(result, '\n');
5680     trace_format_flow(result, ctx->recurse + 1, "Resubmitted flow", trace);
5681     trace_format_regs(result, ctx->recurse + 1, "Resubmitted regs", trace);
5682     trace_format_rule(result, ctx->table_id, ctx->recurse + 1, rule);
5683 }
5684
5685 static void
5686 ofproto_unixctl_trace(struct unixctl_conn *conn, const char *args_,
5687                       void *aux OVS_UNUSED)
5688 {
5689     char *dpname, *arg1, *arg2, *arg3, *arg4;
5690     char *args = xstrdup(args_);
5691     char *save_ptr = NULL;
5692     struct ofproto_dpif *ofproto;
5693     struct ofpbuf odp_key;
5694     struct ofpbuf *packet;
5695     struct rule_dpif *rule;
5696     ovs_be16 initial_tci;
5697     struct ds result;
5698     struct flow flow;
5699     char *s;
5700
5701     packet = NULL;
5702     ofpbuf_init(&odp_key, 0);
5703     ds_init(&result);
5704
5705     dpname = strtok_r(args, " ", &save_ptr);
5706     if (!dpname) {
5707         unixctl_command_reply(conn, 501, "Bad command syntax");
5708         goto exit;
5709     }
5710
5711     ofproto = ofproto_dpif_lookup(dpname);
5712     if (!ofproto) {
5713         unixctl_command_reply(conn, 501, "Unknown ofproto (use ofproto/list "
5714                               "for help)");
5715         goto exit;
5716     }
5717     arg1 = strtok_r(NULL, " ", &save_ptr);
5718     arg2 = strtok_r(NULL, " ", &save_ptr);
5719     arg3 = strtok_r(NULL, " ", &save_ptr);
5720     arg4 = strtok_r(NULL, "", &save_ptr); /* Get entire rest of line. */
5721     if (dpname && arg1 && (!arg2 || !strcmp(arg2, "-generate")) && !arg3) {
5722         /* ofproto/trace dpname flow [-generate] */
5723         int error;
5724
5725         /* Convert string to datapath key. */
5726         ofpbuf_init(&odp_key, 0);
5727         error = odp_flow_key_from_string(arg1, NULL, &odp_key);
5728         if (error) {
5729             unixctl_command_reply(conn, 501, "Bad flow syntax");
5730             goto exit;
5731         }
5732
5733         /* Convert odp_key to flow. */
5734         error = ofproto_dpif_extract_flow_key(ofproto, odp_key.data,
5735                                               odp_key.size, &flow,
5736                                               &initial_tci, NULL);
5737         if (error == ODP_FIT_ERROR) {
5738             unixctl_command_reply(conn, 501, "Invalid flow");
5739             goto exit;
5740         }
5741
5742         /* Generate a packet, if requested. */
5743         if (arg2) {
5744             packet = ofpbuf_new(0);
5745             flow_compose(packet, &flow);
5746         }
5747     } else if (dpname && arg1 && arg2 && arg3 && arg4) {
5748         /* ofproto/trace dpname priority tun_id in_port packet */
5749         uint16_t in_port;
5750         ovs_be64 tun_id;
5751         uint32_t priority;
5752
5753         priority = atoi(arg1);
5754         tun_id = htonll(strtoull(arg2, NULL, 0));
5755         in_port = ofp_port_to_odp_port(atoi(arg3));
5756
5757         packet = ofpbuf_new(strlen(args) / 2);
5758         arg4 = ofpbuf_put_hex(packet, arg4, NULL);
5759         arg4 += strspn(arg4, " ");
5760         if (*arg4 != '\0') {
5761             unixctl_command_reply(conn, 501, "Trailing garbage in command");
5762             goto exit;
5763         }
5764         if (packet->size < ETH_HEADER_LEN) {
5765             unixctl_command_reply(conn, 501,
5766                                   "Packet data too short for Ethernet");
5767             goto exit;
5768         }
5769
5770         ds_put_cstr(&result, "Packet: ");
5771         s = ofp_packet_to_string(packet->data, packet->size, packet->size);
5772         ds_put_cstr(&result, s);
5773         free(s);
5774
5775         flow_extract(packet, priority, tun_id, in_port, &flow);
5776         initial_tci = flow.vlan_tci;
5777     } else {
5778         unixctl_command_reply(conn, 501, "Bad command syntax");
5779         goto exit;
5780     }
5781
5782     ds_put_cstr(&result, "Flow: ");
5783     flow_format(&result, &flow);
5784     ds_put_char(&result, '\n');
5785
5786     rule = rule_dpif_lookup(ofproto, &flow, 0);
5787     trace_format_rule(&result, 0, 0, rule);
5788     if (rule) {
5789         struct ofproto_trace trace;
5790         struct ofpbuf *odp_actions;
5791
5792         trace.result = &result;
5793         trace.flow = flow;
5794         action_xlate_ctx_init(&trace.ctx, ofproto, &flow, initial_tci, packet);
5795         trace.ctx.resubmit_hook = trace_resubmit;
5796         odp_actions = xlate_actions(&trace.ctx,
5797                                     rule->up.actions, rule->up.n_actions);
5798
5799         ds_put_char(&result, '\n');
5800         trace_format_flow(&result, 0, "Final flow", &trace);
5801         ds_put_cstr(&result, "Datapath actions: ");
5802         format_odp_actions(&result, odp_actions->data, odp_actions->size);
5803         ofpbuf_delete(odp_actions);
5804
5805         if (!trace.ctx.may_set_up_flow) {
5806             if (packet) {
5807                 ds_put_cstr(&result, "\nThis flow is not cachable.");
5808             } else {
5809                 ds_put_cstr(&result, "\nThe datapath actions are incomplete--"
5810                             "for complete actions, please supply a packet.");
5811             }
5812         }
5813     }
5814
5815     unixctl_command_reply(conn, 200, ds_cstr(&result));
5816
5817 exit:
5818     ds_destroy(&result);
5819     ofpbuf_delete(packet);
5820     ofpbuf_uninit(&odp_key);
5821     free(args);
5822 }
5823
5824 static void
5825 ofproto_dpif_clog(struct unixctl_conn *conn OVS_UNUSED,
5826                   const char *args_ OVS_UNUSED, void *aux OVS_UNUSED)
5827 {
5828     clogged = true;
5829     unixctl_command_reply(conn, 200, NULL);
5830 }
5831
5832 static void
5833 ofproto_dpif_unclog(struct unixctl_conn *conn OVS_UNUSED,
5834                     const char *args_ OVS_UNUSED, void *aux OVS_UNUSED)
5835 {
5836     clogged = false;
5837     unixctl_command_reply(conn, 200, NULL);
5838 }
5839
5840 static void
5841 ofproto_dpif_unixctl_init(void)
5842 {
5843     static bool registered;
5844     if (registered) {
5845         return;
5846     }
5847     registered = true;
5848
5849     unixctl_command_register("ofproto/trace",
5850                       "bridge {tun_id in_port packet | odp_flow [-generate]}",
5851                       ofproto_unixctl_trace, NULL);
5852     unixctl_command_register("fdb/flush", "bridge", ofproto_unixctl_fdb_flush,
5853                              NULL);
5854     unixctl_command_register("fdb/show", "bridge", ofproto_unixctl_fdb_show,
5855                              NULL);
5856     unixctl_command_register("ofproto/clog", "", ofproto_dpif_clog, NULL);
5857     unixctl_command_register("ofproto/unclog", "", ofproto_dpif_unclog, NULL);
5858 }
5859 \f
5860 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
5861  *
5862  * This is deprecated.  It is only for compatibility with broken device drivers
5863  * in old versions of Linux that do not properly support VLANs when VLAN
5864  * devices are not used.  When broken device drivers are no longer in
5865  * widespread use, we will delete these interfaces. */
5866
5867 static int
5868 set_realdev(struct ofport *ofport_, uint16_t realdev_ofp_port, int vid)
5869 {
5870     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
5871     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
5872
5873     if (realdev_ofp_port == ofport->realdev_ofp_port
5874         && vid == ofport->vlandev_vid) {
5875         return 0;
5876     }
5877
5878     ofproto->need_revalidate = true;
5879
5880     if (ofport->realdev_ofp_port) {
5881         vsp_remove(ofport);
5882     }
5883     if (realdev_ofp_port && ofport->bundle) {
5884         /* vlandevs are enslaved to their realdevs, so they are not allowed to
5885          * themselves be part of a bundle. */
5886         bundle_set(ofport->up.ofproto, ofport->bundle, NULL);
5887     }
5888
5889     ofport->realdev_ofp_port = realdev_ofp_port;
5890     ofport->vlandev_vid = vid;
5891
5892     if (realdev_ofp_port) {
5893         vsp_add(ofport, realdev_ofp_port, vid);
5894     }
5895
5896     return 0;
5897 }
5898
5899 static uint32_t
5900 hash_realdev_vid(uint16_t realdev_ofp_port, int vid)
5901 {
5902     return hash_2words(realdev_ofp_port, vid);
5903 }
5904
5905 static uint32_t
5906 vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
5907                        uint32_t realdev_odp_port, ovs_be16 vlan_tci)
5908 {
5909     if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
5910         uint16_t realdev_ofp_port = odp_port_to_ofp_port(realdev_odp_port);
5911         int vid = vlan_tci_to_vid(vlan_tci);
5912         const struct vlan_splinter *vsp;
5913
5914         HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
5915                                  hash_realdev_vid(realdev_ofp_port, vid),
5916                                  &ofproto->realdev_vid_map) {
5917             if (vsp->realdev_ofp_port == realdev_ofp_port
5918                 && vsp->vid == vid) {
5919                 return ofp_port_to_odp_port(vsp->vlandev_ofp_port);
5920             }
5921         }
5922     }
5923     return realdev_odp_port;
5924 }
5925
5926 static struct vlan_splinter *
5927 vlandev_find(const struct ofproto_dpif *ofproto, uint16_t vlandev_ofp_port)
5928 {
5929     struct vlan_splinter *vsp;
5930
5931     HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node, hash_int(vlandev_ofp_port, 0),
5932                              &ofproto->vlandev_map) {
5933         if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
5934             return vsp;
5935         }
5936     }
5937
5938     return NULL;
5939 }
5940
5941 static uint16_t
5942 vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
5943                    uint16_t vlandev_ofp_port, int *vid)
5944 {
5945     if (!hmap_is_empty(&ofproto->vlandev_map)) {
5946         const struct vlan_splinter *vsp;
5947
5948         vsp = vlandev_find(ofproto, vlandev_ofp_port);
5949         if (vsp) {
5950             if (vid) {
5951                 *vid = vsp->vid;
5952             }
5953             return vsp->realdev_ofp_port;
5954         }
5955     }
5956     return 0;
5957 }
5958
5959 static void
5960 vsp_remove(struct ofport_dpif *port)
5961 {
5962     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
5963     struct vlan_splinter *vsp;
5964
5965     vsp = vlandev_find(ofproto, port->up.ofp_port);
5966     if (vsp) {
5967         hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
5968         hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
5969         free(vsp);
5970
5971         port->realdev_ofp_port = 0;
5972     } else {
5973         VLOG_ERR("missing vlan device record");
5974     }
5975 }
5976
5977 static void
5978 vsp_add(struct ofport_dpif *port, uint16_t realdev_ofp_port, int vid)
5979 {
5980     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
5981
5982     if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
5983         && (vsp_realdev_to_vlandev(ofproto, realdev_ofp_port, htons(vid))
5984             == realdev_ofp_port)) {
5985         struct vlan_splinter *vsp;
5986
5987         vsp = xmalloc(sizeof *vsp);
5988         hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
5989                     hash_int(port->up.ofp_port, 0));
5990         hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
5991                     hash_realdev_vid(realdev_ofp_port, vid));
5992         vsp->realdev_ofp_port = realdev_ofp_port;
5993         vsp->vlandev_ofp_port = port->up.ofp_port;
5994         vsp->vid = vid;
5995
5996         port->realdev_ofp_port = realdev_ofp_port;
5997     } else {
5998         VLOG_ERR("duplicate vlan device record");
5999     }
6000 }
6001 \f
6002 const struct ofproto_class ofproto_dpif_class = {
6003     enumerate_types,
6004     enumerate_names,
6005     del,
6006     alloc,
6007     construct,
6008     destruct,
6009     dealloc,
6010     run,
6011     run_fast,
6012     wait,
6013     flush,
6014     get_features,
6015     get_tables,
6016     port_alloc,
6017     port_construct,
6018     port_destruct,
6019     port_dealloc,
6020     port_modified,
6021     port_reconfigured,
6022     port_query_by_name,
6023     port_add,
6024     port_del,
6025     port_dump_start,
6026     port_dump_next,
6027     port_dump_done,
6028     port_poll,
6029     port_poll_wait,
6030     port_is_lacp_current,
6031     NULL,                       /* rule_choose_table */
6032     rule_alloc,
6033     rule_construct,
6034     rule_destruct,
6035     rule_dealloc,
6036     rule_get_stats,
6037     rule_execute,
6038     rule_modify_actions,
6039     set_frag_handling,
6040     packet_out,
6041     set_netflow,
6042     get_netflow_ids,
6043     set_sflow,
6044     set_cfm,
6045     get_cfm_fault,
6046     get_cfm_remote_mpids,
6047     set_stp,
6048     get_stp_status,
6049     set_stp_port,
6050     get_stp_port_status,
6051     set_queues,
6052     bundle_set,
6053     bundle_remove,
6054     mirror_set,
6055     mirror_get_stats,
6056     set_flood_vlans,
6057     is_mirror_output_bundle,
6058     forward_bpdu_changed,
6059     set_realdev,
6060 };