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