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