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