ofproto: Use OFPRR_GROUP_DELETE
[cascardo/ovs.git] / ofproto / ofproto.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
3  * Copyright (c) 2010 Jean Tourrilhes - HP-Labs.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <config.h>
19 #include "ofproto.h"
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <stdbool.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include "bitmap.h"
26 #include "byte-order.h"
27 #include "classifier.h"
28 #include "connectivity.h"
29 #include "connmgr.h"
30 #include "coverage.h"
31 #include "dynamic-string.h"
32 #include "hash.h"
33 #include "hmap.h"
34 #include "meta-flow.h"
35 #include "netdev.h"
36 #include "nx-match.h"
37 #include "ofp-actions.h"
38 #include "ofp-errors.h"
39 #include "ofp-msgs.h"
40 #include "ofp-print.h"
41 #include "ofp-util.h"
42 #include "ofpbuf.h"
43 #include "ofproto-provider.h"
44 #include "openflow/nicira-ext.h"
45 #include "openflow/openflow.h"
46 #include "ovs-rcu.h"
47 #include "packets.h"
48 #include "pinsched.h"
49 #include "pktbuf.h"
50 #include "poll-loop.h"
51 #include "random.h"
52 #include "seq.h"
53 #include "shash.h"
54 #include "simap.h"
55 #include "smap.h"
56 #include "sset.h"
57 #include "timeval.h"
58 #include "unaligned.h"
59 #include "unixctl.h"
60 #include "vlog.h"
61 #include "bundles.h"
62
63 VLOG_DEFINE_THIS_MODULE(ofproto);
64
65 COVERAGE_DEFINE(ofproto_flush);
66 COVERAGE_DEFINE(ofproto_packet_out);
67 COVERAGE_DEFINE(ofproto_queue_req);
68 COVERAGE_DEFINE(ofproto_recv_openflow);
69 COVERAGE_DEFINE(ofproto_reinit_ports);
70 COVERAGE_DEFINE(ofproto_update_port);
71
72 /* Default fields to use for prefix tries in each flow table, unless something
73  * else is configured. */
74 const enum mf_field_id default_prefix_fields[2] =
75     { MFF_IPV4_DST, MFF_IPV4_SRC };
76
77 enum ofproto_state {
78     S_OPENFLOW,                 /* Processing OpenFlow commands. */
79     S_EVICT,                    /* Evicting flows from over-limit tables. */
80     S_FLUSH,                    /* Deleting all flow table rules. */
81 };
82
83 enum ofoperation_type {
84     OFOPERATION_ADD,
85     OFOPERATION_DELETE,
86     OFOPERATION_MODIFY,
87     OFOPERATION_REPLACE
88 };
89
90 /* A single OpenFlow request can execute any number of operations.  The
91  * ofopgroup maintain OpenFlow state common to all of the operations, e.g. the
92  * ofconn to which an error reply should be sent if necessary.
93  *
94  * ofproto initiates some operations internally.  These operations are still
95  * assigned to groups but will not have an associated ofconn. */
96 struct ofopgroup {
97     struct ofproto *ofproto;    /* Owning ofproto. */
98     struct list ofproto_node;   /* In ofproto's "pending" list. */
99     struct list ops;            /* List of "struct ofoperation"s. */
100     int n_running;              /* Number of ops still pending. */
101
102     /* Data needed to send OpenFlow reply on failure or to send a buffered
103      * packet on success.
104      *
105      * If list_is_empty(ofconn_node) then this ofopgroup never had an
106      * associated ofconn or its ofconn's connection dropped after it initiated
107      * the operation.  In the latter case 'ofconn' is a wild pointer that
108      * refers to freed memory, so the 'ofconn' member must be used only if
109      * !list_is_empty(ofconn_node).
110      */
111     struct list ofconn_node;    /* In ofconn's list of pending opgroups. */
112     struct ofconn *ofconn;      /* ofconn for reply (but see note above). */
113     struct ofp_header *request; /* Original request (truncated at 64 bytes). */
114     uint32_t buffer_id;         /* Buffer id from original request. */
115 };
116
117 static struct ofopgroup *ofopgroup_create_unattached(struct ofproto *);
118 static struct ofopgroup *ofopgroup_create(struct ofproto *, struct ofconn *,
119                                           const struct ofp_header *,
120                                           uint32_t buffer_id);
121 static void ofopgroup_submit(struct ofopgroup *);
122 static void ofopgroup_complete(struct ofopgroup *);
123
124 /* A single flow table operation. */
125 struct ofoperation {
126     struct ofopgroup *group;    /* Owning group. */
127     struct list group_node;     /* In ofopgroup's "ops" list. */
128     struct hmap_node hmap_node; /* In ofproto's "deletions" hmap. */
129     struct rule *rule;          /* Rule being operated upon. */
130     enum ofoperation_type type; /* Type of operation. */
131
132     /* OFOPERATION_MODIFY, OFOPERATION_REPLACE: The old actions, if the actions
133      * are changing. */
134     const struct rule_actions *actions;
135
136     /* OFOPERATION_DELETE. */
137     enum ofp_flow_removed_reason reason; /* Reason flow was removed. */
138
139     ovs_be64 flow_cookie;               /* Rule's old flow cookie. */
140     uint16_t idle_timeout;              /* Rule's old idle timeout. */
141     uint16_t hard_timeout;              /* Rule's old hard timeout. */
142     enum ofputil_flow_mod_flags flags;  /* Rule's old flags. */
143     enum ofperr error;                  /* 0 if no error. */
144 };
145
146 static struct ofoperation *ofoperation_create(struct ofopgroup *,
147                                               struct rule *,
148                                               enum ofoperation_type,
149                                               enum ofp_flow_removed_reason);
150 static void ofoperation_destroy(struct ofoperation *);
151
152 /* oftable. */
153 static void oftable_init(struct oftable *);
154 static void oftable_destroy(struct oftable *);
155
156 static void oftable_set_name(struct oftable *, const char *name);
157
158 static void oftable_disable_eviction(struct oftable *);
159 static void oftable_enable_eviction(struct oftable *,
160                                     const struct mf_subfield *fields,
161                                     size_t n_fields);
162
163 static void oftable_remove_rule(struct rule *rule) OVS_REQUIRES(ofproto_mutex);
164 static void oftable_remove_rule__(struct ofproto *, struct rule *)
165     OVS_REQUIRES(ofproto_mutex);
166 static void oftable_insert_rule(struct rule *);
167
168 /* A set of rules within a single OpenFlow table (oftable) that have the same
169  * values for the oftable's eviction_fields.  A rule to be evicted, when one is
170  * needed, is taken from the eviction group that contains the greatest number
171  * of rules.
172  *
173  * An oftable owns any number of eviction groups, each of which contains any
174  * number of rules.
175  *
176  * Membership in an eviction group is imprecise, based on the hash of the
177  * oftable's eviction_fields (in the eviction_group's id_node.hash member).
178  * That is, if two rules have different eviction_fields, but those
179  * eviction_fields hash to the same value, then they will belong to the same
180  * eviction_group anyway.
181  *
182  * (When eviction is not enabled on an oftable, we don't track any eviction
183  * groups, to save time and space.) */
184 struct eviction_group {
185     struct hmap_node id_node;   /* In oftable's "eviction_groups_by_id". */
186     struct heap_node size_node; /* In oftable's "eviction_groups_by_size". */
187     struct heap rules;          /* Contains "struct rule"s. */
188 };
189
190 static bool choose_rule_to_evict(struct oftable *table, struct rule **rulep);
191 static void ofproto_evict(struct ofproto *) OVS_EXCLUDED(ofproto_mutex);
192 static uint32_t rule_eviction_priority(struct ofproto *ofproto, struct rule *);
193 static void eviction_group_add_rule(struct rule *);
194 static void eviction_group_remove_rule(struct rule *);
195
196 /* Criteria that flow_mod and other operations use for selecting rules on
197  * which to operate. */
198 struct rule_criteria {
199     /* An OpenFlow table or 255 for all tables. */
200     uint8_t table_id;
201
202     /* OpenFlow matching criteria.  Interpreted different in "loose" way by
203      * collect_rules_loose() and "strict" way by collect_rules_strict(), as
204      * defined in the OpenFlow spec. */
205     struct cls_rule cr;
206
207     /* Matching criteria for the OpenFlow cookie.  Consider a bit B in a rule's
208      * cookie and the corresponding bits C in 'cookie' and M in 'cookie_mask'.
209      * The rule will not be selected if M is 1 and B != C.  */
210     ovs_be64 cookie;
211     ovs_be64 cookie_mask;
212
213     /* Selection based on actions within a rule:
214      *
215      * If out_port != OFPP_ANY, selects only rules that output to out_port.
216      * If out_group != OFPG_ALL, select only rules that output to out_group. */
217     ofp_port_t out_port;
218     uint32_t out_group;
219 };
220
221 static void rule_criteria_init(struct rule_criteria *, uint8_t table_id,
222                                const struct match *match,
223                                unsigned int priority,
224                                ovs_be64 cookie, ovs_be64 cookie_mask,
225                                ofp_port_t out_port, uint32_t out_group);
226 static void rule_criteria_destroy(struct rule_criteria *);
227
228 /* A packet that needs to be passed to rule_execute().
229  *
230  * (We can't do this immediately from ofopgroup_complete() because that holds
231  * ofproto_mutex, which rule_execute() needs released.) */
232 struct rule_execute {
233     struct list list_node;      /* In struct ofproto's "rule_executes" list. */
234     struct rule *rule;          /* Owns a reference to the rule. */
235     ofp_port_t in_port;
236     struct ofpbuf *packet;      /* Owns the packet. */
237 };
238
239 static void run_rule_executes(struct ofproto *) OVS_EXCLUDED(ofproto_mutex);
240 static void destroy_rule_executes(struct ofproto *);
241
242 /* ofport. */
243 static void ofport_destroy__(struct ofport *) OVS_EXCLUDED(ofproto_mutex);
244 static void ofport_destroy(struct ofport *);
245
246 static void update_port(struct ofproto *, const char *devname);
247 static int init_ports(struct ofproto *);
248 static void reinit_ports(struct ofproto *);
249
250 static long long int ofport_get_usage(const struct ofproto *,
251                                       ofp_port_t ofp_port);
252 static void ofport_set_usage(struct ofproto *, ofp_port_t ofp_port,
253                              long long int last_used);
254 static void ofport_remove_usage(struct ofproto *, ofp_port_t ofp_port);
255
256 /* Ofport usage.
257  *
258  * Keeps track of the currently used and recently used ofport values and is
259  * used to prevent immediate recycling of ofport values. */
260 struct ofport_usage {
261     struct hmap_node hmap_node; /* In struct ofproto's "ofport_usage" hmap. */
262     ofp_port_t ofp_port;        /* OpenFlow port number. */
263     long long int last_used;    /* Last time the 'ofp_port' was used. LLONG_MAX
264                                    represents in-use ofports. */
265 };
266
267 /* rule. */
268 static void ofproto_rule_send_removed(struct rule *, uint8_t reason);
269 static bool rule_is_modifiable(const struct rule *rule,
270                                enum ofputil_flow_mod_flags flag);
271
272 /* OpenFlow. */
273 static enum ofperr add_flow(struct ofproto *, struct ofconn *,
274                             struct ofputil_flow_mod *,
275                             const struct ofp_header *);
276 static void do_add_flow(struct ofproto *, struct ofconn *,
277                         const struct ofp_header *request, uint32_t buffer_id,
278                         struct rule *);
279 static enum ofperr modify_flows__(struct ofproto *, struct ofconn *,
280                                   struct ofputil_flow_mod *,
281                                   const struct ofp_header *,
282                                   const struct rule_collection *);
283 static void delete_flow__(struct rule *rule, struct ofopgroup *,
284                           enum ofp_flow_removed_reason)
285     OVS_REQUIRES(ofproto_mutex);
286 static bool ofproto_group_exists__(const struct ofproto *ofproto,
287                                    uint32_t group_id)
288     OVS_REQ_RDLOCK(ofproto->groups_rwlock);
289 static bool ofproto_group_exists(const struct ofproto *ofproto,
290                                  uint32_t group_id)
291     OVS_EXCLUDED(ofproto->groups_rwlock);
292 static enum ofperr add_group(struct ofproto *, struct ofputil_group_mod *);
293 static bool handle_openflow(struct ofconn *, const struct ofpbuf *);
294 static enum ofperr handle_flow_mod__(struct ofproto *, struct ofconn *,
295                                      struct ofputil_flow_mod *,
296                                      const struct ofp_header *)
297     OVS_EXCLUDED(ofproto_mutex);
298 static void calc_duration(long long int start, long long int now,
299                           uint32_t *sec, uint32_t *nsec);
300
301 /* ofproto. */
302 static uint64_t pick_datapath_id(const struct ofproto *);
303 static uint64_t pick_fallback_dpid(void);
304 static void ofproto_destroy__(struct ofproto *);
305 static void update_mtu(struct ofproto *, struct ofport *);
306 static void meter_delete(struct ofproto *, uint32_t first, uint32_t last);
307
308 /* unixctl. */
309 static void ofproto_unixctl_init(void);
310
311 /* All registered ofproto classes, in probe order. */
312 static const struct ofproto_class **ofproto_classes;
313 static size_t n_ofproto_classes;
314 static size_t allocated_ofproto_classes;
315
316 /* Global lock that protects all flow table operations. */
317 struct ovs_mutex ofproto_mutex = OVS_MUTEX_INITIALIZER;
318
319 unsigned ofproto_flow_limit = OFPROTO_FLOW_LIMIT_DEFAULT;
320 unsigned ofproto_max_idle = OFPROTO_MAX_IDLE_DEFAULT;
321
322 size_t n_handlers, n_revalidators;
323
324 /* Map from datapath name to struct ofproto, for use by unixctl commands. */
325 static struct hmap all_ofprotos = HMAP_INITIALIZER(&all_ofprotos);
326
327 /* Initial mappings of port to OpenFlow number mappings. */
328 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
329
330 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
331
332 /* The default value of true waits for flow restore. */
333 static bool flow_restore_wait = true;
334
335 /* Must be called to initialize the ofproto library.
336  *
337  * The caller may pass in 'iface_hints', which contains an shash of
338  * "iface_hint" elements indexed by the interface's name.  The provider
339  * may use these hints to describe the startup configuration in order to
340  * reinitialize its state.  The caller owns the provided data, so a
341  * provider will make copies of anything required.  An ofproto provider
342  * will remove any existing state that is not described by the hint, and
343  * may choose to remove it all. */
344 void
345 ofproto_init(const struct shash *iface_hints)
346 {
347     struct shash_node *node;
348     size_t i;
349
350     ofproto_class_register(&ofproto_dpif_class);
351
352     /* Make a local copy, since we don't own 'iface_hints' elements. */
353     SHASH_FOR_EACH(node, iface_hints) {
354         const struct iface_hint *orig_hint = node->data;
355         struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
356         const char *br_type = ofproto_normalize_type(orig_hint->br_type);
357
358         new_hint->br_name = xstrdup(orig_hint->br_name);
359         new_hint->br_type = xstrdup(br_type);
360         new_hint->ofp_port = orig_hint->ofp_port;
361
362         shash_add(&init_ofp_ports, node->name, new_hint);
363     }
364
365     for (i = 0; i < n_ofproto_classes; i++) {
366         ofproto_classes[i]->init(&init_ofp_ports);
367     }
368 }
369
370 /* 'type' should be a normalized datapath type, as returned by
371  * ofproto_normalize_type().  Returns the corresponding ofproto_class
372  * structure, or a null pointer if there is none registered for 'type'. */
373 static const struct ofproto_class *
374 ofproto_class_find__(const char *type)
375 {
376     size_t i;
377
378     for (i = 0; i < n_ofproto_classes; i++) {
379         const struct ofproto_class *class = ofproto_classes[i];
380         struct sset types;
381         bool found;
382
383         sset_init(&types);
384         class->enumerate_types(&types);
385         found = sset_contains(&types, type);
386         sset_destroy(&types);
387
388         if (found) {
389             return class;
390         }
391     }
392     VLOG_WARN("unknown datapath type %s", type);
393     return NULL;
394 }
395
396 /* Registers a new ofproto class.  After successful registration, new ofprotos
397  * of that type can be created using ofproto_create(). */
398 int
399 ofproto_class_register(const struct ofproto_class *new_class)
400 {
401     size_t i;
402
403     for (i = 0; i < n_ofproto_classes; i++) {
404         if (ofproto_classes[i] == new_class) {
405             return EEXIST;
406         }
407     }
408
409     if (n_ofproto_classes >= allocated_ofproto_classes) {
410         ofproto_classes = x2nrealloc(ofproto_classes,
411                                      &allocated_ofproto_classes,
412                                      sizeof *ofproto_classes);
413     }
414     ofproto_classes[n_ofproto_classes++] = new_class;
415     return 0;
416 }
417
418 /* Unregisters a datapath provider.  'type' must have been previously
419  * registered and not currently be in use by any ofprotos.  After
420  * unregistration new datapaths of that type cannot be opened using
421  * ofproto_create(). */
422 int
423 ofproto_class_unregister(const struct ofproto_class *class)
424 {
425     size_t i;
426
427     for (i = 0; i < n_ofproto_classes; i++) {
428         if (ofproto_classes[i] == class) {
429             for (i++; i < n_ofproto_classes; i++) {
430                 ofproto_classes[i - 1] = ofproto_classes[i];
431             }
432             n_ofproto_classes--;
433             return 0;
434         }
435     }
436     VLOG_WARN("attempted to unregister an ofproto class that is not "
437               "registered");
438     return EAFNOSUPPORT;
439 }
440
441 /* Clears 'types' and enumerates all registered ofproto types into it.  The
442  * caller must first initialize the sset. */
443 void
444 ofproto_enumerate_types(struct sset *types)
445 {
446     size_t i;
447
448     sset_clear(types);
449     for (i = 0; i < n_ofproto_classes; i++) {
450         ofproto_classes[i]->enumerate_types(types);
451     }
452 }
453
454 /* Returns the fully spelled out name for the given ofproto 'type'.
455  *
456  * Normalized type string can be compared with strcmp().  Unnormalized type
457  * string might be the same even if they have different spellings. */
458 const char *
459 ofproto_normalize_type(const char *type)
460 {
461     return type && type[0] ? type : "system";
462 }
463
464 /* Clears 'names' and enumerates the names of all known created ofprotos with
465  * the given 'type'.  The caller must first initialize the sset.  Returns 0 if
466  * successful, otherwise a positive errno value.
467  *
468  * Some kinds of datapaths might not be practically enumerable.  This is not
469  * considered an error. */
470 int
471 ofproto_enumerate_names(const char *type, struct sset *names)
472 {
473     const struct ofproto_class *class = ofproto_class_find__(type);
474     return class ? class->enumerate_names(type, names) : EAFNOSUPPORT;
475 }
476
477 int
478 ofproto_create(const char *datapath_name, const char *datapath_type,
479                struct ofproto **ofprotop)
480 {
481     const struct ofproto_class *class;
482     struct ofproto *ofproto;
483     int error;
484     int i;
485
486     *ofprotop = NULL;
487
488     ofproto_unixctl_init();
489
490     datapath_type = ofproto_normalize_type(datapath_type);
491     class = ofproto_class_find__(datapath_type);
492     if (!class) {
493         VLOG_WARN("could not create datapath %s of unknown type %s",
494                   datapath_name, datapath_type);
495         return EAFNOSUPPORT;
496     }
497
498     ofproto = class->alloc();
499     if (!ofproto) {
500         VLOG_ERR("failed to allocate datapath %s of type %s",
501                  datapath_name, datapath_type);
502         return ENOMEM;
503     }
504
505     /* Initialize. */
506     ovs_mutex_lock(&ofproto_mutex);
507     memset(ofproto, 0, sizeof *ofproto);
508     ofproto->ofproto_class = class;
509     ofproto->name = xstrdup(datapath_name);
510     ofproto->type = xstrdup(datapath_type);
511     hmap_insert(&all_ofprotos, &ofproto->hmap_node,
512                 hash_string(ofproto->name, 0));
513     ofproto->datapath_id = 0;
514     ofproto->forward_bpdu = false;
515     ofproto->fallback_dpid = pick_fallback_dpid();
516     ofproto->mfr_desc = NULL;
517     ofproto->hw_desc = NULL;
518     ofproto->sw_desc = NULL;
519     ofproto->serial_desc = NULL;
520     ofproto->dp_desc = NULL;
521     ofproto->frag_handling = OFPC_FRAG_NORMAL;
522     hmap_init(&ofproto->ports);
523     hmap_init(&ofproto->ofport_usage);
524     shash_init(&ofproto->port_by_name);
525     simap_init(&ofproto->ofp_requests);
526     ofproto->max_ports = ofp_to_u16(OFPP_MAX);
527     ofproto->eviction_group_timer = LLONG_MIN;
528     ofproto->tables = NULL;
529     ofproto->n_tables = 0;
530     hindex_init(&ofproto->cookies);
531     list_init(&ofproto->expirable);
532     ofproto->connmgr = connmgr_create(ofproto, datapath_name, datapath_name);
533     ofproto->state = S_OPENFLOW;
534     list_init(&ofproto->pending);
535     ofproto->n_pending = 0;
536     hmap_init(&ofproto->deletions);
537     guarded_list_init(&ofproto->rule_executes);
538     ofproto->vlan_bitmap = NULL;
539     ofproto->vlans_changed = false;
540     ofproto->min_mtu = INT_MAX;
541     ovs_rwlock_init(&ofproto->groups_rwlock);
542     hmap_init(&ofproto->groups);
543     ovs_mutex_unlock(&ofproto_mutex);
544     ofproto->ogf.capabilities = OFPGFC_CHAINING | OFPGFC_SELECT_LIVENESS |
545                                 OFPGFC_SELECT_WEIGHT;
546     ofproto->ogf.max_groups[OFPGT11_ALL] = OFPG_MAX;
547     ofproto->ogf.max_groups[OFPGT11_SELECT] = OFPG_MAX;
548     ofproto->ogf.max_groups[OFPGT11_INDIRECT] = OFPG_MAX;
549     ofproto->ogf.max_groups[OFPGT11_FF] = OFPG_MAX;
550     ofproto->ogf.actions[0] =
551         (1 << OFPAT11_OUTPUT) |
552         (1 << OFPAT11_COPY_TTL_OUT) |
553         (1 << OFPAT11_COPY_TTL_IN) |
554         (1 << OFPAT11_SET_MPLS_TTL) |
555         (1 << OFPAT11_DEC_MPLS_TTL) |
556         (1 << OFPAT11_PUSH_VLAN) |
557         (1 << OFPAT11_POP_VLAN) |
558         (1 << OFPAT11_PUSH_MPLS) |
559         (1 << OFPAT11_POP_MPLS) |
560         (1 << OFPAT11_SET_QUEUE) |
561         (1 << OFPAT11_GROUP) |
562         (1 << OFPAT11_SET_NW_TTL) |
563         (1 << OFPAT11_DEC_NW_TTL) |
564         (1 << OFPAT12_SET_FIELD);
565 /* not supported:
566  *      (1 << OFPAT13_PUSH_PBB) |
567  *      (1 << OFPAT13_POP_PBB) */
568
569     error = ofproto->ofproto_class->construct(ofproto);
570     if (error) {
571         VLOG_ERR("failed to open datapath %s: %s",
572                  datapath_name, ovs_strerror(error));
573         ofproto_destroy__(ofproto);
574         return error;
575     }
576
577     /* Check that hidden tables, if any, are at the end. */
578     ovs_assert(ofproto->n_tables);
579     for (i = 0; i + 1 < ofproto->n_tables; i++) {
580         enum oftable_flags flags = ofproto->tables[i].flags;
581         enum oftable_flags next_flags = ofproto->tables[i + 1].flags;
582
583         ovs_assert(!(flags & OFTABLE_HIDDEN) || next_flags & OFTABLE_HIDDEN);
584     }
585
586     ofproto->datapath_id = pick_datapath_id(ofproto);
587     init_ports(ofproto);
588
589     /* Initialize meters table. */
590     if (ofproto->ofproto_class->meter_get_features) {
591         ofproto->ofproto_class->meter_get_features(ofproto,
592                                                    &ofproto->meter_features);
593     } else {
594         memset(&ofproto->meter_features, 0, sizeof ofproto->meter_features);
595     }
596     ofproto->meters = xzalloc((ofproto->meter_features.max_meters + 1)
597                               * sizeof(struct meter *));
598
599     *ofprotop = ofproto;
600     return 0;
601 }
602
603 /* Must be called (only) by an ofproto implementation in its constructor
604  * function.  See the large comment on 'construct' in struct ofproto_class for
605  * details. */
606 void
607 ofproto_init_tables(struct ofproto *ofproto, int n_tables)
608 {
609     struct oftable *table;
610
611     ovs_assert(!ofproto->n_tables);
612     ovs_assert(n_tables >= 1 && n_tables <= 255);
613
614     ofproto->n_tables = n_tables;
615     ofproto->tables = xmalloc(n_tables * sizeof *ofproto->tables);
616     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
617         oftable_init(table);
618     }
619 }
620
621 /* To be optionally called (only) by an ofproto implementation in its
622  * constructor function.  See the large comment on 'construct' in struct
623  * ofproto_class for details.
624  *
625  * Sets the maximum number of ports to 'max_ports'.  The ofproto generic layer
626  * will then ensure that actions passed into the ofproto implementation will
627  * not refer to OpenFlow ports numbered 'max_ports' or higher.  If this
628  * function is not called, there will be no such restriction.
629  *
630  * Reserved ports numbered OFPP_MAX and higher are special and not subject to
631  * the 'max_ports' restriction. */
632 void
633 ofproto_init_max_ports(struct ofproto *ofproto, uint16_t max_ports)
634 {
635     ovs_assert(max_ports <= ofp_to_u16(OFPP_MAX));
636     ofproto->max_ports = max_ports;
637 }
638
639 uint64_t
640 ofproto_get_datapath_id(const struct ofproto *ofproto)
641 {
642     return ofproto->datapath_id;
643 }
644
645 void
646 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
647 {
648     uint64_t old_dpid = p->datapath_id;
649     p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
650     if (p->datapath_id != old_dpid) {
651         /* Force all active connections to reconnect, since there is no way to
652          * notify a controller that the datapath ID has changed. */
653         ofproto_reconnect_controllers(p);
654     }
655 }
656
657 void
658 ofproto_set_controllers(struct ofproto *p,
659                         const struct ofproto_controller *controllers,
660                         size_t n_controllers, uint32_t allowed_versions)
661 {
662     connmgr_set_controllers(p->connmgr, controllers, n_controllers,
663                             allowed_versions);
664 }
665
666 void
667 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
668 {
669     connmgr_set_fail_mode(p->connmgr, fail_mode);
670 }
671
672 /* Drops the connections between 'ofproto' and all of its controllers, forcing
673  * them to reconnect. */
674 void
675 ofproto_reconnect_controllers(struct ofproto *ofproto)
676 {
677     connmgr_reconnect(ofproto->connmgr);
678 }
679
680 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
681  * in-band control should guarantee access, in the same way that in-band
682  * control guarantees access to OpenFlow controllers. */
683 void
684 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
685                                   const struct sockaddr_in *extras, size_t n)
686 {
687     connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
688 }
689
690 /* Sets the OpenFlow queue used by flows set up by in-band control on
691  * 'ofproto' to 'queue_id'.  If 'queue_id' is negative, then in-band control
692  * flows will use the default queue. */
693 void
694 ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
695 {
696     connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
697 }
698
699 /* Sets the number of flows at which eviction from the kernel flow table
700  * will occur. */
701 void
702 ofproto_set_flow_limit(unsigned limit)
703 {
704     ofproto_flow_limit = limit;
705 }
706
707 /* Sets the maximum idle time for flows in the datapath before they are
708  * expired. */
709 void
710 ofproto_set_max_idle(unsigned max_idle)
711 {
712     ofproto_max_idle = max_idle;
713 }
714
715 /* If forward_bpdu is true, the NORMAL action will forward frames with
716  * reserved (e.g. STP) destination Ethernet addresses. if forward_bpdu is false,
717  * the NORMAL action will drop these frames. */
718 void
719 ofproto_set_forward_bpdu(struct ofproto *ofproto, bool forward_bpdu)
720 {
721     bool old_val = ofproto->forward_bpdu;
722     ofproto->forward_bpdu = forward_bpdu;
723     if (old_val != ofproto->forward_bpdu) {
724         if (ofproto->ofproto_class->forward_bpdu_changed) {
725             ofproto->ofproto_class->forward_bpdu_changed(ofproto);
726         }
727     }
728 }
729
730 /* Sets the MAC aging timeout for the OFPP_NORMAL action on 'ofproto' to
731  * 'idle_time', in seconds, and the maximum number of MAC table entries to
732  * 'max_entries'. */
733 void
734 ofproto_set_mac_table_config(struct ofproto *ofproto, unsigned idle_time,
735                              size_t max_entries)
736 {
737     if (ofproto->ofproto_class->set_mac_table_config) {
738         ofproto->ofproto_class->set_mac_table_config(ofproto, idle_time,
739                                                      max_entries);
740     }
741 }
742
743 void
744 ofproto_set_threads(int n_handlers_, int n_revalidators_)
745 {
746     int threads = MAX(count_cpu_cores(), 2);
747
748     n_revalidators = MAX(n_revalidators_, 0);
749     n_handlers = MAX(n_handlers_, 0);
750
751     if (!n_revalidators) {
752         n_revalidators = n_handlers
753             ? MAX(threads - (int) n_handlers, 1)
754             : threads / 4 + 1;
755     }
756
757     if (!n_handlers) {
758         n_handlers = MAX(threads - (int) n_revalidators, 1);
759     }
760 }
761
762 void
763 ofproto_set_dp_desc(struct ofproto *p, const char *dp_desc)
764 {
765     free(p->dp_desc);
766     p->dp_desc = dp_desc ? xstrdup(dp_desc) : NULL;
767 }
768
769 int
770 ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
771 {
772     return connmgr_set_snoops(ofproto->connmgr, snoops);
773 }
774
775 int
776 ofproto_set_netflow(struct ofproto *ofproto,
777                     const struct netflow_options *nf_options)
778 {
779     if (nf_options && sset_is_empty(&nf_options->collectors)) {
780         nf_options = NULL;
781     }
782
783     if (ofproto->ofproto_class->set_netflow) {
784         return ofproto->ofproto_class->set_netflow(ofproto, nf_options);
785     } else {
786         return nf_options ? EOPNOTSUPP : 0;
787     }
788 }
789
790 int
791 ofproto_set_sflow(struct ofproto *ofproto,
792                   const struct ofproto_sflow_options *oso)
793 {
794     if (oso && sset_is_empty(&oso->targets)) {
795         oso = NULL;
796     }
797
798     if (ofproto->ofproto_class->set_sflow) {
799         return ofproto->ofproto_class->set_sflow(ofproto, oso);
800     } else {
801         return oso ? EOPNOTSUPP : 0;
802     }
803 }
804
805 int
806 ofproto_set_ipfix(struct ofproto *ofproto,
807                   const struct ofproto_ipfix_bridge_exporter_options *bo,
808                   const struct ofproto_ipfix_flow_exporter_options *fo,
809                   size_t n_fo)
810 {
811     if (ofproto->ofproto_class->set_ipfix) {
812         return ofproto->ofproto_class->set_ipfix(ofproto, bo, fo, n_fo);
813     } else {
814         return (bo || fo) ? EOPNOTSUPP : 0;
815     }
816 }
817
818 void
819 ofproto_set_flow_restore_wait(bool flow_restore_wait_db)
820 {
821     flow_restore_wait = flow_restore_wait_db;
822 }
823
824 bool
825 ofproto_get_flow_restore_wait(void)
826 {
827     return flow_restore_wait;
828 }
829
830 \f
831 /* Spanning Tree Protocol (STP) configuration. */
832
833 /* Configures STP on 'ofproto' using the settings defined in 's'.  If
834  * 's' is NULL, disables STP.
835  *
836  * Returns 0 if successful, otherwise a positive errno value. */
837 int
838 ofproto_set_stp(struct ofproto *ofproto,
839                 const struct ofproto_stp_settings *s)
840 {
841     return (ofproto->ofproto_class->set_stp
842             ? ofproto->ofproto_class->set_stp(ofproto, s)
843             : EOPNOTSUPP);
844 }
845
846 /* Retrieves STP status of 'ofproto' and stores it in 's'.  If the
847  * 'enabled' member of 's' is false, then the other members are not
848  * meaningful.
849  *
850  * Returns 0 if successful, otherwise a positive errno value. */
851 int
852 ofproto_get_stp_status(struct ofproto *ofproto,
853                        struct ofproto_stp_status *s)
854 {
855     return (ofproto->ofproto_class->get_stp_status
856             ? ofproto->ofproto_class->get_stp_status(ofproto, s)
857             : EOPNOTSUPP);
858 }
859
860 /* Configures STP on 'ofp_port' of 'ofproto' using the settings defined
861  * in 's'.  The caller is responsible for assigning STP port numbers
862  * (using the 'port_num' member in the range of 1 through 255, inclusive)
863  * and ensuring there are no duplicates.  If the 's' is NULL, then STP
864  * is disabled on the port.
865  *
866  * Returns 0 if successful, otherwise a positive errno value.*/
867 int
868 ofproto_port_set_stp(struct ofproto *ofproto, ofp_port_t ofp_port,
869                      const struct ofproto_port_stp_settings *s)
870 {
871     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
872     if (!ofport) {
873         VLOG_WARN("%s: cannot configure STP on nonexistent port %"PRIu16,
874                   ofproto->name, ofp_port);
875         return ENODEV;
876     }
877
878     return (ofproto->ofproto_class->set_stp_port
879             ? ofproto->ofproto_class->set_stp_port(ofport, s)
880             : EOPNOTSUPP);
881 }
882
883 /* Retrieves STP port status of 'ofp_port' on 'ofproto' and stores it in
884  * 's'.  If the 'enabled' member in 's' is false, then the other members
885  * are not meaningful.
886  *
887  * Returns 0 if successful, otherwise a positive errno value.*/
888 int
889 ofproto_port_get_stp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
890                             struct ofproto_port_stp_status *s)
891 {
892     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
893     if (!ofport) {
894         VLOG_WARN_RL(&rl, "%s: cannot get STP status on nonexistent "
895                      "port %"PRIu16, ofproto->name, ofp_port);
896         return ENODEV;
897     }
898
899     return (ofproto->ofproto_class->get_stp_port_status
900             ? ofproto->ofproto_class->get_stp_port_status(ofport, s)
901             : EOPNOTSUPP);
902 }
903
904 /* Retrieves STP port statistics of 'ofp_port' on 'ofproto' and stores it in
905  * 's'.  If the 'enabled' member in 's' is false, then the other members
906  * are not meaningful.
907  *
908  * Returns 0 if successful, otherwise a positive errno value.*/
909 int
910 ofproto_port_get_stp_stats(struct ofproto *ofproto, ofp_port_t ofp_port,
911                            struct ofproto_port_stp_stats *s)
912 {
913     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
914     if (!ofport) {
915         VLOG_WARN_RL(&rl, "%s: cannot get STP stats on nonexistent "
916                      "port %"PRIu16, ofproto->name, ofp_port);
917         return ENODEV;
918     }
919
920     return (ofproto->ofproto_class->get_stp_port_stats
921             ? ofproto->ofproto_class->get_stp_port_stats(ofport, s)
922             : EOPNOTSUPP);
923 }
924 \f
925 /* Queue DSCP configuration. */
926
927 /* Registers meta-data associated with the 'n_qdscp' Qualities of Service
928  * 'queues' attached to 'ofport'.  This data is not intended to be sufficient
929  * to implement QoS.  Instead, it is used to implement features which require
930  * knowledge of what queues exist on a port, and some basic information about
931  * them.
932  *
933  * Returns 0 if successful, otherwise a positive errno value. */
934 int
935 ofproto_port_set_queues(struct ofproto *ofproto, ofp_port_t ofp_port,
936                         const struct ofproto_port_queue *queues,
937                         size_t n_queues)
938 {
939     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
940
941     if (!ofport) {
942         VLOG_WARN("%s: cannot set queues on nonexistent port %"PRIu16,
943                   ofproto->name, ofp_port);
944         return ENODEV;
945     }
946
947     return (ofproto->ofproto_class->set_queues
948             ? ofproto->ofproto_class->set_queues(ofport, queues, n_queues)
949             : EOPNOTSUPP);
950 }
951 \f
952 /* Connectivity Fault Management configuration. */
953
954 /* Clears the CFM configuration from 'ofp_port' on 'ofproto'. */
955 void
956 ofproto_port_clear_cfm(struct ofproto *ofproto, ofp_port_t ofp_port)
957 {
958     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
959     if (ofport && ofproto->ofproto_class->set_cfm) {
960         ofproto->ofproto_class->set_cfm(ofport, NULL);
961     }
962 }
963
964 /* Configures connectivity fault management on 'ofp_port' in 'ofproto'.  Takes
965  * basic configuration from the configuration members in 'cfm', and the remote
966  * maintenance point ID from  remote_mpid.  Ignores the statistics members of
967  * 'cfm'.
968  *
969  * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
970 void
971 ofproto_port_set_cfm(struct ofproto *ofproto, ofp_port_t ofp_port,
972                      const struct cfm_settings *s)
973 {
974     struct ofport *ofport;
975     int error;
976
977     ofport = ofproto_get_port(ofproto, ofp_port);
978     if (!ofport) {
979         VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu16,
980                   ofproto->name, ofp_port);
981         return;
982     }
983
984     /* XXX: For configuration simplicity, we only support one remote_mpid
985      * outside of the CFM module.  It's not clear if this is the correct long
986      * term solution or not. */
987     error = (ofproto->ofproto_class->set_cfm
988              ? ofproto->ofproto_class->set_cfm(ofport, s)
989              : EOPNOTSUPP);
990     if (error) {
991         VLOG_WARN("%s: CFM configuration on port %"PRIu16" (%s) failed (%s)",
992                   ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
993                   ovs_strerror(error));
994     }
995 }
996
997 /* Configures BFD on 'ofp_port' in 'ofproto'.  This function has no effect if
998  * 'ofproto' does not have a port 'ofp_port'. */
999 void
1000 ofproto_port_set_bfd(struct ofproto *ofproto, ofp_port_t ofp_port,
1001                      const struct smap *cfg)
1002 {
1003     struct ofport *ofport;
1004     int error;
1005
1006     ofport = ofproto_get_port(ofproto, ofp_port);
1007     if (!ofport) {
1008         VLOG_WARN("%s: cannot configure bfd on nonexistent port %"PRIu16,
1009                   ofproto->name, ofp_port);
1010         return;
1011     }
1012
1013     error = (ofproto->ofproto_class->set_bfd
1014              ? ofproto->ofproto_class->set_bfd(ofport, cfg)
1015              : EOPNOTSUPP);
1016     if (error) {
1017         VLOG_WARN("%s: bfd configuration on port %"PRIu16" (%s) failed (%s)",
1018                   ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1019                   ovs_strerror(error));
1020     }
1021 }
1022
1023 /* Populates 'status' with the status of BFD on 'ofport'.  Returns 0 on
1024  * success.  Returns a negative number if there is no status change since
1025  * last update.  Returns a positive errno otherwise.  Has no effect if
1026  * 'ofp_port' is not an OpenFlow port in 'ofproto'.
1027  *
1028  * The caller must provide and own '*status'. */
1029 int
1030 ofproto_port_get_bfd_status(struct ofproto *ofproto, ofp_port_t ofp_port,
1031                             struct smap *status)
1032 {
1033     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1034     return (ofport && ofproto->ofproto_class->get_bfd_status
1035             ? ofproto->ofproto_class->get_bfd_status(ofport, status)
1036             : EOPNOTSUPP);
1037 }
1038
1039 /* Checks the status of LACP negotiation for 'ofp_port' within ofproto.
1040  * Returns 1 if LACP partner information for 'ofp_port' is up-to-date,
1041  * 0 if LACP partner information is not current (generally indicating a
1042  * connectivity problem), or -1 if LACP is not enabled on 'ofp_port'. */
1043 int
1044 ofproto_port_is_lacp_current(struct ofproto *ofproto, ofp_port_t ofp_port)
1045 {
1046     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1047     return (ofport && ofproto->ofproto_class->port_is_lacp_current
1048             ? ofproto->ofproto_class->port_is_lacp_current(ofport)
1049             : -1);
1050 }
1051 \f
1052 /* Bundles. */
1053
1054 /* Registers a "bundle" associated with client data pointer 'aux' in 'ofproto'.
1055  * A bundle is the same concept as a Port in OVSDB, that is, it consists of one
1056  * or more "slave" devices (Interfaces, in OVSDB) along with a VLAN
1057  * configuration plus, if there is more than one slave, a bonding
1058  * configuration.
1059  *
1060  * If 'aux' is already registered then this function updates its configuration
1061  * to 's'.  Otherwise, this function registers a new bundle.
1062  *
1063  * Bundles only affect the NXAST_AUTOPATH action and output to the OFPP_NORMAL
1064  * port. */
1065 int
1066 ofproto_bundle_register(struct ofproto *ofproto, void *aux,
1067                         const struct ofproto_bundle_settings *s)
1068 {
1069     return (ofproto->ofproto_class->bundle_set
1070             ? ofproto->ofproto_class->bundle_set(ofproto, aux, s)
1071             : EOPNOTSUPP);
1072 }
1073
1074 /* Unregisters the bundle registered on 'ofproto' with auxiliary data 'aux'.
1075  * If no such bundle has been registered, this has no effect. */
1076 int
1077 ofproto_bundle_unregister(struct ofproto *ofproto, void *aux)
1078 {
1079     return ofproto_bundle_register(ofproto, aux, NULL);
1080 }
1081
1082 \f
1083 /* Registers a mirror associated with client data pointer 'aux' in 'ofproto'.
1084  * If 'aux' is already registered then this function updates its configuration
1085  * to 's'.  Otherwise, this function registers a new mirror. */
1086 int
1087 ofproto_mirror_register(struct ofproto *ofproto, void *aux,
1088                         const struct ofproto_mirror_settings *s)
1089 {
1090     return (ofproto->ofproto_class->mirror_set
1091             ? ofproto->ofproto_class->mirror_set(ofproto, aux, s)
1092             : EOPNOTSUPP);
1093 }
1094
1095 /* Unregisters the mirror registered on 'ofproto' with auxiliary data 'aux'.
1096  * If no mirror has been registered, this has no effect. */
1097 int
1098 ofproto_mirror_unregister(struct ofproto *ofproto, void *aux)
1099 {
1100     return ofproto_mirror_register(ofproto, aux, NULL);
1101 }
1102
1103 /* Retrieves statistics from mirror associated with client data pointer
1104  * 'aux' in 'ofproto'.  Stores packet and byte counts in 'packets' and
1105  * 'bytes', respectively.  If a particular counters is not supported,
1106  * the appropriate argument is set to UINT64_MAX. */
1107 int
1108 ofproto_mirror_get_stats(struct ofproto *ofproto, void *aux,
1109                          uint64_t *packets, uint64_t *bytes)
1110 {
1111     if (!ofproto->ofproto_class->mirror_get_stats) {
1112         *packets = *bytes = UINT64_MAX;
1113         return EOPNOTSUPP;
1114     }
1115
1116     return ofproto->ofproto_class->mirror_get_stats(ofproto, aux,
1117                                                     packets, bytes);
1118 }
1119
1120 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs on
1121  * which all packets are flooded, instead of using MAC learning.  If
1122  * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
1123  *
1124  * Flood VLANs affect only the treatment of packets output to the OFPP_NORMAL
1125  * port. */
1126 int
1127 ofproto_set_flood_vlans(struct ofproto *ofproto, unsigned long *flood_vlans)
1128 {
1129     return (ofproto->ofproto_class->set_flood_vlans
1130             ? ofproto->ofproto_class->set_flood_vlans(ofproto, flood_vlans)
1131             : EOPNOTSUPP);
1132 }
1133
1134 /* Returns true if 'aux' is a registered bundle that is currently in use as the
1135  * output for a mirror. */
1136 bool
1137 ofproto_is_mirror_output_bundle(const struct ofproto *ofproto, void *aux)
1138 {
1139     return (ofproto->ofproto_class->is_mirror_output_bundle
1140             ? ofproto->ofproto_class->is_mirror_output_bundle(ofproto, aux)
1141             : false);
1142 }
1143 \f
1144 /* Configuration of OpenFlow tables. */
1145
1146 /* Returns the number of OpenFlow tables in 'ofproto'. */
1147 int
1148 ofproto_get_n_tables(const struct ofproto *ofproto)
1149 {
1150     return ofproto->n_tables;
1151 }
1152
1153 /* Returns the number of Controller visible OpenFlow tables
1154  * in 'ofproto'. This number will exclude Hidden tables.
1155  * This funtion's return value should be less or equal to that of
1156  * ofproto_get_n_tables() . */
1157 uint8_t
1158 ofproto_get_n_visible_tables(const struct ofproto *ofproto)
1159 {
1160     uint8_t n = ofproto->n_tables;
1161
1162     /* Count only non-hidden tables in the number of tables.  (Hidden tables,
1163      * if present, are always at the end.) */
1164     while(n && (ofproto->tables[n - 1].flags & OFTABLE_HIDDEN)) {
1165         n--;
1166     }
1167
1168     return n;
1169 }
1170
1171 /* Configures the OpenFlow table in 'ofproto' with id 'table_id' with the
1172  * settings from 's'.  'table_id' must be in the range 0 through the number of
1173  * OpenFlow tables in 'ofproto' minus 1, inclusive.
1174  *
1175  * For read-only tables, only the name may be configured. */
1176 void
1177 ofproto_configure_table(struct ofproto *ofproto, int table_id,
1178                         const struct ofproto_table_settings *s)
1179 {
1180     struct oftable *table;
1181
1182     ovs_assert(table_id >= 0 && table_id < ofproto->n_tables);
1183     table = &ofproto->tables[table_id];
1184
1185     oftable_set_name(table, s->name);
1186
1187     if (table->flags & OFTABLE_READONLY) {
1188         return;
1189     }
1190
1191     if (s->groups) {
1192         oftable_enable_eviction(table, s->groups, s->n_groups);
1193     } else {
1194         oftable_disable_eviction(table);
1195     }
1196
1197     table->max_flows = s->max_flows;
1198     fat_rwlock_wrlock(&table->cls.rwlock);
1199     if (classifier_count(&table->cls) > table->max_flows
1200         && table->eviction_fields) {
1201         /* 'table' contains more flows than allowed.  We might not be able to
1202          * evict them right away because of the asynchronous nature of flow
1203          * table changes.  Schedule eviction for later. */
1204         switch (ofproto->state) {
1205         case S_OPENFLOW:
1206             ofproto->state = S_EVICT;
1207             break;
1208         case S_EVICT:
1209         case S_FLUSH:
1210             /* We're already deleting flows, nothing more to do. */
1211             break;
1212         }
1213     }
1214
1215     classifier_set_prefix_fields(&table->cls,
1216                                  s->prefix_fields, s->n_prefix_fields);
1217
1218     fat_rwlock_unlock(&table->cls.rwlock);
1219 }
1220 \f
1221 bool
1222 ofproto_has_snoops(const struct ofproto *ofproto)
1223 {
1224     return connmgr_has_snoops(ofproto->connmgr);
1225 }
1226
1227 void
1228 ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
1229 {
1230     connmgr_get_snoops(ofproto->connmgr, snoops);
1231 }
1232
1233 static void
1234 ofproto_rule_delete__(struct ofproto *ofproto, struct rule *rule,
1235                       uint8_t reason)
1236     OVS_REQUIRES(ofproto_mutex)
1237 {
1238     struct ofopgroup *group;
1239
1240     ovs_assert(!rule->pending);
1241
1242     group = ofopgroup_create_unattached(ofproto);
1243     delete_flow__(rule, group, reason);
1244     ofopgroup_submit(group);
1245 }
1246
1247 /* Deletes 'rule' from 'ofproto'.
1248  *
1249  * Within an ofproto implementation, this function allows an ofproto
1250  * implementation to destroy any rules that remain when its ->destruct()
1251  * function is called.  This function is not suitable for use elsewhere in an
1252  * ofproto implementation.
1253  *
1254  * This function implements steps 4.4 and 4.5 in the section titled "Rule Life
1255  * Cycle" in ofproto-provider.h. */
1256 void
1257 ofproto_rule_delete(struct ofproto *ofproto, struct rule *rule)
1258     OVS_EXCLUDED(ofproto_mutex)
1259 {
1260     struct ofopgroup *group;
1261
1262     ovs_mutex_lock(&ofproto_mutex);
1263     ovs_assert(!rule->pending);
1264
1265     group = ofopgroup_create_unattached(ofproto);
1266     ofoperation_create(group, rule, OFOPERATION_DELETE, OFPRR_DELETE);
1267     oftable_remove_rule__(ofproto, rule);
1268     ofproto->ofproto_class->rule_delete(rule);
1269     ofopgroup_submit(group);
1270
1271     ovs_mutex_unlock(&ofproto_mutex);
1272 }
1273
1274 static void
1275 ofproto_flush__(struct ofproto *ofproto)
1276     OVS_EXCLUDED(ofproto_mutex)
1277 {
1278     struct oftable *table;
1279
1280     if (ofproto->ofproto_class->flush) {
1281         ofproto->ofproto_class->flush(ofproto);
1282     }
1283
1284     ovs_mutex_lock(&ofproto_mutex);
1285     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1286         struct rule *rule, *next_rule;
1287         struct cls_cursor cursor;
1288
1289         if (table->flags & OFTABLE_HIDDEN) {
1290             continue;
1291         }
1292
1293         fat_rwlock_rdlock(&table->cls.rwlock);
1294         cls_cursor_init(&cursor, &table->cls, NULL);
1295         fat_rwlock_unlock(&table->cls.rwlock);
1296         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
1297             if (!rule->pending) {
1298                 ofproto_rule_delete__(ofproto, rule, OFPRR_DELETE);
1299             }
1300         }
1301     }
1302     ovs_mutex_unlock(&ofproto_mutex);
1303 }
1304
1305 static void delete_group(struct ofproto *ofproto, uint32_t group_id);
1306
1307 static void
1308 ofproto_destroy__(struct ofproto *ofproto)
1309     OVS_EXCLUDED(ofproto_mutex)
1310 {
1311     struct oftable *table;
1312
1313     ovs_assert(list_is_empty(&ofproto->pending));
1314
1315     destroy_rule_executes(ofproto);
1316     delete_group(ofproto, OFPG_ALL);
1317
1318     guarded_list_destroy(&ofproto->rule_executes);
1319     ovs_rwlock_destroy(&ofproto->groups_rwlock);
1320     hmap_destroy(&ofproto->groups);
1321
1322     connmgr_destroy(ofproto->connmgr);
1323
1324     hmap_remove(&all_ofprotos, &ofproto->hmap_node);
1325     free(ofproto->name);
1326     free(ofproto->type);
1327     free(ofproto->mfr_desc);
1328     free(ofproto->hw_desc);
1329     free(ofproto->sw_desc);
1330     free(ofproto->serial_desc);
1331     free(ofproto->dp_desc);
1332     hmap_destroy(&ofproto->ports);
1333     hmap_destroy(&ofproto->ofport_usage);
1334     shash_destroy(&ofproto->port_by_name);
1335     simap_destroy(&ofproto->ofp_requests);
1336
1337     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1338         oftable_destroy(table);
1339     }
1340     free(ofproto->tables);
1341
1342     hmap_destroy(&ofproto->deletions);
1343
1344     ovs_assert(hindex_is_empty(&ofproto->cookies));
1345     hindex_destroy(&ofproto->cookies);
1346
1347     free(ofproto->vlan_bitmap);
1348
1349     ofproto->ofproto_class->dealloc(ofproto);
1350 }
1351
1352 void
1353 ofproto_destroy(struct ofproto *p)
1354     OVS_EXCLUDED(ofproto_mutex)
1355 {
1356     struct ofport *ofport, *next_ofport;
1357     struct ofport_usage *usage, *next_usage;
1358
1359     if (!p) {
1360         return;
1361     }
1362
1363     if (p->meters) {
1364         meter_delete(p, 1, p->meter_features.max_meters);
1365         p->meter_features.max_meters = 0;
1366         free(p->meters);
1367         p->meters = NULL;
1368     }
1369
1370     ofproto_flush__(p);
1371     HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
1372         ofport_destroy(ofport);
1373     }
1374
1375     HMAP_FOR_EACH_SAFE (usage, next_usage, hmap_node, &p->ofport_usage) {
1376         hmap_remove(&p->ofport_usage, &usage->hmap_node);
1377         free(usage);
1378     }
1379
1380     p->ofproto_class->destruct(p);
1381     /* Destroying rules is deferred, must have 'ofproto' around for them. */
1382     ovsrcu_postpone(ofproto_destroy__, p);
1383 }
1384
1385 /* Destroys the datapath with the respective 'name' and 'type'.  With the Linux
1386  * kernel datapath, for example, this destroys the datapath in the kernel, and
1387  * with the netdev-based datapath, it tears down the data structures that
1388  * represent the datapath.
1389  *
1390  * The datapath should not be currently open as an ofproto. */
1391 int
1392 ofproto_delete(const char *name, const char *type)
1393 {
1394     const struct ofproto_class *class = ofproto_class_find__(type);
1395     return (!class ? EAFNOSUPPORT
1396             : !class->del ? EACCES
1397             : class->del(type, name));
1398 }
1399
1400 static void
1401 process_port_change(struct ofproto *ofproto, int error, char *devname)
1402 {
1403     if (error == ENOBUFS) {
1404         reinit_ports(ofproto);
1405     } else if (!error) {
1406         update_port(ofproto, devname);
1407         free(devname);
1408     }
1409 }
1410
1411 int
1412 ofproto_type_run(const char *datapath_type)
1413 {
1414     const struct ofproto_class *class;
1415     int error;
1416
1417     datapath_type = ofproto_normalize_type(datapath_type);
1418     class = ofproto_class_find__(datapath_type);
1419
1420     error = class->type_run ? class->type_run(datapath_type) : 0;
1421     if (error && error != EAGAIN) {
1422         VLOG_ERR_RL(&rl, "%s: type_run failed (%s)",
1423                     datapath_type, ovs_strerror(error));
1424     }
1425     return error;
1426 }
1427
1428 void
1429 ofproto_type_wait(const char *datapath_type)
1430 {
1431     const struct ofproto_class *class;
1432
1433     datapath_type = ofproto_normalize_type(datapath_type);
1434     class = ofproto_class_find__(datapath_type);
1435
1436     if (class->type_wait) {
1437         class->type_wait(datapath_type);
1438     }
1439 }
1440
1441 static bool
1442 any_pending_ops(const struct ofproto *p)
1443     OVS_EXCLUDED(ofproto_mutex)
1444 {
1445     bool b;
1446
1447     ovs_mutex_lock(&ofproto_mutex);
1448     b = !list_is_empty(&p->pending);
1449     ovs_mutex_unlock(&ofproto_mutex);
1450
1451     return b;
1452 }
1453
1454 int
1455 ofproto_run(struct ofproto *p)
1456 {
1457     int error;
1458     uint64_t new_seq;
1459
1460     error = p->ofproto_class->run(p);
1461     if (error && error != EAGAIN) {
1462         VLOG_ERR_RL(&rl, "%s: run failed (%s)", p->name, ovs_strerror(error));
1463     }
1464
1465     run_rule_executes(p);
1466
1467     /* Restore the eviction group heap invariant occasionally. */
1468     if (p->eviction_group_timer < time_msec()) {
1469         size_t i;
1470
1471         p->eviction_group_timer = time_msec() + 1000;
1472
1473         for (i = 0; i < p->n_tables; i++) {
1474             struct oftable *table = &p->tables[i];
1475             struct eviction_group *evg;
1476             struct cls_cursor cursor;
1477             struct rule *rule;
1478
1479             if (!table->eviction_fields) {
1480                 continue;
1481             }
1482
1483             ovs_mutex_lock(&ofproto_mutex);
1484             fat_rwlock_rdlock(&table->cls.rwlock);
1485             cls_cursor_init(&cursor, &table->cls, NULL);
1486             CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
1487                 if (rule->idle_timeout || rule->hard_timeout) {
1488                     if (!rule->eviction_group) {
1489                         eviction_group_add_rule(rule);
1490                     } else {
1491                         heap_raw_change(&rule->evg_node,
1492                                         rule_eviction_priority(p, rule));
1493                     }
1494                 }
1495             }
1496             fat_rwlock_unlock(&table->cls.rwlock);
1497
1498             HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
1499                 heap_rebuild(&evg->rules);
1500             }
1501             ovs_mutex_unlock(&ofproto_mutex);
1502         }
1503     }
1504
1505     if (p->ofproto_class->port_poll) {
1506         char *devname;
1507
1508         while ((error = p->ofproto_class->port_poll(p, &devname)) != EAGAIN) {
1509             process_port_change(p, error, devname);
1510         }
1511     }
1512
1513     new_seq = seq_read(connectivity_seq_get());
1514     if (new_seq != p->change_seq) {
1515         struct sset devnames;
1516         const char *devname;
1517         struct ofport *ofport;
1518
1519         /* Update OpenFlow port status for any port whose netdev has changed.
1520          *
1521          * Refreshing a given 'ofport' can cause an arbitrary ofport to be
1522          * destroyed, so it's not safe to update ports directly from the
1523          * HMAP_FOR_EACH loop, or even to use HMAP_FOR_EACH_SAFE.  Instead, we
1524          * need this two-phase approach. */
1525         sset_init(&devnames);
1526         HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1527             uint64_t port_change_seq;
1528
1529             port_change_seq = netdev_get_change_seq(ofport->netdev);
1530             if (ofport->change_seq != port_change_seq) {
1531                 ofport->change_seq = port_change_seq;
1532                 sset_add(&devnames, netdev_get_name(ofport->netdev));
1533             }
1534         }
1535         SSET_FOR_EACH (devname, &devnames) {
1536             update_port(p, devname);
1537         }
1538         sset_destroy(&devnames);
1539
1540         p->change_seq = new_seq;
1541     }
1542
1543     switch (p->state) {
1544     case S_OPENFLOW:
1545         connmgr_run(p->connmgr, handle_openflow);
1546         break;
1547
1548     case S_EVICT:
1549         connmgr_run(p->connmgr, NULL);
1550         ofproto_evict(p);
1551         if (!any_pending_ops(p)) {
1552             p->state = S_OPENFLOW;
1553         }
1554         break;
1555
1556     case S_FLUSH:
1557         connmgr_run(p->connmgr, NULL);
1558         ofproto_flush__(p);
1559         if (!any_pending_ops(p)) {
1560             connmgr_flushed(p->connmgr);
1561             p->state = S_OPENFLOW;
1562         }
1563         break;
1564
1565     default:
1566         OVS_NOT_REACHED();
1567     }
1568
1569     return error;
1570 }
1571
1572 void
1573 ofproto_wait(struct ofproto *p)
1574 {
1575     p->ofproto_class->wait(p);
1576     if (p->ofproto_class->port_poll_wait) {
1577         p->ofproto_class->port_poll_wait(p);
1578     }
1579     seq_wait(connectivity_seq_get(), p->change_seq);
1580
1581     switch (p->state) {
1582     case S_OPENFLOW:
1583         connmgr_wait(p->connmgr, true);
1584         break;
1585
1586     case S_EVICT:
1587     case S_FLUSH:
1588         connmgr_wait(p->connmgr, false);
1589         if (!any_pending_ops(p)) {
1590             poll_immediate_wake();
1591         }
1592         break;
1593     }
1594 }
1595
1596 bool
1597 ofproto_is_alive(const struct ofproto *p)
1598 {
1599     return connmgr_has_controllers(p->connmgr);
1600 }
1601
1602 /* Adds some memory usage statistics for 'ofproto' into 'usage', for use with
1603  * memory_report(). */
1604 void
1605 ofproto_get_memory_usage(const struct ofproto *ofproto, struct simap *usage)
1606 {
1607     const struct oftable *table;
1608     unsigned int n_rules;
1609
1610     simap_increase(usage, "ports", hmap_count(&ofproto->ports));
1611
1612     ovs_mutex_lock(&ofproto_mutex);
1613     simap_increase(usage, "ops",
1614                    ofproto->n_pending + hmap_count(&ofproto->deletions));
1615     ovs_mutex_unlock(&ofproto_mutex);
1616
1617     n_rules = 0;
1618     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1619         fat_rwlock_rdlock(&table->cls.rwlock);
1620         n_rules += classifier_count(&table->cls);
1621         fat_rwlock_unlock(&table->cls.rwlock);
1622     }
1623     simap_increase(usage, "rules", n_rules);
1624
1625     if (ofproto->ofproto_class->get_memory_usage) {
1626         ofproto->ofproto_class->get_memory_usage(ofproto, usage);
1627     }
1628
1629     connmgr_get_memory_usage(ofproto->connmgr, usage);
1630 }
1631
1632 void
1633 ofproto_type_get_memory_usage(const char *datapath_type, struct simap *usage)
1634 {
1635     const struct ofproto_class *class;
1636
1637     datapath_type = ofproto_normalize_type(datapath_type);
1638     class = ofproto_class_find__(datapath_type);
1639
1640     if (class && class->type_get_memory_usage) {
1641         class->type_get_memory_usage(datapath_type, usage);
1642     }
1643 }
1644
1645 void
1646 ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
1647                                     struct shash *info)
1648 {
1649     connmgr_get_controller_info(ofproto->connmgr, info);
1650 }
1651
1652 void
1653 ofproto_free_ofproto_controller_info(struct shash *info)
1654 {
1655     connmgr_free_controller_info(info);
1656 }
1657
1658 /* Makes a deep copy of 'old' into 'port'. */
1659 void
1660 ofproto_port_clone(struct ofproto_port *port, const struct ofproto_port *old)
1661 {
1662     port->name = xstrdup(old->name);
1663     port->type = xstrdup(old->type);
1664     port->ofp_port = old->ofp_port;
1665 }
1666
1667 /* Frees memory allocated to members of 'ofproto_port'.
1668  *
1669  * Do not call this function on an ofproto_port obtained from
1670  * ofproto_port_dump_next(): that function retains ownership of the data in the
1671  * ofproto_port. */
1672 void
1673 ofproto_port_destroy(struct ofproto_port *ofproto_port)
1674 {
1675     free(ofproto_port->name);
1676     free(ofproto_port->type);
1677 }
1678
1679 /* Initializes 'dump' to begin dumping the ports in an ofproto.
1680  *
1681  * This function provides no status indication.  An error status for the entire
1682  * dump operation is provided when it is completed by calling
1683  * ofproto_port_dump_done().
1684  */
1685 void
1686 ofproto_port_dump_start(struct ofproto_port_dump *dump,
1687                         const struct ofproto *ofproto)
1688 {
1689     dump->ofproto = ofproto;
1690     dump->error = ofproto->ofproto_class->port_dump_start(ofproto,
1691                                                           &dump->state);
1692 }
1693
1694 /* Attempts to retrieve another port from 'dump', which must have been created
1695  * with ofproto_port_dump_start().  On success, stores a new ofproto_port into
1696  * 'port' and returns true.  On failure, returns false.
1697  *
1698  * Failure might indicate an actual error or merely that the last port has been
1699  * dumped.  An error status for the entire dump operation is provided when it
1700  * is completed by calling ofproto_port_dump_done().
1701  *
1702  * The ofproto owns the data stored in 'port'.  It will remain valid until at
1703  * least the next time 'dump' is passed to ofproto_port_dump_next() or
1704  * ofproto_port_dump_done(). */
1705 bool
1706 ofproto_port_dump_next(struct ofproto_port_dump *dump,
1707                        struct ofproto_port *port)
1708 {
1709     const struct ofproto *ofproto = dump->ofproto;
1710
1711     if (dump->error) {
1712         return false;
1713     }
1714
1715     dump->error = ofproto->ofproto_class->port_dump_next(ofproto, dump->state,
1716                                                          port);
1717     if (dump->error) {
1718         ofproto->ofproto_class->port_dump_done(ofproto, dump->state);
1719         return false;
1720     }
1721     return true;
1722 }
1723
1724 /* Completes port table dump operation 'dump', which must have been created
1725  * with ofproto_port_dump_start().  Returns 0 if the dump operation was
1726  * error-free, otherwise a positive errno value describing the problem. */
1727 int
1728 ofproto_port_dump_done(struct ofproto_port_dump *dump)
1729 {
1730     const struct ofproto *ofproto = dump->ofproto;
1731     if (!dump->error) {
1732         dump->error = ofproto->ofproto_class->port_dump_done(ofproto,
1733                                                              dump->state);
1734     }
1735     return dump->error == EOF ? 0 : dump->error;
1736 }
1737
1738 /* Returns the type to pass to netdev_open() when a datapath of type
1739  * 'datapath_type' has a port of type 'port_type', for a few special
1740  * cases when a netdev type differs from a port type.  For example, when
1741  * using the userspace datapath, a port of type "internal" needs to be
1742  * opened as "tap".
1743  *
1744  * Returns either 'type' itself or a string literal, which must not be
1745  * freed. */
1746 const char *
1747 ofproto_port_open_type(const char *datapath_type, const char *port_type)
1748 {
1749     const struct ofproto_class *class;
1750
1751     datapath_type = ofproto_normalize_type(datapath_type);
1752     class = ofproto_class_find__(datapath_type);
1753     if (!class) {
1754         return port_type;
1755     }
1756
1757     return (class->port_open_type
1758             ? class->port_open_type(datapath_type, port_type)
1759             : port_type);
1760 }
1761
1762 /* Attempts to add 'netdev' as a port on 'ofproto'.  If 'ofp_portp' is
1763  * non-null and '*ofp_portp' is not OFPP_NONE, attempts to use that as
1764  * the port's OpenFlow port number.
1765  *
1766  * If successful, returns 0 and sets '*ofp_portp' to the new port's
1767  * OpenFlow port number (if 'ofp_portp' is non-null).  On failure,
1768  * returns a positive errno value and sets '*ofp_portp' to OFPP_NONE (if
1769  * 'ofp_portp' is non-null). */
1770 int
1771 ofproto_port_add(struct ofproto *ofproto, struct netdev *netdev,
1772                  ofp_port_t *ofp_portp)
1773 {
1774     ofp_port_t ofp_port = ofp_portp ? *ofp_portp : OFPP_NONE;
1775     int error;
1776
1777     error = ofproto->ofproto_class->port_add(ofproto, netdev);
1778     if (!error) {
1779         const char *netdev_name = netdev_get_name(netdev);
1780
1781         simap_put(&ofproto->ofp_requests, netdev_name,
1782                   ofp_to_u16(ofp_port));
1783         update_port(ofproto, netdev_name);
1784     }
1785     if (ofp_portp) {
1786         *ofp_portp = OFPP_NONE;
1787         if (!error) {
1788             struct ofproto_port ofproto_port;
1789
1790             error = ofproto_port_query_by_name(ofproto,
1791                                                netdev_get_name(netdev),
1792                                                &ofproto_port);
1793             if (!error) {
1794                 *ofp_portp = ofproto_port.ofp_port;
1795                 ofproto_port_destroy(&ofproto_port);
1796             }
1797         }
1798     }
1799     return error;
1800 }
1801
1802 /* Looks up a port named 'devname' in 'ofproto'.  On success, returns 0 and
1803  * initializes '*port' appropriately; on failure, returns a positive errno
1804  * value.
1805  *
1806  * The caller owns the data in 'ofproto_port' and must free it with
1807  * ofproto_port_destroy() when it is no longer needed. */
1808 int
1809 ofproto_port_query_by_name(const struct ofproto *ofproto, const char *devname,
1810                            struct ofproto_port *port)
1811 {
1812     int error;
1813
1814     error = ofproto->ofproto_class->port_query_by_name(ofproto, devname, port);
1815     if (error) {
1816         memset(port, 0, sizeof *port);
1817     }
1818     return error;
1819 }
1820
1821 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'.
1822  * Returns 0 if successful, otherwise a positive errno. */
1823 int
1824 ofproto_port_del(struct ofproto *ofproto, ofp_port_t ofp_port)
1825 {
1826     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1827     const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
1828     struct simap_node *ofp_request_node;
1829     int error;
1830
1831     ofp_request_node = simap_find(&ofproto->ofp_requests, name);
1832     if (ofp_request_node) {
1833         simap_delete(&ofproto->ofp_requests, ofp_request_node);
1834     }
1835
1836     error = ofproto->ofproto_class->port_del(ofproto, ofp_port);
1837     if (!error && ofport) {
1838         /* 'name' is the netdev's name and update_port() is going to close the
1839          * netdev.  Just in case update_port() refers to 'name' after it
1840          * destroys 'ofport', make a copy of it around the update_port()
1841          * call. */
1842         char *devname = xstrdup(name);
1843         update_port(ofproto, devname);
1844         free(devname);
1845     }
1846     return error;
1847 }
1848
1849 static void
1850 flow_mod_init(struct ofputil_flow_mod *fm,
1851               const struct match *match, unsigned int priority,
1852               const struct ofpact *ofpacts, size_t ofpacts_len,
1853               enum ofp_flow_mod_command command)
1854 {
1855     memset(fm, 0, sizeof *fm);
1856     fm->match = *match;
1857     fm->priority = priority;
1858     fm->cookie = 0;
1859     fm->new_cookie = 0;
1860     fm->modify_cookie = false;
1861     fm->table_id = 0;
1862     fm->command = command;
1863     fm->idle_timeout = 0;
1864     fm->hard_timeout = 0;
1865     fm->buffer_id = UINT32_MAX;
1866     fm->out_port = OFPP_ANY;
1867     fm->out_group = OFPG_ANY;
1868     fm->flags = 0;
1869     fm->ofpacts = CONST_CAST(struct ofpact *, ofpacts);
1870     fm->ofpacts_len = ofpacts_len;
1871     fm->delete_reason = OFPRR_DELETE;
1872 }
1873
1874 static int
1875 simple_flow_mod(struct ofproto *ofproto,
1876                 const struct match *match, unsigned int priority,
1877                 const struct ofpact *ofpacts, size_t ofpacts_len,
1878                 enum ofp_flow_mod_command command)
1879 {
1880     struct ofputil_flow_mod fm;
1881
1882     flow_mod_init(&fm, match, priority, ofpacts, ofpacts_len, command);
1883
1884     return handle_flow_mod__(ofproto, NULL, &fm, NULL);
1885 }
1886
1887 /* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
1888  * performs the 'n_actions' actions in 'actions'.  The new flow will not
1889  * timeout.
1890  *
1891  * If cls_rule->priority is in the range of priorities supported by OpenFlow
1892  * (0...65535, inclusive) then the flow will be visible to OpenFlow
1893  * controllers; otherwise, it will be hidden.
1894  *
1895  * The caller retains ownership of 'cls_rule' and 'ofpacts'.
1896  *
1897  * This is a helper function for in-band control and fail-open. */
1898 void
1899 ofproto_add_flow(struct ofproto *ofproto, const struct match *match,
1900                  unsigned int priority,
1901                  const struct ofpact *ofpacts, size_t ofpacts_len)
1902     OVS_EXCLUDED(ofproto_mutex)
1903 {
1904     const struct rule *rule;
1905     bool must_add;
1906
1907     /* First do a cheap check whether the rule we're looking for already exists
1908      * with the actions that we want.  If it does, then we're done. */
1909     fat_rwlock_rdlock(&ofproto->tables[0].cls.rwlock);
1910     rule = rule_from_cls_rule(classifier_find_match_exactly(
1911                                   &ofproto->tables[0].cls, match, priority));
1912     if (rule) {
1913         const struct rule_actions *actions = rule_get_actions(rule);
1914         must_add = !ofpacts_equal(actions->ofpacts, actions->ofpacts_len,
1915                                   ofpacts, ofpacts_len);
1916     } else {
1917         must_add = true;
1918     }
1919     fat_rwlock_unlock(&ofproto->tables[0].cls.rwlock);
1920
1921     /* If there's no such rule or the rule doesn't have the actions we want,
1922      * fall back to a executing a full flow mod.  We can't optimize this at
1923      * all because we didn't take enough locks above to ensure that the flow
1924      * table didn't already change beneath us.  */
1925     if (must_add) {
1926         simple_flow_mod(ofproto, match, priority, ofpacts, ofpacts_len,
1927                         OFPFC_MODIFY_STRICT);
1928     }
1929 }
1930
1931 /* Executes the flow modification specified in 'fm'.  Returns 0 on success, an
1932  * OFPERR_* OpenFlow error code on failure, or OFPROTO_POSTPONE if the
1933  * operation cannot be initiated now but may be retried later.
1934  *
1935  * This is a helper function for in-band control and fail-open and the "learn"
1936  * action. */
1937 int
1938 ofproto_flow_mod(struct ofproto *ofproto, struct ofputil_flow_mod *fm)
1939     OVS_EXCLUDED(ofproto_mutex)
1940 {
1941     /* Optimize for the most common case of a repeated learn action.
1942      * If an identical flow already exists we only need to update its
1943      * 'modified' time. */
1944     if (fm->command == OFPFC_MODIFY_STRICT && fm->table_id != OFPTT_ALL
1945         && !(fm->flags & OFPUTIL_FF_RESET_COUNTS)) {
1946         struct oftable *table = &ofproto->tables[fm->table_id];
1947         struct rule *rule;
1948         bool done = false;
1949
1950         fat_rwlock_rdlock(&table->cls.rwlock);
1951         rule = rule_from_cls_rule(classifier_find_match_exactly(&table->cls,
1952                                                                 &fm->match,
1953                                                                 fm->priority));
1954         if (rule) {
1955             /* Reading many of the rule fields and writing on 'modified'
1956              * requires the rule->mutex.  Also, rule->actions may change
1957              * if rule->mutex is not held. */
1958             const struct rule_actions *actions;
1959
1960             ovs_mutex_lock(&rule->mutex);
1961             actions = rule_get_actions(rule);
1962             if (rule->idle_timeout == fm->idle_timeout
1963                 && rule->hard_timeout == fm->hard_timeout
1964                 && rule->flags == (fm->flags & OFPUTIL_FF_STATE)
1965                 && (!fm->modify_cookie || (fm->new_cookie == rule->flow_cookie))
1966                 && ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
1967                                  actions->ofpacts, actions->ofpacts_len)) {
1968                 /* Rule already exists and need not change, only update the
1969                    modified timestamp. */
1970                 rule->modified = time_msec();
1971                 done = true;
1972             }
1973             ovs_mutex_unlock(&rule->mutex);
1974         }
1975         fat_rwlock_unlock(&table->cls.rwlock);
1976
1977         if (done) {
1978             return 0;
1979         }
1980     }
1981
1982     return handle_flow_mod__(ofproto, NULL, fm, NULL);
1983 }
1984
1985 /* Searches for a rule with matching criteria exactly equal to 'target' in
1986  * ofproto's table 0 and, if it finds one, deletes it.
1987  *
1988  * This is a helper function for in-band control and fail-open. */
1989 bool
1990 ofproto_delete_flow(struct ofproto *ofproto,
1991                     const struct match *target, unsigned int priority)
1992     OVS_EXCLUDED(ofproto_mutex)
1993 {
1994     struct classifier *cls = &ofproto->tables[0].cls;
1995     struct rule *rule;
1996
1997     /* First do a cheap check whether the rule we're looking for has already
1998      * been deleted.  If so, then we're done. */
1999     fat_rwlock_rdlock(&cls->rwlock);
2000     rule = rule_from_cls_rule(classifier_find_match_exactly(cls, target,
2001                                                             priority));
2002     fat_rwlock_unlock(&cls->rwlock);
2003     if (!rule) {
2004         return true;
2005     }
2006
2007     /* Fall back to a executing a full flow mod.  We can't optimize this at all
2008      * because we didn't take enough locks above to ensure that the flow table
2009      * didn't already change beneath us.  */
2010     return simple_flow_mod(ofproto, target, priority, NULL, 0,
2011                            OFPFC_DELETE_STRICT) != OFPROTO_POSTPONE;
2012 }
2013
2014 /* Starts the process of deleting all of the flows from all of ofproto's flow
2015  * tables and then reintroducing the flows required by in-band control and
2016  * fail-open.  The process will complete in a later call to ofproto_run(). */
2017 void
2018 ofproto_flush_flows(struct ofproto *ofproto)
2019 {
2020     COVERAGE_INC(ofproto_flush);
2021     ofproto->state = S_FLUSH;
2022 }
2023 \f
2024 static void
2025 reinit_ports(struct ofproto *p)
2026 {
2027     struct ofproto_port_dump dump;
2028     struct sset devnames;
2029     struct ofport *ofport;
2030     struct ofproto_port ofproto_port;
2031     const char *devname;
2032
2033     COVERAGE_INC(ofproto_reinit_ports);
2034
2035     sset_init(&devnames);
2036     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2037         sset_add(&devnames, netdev_get_name(ofport->netdev));
2038     }
2039     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2040         sset_add(&devnames, ofproto_port.name);
2041     }
2042
2043     SSET_FOR_EACH (devname, &devnames) {
2044         update_port(p, devname);
2045     }
2046     sset_destroy(&devnames);
2047 }
2048
2049 static ofp_port_t
2050 alloc_ofp_port(struct ofproto *ofproto, const char *netdev_name)
2051 {
2052     uint16_t port_idx;
2053
2054     port_idx = simap_get(&ofproto->ofp_requests, netdev_name);
2055     port_idx = port_idx ? port_idx : UINT16_MAX;
2056
2057     if (port_idx >= ofproto->max_ports
2058         || ofport_get_usage(ofproto, u16_to_ofp(port_idx)) == LLONG_MAX) {
2059         uint16_t lru_ofport = 0, end_port_no = ofproto->alloc_port_no;
2060         long long int last_used_at, lru = LLONG_MAX;
2061
2062         /* Search for a free OpenFlow port number.  We try not to
2063          * immediately reuse them to prevent problems due to old
2064          * flows.
2065          *
2066          * We limit the automatically assigned port numbers to the lower half
2067          * of the port range, to reserve the upper half for assignment by
2068          * controllers. */
2069         for (;;) {
2070             if (++ofproto->alloc_port_no >= MIN(ofproto->max_ports, 32768)) {
2071                 ofproto->alloc_port_no = 1;
2072             }
2073             last_used_at = ofport_get_usage(ofproto,
2074                                          u16_to_ofp(ofproto->alloc_port_no));
2075             if (!last_used_at) {
2076                 port_idx = ofproto->alloc_port_no;
2077                 break;
2078             } else if ( last_used_at < time_msec() - 60*60*1000) {
2079                 /* If the port with ofport 'ofproto->alloc_port_no' was deleted
2080                  * more than an hour ago, consider it usable. */
2081                 ofport_remove_usage(ofproto,
2082                     u16_to_ofp(ofproto->alloc_port_no));
2083                 port_idx = ofproto->alloc_port_no;
2084                 break;
2085             } else if (last_used_at < lru) {
2086                 lru = last_used_at;
2087                 lru_ofport = ofproto->alloc_port_no;
2088             }
2089
2090             if (ofproto->alloc_port_no == end_port_no) {
2091                 if (lru_ofport) {
2092                     port_idx = lru_ofport;
2093                     break;
2094                 }
2095                 return OFPP_NONE;
2096             }
2097         }
2098     }
2099     ofport_set_usage(ofproto, u16_to_ofp(port_idx), LLONG_MAX);
2100     return u16_to_ofp(port_idx);
2101 }
2102
2103 static void
2104 dealloc_ofp_port(struct ofproto *ofproto, ofp_port_t ofp_port)
2105 {
2106     if (ofp_to_u16(ofp_port) < ofproto->max_ports) {
2107         ofport_set_usage(ofproto, ofp_port, time_msec());
2108     }
2109 }
2110
2111 /* Opens and returns a netdev for 'ofproto_port' in 'ofproto', or a null
2112  * pointer if the netdev cannot be opened.  On success, also fills in
2113  * '*pp'.  */
2114 static struct netdev *
2115 ofport_open(struct ofproto *ofproto,
2116             struct ofproto_port *ofproto_port,
2117             struct ofputil_phy_port *pp)
2118 {
2119     enum netdev_flags flags;
2120     struct netdev *netdev;
2121     int error;
2122
2123     error = netdev_open(ofproto_port->name, ofproto_port->type, &netdev);
2124     if (error) {
2125         VLOG_WARN_RL(&rl, "%s: ignoring port %s (%"PRIu16") because netdev %s "
2126                      "cannot be opened (%s)",
2127                      ofproto->name,
2128                      ofproto_port->name, ofproto_port->ofp_port,
2129                      ofproto_port->name, ovs_strerror(error));
2130         return NULL;
2131     }
2132
2133     if (ofproto_port->ofp_port == OFPP_NONE) {
2134         if (!strcmp(ofproto->name, ofproto_port->name)) {
2135             ofproto_port->ofp_port = OFPP_LOCAL;
2136         } else {
2137             ofproto_port->ofp_port = alloc_ofp_port(ofproto,
2138                                                     ofproto_port->name);
2139         }
2140     }
2141     pp->port_no = ofproto_port->ofp_port;
2142     netdev_get_etheraddr(netdev, pp->hw_addr);
2143     ovs_strlcpy(pp->name, ofproto_port->name, sizeof pp->name);
2144     netdev_get_flags(netdev, &flags);
2145     pp->config = flags & NETDEV_UP ? 0 : OFPUTIL_PC_PORT_DOWN;
2146     pp->state = netdev_get_carrier(netdev) ? 0 : OFPUTIL_PS_LINK_DOWN;
2147     netdev_get_features(netdev, &pp->curr, &pp->advertised,
2148                         &pp->supported, &pp->peer);
2149     pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
2150     pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
2151
2152     return netdev;
2153 }
2154
2155 /* Returns true if most fields of 'a' and 'b' are equal.  Differences in name,
2156  * port number, and 'config' bits other than OFPUTIL_PC_PORT_DOWN are
2157  * disregarded. */
2158 static bool
2159 ofport_equal(const struct ofputil_phy_port *a,
2160              const struct ofputil_phy_port *b)
2161 {
2162     return (eth_addr_equals(a->hw_addr, b->hw_addr)
2163             && a->state == b->state
2164             && !((a->config ^ b->config) & OFPUTIL_PC_PORT_DOWN)
2165             && a->curr == b->curr
2166             && a->advertised == b->advertised
2167             && a->supported == b->supported
2168             && a->peer == b->peer
2169             && a->curr_speed == b->curr_speed
2170             && a->max_speed == b->max_speed);
2171 }
2172
2173 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
2174  * The caller must ensure that 'p' does not have a conflicting ofport (that is,
2175  * one with the same name or port number). */
2176 static void
2177 ofport_install(struct ofproto *p,
2178                struct netdev *netdev, const struct ofputil_phy_port *pp)
2179 {
2180     const char *netdev_name = netdev_get_name(netdev);
2181     struct ofport *ofport;
2182     int error;
2183
2184     /* Create ofport. */
2185     ofport = p->ofproto_class->port_alloc();
2186     if (!ofport) {
2187         error = ENOMEM;
2188         goto error;
2189     }
2190     ofport->ofproto = p;
2191     ofport->netdev = netdev;
2192     ofport->change_seq = netdev_get_change_seq(netdev);
2193     ofport->pp = *pp;
2194     ofport->ofp_port = pp->port_no;
2195     ofport->created = time_msec();
2196
2197     /* Add port to 'p'. */
2198     hmap_insert(&p->ports, &ofport->hmap_node,
2199                 hash_ofp_port(ofport->ofp_port));
2200     shash_add(&p->port_by_name, netdev_name, ofport);
2201
2202     update_mtu(p, ofport);
2203
2204     /* Let the ofproto_class initialize its private data. */
2205     error = p->ofproto_class->port_construct(ofport);
2206     if (error) {
2207         goto error;
2208     }
2209     connmgr_send_port_status(p->connmgr, NULL, pp, OFPPR_ADD);
2210     return;
2211
2212 error:
2213     VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
2214                  p->name, netdev_name, ovs_strerror(error));
2215     if (ofport) {
2216         ofport_destroy__(ofport);
2217     } else {
2218         netdev_close(netdev);
2219     }
2220 }
2221
2222 /* Removes 'ofport' from 'p' and destroys it. */
2223 static void
2224 ofport_remove(struct ofport *ofport)
2225 {
2226     connmgr_send_port_status(ofport->ofproto->connmgr, NULL, &ofport->pp,
2227                              OFPPR_DELETE);
2228     ofport_destroy(ofport);
2229 }
2230
2231 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
2232  * destroys it. */
2233 static void
2234 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
2235 {
2236     struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
2237     if (port) {
2238         ofport_remove(port);
2239     }
2240 }
2241
2242 /* Updates 'port' with new 'pp' description.
2243  *
2244  * Does not handle a name or port number change.  The caller must implement
2245  * such a change as a delete followed by an add.  */
2246 static void
2247 ofport_modified(struct ofport *port, struct ofputil_phy_port *pp)
2248 {
2249     memcpy(port->pp.hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2250     port->pp.config = ((port->pp.config & ~OFPUTIL_PC_PORT_DOWN)
2251                         | (pp->config & OFPUTIL_PC_PORT_DOWN));
2252     port->pp.state = ((port->pp.state & ~OFPUTIL_PS_LINK_DOWN)
2253                       | (pp->state & OFPUTIL_PS_LINK_DOWN));
2254     port->pp.curr = pp->curr;
2255     port->pp.advertised = pp->advertised;
2256     port->pp.supported = pp->supported;
2257     port->pp.peer = pp->peer;
2258     port->pp.curr_speed = pp->curr_speed;
2259     port->pp.max_speed = pp->max_speed;
2260
2261     connmgr_send_port_status(port->ofproto->connmgr, NULL,
2262                              &port->pp, OFPPR_MODIFY);
2263 }
2264
2265 /* Update OpenFlow 'state' in 'port' and notify controller. */
2266 void
2267 ofproto_port_set_state(struct ofport *port, enum ofputil_port_state state)
2268 {
2269     if (port->pp.state != state) {
2270         port->pp.state = state;
2271         connmgr_send_port_status(port->ofproto->connmgr, NULL,
2272                                  &port->pp, OFPPR_MODIFY);
2273     }
2274 }
2275
2276 void
2277 ofproto_port_unregister(struct ofproto *ofproto, ofp_port_t ofp_port)
2278 {
2279     struct ofport *port = ofproto_get_port(ofproto, ofp_port);
2280     if (port) {
2281         if (port->ofproto->ofproto_class->set_realdev) {
2282             port->ofproto->ofproto_class->set_realdev(port, 0, 0);
2283         }
2284         if (port->ofproto->ofproto_class->set_stp_port) {
2285             port->ofproto->ofproto_class->set_stp_port(port, NULL);
2286         }
2287         if (port->ofproto->ofproto_class->set_cfm) {
2288             port->ofproto->ofproto_class->set_cfm(port, NULL);
2289         }
2290         if (port->ofproto->ofproto_class->bundle_remove) {
2291             port->ofproto->ofproto_class->bundle_remove(port);
2292         }
2293     }
2294 }
2295
2296 static void
2297 ofport_destroy__(struct ofport *port)
2298 {
2299     struct ofproto *ofproto = port->ofproto;
2300     const char *name = netdev_get_name(port->netdev);
2301
2302     hmap_remove(&ofproto->ports, &port->hmap_node);
2303     shash_delete(&ofproto->port_by_name,
2304                  shash_find(&ofproto->port_by_name, name));
2305
2306     netdev_close(port->netdev);
2307     ofproto->ofproto_class->port_dealloc(port);
2308 }
2309
2310 static void
2311 ofport_destroy(struct ofport *port)
2312 {
2313     if (port) {
2314         dealloc_ofp_port(port->ofproto, port->ofp_port);
2315         port->ofproto->ofproto_class->port_destruct(port);
2316         ofport_destroy__(port);
2317      }
2318 }
2319
2320 struct ofport *
2321 ofproto_get_port(const struct ofproto *ofproto, ofp_port_t ofp_port)
2322 {
2323     struct ofport *port;
2324
2325     HMAP_FOR_EACH_IN_BUCKET (port, hmap_node, hash_ofp_port(ofp_port),
2326                              &ofproto->ports) {
2327         if (port->ofp_port == ofp_port) {
2328             return port;
2329         }
2330     }
2331     return NULL;
2332 }
2333
2334 static long long int
2335 ofport_get_usage(const struct ofproto *ofproto, ofp_port_t ofp_port)
2336 {
2337     struct ofport_usage *usage;
2338
2339     HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2340                              &ofproto->ofport_usage) {
2341         if (usage->ofp_port == ofp_port) {
2342             return usage->last_used;
2343         }
2344     }
2345     return 0;
2346 }
2347
2348 static void
2349 ofport_set_usage(struct ofproto *ofproto, ofp_port_t ofp_port,
2350                  long long int last_used)
2351 {
2352     struct ofport_usage *usage;
2353     HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2354                              &ofproto->ofport_usage) {
2355         if (usage->ofp_port == ofp_port) {
2356             usage->last_used = last_used;
2357             return;
2358         }
2359     }
2360     ovs_assert(last_used == LLONG_MAX);
2361
2362     usage = xmalloc(sizeof *usage);
2363     usage->ofp_port = ofp_port;
2364     usage->last_used = last_used;
2365     hmap_insert(&ofproto->ofport_usage, &usage->hmap_node,
2366                 hash_ofp_port(ofp_port));
2367 }
2368
2369 static void
2370 ofport_remove_usage(struct ofproto *ofproto, ofp_port_t ofp_port)
2371 {
2372     struct ofport_usage *usage;
2373     HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2374                              &ofproto->ofport_usage) {
2375         if (usage->ofp_port == ofp_port) {
2376             hmap_remove(&ofproto->ofport_usage, &usage->hmap_node);
2377             free(usage);
2378             break;
2379         }
2380     }
2381 }
2382
2383 int
2384 ofproto_port_get_stats(const struct ofport *port, struct netdev_stats *stats)
2385 {
2386     struct ofproto *ofproto = port->ofproto;
2387     int error;
2388
2389     if (ofproto->ofproto_class->port_get_stats) {
2390         error = ofproto->ofproto_class->port_get_stats(port, stats);
2391     } else {
2392         error = EOPNOTSUPP;
2393     }
2394
2395     return error;
2396 }
2397
2398 static void
2399 update_port(struct ofproto *ofproto, const char *name)
2400 {
2401     struct ofproto_port ofproto_port;
2402     struct ofputil_phy_port pp;
2403     struct netdev *netdev;
2404     struct ofport *port;
2405
2406     COVERAGE_INC(ofproto_update_port);
2407
2408     /* Fetch 'name''s location and properties from the datapath. */
2409     netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
2410               ? ofport_open(ofproto, &ofproto_port, &pp)
2411               : NULL);
2412
2413     if (netdev) {
2414         port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
2415         if (port && !strcmp(netdev_get_name(port->netdev), name)) {
2416             struct netdev *old_netdev = port->netdev;
2417
2418             /* 'name' hasn't changed location.  Any properties changed? */
2419             if (!ofport_equal(&port->pp, &pp)) {
2420                 ofport_modified(port, &pp);
2421             }
2422
2423             update_mtu(ofproto, port);
2424
2425             /* Install the newly opened netdev in case it has changed.
2426              * Don't close the old netdev yet in case port_modified has to
2427              * remove a retained reference to it.*/
2428             port->netdev = netdev;
2429             port->change_seq = netdev_get_change_seq(netdev);
2430
2431             if (port->ofproto->ofproto_class->port_modified) {
2432                 port->ofproto->ofproto_class->port_modified(port);
2433             }
2434
2435             netdev_close(old_netdev);
2436         } else {
2437             /* If 'port' is nonnull then its name differs from 'name' and thus
2438              * we should delete it.  If we think there's a port named 'name'
2439              * then its port number must be wrong now so delete it too. */
2440             if (port) {
2441                 ofport_remove(port);
2442             }
2443             ofport_remove_with_name(ofproto, name);
2444             ofport_install(ofproto, netdev, &pp);
2445         }
2446     } else {
2447         /* Any port named 'name' is gone now. */
2448         ofport_remove_with_name(ofproto, name);
2449     }
2450     ofproto_port_destroy(&ofproto_port);
2451 }
2452
2453 static int
2454 init_ports(struct ofproto *p)
2455 {
2456     struct ofproto_port_dump dump;
2457     struct ofproto_port ofproto_port;
2458     struct shash_node *node, *next;
2459
2460     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2461         const char *name = ofproto_port.name;
2462
2463         if (shash_find(&p->port_by_name, name)) {
2464             VLOG_WARN_RL(&rl, "%s: ignoring duplicate device %s in datapath",
2465                          p->name, name);
2466         } else {
2467             struct ofputil_phy_port pp;
2468             struct netdev *netdev;
2469
2470             /* Check if an OpenFlow port number had been requested. */
2471             node = shash_find(&init_ofp_ports, name);
2472             if (node) {
2473                 const struct iface_hint *iface_hint = node->data;
2474                 simap_put(&p->ofp_requests, name,
2475                           ofp_to_u16(iface_hint->ofp_port));
2476             }
2477
2478             netdev = ofport_open(p, &ofproto_port, &pp);
2479             if (netdev) {
2480                 ofport_install(p, netdev, &pp);
2481                 if (ofp_to_u16(ofproto_port.ofp_port) < p->max_ports) {
2482                     p->alloc_port_no = MAX(p->alloc_port_no,
2483                                            ofp_to_u16(ofproto_port.ofp_port));
2484                 }
2485             }
2486         }
2487     }
2488
2489     SHASH_FOR_EACH_SAFE(node, next, &init_ofp_ports) {
2490         struct iface_hint *iface_hint = node->data;
2491
2492         if (!strcmp(iface_hint->br_name, p->name)) {
2493             free(iface_hint->br_name);
2494             free(iface_hint->br_type);
2495             free(iface_hint);
2496             shash_delete(&init_ofp_ports, node);
2497         }
2498     }
2499
2500     return 0;
2501 }
2502
2503 /* Find the minimum MTU of all non-datapath devices attached to 'p'.
2504  * Returns ETH_PAYLOAD_MAX or the minimum of the ports. */
2505 static int
2506 find_min_mtu(struct ofproto *p)
2507 {
2508     struct ofport *ofport;
2509     int mtu = 0;
2510
2511     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2512         struct netdev *netdev = ofport->netdev;
2513         int dev_mtu;
2514
2515         /* Skip any internal ports, since that's what we're trying to
2516          * set. */
2517         if (!strcmp(netdev_get_type(netdev), "internal")) {
2518             continue;
2519         }
2520
2521         if (netdev_get_mtu(netdev, &dev_mtu)) {
2522             continue;
2523         }
2524         if (!mtu || dev_mtu < mtu) {
2525             mtu = dev_mtu;
2526         }
2527     }
2528
2529     return mtu ? mtu: ETH_PAYLOAD_MAX;
2530 }
2531
2532 /* Update MTU of all datapath devices on 'p' to the minimum of the
2533  * non-datapath ports in event of 'port' added or changed. */
2534 static void
2535 update_mtu(struct ofproto *p, struct ofport *port)
2536 {
2537     struct ofport *ofport;
2538     struct netdev *netdev = port->netdev;
2539     int dev_mtu, old_min;
2540
2541     if (netdev_get_mtu(netdev, &dev_mtu)) {
2542         port->mtu = 0;
2543         return;
2544     }
2545     if (!strcmp(netdev_get_type(port->netdev), "internal")) {
2546         if (dev_mtu > p->min_mtu) {
2547            if (!netdev_set_mtu(port->netdev, p->min_mtu)) {
2548                dev_mtu = p->min_mtu;
2549            }
2550         }
2551         port->mtu = dev_mtu;
2552         return;
2553     }
2554
2555     /* For non-internal port find new min mtu. */
2556     old_min = p->min_mtu;
2557     port->mtu = dev_mtu;
2558     p->min_mtu = find_min_mtu(p);
2559     if (p->min_mtu == old_min) {
2560         return;
2561     }
2562
2563     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2564         struct netdev *netdev = ofport->netdev;
2565
2566         if (!strcmp(netdev_get_type(netdev), "internal")) {
2567             if (!netdev_set_mtu(netdev, p->min_mtu)) {
2568                 ofport->mtu = p->min_mtu;
2569             }
2570         }
2571     }
2572 }
2573 \f
2574 static void
2575 ofproto_rule_destroy__(struct rule *rule)
2576     OVS_NO_THREAD_SAFETY_ANALYSIS
2577 {
2578     cls_rule_destroy(CONST_CAST(struct cls_rule *, &rule->cr));
2579     rule_actions_destroy(rule_get_actions(rule));
2580     ovs_mutex_destroy(&rule->mutex);
2581     rule->ofproto->ofproto_class->rule_dealloc(rule);
2582 }
2583
2584 static void
2585 rule_destroy_cb(struct rule *rule)
2586 {
2587     rule->ofproto->ofproto_class->rule_destruct(rule);
2588     ofproto_rule_destroy__(rule);
2589 }
2590
2591 void
2592 ofproto_rule_ref(struct rule *rule)
2593 {
2594     if (rule) {
2595         ovs_refcount_ref(&rule->ref_count);
2596     }
2597 }
2598
2599 /* Decrements 'rule''s ref_count and schedules 'rule' to be destroyed if the
2600  * ref_count reaches 0.
2601  *
2602  * Use of RCU allows short term use (between RCU quiescent periods) without
2603  * keeping a reference.  A reference must be taken if the rule needs to
2604  * stay around accross the RCU quiescent periods. */
2605 void
2606 ofproto_rule_unref(struct rule *rule)
2607 {
2608     if (rule && ovs_refcount_unref(&rule->ref_count) == 1) {
2609         ovsrcu_postpone(rule_destroy_cb, rule);
2610     }
2611 }
2612
2613 void
2614 ofproto_group_ref(struct ofgroup *group)
2615 {
2616     if (group) {
2617         ovs_refcount_ref(&group->ref_count);
2618     }
2619 }
2620
2621 void
2622 ofproto_group_unref(struct ofgroup *group)
2623 {
2624     if (group && ovs_refcount_unref(&group->ref_count) == 1) {
2625         group->ofproto->ofproto_class->group_destruct(group);
2626         ofputil_bucket_list_destroy(&group->buckets);
2627         group->ofproto->ofproto_class->group_dealloc(group);
2628     }
2629 }
2630
2631 static uint32_t get_provider_meter_id(const struct ofproto *,
2632                                       uint32_t of_meter_id);
2633
2634 /* Creates and returns a new 'struct rule_actions', whose actions are a copy
2635  * of from the 'ofpacts_len' bytes of 'ofpacts'. */
2636 const struct rule_actions *
2637 rule_actions_create(const struct ofproto *ofproto,
2638                     const struct ofpact *ofpacts, size_t ofpacts_len)
2639 {
2640     struct rule_actions *actions;
2641
2642     actions = xmalloc(sizeof *actions + ofpacts_len);
2643     actions->ofpacts_len = ofpacts_len;
2644     actions->provider_meter_id
2645         = get_provider_meter_id(ofproto,
2646                                 ofpacts_get_meter(ofpacts, ofpacts_len));
2647     memcpy(actions->ofpacts, ofpacts, ofpacts_len);
2648
2649     return actions;
2650 }
2651
2652 /* Free the actions after the RCU quiescent period is reached. */
2653 void
2654 rule_actions_destroy(const struct rule_actions *actions)
2655 {
2656     if (actions) {
2657         ovsrcu_postpone(free, CONST_CAST(struct rule_actions *, actions));
2658     }
2659 }
2660
2661 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
2662  * that outputs to 'port' (output to OFPP_FLOOD and OFPP_ALL doesn't count). */
2663 static bool
2664 ofproto_rule_has_out_port(const struct rule *rule, ofp_port_t port)
2665     OVS_REQUIRES(ofproto_mutex)
2666 {
2667     if (port == OFPP_ANY) {
2668         return true;
2669     } else {
2670         const struct rule_actions *actions = rule_get_actions(rule);
2671         return ofpacts_output_to_port(actions->ofpacts,
2672                                       actions->ofpacts_len, port);
2673     }
2674 }
2675
2676 /* Returns true if 'rule' has group and equals group_id. */
2677 static bool
2678 ofproto_rule_has_out_group(const struct rule *rule, uint32_t group_id)
2679     OVS_REQUIRES(ofproto_mutex)
2680 {
2681     if (group_id == OFPG_ANY) {
2682         return true;
2683     } else {
2684         const struct rule_actions *actions = rule_get_actions(rule);
2685         return ofpacts_output_to_group(actions->ofpacts,
2686                                        actions->ofpacts_len, group_id);
2687     }
2688 }
2689
2690 /* Returns true if a rule related to 'op' has an OpenFlow OFPAT_OUTPUT or
2691  * OFPAT_ENQUEUE action that outputs to 'out_port'. */
2692 bool
2693 ofoperation_has_out_port(const struct ofoperation *op, ofp_port_t out_port)
2694     OVS_REQUIRES(ofproto_mutex)
2695 {
2696     if (ofproto_rule_has_out_port(op->rule, out_port)) {
2697         return true;
2698     }
2699
2700     switch (op->type) {
2701     case OFOPERATION_ADD:
2702     case OFOPERATION_DELETE:
2703         return false;
2704
2705     case OFOPERATION_MODIFY:
2706     case OFOPERATION_REPLACE:
2707         return ofpacts_output_to_port(op->actions->ofpacts,
2708                                       op->actions->ofpacts_len, out_port);
2709     }
2710
2711     OVS_NOT_REACHED();
2712 }
2713
2714 static void
2715 rule_execute_destroy(struct rule_execute *e)
2716 {
2717     ofproto_rule_unref(e->rule);
2718     list_remove(&e->list_node);
2719     free(e);
2720 }
2721
2722 /* Executes all "rule_execute" operations queued up in ofproto->rule_executes,
2723  * by passing them to the ofproto provider. */
2724 static void
2725 run_rule_executes(struct ofproto *ofproto)
2726     OVS_EXCLUDED(ofproto_mutex)
2727 {
2728     struct rule_execute *e, *next;
2729     struct list executes;
2730
2731     guarded_list_pop_all(&ofproto->rule_executes, &executes);
2732     LIST_FOR_EACH_SAFE (e, next, list_node, &executes) {
2733         struct flow flow;
2734
2735         flow_extract(e->packet, NULL, &flow);
2736         flow.in_port.ofp_port = e->in_port;
2737         ofproto->ofproto_class->rule_execute(e->rule, &flow, e->packet);
2738
2739         rule_execute_destroy(e);
2740     }
2741 }
2742
2743 /* Destroys and discards all "rule_execute" operations queued up in
2744  * ofproto->rule_executes. */
2745 static void
2746 destroy_rule_executes(struct ofproto *ofproto)
2747 {
2748     struct rule_execute *e, *next;
2749     struct list executes;
2750
2751     guarded_list_pop_all(&ofproto->rule_executes, &executes);
2752     LIST_FOR_EACH_SAFE (e, next, list_node, &executes) {
2753         ofpbuf_delete(e->packet);
2754         rule_execute_destroy(e);
2755     }
2756 }
2757
2758 /* Returns true if 'rule' should be hidden from the controller.
2759  *
2760  * Rules with priority higher than UINT16_MAX are set up by ofproto itself
2761  * (e.g. by in-band control) and are intentionally hidden from the
2762  * controller. */
2763 static bool
2764 ofproto_rule_is_hidden(const struct rule *rule)
2765 {
2766     return (rule->cr.priority > UINT16_MAX);
2767 }
2768
2769 static bool
2770 oftable_is_modifiable(const struct oftable *table,
2771                       enum ofputil_flow_mod_flags flags)
2772 {
2773     if (flags & OFPUTIL_FF_NO_READONLY) {
2774         return true;
2775     }
2776
2777     return !(table->flags & OFTABLE_READONLY);
2778 }
2779
2780 static bool
2781 rule_is_modifiable(const struct rule *rule, enum ofputil_flow_mod_flags flags)
2782 {
2783     const struct oftable *rule_table;
2784
2785     rule_table = &rule->ofproto->tables[rule->table_id];
2786     return oftable_is_modifiable(rule_table, flags);
2787 }
2788 \f
2789 static enum ofperr
2790 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
2791 {
2792     ofconn_send_reply(ofconn, make_echo_reply(oh));
2793     return 0;
2794 }
2795
2796 static enum ofperr
2797 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
2798 {
2799     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2800     struct ofputil_switch_features features;
2801     struct ofport *port;
2802     bool arp_match_ip;
2803     struct ofpbuf *b;
2804
2805     ofproto->ofproto_class->get_features(ofproto, &arp_match_ip,
2806                                          &features.actions);
2807     ovs_assert(features.actions & OFPUTIL_A_OUTPUT); /* sanity check */
2808
2809     features.datapath_id = ofproto->datapath_id;
2810     features.n_buffers = pktbuf_capacity();
2811     features.n_tables = ofproto_get_n_visible_tables(ofproto);
2812     features.capabilities = (OFPUTIL_C_FLOW_STATS | OFPUTIL_C_TABLE_STATS |
2813                              OFPUTIL_C_PORT_STATS | OFPUTIL_C_QUEUE_STATS);
2814     if (arp_match_ip) {
2815         features.capabilities |= OFPUTIL_C_ARP_MATCH_IP;
2816     }
2817     /* FIXME: Fill in proper features.auxiliary_id for auxiliary connections */
2818     features.auxiliary_id = 0;
2819     b = ofputil_encode_switch_features(&features, ofconn_get_protocol(ofconn),
2820                                        oh->xid);
2821     HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
2822         ofputil_put_switch_features_port(&port->pp, b);
2823     }
2824
2825     ofconn_send_reply(ofconn, b);
2826     return 0;
2827 }
2828
2829 static enum ofperr
2830 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
2831 {
2832     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2833     struct ofp_switch_config *osc;
2834     enum ofp_config_flags flags;
2835     struct ofpbuf *buf;
2836
2837     /* Send reply. */
2838     buf = ofpraw_alloc_reply(OFPRAW_OFPT_GET_CONFIG_REPLY, oh, 0);
2839     osc = ofpbuf_put_uninit(buf, sizeof *osc);
2840     flags = ofproto->frag_handling;
2841     /* OFPC_INVALID_TTL_TO_CONTROLLER is deprecated in OF 1.3 */
2842     if (oh->version < OFP13_VERSION
2843         && ofconn_get_invalid_ttl_to_controller(ofconn)) {
2844         flags |= OFPC_INVALID_TTL_TO_CONTROLLER;
2845     }
2846     osc->flags = htons(flags);
2847     osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
2848     ofconn_send_reply(ofconn, buf);
2849
2850     return 0;
2851 }
2852
2853 static enum ofperr
2854 handle_set_config(struct ofconn *ofconn, const struct ofp_header *oh)
2855 {
2856     const struct ofp_switch_config *osc = ofpmsg_body(oh);
2857     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2858     uint16_t flags = ntohs(osc->flags);
2859
2860     if (ofconn_get_type(ofconn) != OFCONN_PRIMARY
2861         || ofconn_get_role(ofconn) != OFPCR12_ROLE_SLAVE) {
2862         enum ofp_config_flags cur = ofproto->frag_handling;
2863         enum ofp_config_flags next = flags & OFPC_FRAG_MASK;
2864
2865         ovs_assert((cur & OFPC_FRAG_MASK) == cur);
2866         if (cur != next) {
2867             if (ofproto->ofproto_class->set_frag_handling(ofproto, next)) {
2868                 ofproto->frag_handling = next;
2869             } else {
2870                 VLOG_WARN_RL(&rl, "%s: unsupported fragment handling mode %s",
2871                              ofproto->name,
2872                              ofputil_frag_handling_to_string(next));
2873             }
2874         }
2875     }
2876     /* OFPC_INVALID_TTL_TO_CONTROLLER is deprecated in OF 1.3 */
2877     ofconn_set_invalid_ttl_to_controller(ofconn,
2878              (oh->version < OFP13_VERSION
2879               && flags & OFPC_INVALID_TTL_TO_CONTROLLER));
2880
2881     ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
2882
2883     return 0;
2884 }
2885
2886 /* Checks whether 'ofconn' is a slave controller.  If so, returns an OpenFlow
2887  * error message code for the caller to propagate upward.  Otherwise, returns
2888  * 0.
2889  *
2890  * The log message mentions 'msg_type'. */
2891 static enum ofperr
2892 reject_slave_controller(struct ofconn *ofconn)
2893 {
2894     if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
2895         && ofconn_get_role(ofconn) == OFPCR12_ROLE_SLAVE) {
2896         return OFPERR_OFPBRC_EPERM;
2897     } else {
2898         return 0;
2899     }
2900 }
2901
2902 /* Checks that the 'ofpacts_len' bytes of action in 'ofpacts' are appropriate
2903  * for 'ofproto':
2904  *
2905  *    - If they use a meter, then 'ofproto' has that meter configured.
2906  *
2907  *    - If they use any groups, then 'ofproto' has that group configured.
2908  *
2909  * Returns 0 if successful, otherwise an OpenFlow error. */
2910 static enum ofperr
2911 ofproto_check_ofpacts(struct ofproto *ofproto,
2912                       const struct ofpact ofpacts[], size_t ofpacts_len)
2913 {
2914     const struct ofpact *a;
2915     uint32_t mid;
2916
2917     mid = ofpacts_get_meter(ofpacts, ofpacts_len);
2918     if (mid && get_provider_meter_id(ofproto, mid) == UINT32_MAX) {
2919         return OFPERR_OFPMMFC_INVALID_METER;
2920     }
2921
2922     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
2923         if (a->type == OFPACT_GROUP
2924             && !ofproto_group_exists(ofproto, ofpact_get_GROUP(a)->group_id)) {
2925             return OFPERR_OFPBAC_BAD_OUT_GROUP;
2926         }
2927     }
2928
2929     return 0;
2930 }
2931
2932 static enum ofperr
2933 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
2934 {
2935     struct ofproto *p = ofconn_get_ofproto(ofconn);
2936     struct ofputil_packet_out po;
2937     struct ofpbuf *payload;
2938     uint64_t ofpacts_stub[1024 / 8];
2939     struct ofpbuf ofpacts;
2940     struct flow flow;
2941     enum ofperr error;
2942
2943     COVERAGE_INC(ofproto_packet_out);
2944
2945     error = reject_slave_controller(ofconn);
2946     if (error) {
2947         goto exit;
2948     }
2949
2950     /* Decode message. */
2951     ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
2952     error = ofputil_decode_packet_out(&po, oh, &ofpacts);
2953     if (error) {
2954         goto exit_free_ofpacts;
2955     }
2956     if (ofp_to_u16(po.in_port) >= p->max_ports
2957         && ofp_to_u16(po.in_port) < ofp_to_u16(OFPP_MAX)) {
2958         error = OFPERR_OFPBRC_BAD_PORT;
2959         goto exit_free_ofpacts;
2960     }
2961
2962     /* Get payload. */
2963     if (po.buffer_id != UINT32_MAX) {
2964         error = ofconn_pktbuf_retrieve(ofconn, po.buffer_id, &payload, NULL);
2965         if (error || !payload) {
2966             goto exit_free_ofpacts;
2967         }
2968     } else {
2969         /* Ensure that the L3 header is 32-bit aligned. */
2970         payload = ofpbuf_clone_data_with_headroom(po.packet, po.packet_len, 2);
2971     }
2972
2973     /* Verify actions against packet, then send packet if successful. */
2974     flow_extract(payload, NULL, &flow);
2975     flow.in_port.ofp_port = po.in_port;
2976     error = ofproto_check_ofpacts(p, po.ofpacts, po.ofpacts_len);
2977     if (!error) {
2978         error = p->ofproto_class->packet_out(p, payload, &flow,
2979                                              po.ofpacts, po.ofpacts_len);
2980     }
2981     ofpbuf_delete(payload);
2982
2983 exit_free_ofpacts:
2984     ofpbuf_uninit(&ofpacts);
2985 exit:
2986     return error;
2987 }
2988
2989 static void
2990 update_port_config(struct ofconn *ofconn, struct ofport *port,
2991                    enum ofputil_port_config config,
2992                    enum ofputil_port_config mask)
2993 {
2994     enum ofputil_port_config toggle = (config ^ port->pp.config) & mask;
2995
2996     if (toggle & OFPUTIL_PC_PORT_DOWN
2997         && (config & OFPUTIL_PC_PORT_DOWN
2998             ? netdev_turn_flags_off(port->netdev, NETDEV_UP, NULL)
2999             : netdev_turn_flags_on(port->netdev, NETDEV_UP, NULL))) {
3000         /* We tried to bring the port up or down, but it failed, so don't
3001          * update the "down" bit. */
3002         toggle &= ~OFPUTIL_PC_PORT_DOWN;
3003     }
3004
3005     if (toggle) {
3006         enum ofputil_port_config old_config = port->pp.config;
3007         port->pp.config ^= toggle;
3008         port->ofproto->ofproto_class->port_reconfigured(port, old_config);
3009         connmgr_send_port_status(port->ofproto->connmgr, ofconn, &port->pp,
3010                                  OFPPR_MODIFY);
3011     }
3012 }
3013
3014 static enum ofperr
3015 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3016 {
3017     struct ofproto *p = ofconn_get_ofproto(ofconn);
3018     struct ofputil_port_mod pm;
3019     struct ofport *port;
3020     enum ofperr error;
3021
3022     error = reject_slave_controller(ofconn);
3023     if (error) {
3024         return error;
3025     }
3026
3027     error = ofputil_decode_port_mod(oh, &pm, false);
3028     if (error) {
3029         return error;
3030     }
3031
3032     port = ofproto_get_port(p, pm.port_no);
3033     if (!port) {
3034         return OFPERR_OFPPMFC_BAD_PORT;
3035     } else if (!eth_addr_equals(port->pp.hw_addr, pm.hw_addr)) {
3036         return OFPERR_OFPPMFC_BAD_HW_ADDR;
3037     } else {
3038         update_port_config(ofconn, port, pm.config, pm.mask);
3039         if (pm.advertise) {
3040             netdev_set_advertisements(port->netdev, pm.advertise);
3041         }
3042     }
3043     return 0;
3044 }
3045
3046 static enum ofperr
3047 handle_desc_stats_request(struct ofconn *ofconn,
3048                           const struct ofp_header *request)
3049 {
3050     static const char *default_mfr_desc = "Nicira, Inc.";
3051     static const char *default_hw_desc = "Open vSwitch";
3052     static const char *default_sw_desc = VERSION;
3053     static const char *default_serial_desc = "None";
3054     static const char *default_dp_desc = "None";
3055
3056     struct ofproto *p = ofconn_get_ofproto(ofconn);
3057     struct ofp_desc_stats *ods;
3058     struct ofpbuf *msg;
3059
3060     msg = ofpraw_alloc_stats_reply(request, 0);
3061     ods = ofpbuf_put_zeros(msg, sizeof *ods);
3062     ovs_strlcpy(ods->mfr_desc, p->mfr_desc ? p->mfr_desc : default_mfr_desc,
3063                 sizeof ods->mfr_desc);
3064     ovs_strlcpy(ods->hw_desc, p->hw_desc ? p->hw_desc : default_hw_desc,
3065                 sizeof ods->hw_desc);
3066     ovs_strlcpy(ods->sw_desc, p->sw_desc ? p->sw_desc : default_sw_desc,
3067                 sizeof ods->sw_desc);
3068     ovs_strlcpy(ods->serial_num,
3069                 p->serial_desc ? p->serial_desc : default_serial_desc,
3070                 sizeof ods->serial_num);
3071     ovs_strlcpy(ods->dp_desc, p->dp_desc ? p->dp_desc : default_dp_desc,
3072                 sizeof ods->dp_desc);
3073     ofconn_send_reply(ofconn, msg);
3074
3075     return 0;
3076 }
3077
3078 static enum ofperr
3079 handle_table_stats_request(struct ofconn *ofconn,
3080                            const struct ofp_header *request)
3081 {
3082     struct ofproto *p = ofconn_get_ofproto(ofconn);
3083     struct ofp12_table_stats *ots;
3084     struct ofpbuf *msg;
3085     int n_tables;
3086     size_t i;
3087
3088     /* Set up default values.
3089      *
3090      * ofp12_table_stats is used as a generic structure as
3091      * it is able to hold all the fields for ofp10_table_stats
3092      * and ofp11_table_stats (and of course itself).
3093      */
3094     ots = xcalloc(p->n_tables, sizeof *ots);
3095     for (i = 0; i < p->n_tables; i++) {
3096         ots[i].table_id = i;
3097         sprintf(ots[i].name, "table%"PRIuSIZE, i);
3098         ots[i].match = htonll(OFPXMT13_MASK);
3099         ots[i].wildcards = htonll(OFPXMT13_MASK);
3100         ots[i].write_actions = htonl(OFPAT11_OUTPUT);
3101         ots[i].apply_actions = htonl(OFPAT11_OUTPUT);
3102         ots[i].write_setfields = htonll(OFPXMT13_MASK);
3103         ots[i].apply_setfields = htonll(OFPXMT13_MASK);
3104         ots[i].metadata_match = OVS_BE64_MAX;
3105         ots[i].metadata_write = OVS_BE64_MAX;
3106         ots[i].instructions = htonl(OFPIT11_ALL);
3107         ots[i].config = htonl(OFPTC11_TABLE_MISS_MASK);
3108         ots[i].max_entries = htonl(1000000); /* An arbitrary big number. */
3109         fat_rwlock_rdlock(&p->tables[i].cls.rwlock);
3110         ots[i].active_count = htonl(classifier_count(&p->tables[i].cls));
3111         fat_rwlock_unlock(&p->tables[i].cls.rwlock);
3112     }
3113
3114     p->ofproto_class->get_tables(p, ots);
3115
3116     /* Post-process the tables, dropping hidden tables. */
3117     n_tables = p->n_tables;
3118     for (i = 0; i < p->n_tables; i++) {
3119         const struct oftable *table = &p->tables[i];
3120
3121         if (table->flags & OFTABLE_HIDDEN) {
3122             n_tables = i;
3123             break;
3124         }
3125
3126         if (table->name) {
3127             ovs_strzcpy(ots[i].name, table->name, sizeof ots[i].name);
3128         }
3129
3130         if (table->max_flows < ntohl(ots[i].max_entries)) {
3131             ots[i].max_entries = htonl(table->max_flows);
3132         }
3133     }
3134
3135     msg = ofputil_encode_table_stats_reply(ots, n_tables, request);
3136     ofconn_send_reply(ofconn, msg);
3137
3138     free(ots);
3139
3140     return 0;
3141 }
3142
3143 static void
3144 append_port_stat(struct ofport *port, struct list *replies)
3145 {
3146     struct ofputil_port_stats ops = { .port_no = port->pp.port_no };
3147
3148     calc_duration(port->created, time_msec(),
3149                   &ops.duration_sec, &ops.duration_nsec);
3150
3151     /* Intentionally ignore return value, since errors will set
3152      * 'stats' to all-1s, which is correct for OpenFlow, and
3153      * netdev_get_stats() will log errors. */
3154     ofproto_port_get_stats(port, &ops.stats);
3155
3156     ofputil_append_port_stat(replies, &ops);
3157 }
3158
3159 static void
3160 handle_port_request(struct ofconn *ofconn,
3161                     const struct ofp_header *request, ofp_port_t port_no,
3162                     void (*cb)(struct ofport *, struct list *replies))
3163 {
3164     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3165     struct ofport *port;
3166     struct list replies;
3167
3168     ofpmp_init(&replies, request);
3169     if (port_no != OFPP_ANY) {
3170         port = ofproto_get_port(ofproto, port_no);
3171         if (port) {
3172             cb(port, &replies);
3173         }
3174     } else {
3175         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3176             cb(port, &replies);
3177         }
3178     }
3179
3180     ofconn_send_replies(ofconn, &replies);
3181 }
3182
3183 static enum ofperr
3184 handle_port_stats_request(struct ofconn *ofconn,
3185                           const struct ofp_header *request)
3186 {
3187     ofp_port_t port_no;
3188     enum ofperr error;
3189
3190     error = ofputil_decode_port_stats_request(request, &port_no);
3191     if (!error) {
3192         handle_port_request(ofconn, request, port_no, append_port_stat);
3193     }
3194     return error;
3195 }
3196
3197 static void
3198 append_port_desc(struct ofport *port, struct list *replies)
3199 {
3200     ofputil_append_port_desc_stats_reply(&port->pp, replies);
3201 }
3202
3203 static enum ofperr
3204 handle_port_desc_stats_request(struct ofconn *ofconn,
3205                                const struct ofp_header *request)
3206 {
3207     ofp_port_t port_no;
3208     enum ofperr error;
3209
3210     error = ofputil_decode_port_desc_stats_request(request, &port_no);
3211     if (!error) {
3212         handle_port_request(ofconn, request, port_no, append_port_desc);
3213     }
3214     return error;
3215 }
3216
3217 static uint32_t
3218 hash_cookie(ovs_be64 cookie)
3219 {
3220     return hash_uint64((OVS_FORCE uint64_t)cookie);
3221 }
3222
3223 static void
3224 cookies_insert(struct ofproto *ofproto, struct rule *rule)
3225     OVS_REQUIRES(ofproto_mutex)
3226 {
3227     hindex_insert(&ofproto->cookies, &rule->cookie_node,
3228                   hash_cookie(rule->flow_cookie));
3229 }
3230
3231 static void
3232 cookies_remove(struct ofproto *ofproto, struct rule *rule)
3233     OVS_REQUIRES(ofproto_mutex)
3234 {
3235     hindex_remove(&ofproto->cookies, &rule->cookie_node);
3236 }
3237
3238 static void
3239 ofproto_rule_change_cookie(struct ofproto *ofproto, struct rule *rule,
3240                            ovs_be64 new_cookie)
3241     OVS_REQUIRES(ofproto_mutex)
3242 {
3243     if (new_cookie != rule->flow_cookie) {
3244         cookies_remove(ofproto, rule);
3245
3246         ovs_mutex_lock(&rule->mutex);
3247         rule->flow_cookie = new_cookie;
3248         ovs_mutex_unlock(&rule->mutex);
3249
3250         cookies_insert(ofproto, rule);
3251     }
3252 }
3253
3254 static void
3255 calc_duration(long long int start, long long int now,
3256               uint32_t *sec, uint32_t *nsec)
3257 {
3258     long long int msecs = now - start;
3259     *sec = msecs / 1000;
3260     *nsec = (msecs % 1000) * (1000 * 1000);
3261 }
3262
3263 /* Checks whether 'table_id' is 0xff or a valid table ID in 'ofproto'.  Returns
3264  * true if 'table_id' is OK, false otherwise.  */
3265 static bool
3266 check_table_id(const struct ofproto *ofproto, uint8_t table_id)
3267 {
3268     return table_id == OFPTT_ALL || table_id < ofproto->n_tables;
3269 }
3270
3271 static struct oftable *
3272 next_visible_table(const struct ofproto *ofproto, uint8_t table_id)
3273 {
3274     struct oftable *table;
3275
3276     for (table = &ofproto->tables[table_id];
3277          table < &ofproto->tables[ofproto->n_tables];
3278          table++) {
3279         if (!(table->flags & OFTABLE_HIDDEN)) {
3280             return table;
3281         }
3282     }
3283
3284     return NULL;
3285 }
3286
3287 static struct oftable *
3288 first_matching_table(const struct ofproto *ofproto, uint8_t table_id)
3289 {
3290     if (table_id == 0xff) {
3291         return next_visible_table(ofproto, 0);
3292     } else if (table_id < ofproto->n_tables) {
3293         return &ofproto->tables[table_id];
3294     } else {
3295         return NULL;
3296     }
3297 }
3298
3299 static struct oftable *
3300 next_matching_table(const struct ofproto *ofproto,
3301                     const struct oftable *table, uint8_t table_id)
3302 {
3303     return (table_id == 0xff
3304             ? next_visible_table(ofproto, (table - ofproto->tables) + 1)
3305             : NULL);
3306 }
3307
3308 /* Assigns TABLE to each oftable, in turn, that matches TABLE_ID in OFPROTO:
3309  *
3310  *   - If TABLE_ID is 0xff, this iterates over every classifier table in
3311  *     OFPROTO, skipping tables marked OFTABLE_HIDDEN.
3312  *
3313  *   - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
3314  *     only once, for that table.  (This can be used to access tables marked
3315  *     OFTABLE_HIDDEN.)
3316  *
3317  *   - Otherwise, TABLE_ID isn't valid for OFPROTO, so the loop won't be
3318  *     entered at all.  (Perhaps you should have validated TABLE_ID with
3319  *     check_table_id().)
3320  *
3321  * All parameters are evaluated multiple times.
3322  */
3323 #define FOR_EACH_MATCHING_TABLE(TABLE, TABLE_ID, OFPROTO)         \
3324     for ((TABLE) = first_matching_table(OFPROTO, TABLE_ID);       \
3325          (TABLE) != NULL;                                         \
3326          (TABLE) = next_matching_table(OFPROTO, TABLE, TABLE_ID))
3327
3328 /* Initializes 'criteria' in a straightforward way based on the other
3329  * parameters.
3330  *
3331  * For "loose" matching, the 'priority' parameter is unimportant and may be
3332  * supplied as 0. */
3333 static void
3334 rule_criteria_init(struct rule_criteria *criteria, uint8_t table_id,
3335                    const struct match *match, unsigned int priority,
3336                    ovs_be64 cookie, ovs_be64 cookie_mask,
3337                    ofp_port_t out_port, uint32_t out_group)
3338 {
3339     criteria->table_id = table_id;
3340     cls_rule_init(&criteria->cr, match, priority);
3341     criteria->cookie = cookie;
3342     criteria->cookie_mask = cookie_mask;
3343     criteria->out_port = out_port;
3344     criteria->out_group = out_group;
3345 }
3346
3347 static void
3348 rule_criteria_destroy(struct rule_criteria *criteria)
3349 {
3350     cls_rule_destroy(&criteria->cr);
3351 }
3352
3353 void
3354 rule_collection_init(struct rule_collection *rules)
3355 {
3356     rules->rules = rules->stub;
3357     rules->n = 0;
3358     rules->capacity = ARRAY_SIZE(rules->stub);
3359 }
3360
3361 void
3362 rule_collection_add(struct rule_collection *rules, struct rule *rule)
3363 {
3364     if (rules->n >= rules->capacity) {
3365         size_t old_size, new_size;
3366
3367         old_size = rules->capacity * sizeof *rules->rules;
3368         rules->capacity *= 2;
3369         new_size = rules->capacity * sizeof *rules->rules;
3370
3371         if (rules->rules == rules->stub) {
3372             rules->rules = xmalloc(new_size);
3373             memcpy(rules->rules, rules->stub, old_size);
3374         } else {
3375             rules->rules = xrealloc(rules->rules, new_size);
3376         }
3377     }
3378
3379     rules->rules[rules->n++] = rule;
3380 }
3381
3382 void
3383 rule_collection_ref(struct rule_collection *rules)
3384     OVS_REQUIRES(ofproto_mutex)
3385 {
3386     size_t i;
3387
3388     for (i = 0; i < rules->n; i++) {
3389         ofproto_rule_ref(rules->rules[i]);
3390     }
3391 }
3392
3393 void
3394 rule_collection_unref(struct rule_collection *rules)
3395 {
3396     size_t i;
3397
3398     for (i = 0; i < rules->n; i++) {
3399         ofproto_rule_unref(rules->rules[i]);
3400     }
3401 }
3402
3403 void
3404 rule_collection_destroy(struct rule_collection *rules)
3405 {
3406     if (rules->rules != rules->stub) {
3407         free(rules->rules);
3408     }
3409 }
3410
3411 static enum ofperr
3412 collect_rule(struct rule *rule, const struct rule_criteria *c,
3413              struct rule_collection *rules)
3414     OVS_REQUIRES(ofproto_mutex)
3415 {
3416     /* We ordinarily want to skip hidden rules, but there has to be a way for
3417      * code internal to OVS to modify and delete them, so if the criteria
3418      * specify a priority that can only be for a hidden flow, then allow hidden
3419      * rules to be selected.  (This doesn't allow OpenFlow clients to meddle
3420      * with hidden flows because OpenFlow uses only a 16-bit field to specify
3421      * priority.) */
3422     if (ofproto_rule_is_hidden(rule) && c->cr.priority <= UINT16_MAX) {
3423         return 0;
3424     } else if (rule->pending) {
3425         return OFPROTO_POSTPONE;
3426     } else {
3427         if ((c->table_id == rule->table_id || c->table_id == 0xff)
3428             && ofproto_rule_has_out_port(rule, c->out_port)
3429             && ofproto_rule_has_out_group(rule, c->out_group)
3430             && !((rule->flow_cookie ^ c->cookie) & c->cookie_mask)) {
3431             rule_collection_add(rules, rule);
3432         }
3433         return 0;
3434     }
3435 }
3436
3437 /* Searches 'ofproto' for rules that match the criteria in 'criteria'.  Matches
3438  * on classifiers rules are done in the "loose" way required for OpenFlow
3439  * OFPFC_MODIFY and OFPFC_DELETE requests.  Puts the selected rules on list
3440  * 'rules'.
3441  *
3442  * Hidden rules are always omitted.
3443  *
3444  * Returns 0 on success, otherwise an OpenFlow error code. */
3445 static enum ofperr
3446 collect_rules_loose(struct ofproto *ofproto,
3447                     const struct rule_criteria *criteria,
3448                     struct rule_collection *rules)
3449     OVS_REQUIRES(ofproto_mutex)
3450 {
3451     struct oftable *table;
3452     enum ofperr error = 0;
3453
3454     rule_collection_init(rules);
3455
3456     if (!check_table_id(ofproto, criteria->table_id)) {
3457         error = OFPERR_OFPBRC_BAD_TABLE_ID;
3458         goto exit;
3459     }
3460
3461     if (criteria->cookie_mask == OVS_BE64_MAX) {
3462         struct rule *rule;
3463
3464         HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
3465                                    hash_cookie(criteria->cookie),
3466                                    &ofproto->cookies) {
3467             if (cls_rule_is_loose_match(&rule->cr, &criteria->cr.match)) {
3468                 error = collect_rule(rule, criteria, rules);
3469                 if (error) {
3470                     break;
3471                 }
3472             }
3473         }
3474     } else {
3475         FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
3476             struct cls_cursor cursor;
3477             struct rule *rule;
3478
3479             fat_rwlock_rdlock(&table->cls.rwlock);
3480             cls_cursor_init(&cursor, &table->cls, &criteria->cr);
3481             CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3482                 error = collect_rule(rule, criteria, rules);
3483                 if (error) {
3484                     break;
3485                 }
3486             }
3487             fat_rwlock_unlock(&table->cls.rwlock);
3488         }
3489     }
3490
3491 exit:
3492     if (error) {
3493         rule_collection_destroy(rules);
3494     }
3495     return error;
3496 }
3497
3498 /* Searches 'ofproto' for rules that match the criteria in 'criteria'.  Matches
3499  * on classifiers rules are done in the "strict" way required for OpenFlow
3500  * OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests.  Puts the selected
3501  * rules on list 'rules'.
3502  *
3503  * Hidden rules are always omitted.
3504  *
3505  * Returns 0 on success, otherwise an OpenFlow error code. */
3506 static enum ofperr
3507 collect_rules_strict(struct ofproto *ofproto,
3508                      const struct rule_criteria *criteria,
3509                      struct rule_collection *rules)
3510     OVS_REQUIRES(ofproto_mutex)
3511 {
3512     struct oftable *table;
3513     int error = 0;
3514
3515     rule_collection_init(rules);
3516
3517     if (!check_table_id(ofproto, criteria->table_id)) {
3518         error = OFPERR_OFPBRC_BAD_TABLE_ID;
3519         goto exit;
3520     }
3521
3522     if (criteria->cookie_mask == OVS_BE64_MAX) {
3523         struct rule *rule;
3524
3525         HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
3526                                    hash_cookie(criteria->cookie),
3527                                    &ofproto->cookies) {
3528             if (cls_rule_equal(&rule->cr, &criteria->cr)) {
3529                 error = collect_rule(rule, criteria, rules);
3530                 if (error) {
3531                     break;
3532                 }
3533             }
3534         }
3535     } else {
3536         FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
3537             struct rule *rule;
3538
3539             fat_rwlock_rdlock(&table->cls.rwlock);
3540             rule = rule_from_cls_rule(classifier_find_rule_exactly(
3541                                           &table->cls, &criteria->cr));
3542             fat_rwlock_unlock(&table->cls.rwlock);
3543             if (rule) {
3544                 error = collect_rule(rule, criteria, rules);
3545                 if (error) {
3546                     break;
3547                 }
3548             }
3549         }
3550     }
3551
3552 exit:
3553     if (error) {
3554         rule_collection_destroy(rules);
3555     }
3556     return error;
3557 }
3558
3559 /* Returns 'age_ms' (a duration in milliseconds), converted to seconds and
3560  * forced into the range of a uint16_t. */
3561 static int
3562 age_secs(long long int age_ms)
3563 {
3564     return (age_ms < 0 ? 0
3565             : age_ms >= UINT16_MAX * 1000 ? UINT16_MAX
3566             : (unsigned int) age_ms / 1000);
3567 }
3568
3569 static enum ofperr
3570 handle_flow_stats_request(struct ofconn *ofconn,
3571                           const struct ofp_header *request)
3572     OVS_EXCLUDED(ofproto_mutex)
3573 {
3574     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3575     struct ofputil_flow_stats_request fsr;
3576     struct rule_criteria criteria;
3577     struct rule_collection rules;
3578     struct list replies;
3579     enum ofperr error;
3580     size_t i;
3581
3582     error = ofputil_decode_flow_stats_request(&fsr, request);
3583     if (error) {
3584         return error;
3585     }
3586
3587     rule_criteria_init(&criteria, fsr.table_id, &fsr.match, 0, fsr.cookie,
3588                        fsr.cookie_mask, fsr.out_port, fsr.out_group);
3589
3590     ovs_mutex_lock(&ofproto_mutex);
3591     error = collect_rules_loose(ofproto, &criteria, &rules);
3592     rule_criteria_destroy(&criteria);
3593     if (!error) {
3594         rule_collection_ref(&rules);
3595     }
3596     ovs_mutex_unlock(&ofproto_mutex);
3597
3598     if (error) {
3599         return error;
3600     }
3601
3602     ofpmp_init(&replies, request);
3603     for (i = 0; i < rules.n; i++) {
3604         struct rule *rule = rules.rules[i];
3605         long long int now = time_msec();
3606         struct ofputil_flow_stats fs;
3607         long long int created, used, modified;
3608         const struct rule_actions *actions;
3609         enum ofputil_flow_mod_flags flags;
3610
3611         ovs_mutex_lock(&rule->mutex);
3612         fs.cookie = rule->flow_cookie;
3613         fs.idle_timeout = rule->idle_timeout;
3614         fs.hard_timeout = rule->hard_timeout;
3615         created = rule->created;
3616         modified = rule->modified;
3617         actions = rule_get_actions(rule);
3618         flags = rule->flags;
3619         ovs_mutex_unlock(&rule->mutex);
3620
3621         ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
3622                                                &fs.byte_count, &used);
3623
3624         minimatch_expand(&rule->cr.match, &fs.match);
3625         fs.table_id = rule->table_id;
3626         calc_duration(created, now, &fs.duration_sec, &fs.duration_nsec);
3627         fs.priority = rule->cr.priority;
3628         fs.idle_age = age_secs(now - used);
3629         fs.hard_age = age_secs(now - modified);
3630         fs.ofpacts = actions->ofpacts;
3631         fs.ofpacts_len = actions->ofpacts_len;
3632
3633         fs.flags = flags;
3634         ofputil_append_flow_stats_reply(&fs, &replies);
3635     }
3636
3637     rule_collection_unref(&rules);
3638     rule_collection_destroy(&rules);
3639
3640     ofconn_send_replies(ofconn, &replies);
3641
3642     return 0;
3643 }
3644
3645 static void
3646 flow_stats_ds(struct rule *rule, struct ds *results)
3647 {
3648     uint64_t packet_count, byte_count;
3649     const struct rule_actions *actions;
3650     long long int created, used;
3651
3652     rule->ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
3653                                                  &byte_count, &used);
3654
3655     ovs_mutex_lock(&rule->mutex);
3656     actions = rule_get_actions(rule);
3657     created = rule->created;
3658     ovs_mutex_unlock(&rule->mutex);
3659
3660     if (rule->table_id != 0) {
3661         ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
3662     }
3663     ds_put_format(results, "duration=%llds, ", (time_msec() - created) / 1000);
3664     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
3665     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
3666     cls_rule_format(&rule->cr, results);
3667     ds_put_char(results, ',');
3668
3669     ds_put_cstr(results, "actions=");
3670     ofpacts_format(actions->ofpacts, actions->ofpacts_len, results);
3671
3672     ds_put_cstr(results, "\n");
3673 }
3674
3675 /* Adds a pretty-printed description of all flows to 'results', including
3676  * hidden flows (e.g., set up by in-band control). */
3677 void
3678 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3679 {
3680     struct oftable *table;
3681
3682     OFPROTO_FOR_EACH_TABLE (table, p) {
3683         struct cls_cursor cursor;
3684         struct rule *rule;
3685
3686         fat_rwlock_rdlock(&table->cls.rwlock);
3687         cls_cursor_init(&cursor, &table->cls, NULL);
3688         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3689             flow_stats_ds(rule, results);
3690         }
3691         fat_rwlock_unlock(&table->cls.rwlock);
3692     }
3693 }
3694
3695 /* Obtains the NetFlow engine type and engine ID for 'ofproto' into
3696  * '*engine_type' and '*engine_id', respectively. */
3697 void
3698 ofproto_get_netflow_ids(const struct ofproto *ofproto,
3699                         uint8_t *engine_type, uint8_t *engine_id)
3700 {
3701     ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
3702 }
3703
3704 /* Checks the status of CFM configured on 'ofp_port' within 'ofproto'.
3705  * Returns 0 if the port's CFM status was successfully stored into
3706  * '*status'.  Returns positive errno if the port did not have CFM
3707  * configured.  Returns negative number if there is no status change
3708  * since last update.
3709  *
3710  * The caller must provide and own '*status', and must free 'status->rmps'.
3711  * '*status' is indeterminate if the return value is non-zero. */
3712 int
3713 ofproto_port_get_cfm_status(const struct ofproto *ofproto, ofp_port_t ofp_port,
3714                             struct ofproto_cfm_status *status)
3715 {
3716     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
3717     return (ofport && ofproto->ofproto_class->get_cfm_status
3718             ? ofproto->ofproto_class->get_cfm_status(ofport, status)
3719             : EOPNOTSUPP);
3720 }
3721
3722 static enum ofperr
3723 handle_aggregate_stats_request(struct ofconn *ofconn,
3724                                const struct ofp_header *oh)
3725     OVS_EXCLUDED(ofproto_mutex)
3726 {
3727     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3728     struct ofputil_flow_stats_request request;
3729     struct ofputil_aggregate_stats stats;
3730     bool unknown_packets, unknown_bytes;
3731     struct rule_criteria criteria;
3732     struct rule_collection rules;
3733     struct ofpbuf *reply;
3734     enum ofperr error;
3735     size_t i;
3736
3737     error = ofputil_decode_flow_stats_request(&request, oh);
3738     if (error) {
3739         return error;
3740     }
3741
3742     rule_criteria_init(&criteria, request.table_id, &request.match, 0,
3743                        request.cookie, request.cookie_mask,
3744                        request.out_port, request.out_group);
3745
3746     ovs_mutex_lock(&ofproto_mutex);
3747     error = collect_rules_loose(ofproto, &criteria, &rules);
3748     rule_criteria_destroy(&criteria);
3749     if (!error) {
3750         rule_collection_ref(&rules);
3751     }
3752     ovs_mutex_unlock(&ofproto_mutex);
3753
3754     if (error) {
3755         return error;
3756     }
3757
3758     memset(&stats, 0, sizeof stats);
3759     unknown_packets = unknown_bytes = false;
3760     for (i = 0; i < rules.n; i++) {
3761         struct rule *rule = rules.rules[i];
3762         uint64_t packet_count;
3763         uint64_t byte_count;
3764         long long int used;
3765
3766         ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
3767                                                &byte_count, &used);
3768
3769         if (packet_count == UINT64_MAX) {
3770             unknown_packets = true;
3771         } else {
3772             stats.packet_count += packet_count;
3773         }
3774
3775         if (byte_count == UINT64_MAX) {
3776             unknown_bytes = true;
3777         } else {
3778             stats.byte_count += byte_count;
3779         }
3780
3781         stats.flow_count++;
3782     }
3783     if (unknown_packets) {
3784         stats.packet_count = UINT64_MAX;
3785     }
3786     if (unknown_bytes) {
3787         stats.byte_count = UINT64_MAX;
3788     }
3789
3790     rule_collection_unref(&rules);
3791     rule_collection_destroy(&rules);
3792
3793     reply = ofputil_encode_aggregate_stats_reply(&stats, oh);
3794     ofconn_send_reply(ofconn, reply);
3795
3796     return 0;
3797 }
3798
3799 struct queue_stats_cbdata {
3800     struct ofport *ofport;
3801     struct list replies;
3802     long long int now;
3803 };
3804
3805 static void
3806 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
3807                 const struct netdev_queue_stats *stats)
3808 {
3809     struct ofputil_queue_stats oqs;
3810
3811     oqs.port_no = cbdata->ofport->pp.port_no;
3812     oqs.queue_id = queue_id;
3813     oqs.tx_bytes = stats->tx_bytes;
3814     oqs.tx_packets = stats->tx_packets;
3815     oqs.tx_errors = stats->tx_errors;
3816     if (stats->created != LLONG_MIN) {
3817         calc_duration(stats->created, cbdata->now,
3818                       &oqs.duration_sec, &oqs.duration_nsec);
3819     } else {
3820         oqs.duration_sec = oqs.duration_nsec = UINT32_MAX;
3821     }
3822     ofputil_append_queue_stat(&cbdata->replies, &oqs);
3823 }
3824
3825 static void
3826 handle_queue_stats_dump_cb(uint32_t queue_id,
3827                            struct netdev_queue_stats *stats,
3828                            void *cbdata_)
3829 {
3830     struct queue_stats_cbdata *cbdata = cbdata_;
3831
3832     put_queue_stats(cbdata, queue_id, stats);
3833 }
3834
3835 static enum ofperr
3836 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
3837                             struct queue_stats_cbdata *cbdata)
3838 {
3839     cbdata->ofport = port;
3840     if (queue_id == OFPQ_ALL) {
3841         netdev_dump_queue_stats(port->netdev,
3842                                 handle_queue_stats_dump_cb, cbdata);
3843     } else {
3844         struct netdev_queue_stats stats;
3845
3846         if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
3847             put_queue_stats(cbdata, queue_id, &stats);
3848         } else {
3849             return OFPERR_OFPQOFC_BAD_QUEUE;
3850         }
3851     }
3852     return 0;
3853 }
3854
3855 static enum ofperr
3856 handle_queue_stats_request(struct ofconn *ofconn,
3857                            const struct ofp_header *rq)
3858 {
3859     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3860     struct queue_stats_cbdata cbdata;
3861     struct ofport *port;
3862     enum ofperr error;
3863     struct ofputil_queue_stats_request oqsr;
3864
3865     COVERAGE_INC(ofproto_queue_req);
3866
3867     ofpmp_init(&cbdata.replies, rq);
3868     cbdata.now = time_msec();
3869
3870     error = ofputil_decode_queue_stats_request(rq, &oqsr);
3871     if (error) {
3872         return error;
3873     }
3874
3875     if (oqsr.port_no == OFPP_ANY) {
3876         error = OFPERR_OFPQOFC_BAD_QUEUE;
3877         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3878             if (!handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)) {
3879                 error = 0;
3880             }
3881         }
3882     } else {
3883         port = ofproto_get_port(ofproto, oqsr.port_no);
3884         error = (port
3885                  ? handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)
3886                  : OFPERR_OFPQOFC_BAD_PORT);
3887     }
3888     if (!error) {
3889         ofconn_send_replies(ofconn, &cbdata.replies);
3890     } else {
3891         ofpbuf_list_delete(&cbdata.replies);
3892     }
3893
3894     return error;
3895 }
3896
3897 static bool
3898 is_flow_deletion_pending(const struct ofproto *ofproto,
3899                          const struct cls_rule *cls_rule,
3900                          uint8_t table_id)
3901     OVS_REQUIRES(ofproto_mutex)
3902 {
3903     if (!hmap_is_empty(&ofproto->deletions)) {
3904         struct ofoperation *op;
3905
3906         HMAP_FOR_EACH_WITH_HASH (op, hmap_node,
3907                                  cls_rule_hash(cls_rule, table_id),
3908                                  &ofproto->deletions) {
3909             if (op->rule->table_id == table_id
3910                 && cls_rule_equal(cls_rule, &op->rule->cr)) {
3911                 return true;
3912             }
3913         }
3914     }
3915
3916     return false;
3917 }
3918
3919 static bool
3920 should_evict_a_rule(struct oftable *table, unsigned int extra_space)
3921     OVS_REQUIRES(ofproto_mutex)
3922     OVS_NO_THREAD_SAFETY_ANALYSIS
3923 {
3924     return classifier_count(&table->cls) + extra_space > table->max_flows;
3925 }
3926
3927 static enum ofperr
3928 evict_rules_from_table(struct ofproto *ofproto, struct oftable *table,
3929                        unsigned int extra_space)
3930     OVS_REQUIRES(ofproto_mutex)
3931 {
3932     while (should_evict_a_rule(table, extra_space)) {
3933         struct rule *rule;
3934
3935         if (!choose_rule_to_evict(table, &rule)) {
3936             return OFPERR_OFPFMFC_TABLE_FULL;
3937         } else if (rule->pending) {
3938             return OFPROTO_POSTPONE;
3939         } else {
3940             struct ofopgroup *group = ofopgroup_create_unattached(ofproto);
3941             delete_flow__(rule, group, OFPRR_EVICTION);
3942             ofopgroup_submit(group);
3943         }
3944     }
3945
3946     return 0;
3947 }
3948
3949 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
3950  * in which no matching flow already exists in the flow table.
3951  *
3952  * Adds the flow specified by 'ofm', which is followed by 'n_actions'
3953  * ofp_actions, to the ofproto's flow table.  Returns 0 on success, an OpenFlow
3954  * error code on failure, or OFPROTO_POSTPONE if the operation cannot be
3955  * initiated now but may be retried later.
3956  *
3957  * The caller retains ownership of 'fm->ofpacts'.
3958  *
3959  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3960  * if any. */
3961 static enum ofperr
3962 add_flow(struct ofproto *ofproto, struct ofconn *ofconn,
3963          struct ofputil_flow_mod *fm, const struct ofp_header *request)
3964     OVS_REQUIRES(ofproto_mutex)
3965 {
3966     struct oftable *table;
3967     struct cls_rule cr;
3968     struct rule *rule;
3969     uint8_t table_id;
3970     int error = 0;
3971
3972     if (!check_table_id(ofproto, fm->table_id)) {
3973         error = OFPERR_OFPBRC_BAD_TABLE_ID;
3974         return error;
3975     }
3976
3977     /* Pick table. */
3978     if (fm->table_id == 0xff) {
3979         if (ofproto->ofproto_class->rule_choose_table) {
3980             error = ofproto->ofproto_class->rule_choose_table(ofproto,
3981                                                               &fm->match,
3982                                                               &table_id);
3983             if (error) {
3984                 return error;
3985             }
3986             ovs_assert(table_id < ofproto->n_tables);
3987         } else {
3988             table_id = 0;
3989         }
3990     } else if (fm->table_id < ofproto->n_tables) {
3991         table_id = fm->table_id;
3992     } else {
3993         return OFPERR_OFPBRC_BAD_TABLE_ID;
3994     }
3995
3996     table = &ofproto->tables[table_id];
3997
3998     if (!oftable_is_modifiable(table, fm->flags)) {
3999         return OFPERR_OFPBRC_EPERM;
4000     }
4001
4002     if (!(fm->flags & OFPUTIL_FF_HIDDEN_FIELDS)) {
4003         if (!match_has_default_hidden_fields(&fm->match)) {
4004             VLOG_WARN_RL(&rl, "%s: (add_flow) only internal flows can set "
4005                          "non-default values to hidden fields", ofproto->name);
4006             return OFPERR_OFPBRC_EPERM;
4007         }
4008     }
4009
4010     cls_rule_init(&cr, &fm->match, fm->priority);
4011
4012     /* Transform "add" into "modify" if there's an existing identical flow. */
4013     fat_rwlock_rdlock(&table->cls.rwlock);
4014     rule = rule_from_cls_rule(classifier_find_rule_exactly(&table->cls, &cr));
4015     fat_rwlock_unlock(&table->cls.rwlock);
4016     if (rule) {
4017         cls_rule_destroy(&cr);
4018         if (!rule_is_modifiable(rule, fm->flags)) {
4019             return OFPERR_OFPBRC_EPERM;
4020         } else if (rule->pending) {
4021             return OFPROTO_POSTPONE;
4022         } else {
4023             struct rule_collection rules;
4024
4025             rule_collection_init(&rules);
4026             rule_collection_add(&rules, rule);
4027             fm->modify_cookie = true;
4028             error = modify_flows__(ofproto, ofconn, fm, request, &rules);
4029             rule_collection_destroy(&rules);
4030
4031             return error;
4032         }
4033     }
4034
4035     /* Serialize against pending deletion. */
4036     if (is_flow_deletion_pending(ofproto, &cr, table_id)) {
4037         cls_rule_destroy(&cr);
4038         return OFPROTO_POSTPONE;
4039     }
4040
4041     /* Check for overlap, if requested. */
4042     if (fm->flags & OFPUTIL_FF_CHECK_OVERLAP) {
4043         bool overlaps;
4044
4045         fat_rwlock_rdlock(&table->cls.rwlock);
4046         overlaps = classifier_rule_overlaps(&table->cls, &cr);
4047         fat_rwlock_unlock(&table->cls.rwlock);
4048
4049         if (overlaps) {
4050             cls_rule_destroy(&cr);
4051             return OFPERR_OFPFMFC_OVERLAP;
4052         }
4053     }
4054
4055     /* If necessary, evict an existing rule to clear out space. */
4056     error = evict_rules_from_table(ofproto, table, 1);
4057     if (error) {
4058         cls_rule_destroy(&cr);
4059         return error;
4060     }
4061
4062     /* Allocate new rule. */
4063     rule = ofproto->ofproto_class->rule_alloc();
4064     if (!rule) {
4065         cls_rule_destroy(&cr);
4066         VLOG_WARN_RL(&rl, "%s: failed to create rule (%s)",
4067                      ofproto->name, ovs_strerror(error));
4068         return ENOMEM;
4069     }
4070
4071     /* Initialize base state. */
4072     *CONST_CAST(struct ofproto **, &rule->ofproto) = ofproto;
4073     cls_rule_move(CONST_CAST(struct cls_rule *, &rule->cr), &cr);
4074     ovs_refcount_init(&rule->ref_count);
4075     rule->pending = NULL;
4076     rule->flow_cookie = fm->new_cookie;
4077     rule->created = rule->modified = time_msec();
4078
4079     ovs_mutex_init(&rule->mutex);
4080     ovs_mutex_lock(&rule->mutex);
4081     rule->idle_timeout = fm->idle_timeout;
4082     rule->hard_timeout = fm->hard_timeout;
4083     ovs_mutex_unlock(&rule->mutex);
4084
4085     *CONST_CAST(uint8_t *, &rule->table_id) = table - ofproto->tables;
4086     rule->flags = fm->flags & OFPUTIL_FF_STATE;
4087     ovsrcu_set(&rule->actions,
4088                rule_actions_create(ofproto, fm->ofpacts, fm->ofpacts_len));
4089     list_init(&rule->meter_list_node);
4090     rule->eviction_group = NULL;
4091     list_init(&rule->expirable);
4092     rule->monitor_flags = 0;
4093     rule->add_seqno = 0;
4094     rule->modify_seqno = 0;
4095
4096     /* Construct rule, initializing derived state. */
4097     error = ofproto->ofproto_class->rule_construct(rule);
4098     if (error) {
4099         ofproto_rule_destroy__(rule);
4100         return error;
4101     }
4102
4103     /* Insert rule. */
4104     do_add_flow(ofproto, ofconn, request, fm->buffer_id, rule);
4105
4106     return error;
4107 }
4108
4109 static void
4110 do_add_flow(struct ofproto *ofproto, struct ofconn *ofconn,
4111             const struct ofp_header *request, uint32_t buffer_id,
4112             struct rule *rule)
4113     OVS_REQUIRES(ofproto_mutex)
4114 {
4115     struct ofopgroup *group;
4116
4117     oftable_insert_rule(rule);
4118
4119     group = ofopgroup_create(ofproto, ofconn, request, buffer_id);
4120     ofoperation_create(group, rule, OFOPERATION_ADD, 0);
4121     ofproto->ofproto_class->rule_insert(rule);
4122     ofopgroup_submit(group);
4123 }
4124 \f
4125 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
4126
4127 /* Modifies the rules listed in 'rules', changing their actions to match those
4128  * in 'fm'.
4129  *
4130  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
4131  * if any.
4132  *
4133  * Returns 0 on success, otherwise an OpenFlow error code. */
4134 static enum ofperr
4135 modify_flows__(struct ofproto *ofproto, struct ofconn *ofconn,
4136                struct ofputil_flow_mod *fm, const struct ofp_header *request,
4137                const struct rule_collection *rules)
4138     OVS_REQUIRES(ofproto_mutex)
4139 {
4140     enum ofoperation_type type;
4141     struct ofopgroup *group;
4142     enum ofperr error;
4143     size_t i;
4144
4145     type = fm->command == OFPFC_ADD ? OFOPERATION_REPLACE : OFOPERATION_MODIFY;
4146     group = ofopgroup_create(ofproto, ofconn, request, fm->buffer_id);
4147     error = OFPERR_OFPBRC_EPERM;
4148     for (i = 0; i < rules->n; i++) {
4149         struct rule *rule = rules->rules[i];
4150         const struct rule_actions *actions;
4151         struct ofoperation *op;
4152         bool actions_changed;
4153         bool reset_counters;
4154
4155         /* FIXME: Implement OFPFUTIL_FF_RESET_COUNTS */
4156
4157         if (rule_is_modifiable(rule, fm->flags)) {
4158             /* At least one rule is modifiable, don't report EPERM error. */
4159             error = 0;
4160         } else {
4161             continue;
4162         }
4163
4164         actions = rule_get_actions(rule);
4165         actions_changed = !ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
4166                                          actions->ofpacts,
4167                                          actions->ofpacts_len);
4168
4169         op = ofoperation_create(group, rule, type, 0);
4170
4171         if (fm->modify_cookie && fm->new_cookie != OVS_BE64_MAX) {
4172             ofproto_rule_change_cookie(ofproto, rule, fm->new_cookie);
4173         }
4174         if (type == OFOPERATION_REPLACE) {
4175             ovs_mutex_lock(&rule->mutex);
4176             rule->idle_timeout = fm->idle_timeout;
4177             rule->hard_timeout = fm->hard_timeout;
4178             ovs_mutex_unlock(&rule->mutex);
4179
4180             rule->flags = fm->flags & OFPUTIL_FF_STATE;
4181             if (fm->idle_timeout || fm->hard_timeout) {
4182                 if (!rule->eviction_group) {
4183                     eviction_group_add_rule(rule);
4184                 }
4185             } else {
4186                 eviction_group_remove_rule(rule);
4187             }
4188         }
4189
4190         reset_counters = (fm->flags & OFPUTIL_FF_RESET_COUNTS) != 0;
4191         if (actions_changed || reset_counters) {
4192             const struct rule_actions *new_actions;
4193
4194             op->actions = rule_get_actions(rule);
4195             new_actions = rule_actions_create(ofproto,
4196                                               fm->ofpacts, fm->ofpacts_len);
4197
4198             ovsrcu_set(&rule->actions, new_actions);
4199
4200             rule->ofproto->ofproto_class->rule_modify_actions(rule,
4201                                                               reset_counters);
4202         } else {
4203             ofoperation_complete(op, 0);
4204         }
4205     }
4206     ofopgroup_submit(group);
4207
4208     return error;
4209 }
4210
4211 static enum ofperr
4212 modify_flows_add(struct ofproto *ofproto, struct ofconn *ofconn,
4213                  struct ofputil_flow_mod *fm, const struct ofp_header *request)
4214     OVS_REQUIRES(ofproto_mutex)
4215 {
4216     if (fm->cookie_mask != htonll(0) || fm->new_cookie == OVS_BE64_MAX) {
4217         return 0;
4218     }
4219     return add_flow(ofproto, ofconn, fm, request);
4220 }
4221
4222 /* Implements OFPFC_MODIFY.  Returns 0 on success or an OpenFlow error code on
4223  * failure.
4224  *
4225  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
4226  * if any. */
4227 static enum ofperr
4228 modify_flows_loose(struct ofproto *ofproto, struct ofconn *ofconn,
4229                    struct ofputil_flow_mod *fm,
4230                    const struct ofp_header *request)
4231     OVS_REQUIRES(ofproto_mutex)
4232 {
4233     struct rule_criteria criteria;
4234     struct rule_collection rules;
4235     int error;
4236
4237     rule_criteria_init(&criteria, fm->table_id, &fm->match, 0,
4238                        fm->cookie, fm->cookie_mask, OFPP_ANY, OFPG11_ANY);
4239     error = collect_rules_loose(ofproto, &criteria, &rules);
4240     rule_criteria_destroy(&criteria);
4241
4242     if (!error) {
4243         error = (rules.n > 0
4244                  ? modify_flows__(ofproto, ofconn, fm, request, &rules)
4245                  : modify_flows_add(ofproto, ofconn, fm, request));
4246     }
4247
4248     rule_collection_destroy(&rules);
4249
4250     return error;
4251 }
4252
4253 /* Implements OFPFC_MODIFY_STRICT.  Returns 0 on success or an OpenFlow error
4254  * code on failure.
4255  *
4256  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
4257  * if any. */
4258 static enum ofperr
4259 modify_flow_strict(struct ofproto *ofproto, struct ofconn *ofconn,
4260                    struct ofputil_flow_mod *fm,
4261                    const struct ofp_header *request)
4262     OVS_REQUIRES(ofproto_mutex)
4263 {
4264     struct rule_criteria criteria;
4265     struct rule_collection rules;
4266     int error;
4267
4268     rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
4269                        fm->cookie, fm->cookie_mask, OFPP_ANY, OFPG11_ANY);
4270     error = collect_rules_strict(ofproto, &criteria, &rules);
4271     rule_criteria_destroy(&criteria);
4272
4273     if (!error) {
4274         if (rules.n == 0) {
4275             error =  modify_flows_add(ofproto, ofconn, fm, request);
4276         } else if (rules.n == 1) {
4277             error = modify_flows__(ofproto, ofconn, fm, request, &rules);
4278         }
4279     }
4280
4281     rule_collection_destroy(&rules);
4282
4283     return error;
4284 }
4285 \f
4286 /* OFPFC_DELETE implementation. */
4287
4288 static void
4289 delete_flow__(struct rule *rule, struct ofopgroup *group,
4290               enum ofp_flow_removed_reason reason)
4291     OVS_REQUIRES(ofproto_mutex)
4292 {
4293     struct ofproto *ofproto = rule->ofproto;
4294
4295     ofproto_rule_send_removed(rule, reason);
4296
4297     ofoperation_create(group, rule, OFOPERATION_DELETE, reason);
4298     oftable_remove_rule(rule);
4299     ofproto->ofproto_class->rule_delete(rule);
4300 }
4301
4302 /* Deletes the rules listed in 'rules'.
4303  *
4304  * Returns 0 on success, otherwise an OpenFlow error code. */
4305 static enum ofperr
4306 delete_flows__(struct ofproto *ofproto, struct ofconn *ofconn,
4307                const struct ofp_header *request,
4308                const struct rule_collection *rules,
4309                enum ofp_flow_removed_reason reason)
4310     OVS_REQUIRES(ofproto_mutex)
4311 {
4312     struct ofopgroup *group;
4313     size_t i;
4314
4315     group = ofopgroup_create(ofproto, ofconn, request, UINT32_MAX);
4316     for (i = 0; i < rules->n; i++) {
4317         delete_flow__(rules->rules[i], group, reason);
4318     }
4319     ofopgroup_submit(group);
4320
4321     return 0;
4322 }
4323
4324 /* Implements OFPFC_DELETE. */
4325 static enum ofperr
4326 delete_flows_loose(struct ofproto *ofproto, struct ofconn *ofconn,
4327                    const struct ofputil_flow_mod *fm,
4328                    const struct ofp_header *request)
4329     OVS_REQUIRES(ofproto_mutex)
4330 {
4331     struct rule_criteria criteria;
4332     struct rule_collection rules;
4333     enum ofperr error;
4334
4335     rule_criteria_init(&criteria, fm->table_id, &fm->match, 0,
4336                        fm->cookie, fm->cookie_mask,
4337                        fm->out_port, fm->out_group);
4338     error = collect_rules_loose(ofproto, &criteria, &rules);
4339     rule_criteria_destroy(&criteria);
4340
4341     if (!error && rules.n > 0) {
4342         error = delete_flows__(ofproto, ofconn, request, &rules,
4343                                fm->delete_reason);
4344     }
4345     rule_collection_destroy(&rules);
4346
4347     return error;
4348 }
4349
4350 /* Implements OFPFC_DELETE_STRICT. */
4351 static enum ofperr
4352 delete_flow_strict(struct ofproto *ofproto, struct ofconn *ofconn,
4353                    const struct ofputil_flow_mod *fm,
4354                    const struct ofp_header *request)
4355     OVS_REQUIRES(ofproto_mutex)
4356 {
4357     struct rule_criteria criteria;
4358     struct rule_collection rules;
4359     enum ofperr error;
4360
4361     rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
4362                        fm->cookie, fm->cookie_mask,
4363                        fm->out_port, fm->out_group);
4364     error = collect_rules_strict(ofproto, &criteria, &rules);
4365     rule_criteria_destroy(&criteria);
4366
4367     if (!error && rules.n > 0) {
4368         error = delete_flows__(ofproto, ofconn, request, &rules,
4369                                fm->delete_reason);
4370     }
4371     rule_collection_destroy(&rules);
4372
4373     return error;
4374 }
4375
4376 static void
4377 ofproto_rule_send_removed(struct rule *rule, uint8_t reason)
4378     OVS_REQUIRES(ofproto_mutex)
4379 {
4380     struct ofputil_flow_removed fr;
4381     long long int used;
4382
4383     if (ofproto_rule_is_hidden(rule) ||
4384         !(rule->flags & OFPUTIL_FF_SEND_FLOW_REM)) {
4385         return;
4386     }
4387
4388     minimatch_expand(&rule->cr.match, &fr.match);
4389     fr.priority = rule->cr.priority;
4390     fr.cookie = rule->flow_cookie;
4391     fr.reason = reason;
4392     fr.table_id = rule->table_id;
4393     calc_duration(rule->created, time_msec(),
4394                   &fr.duration_sec, &fr.duration_nsec);
4395     ovs_mutex_lock(&rule->mutex);
4396     fr.idle_timeout = rule->idle_timeout;
4397     fr.hard_timeout = rule->hard_timeout;
4398     ovs_mutex_unlock(&rule->mutex);
4399     rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
4400                                                  &fr.byte_count, &used);
4401
4402     connmgr_send_flow_removed(rule->ofproto->connmgr, &fr);
4403 }
4404
4405 /* Sends an OpenFlow "flow removed" message with the given 'reason' (either
4406  * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
4407  * ofproto.
4408  *
4409  * 'rule' must not have a pending operation (that is, 'rule->pending' must be
4410  * NULL).
4411  *
4412  * ofproto implementation ->run() functions should use this function to expire
4413  * OpenFlow flows. */
4414 void
4415 ofproto_rule_expire(struct rule *rule, uint8_t reason)
4416     OVS_REQUIRES(ofproto_mutex)
4417 {
4418     struct ofproto *ofproto = rule->ofproto;
4419
4420     ovs_assert(reason == OFPRR_HARD_TIMEOUT || reason == OFPRR_IDLE_TIMEOUT
4421                || reason == OFPRR_DELETE || reason == OFPRR_GROUP_DELETE);
4422
4423     ofproto_rule_delete__(ofproto, rule, reason);
4424 }
4425
4426 /* Reduces '*timeout' to no more than 'max'.  A value of zero in either case
4427  * means "infinite". */
4428 static void
4429 reduce_timeout(uint16_t max, uint16_t *timeout)
4430 {
4431     if (max && (!*timeout || *timeout > max)) {
4432         *timeout = max;
4433     }
4434 }
4435
4436 /* If 'idle_timeout' is nonzero, and 'rule' has no idle timeout or an idle
4437  * timeout greater than 'idle_timeout', lowers 'rule''s idle timeout to
4438  * 'idle_timeout' seconds.  Similarly for 'hard_timeout'.
4439  *
4440  * Suitable for implementing OFPACT_FIN_TIMEOUT. */
4441 void
4442 ofproto_rule_reduce_timeouts(struct rule *rule,
4443                              uint16_t idle_timeout, uint16_t hard_timeout)
4444     OVS_EXCLUDED(ofproto_mutex, rule->mutex)
4445 {
4446     if (!idle_timeout && !hard_timeout) {
4447         return;
4448     }
4449
4450     ovs_mutex_lock(&ofproto_mutex);
4451     if (list_is_empty(&rule->expirable)) {
4452         list_insert(&rule->ofproto->expirable, &rule->expirable);
4453     }
4454     ovs_mutex_unlock(&ofproto_mutex);
4455
4456     ovs_mutex_lock(&rule->mutex);
4457     reduce_timeout(idle_timeout, &rule->idle_timeout);
4458     reduce_timeout(hard_timeout, &rule->hard_timeout);
4459     ovs_mutex_unlock(&rule->mutex);
4460 }
4461 \f
4462 static enum ofperr
4463 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
4464     OVS_EXCLUDED(ofproto_mutex)
4465 {
4466     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4467     struct ofputil_flow_mod fm;
4468     uint64_t ofpacts_stub[1024 / 8];
4469     struct ofpbuf ofpacts;
4470     enum ofperr error;
4471
4472     error = reject_slave_controller(ofconn);
4473     if (error) {
4474         goto exit;
4475     }
4476
4477     ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
4478     error = ofputil_decode_flow_mod(&fm, oh, ofconn_get_protocol(ofconn),
4479                                     &ofpacts,
4480                                     u16_to_ofp(ofproto->max_ports),
4481                                     ofproto->n_tables);
4482     if (!error) {
4483         error = ofproto_check_ofpacts(ofproto, fm.ofpacts, fm.ofpacts_len);
4484     }
4485     if (!error) {
4486         error = handle_flow_mod__(ofproto, ofconn, &fm, oh);
4487     }
4488     if (error) {
4489         goto exit_free_ofpacts;
4490     }
4491
4492     ofconn_report_flow_mod(ofconn, fm.command);
4493
4494 exit_free_ofpacts:
4495     ofpbuf_uninit(&ofpacts);
4496 exit:
4497     return error;
4498 }
4499
4500 static enum ofperr
4501 handle_flow_mod__(struct ofproto *ofproto, struct ofconn *ofconn,
4502                   struct ofputil_flow_mod *fm, const struct ofp_header *oh)
4503     OVS_EXCLUDED(ofproto_mutex)
4504 {
4505     enum ofperr error;
4506
4507     ovs_mutex_lock(&ofproto_mutex);
4508     if (ofproto->n_pending < 50) {
4509         switch (fm->command) {
4510         case OFPFC_ADD:
4511             error = add_flow(ofproto, ofconn, fm, oh);
4512             break;
4513
4514         case OFPFC_MODIFY:
4515             error = modify_flows_loose(ofproto, ofconn, fm, oh);
4516             break;
4517
4518         case OFPFC_MODIFY_STRICT:
4519             error = modify_flow_strict(ofproto, ofconn, fm, oh);
4520             break;
4521
4522         case OFPFC_DELETE:
4523             error = delete_flows_loose(ofproto, ofconn, fm, oh);
4524             break;
4525
4526         case OFPFC_DELETE_STRICT:
4527             error = delete_flow_strict(ofproto, ofconn, fm, oh);
4528             break;
4529
4530         default:
4531             if (fm->command > 0xff) {
4532                 VLOG_WARN_RL(&rl, "%s: flow_mod has explicit table_id but "
4533                              "flow_mod_table_id extension is not enabled",
4534                              ofproto->name);
4535             }
4536             error = OFPERR_OFPFMFC_BAD_COMMAND;
4537             break;
4538         }
4539     } else {
4540         ovs_assert(!list_is_empty(&ofproto->pending));
4541         error = OFPROTO_POSTPONE;
4542     }
4543     ovs_mutex_unlock(&ofproto_mutex);
4544
4545     run_rule_executes(ofproto);
4546     return error;
4547 }
4548
4549 static enum ofperr
4550 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
4551 {
4552     struct ofputil_role_request request;
4553     struct ofputil_role_request reply;
4554     struct ofpbuf *buf;
4555     enum ofperr error;
4556
4557     error = ofputil_decode_role_message(oh, &request);
4558     if (error) {
4559         return error;
4560     }
4561
4562     if (request.role != OFPCR12_ROLE_NOCHANGE) {
4563         if (ofconn_get_role(ofconn) != request.role
4564             && ofconn_has_pending_opgroups(ofconn)) {
4565             return OFPROTO_POSTPONE;
4566         }
4567
4568         if (request.have_generation_id
4569             && !ofconn_set_master_election_id(ofconn, request.generation_id)) {
4570                 return OFPERR_OFPRRFC_STALE;
4571         }
4572
4573         ofconn_set_role(ofconn, request.role);
4574     }
4575
4576     reply.role = ofconn_get_role(ofconn);
4577     reply.have_generation_id = ofconn_get_master_election_id(
4578         ofconn, &reply.generation_id);
4579     buf = ofputil_encode_role_reply(oh, &reply);
4580     ofconn_send_reply(ofconn, buf);
4581
4582     return 0;
4583 }
4584
4585 static enum ofperr
4586 handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
4587                              const struct ofp_header *oh)
4588 {
4589     const struct nx_flow_mod_table_id *msg = ofpmsg_body(oh);
4590     enum ofputil_protocol cur, next;
4591
4592     cur = ofconn_get_protocol(ofconn);
4593     next = ofputil_protocol_set_tid(cur, msg->set != 0);
4594     ofconn_set_protocol(ofconn, next);
4595
4596     return 0;
4597 }
4598
4599 static enum ofperr
4600 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
4601 {
4602     const struct nx_set_flow_format *msg = ofpmsg_body(oh);
4603     enum ofputil_protocol cur, next;
4604     enum ofputil_protocol next_base;
4605
4606     next_base = ofputil_nx_flow_format_to_protocol(ntohl(msg->format));
4607     if (!next_base) {
4608         return OFPERR_OFPBRC_EPERM;
4609     }
4610
4611     cur = ofconn_get_protocol(ofconn);
4612     next = ofputil_protocol_set_base(cur, next_base);
4613     if (cur != next && ofconn_has_pending_opgroups(ofconn)) {
4614         /* Avoid sending async messages in surprising protocol. */
4615         return OFPROTO_POSTPONE;
4616     }
4617
4618     ofconn_set_protocol(ofconn, next);
4619     return 0;
4620 }
4621
4622 static enum ofperr
4623 handle_nxt_set_packet_in_format(struct ofconn *ofconn,
4624                                 const struct ofp_header *oh)
4625 {
4626     const struct nx_set_packet_in_format *msg = ofpmsg_body(oh);
4627     uint32_t format;
4628
4629     format = ntohl(msg->format);
4630     if (format != NXPIF_OPENFLOW10 && format != NXPIF_NXM) {
4631         return OFPERR_OFPBRC_EPERM;
4632     }
4633
4634     if (format != ofconn_get_packet_in_format(ofconn)
4635         && ofconn_has_pending_opgroups(ofconn)) {
4636         /* Avoid sending async message in surprsing packet in format. */
4637         return OFPROTO_POSTPONE;
4638     }
4639
4640     ofconn_set_packet_in_format(ofconn, format);
4641     return 0;
4642 }
4643
4644 static enum ofperr
4645 handle_nxt_set_async_config(struct ofconn *ofconn, const struct ofp_header *oh)
4646 {
4647     const struct nx_async_config *msg = ofpmsg_body(oh);
4648     uint32_t master[OAM_N_TYPES];
4649     uint32_t slave[OAM_N_TYPES];
4650
4651     master[OAM_PACKET_IN] = ntohl(msg->packet_in_mask[0]);
4652     master[OAM_PORT_STATUS] = ntohl(msg->port_status_mask[0]);
4653     master[OAM_FLOW_REMOVED] = ntohl(msg->flow_removed_mask[0]);
4654
4655     slave[OAM_PACKET_IN] = ntohl(msg->packet_in_mask[1]);
4656     slave[OAM_PORT_STATUS] = ntohl(msg->port_status_mask[1]);
4657     slave[OAM_FLOW_REMOVED] = ntohl(msg->flow_removed_mask[1]);
4658
4659     ofconn_set_async_config(ofconn, master, slave);
4660     if (ofconn_get_type(ofconn) == OFCONN_SERVICE &&
4661         !ofconn_get_miss_send_len(ofconn)) {
4662         ofconn_set_miss_send_len(ofconn, OFP_DEFAULT_MISS_SEND_LEN);
4663     }
4664
4665     return 0;
4666 }
4667
4668 static enum ofperr
4669 handle_nxt_get_async_request(struct ofconn *ofconn, const struct ofp_header *oh)
4670 {
4671     struct ofpbuf *buf;
4672     uint32_t master[OAM_N_TYPES];
4673     uint32_t slave[OAM_N_TYPES];
4674     struct nx_async_config *msg;
4675
4676     ofconn_get_async_config(ofconn, master, slave);
4677     buf = ofpraw_alloc_reply(OFPRAW_OFPT13_GET_ASYNC_REPLY, oh, 0);
4678     msg = ofpbuf_put_zeros(buf, sizeof *msg);
4679
4680     msg->packet_in_mask[0] = htonl(master[OAM_PACKET_IN]);
4681     msg->port_status_mask[0] = htonl(master[OAM_PORT_STATUS]);
4682     msg->flow_removed_mask[0] = htonl(master[OAM_FLOW_REMOVED]);
4683
4684     msg->packet_in_mask[1] = htonl(slave[OAM_PACKET_IN]);
4685     msg->port_status_mask[1] = htonl(slave[OAM_PORT_STATUS]);
4686     msg->flow_removed_mask[1] = htonl(slave[OAM_FLOW_REMOVED]);
4687
4688     ofconn_send_reply(ofconn, buf);
4689
4690     return 0;
4691 }
4692
4693 static enum ofperr
4694 handle_nxt_set_controller_id(struct ofconn *ofconn,
4695                              const struct ofp_header *oh)
4696 {
4697     const struct nx_controller_id *nci = ofpmsg_body(oh);
4698
4699     if (!is_all_zeros(nci->zero, sizeof nci->zero)) {
4700         return OFPERR_NXBRC_MUST_BE_ZERO;
4701     }
4702
4703     ofconn_set_controller_id(ofconn, ntohs(nci->controller_id));
4704     return 0;
4705 }
4706
4707 static enum ofperr
4708 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
4709 {
4710     struct ofpbuf *buf;
4711
4712     if (ofconn_has_pending_opgroups(ofconn)) {
4713         return OFPROTO_POSTPONE;
4714     }
4715
4716     buf = ofpraw_alloc_reply((oh->version == OFP10_VERSION
4717                               ? OFPRAW_OFPT10_BARRIER_REPLY
4718                               : OFPRAW_OFPT11_BARRIER_REPLY), oh, 0);
4719     ofconn_send_reply(ofconn, buf);
4720     return 0;
4721 }
4722
4723 static void
4724 ofproto_compose_flow_refresh_update(const struct rule *rule,
4725                                     enum nx_flow_monitor_flags flags,
4726                                     struct list *msgs)
4727     OVS_REQUIRES(ofproto_mutex)
4728 {
4729     struct ofoperation *op = rule->pending;
4730     const struct rule_actions *actions;
4731     struct ofputil_flow_update fu;
4732     struct match match;
4733
4734     if (op && op->type == OFOPERATION_ADD) {
4735         /* We'll report the final flow when the operation completes.  Reporting
4736          * it now would cause a duplicate report later. */
4737         return;
4738     }
4739
4740     fu.event = (flags & (NXFMF_INITIAL | NXFMF_ADD)
4741                 ? NXFME_ADDED : NXFME_MODIFIED);
4742     fu.reason = 0;
4743     ovs_mutex_lock(&rule->mutex);
4744     fu.idle_timeout = rule->idle_timeout;
4745     fu.hard_timeout = rule->hard_timeout;
4746     ovs_mutex_unlock(&rule->mutex);
4747     fu.table_id = rule->table_id;
4748     fu.cookie = rule->flow_cookie;
4749     minimatch_expand(&rule->cr.match, &match);
4750     fu.match = &match;
4751     fu.priority = rule->cr.priority;
4752
4753     if (!(flags & NXFMF_ACTIONS)) {
4754         actions = NULL;
4755     } else if (!op) {
4756         actions = rule_get_actions(rule);
4757     } else {
4758         /* An operation is in progress.  Use the previous version of the flow's
4759          * actions, so that when the operation commits we report the change. */
4760         switch (op->type) {
4761         case OFOPERATION_ADD:
4762             OVS_NOT_REACHED();
4763
4764         case OFOPERATION_MODIFY:
4765         case OFOPERATION_REPLACE:
4766             actions = op->actions ? op->actions : rule_get_actions(rule);
4767             break;
4768
4769         case OFOPERATION_DELETE:
4770             actions = rule_get_actions(rule);
4771             break;
4772
4773         default:
4774             OVS_NOT_REACHED();
4775         }
4776     }
4777     fu.ofpacts = actions ? actions->ofpacts : NULL;
4778     fu.ofpacts_len = actions ? actions->ofpacts_len : 0;
4779
4780     if (list_is_empty(msgs)) {
4781         ofputil_start_flow_update(msgs);
4782     }
4783     ofputil_append_flow_update(&fu, msgs);
4784 }
4785
4786 void
4787 ofmonitor_compose_refresh_updates(struct rule_collection *rules,
4788                                   struct list *msgs)
4789     OVS_REQUIRES(ofproto_mutex)
4790 {
4791     size_t i;
4792
4793     for (i = 0; i < rules->n; i++) {
4794         struct rule *rule = rules->rules[i];
4795         enum nx_flow_monitor_flags flags = rule->monitor_flags;
4796         rule->monitor_flags = 0;
4797
4798         ofproto_compose_flow_refresh_update(rule, flags, msgs);
4799     }
4800 }
4801
4802 static void
4803 ofproto_collect_ofmonitor_refresh_rule(const struct ofmonitor *m,
4804                                        struct rule *rule, uint64_t seqno,
4805                                        struct rule_collection *rules)
4806     OVS_REQUIRES(ofproto_mutex)
4807 {
4808     enum nx_flow_monitor_flags update;
4809
4810     if (ofproto_rule_is_hidden(rule)) {
4811         return;
4812     }
4813
4814     if (!(rule->pending
4815           ? ofoperation_has_out_port(rule->pending, m->out_port)
4816           : ofproto_rule_has_out_port(rule, m->out_port))) {
4817         return;
4818     }
4819
4820     if (seqno) {
4821         if (rule->add_seqno > seqno) {
4822             update = NXFMF_ADD | NXFMF_MODIFY;
4823         } else if (rule->modify_seqno > seqno) {
4824             update = NXFMF_MODIFY;
4825         } else {
4826             return;
4827         }
4828
4829         if (!(m->flags & update)) {
4830             return;
4831         }
4832     } else {
4833         update = NXFMF_INITIAL;
4834     }
4835
4836     if (!rule->monitor_flags) {
4837         rule_collection_add(rules, rule);
4838     }
4839     rule->monitor_flags |= update | (m->flags & NXFMF_ACTIONS);
4840 }
4841
4842 static void
4843 ofproto_collect_ofmonitor_refresh_rules(const struct ofmonitor *m,
4844                                         uint64_t seqno,
4845                                         struct rule_collection *rules)
4846     OVS_REQUIRES(ofproto_mutex)
4847 {
4848     const struct ofproto *ofproto = ofconn_get_ofproto(m->ofconn);
4849     const struct ofoperation *op;
4850     const struct oftable *table;
4851     struct cls_rule target;
4852
4853     cls_rule_init_from_minimatch(&target, &m->match, 0);
4854     FOR_EACH_MATCHING_TABLE (table, m->table_id, ofproto) {
4855         struct cls_cursor cursor;
4856         struct rule *rule;
4857
4858         fat_rwlock_rdlock(&table->cls.rwlock);
4859         cls_cursor_init(&cursor, &table->cls, &target);
4860         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
4861             ovs_assert(!rule->pending); /* XXX */
4862             ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
4863         }
4864         fat_rwlock_unlock(&table->cls.rwlock);
4865     }
4866
4867     HMAP_FOR_EACH (op, hmap_node, &ofproto->deletions) {
4868         struct rule *rule = op->rule;
4869
4870         if (((m->table_id == 0xff
4871               ? !(ofproto->tables[rule->table_id].flags & OFTABLE_HIDDEN)
4872               : m->table_id == rule->table_id))
4873             && cls_rule_is_loose_match(&rule->cr, &target.match)) {
4874             ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
4875         }
4876     }
4877     cls_rule_destroy(&target);
4878 }
4879
4880 static void
4881 ofproto_collect_ofmonitor_initial_rules(struct ofmonitor *m,
4882                                         struct rule_collection *rules)
4883     OVS_REQUIRES(ofproto_mutex)
4884 {
4885     if (m->flags & NXFMF_INITIAL) {
4886         ofproto_collect_ofmonitor_refresh_rules(m, 0, rules);
4887     }
4888 }
4889
4890 void
4891 ofmonitor_collect_resume_rules(struct ofmonitor *m,
4892                                uint64_t seqno, struct rule_collection *rules)
4893     OVS_REQUIRES(ofproto_mutex)
4894 {
4895     ofproto_collect_ofmonitor_refresh_rules(m, seqno, rules);
4896 }
4897
4898 static enum ofperr
4899 handle_flow_monitor_request(struct ofconn *ofconn, const struct ofp_header *oh)
4900     OVS_EXCLUDED(ofproto_mutex)
4901 {
4902     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4903     struct ofmonitor **monitors;
4904     size_t n_monitors, allocated_monitors;
4905     struct rule_collection rules;
4906     struct list replies;
4907     enum ofperr error;
4908     struct ofpbuf b;
4909     size_t i;
4910
4911     error = 0;
4912     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4913     monitors = NULL;
4914     n_monitors = allocated_monitors = 0;
4915
4916     ovs_mutex_lock(&ofproto_mutex);
4917     for (;;) {
4918         struct ofputil_flow_monitor_request request;
4919         struct ofmonitor *m;
4920         int retval;
4921
4922         retval = ofputil_decode_flow_monitor_request(&request, &b);
4923         if (retval == EOF) {
4924             break;
4925         } else if (retval) {
4926             error = retval;
4927             goto error;
4928         }
4929
4930         if (request.table_id != 0xff
4931             && request.table_id >= ofproto->n_tables) {
4932             error = OFPERR_OFPBRC_BAD_TABLE_ID;
4933             goto error;
4934         }
4935
4936         error = ofmonitor_create(&request, ofconn, &m);
4937         if (error) {
4938             goto error;
4939         }
4940
4941         if (n_monitors >= allocated_monitors) {
4942             monitors = x2nrealloc(monitors, &allocated_monitors,
4943                                   sizeof *monitors);
4944         }
4945         monitors[n_monitors++] = m;
4946     }
4947
4948     rule_collection_init(&rules);
4949     for (i = 0; i < n_monitors; i++) {
4950         ofproto_collect_ofmonitor_initial_rules(monitors[i], &rules);
4951     }
4952
4953     ofpmp_init(&replies, oh);
4954     ofmonitor_compose_refresh_updates(&rules, &replies);
4955     ovs_mutex_unlock(&ofproto_mutex);
4956
4957     rule_collection_destroy(&rules);
4958
4959     ofconn_send_replies(ofconn, &replies);
4960     free(monitors);
4961
4962     return 0;
4963
4964 error:
4965     for (i = 0; i < n_monitors; i++) {
4966         ofmonitor_destroy(monitors[i]);
4967     }
4968     free(monitors);
4969     ovs_mutex_unlock(&ofproto_mutex);
4970
4971     return error;
4972 }
4973
4974 static enum ofperr
4975 handle_flow_monitor_cancel(struct ofconn *ofconn, const struct ofp_header *oh)
4976     OVS_EXCLUDED(ofproto_mutex)
4977 {
4978     struct ofmonitor *m;
4979     enum ofperr error;
4980     uint32_t id;
4981
4982     id = ofputil_decode_flow_monitor_cancel(oh);
4983
4984     ovs_mutex_lock(&ofproto_mutex);
4985     m = ofmonitor_lookup(ofconn, id);
4986     if (m) {
4987         ofmonitor_destroy(m);
4988         error = 0;
4989     } else {
4990         error = OFPERR_NXBRC_FM_BAD_ID;
4991     }
4992     ovs_mutex_unlock(&ofproto_mutex);
4993
4994     return error;
4995 }
4996
4997 /* Meters implementation.
4998  *
4999  * Meter table entry, indexed by the OpenFlow meter_id.
5000  * 'created' is used to compute the duration for meter stats.
5001  * 'list rules' is needed so that we can delete the dependent rules when the
5002  * meter table entry is deleted.
5003  * 'provider_meter_id' is for the provider's private use.
5004  */
5005 struct meter {
5006     long long int created;      /* Time created. */
5007     struct list rules;          /* List of "struct rule_dpif"s. */
5008     ofproto_meter_id provider_meter_id;
5009     uint16_t flags;             /* Meter flags. */
5010     uint16_t n_bands;           /* Number of meter bands. */
5011     struct ofputil_meter_band *bands;
5012 };
5013
5014 /*
5015  * This is used in instruction validation at flow set-up time,
5016  * as flows may not use non-existing meters.
5017  * Return value of UINT32_MAX signifies an invalid meter.
5018  */
5019 static uint32_t
5020 get_provider_meter_id(const struct ofproto *ofproto, uint32_t of_meter_id)
5021 {
5022     if (of_meter_id && of_meter_id <= ofproto->meter_features.max_meters) {
5023         const struct meter *meter = ofproto->meters[of_meter_id];
5024         if (meter) {
5025             return meter->provider_meter_id.uint32;
5026         }
5027     }
5028     return UINT32_MAX;
5029 }
5030
5031 static void
5032 meter_update(struct meter *meter, const struct ofputil_meter_config *config)
5033 {
5034     free(meter->bands);
5035
5036     meter->flags = config->flags;
5037     meter->n_bands = config->n_bands;
5038     meter->bands = xmemdup(config->bands,
5039                            config->n_bands * sizeof *meter->bands);
5040 }
5041
5042 static struct meter *
5043 meter_create(const struct ofputil_meter_config *config,
5044              ofproto_meter_id provider_meter_id)
5045 {
5046     struct meter *meter;
5047
5048     meter = xzalloc(sizeof *meter);
5049     meter->provider_meter_id = provider_meter_id;
5050     meter->created = time_msec();
5051     list_init(&meter->rules);
5052
5053     meter_update(meter, config);
5054
5055     return meter;
5056 }
5057
5058 static void
5059 meter_delete(struct ofproto *ofproto, uint32_t first, uint32_t last)
5060     OVS_REQUIRES(ofproto_mutex)
5061 {
5062     uint32_t mid;
5063     for (mid = first; mid <= last; ++mid) {
5064         struct meter *meter = ofproto->meters[mid];
5065         if (meter) {
5066             ofproto->meters[mid] = NULL;
5067             ofproto->ofproto_class->meter_del(ofproto,
5068                                               meter->provider_meter_id);
5069             free(meter->bands);
5070             free(meter);
5071         }
5072     }
5073 }
5074
5075 static enum ofperr
5076 handle_add_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
5077 {
5078     ofproto_meter_id provider_meter_id = { UINT32_MAX };
5079     struct meter **meterp = &ofproto->meters[mm->meter.meter_id];
5080     enum ofperr error;
5081
5082     if (*meterp) {
5083         return OFPERR_OFPMMFC_METER_EXISTS;
5084     }
5085
5086     error = ofproto->ofproto_class->meter_set(ofproto, &provider_meter_id,
5087                                               &mm->meter);
5088     if (!error) {
5089         ovs_assert(provider_meter_id.uint32 != UINT32_MAX);
5090         *meterp = meter_create(&mm->meter, provider_meter_id);
5091     }
5092     return error;
5093 }
5094
5095 static enum ofperr
5096 handle_modify_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
5097 {
5098     struct meter *meter = ofproto->meters[mm->meter.meter_id];
5099     enum ofperr error;
5100     uint32_t provider_meter_id;
5101
5102     if (!meter) {
5103         return OFPERR_OFPMMFC_UNKNOWN_METER;
5104     }
5105
5106     provider_meter_id = meter->provider_meter_id.uint32;
5107     error = ofproto->ofproto_class->meter_set(ofproto,
5108                                               &meter->provider_meter_id,
5109                                               &mm->meter);
5110     ovs_assert(meter->provider_meter_id.uint32 == provider_meter_id);
5111     if (!error) {
5112         meter_update(meter, &mm->meter);
5113     }
5114     return error;
5115 }
5116
5117 static enum ofperr
5118 handle_delete_meter(struct ofconn *ofconn, const struct ofp_header *oh,
5119                     struct ofputil_meter_mod *mm)
5120     OVS_EXCLUDED(ofproto_mutex)
5121 {
5122     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5123     uint32_t meter_id = mm->meter.meter_id;
5124     struct rule_collection rules;
5125     enum ofperr error = 0;
5126     uint32_t first, last;
5127
5128     if (meter_id == OFPM13_ALL) {
5129         first = 1;
5130         last = ofproto->meter_features.max_meters;
5131     } else {
5132         if (!meter_id || meter_id > ofproto->meter_features.max_meters) {
5133             return 0;
5134         }
5135         first = last = meter_id;
5136     }
5137
5138     /* First delete the rules that use this meter.  If any of those rules are
5139      * currently being modified, postpone the whole operation until later. */
5140     rule_collection_init(&rules);
5141     ovs_mutex_lock(&ofproto_mutex);
5142     for (meter_id = first; meter_id <= last; ++meter_id) {
5143         struct meter *meter = ofproto->meters[meter_id];
5144         if (meter && !list_is_empty(&meter->rules)) {
5145             struct rule *rule;
5146
5147             LIST_FOR_EACH (rule, meter_list_node, &meter->rules) {
5148                 if (rule->pending) {
5149                     error = OFPROTO_POSTPONE;
5150                     goto exit;
5151                 }
5152                 rule_collection_add(&rules, rule);
5153             }
5154         }
5155     }
5156     if (rules.n > 0) {
5157         delete_flows__(ofproto, ofconn, oh, &rules, OFPRR_METER_DELETE);
5158     }
5159
5160     /* Delete the meters. */
5161     meter_delete(ofproto, first, last);
5162
5163 exit:
5164     ovs_mutex_unlock(&ofproto_mutex);
5165     rule_collection_destroy(&rules);
5166
5167     return error;
5168 }
5169
5170 static enum ofperr
5171 handle_meter_mod(struct ofconn *ofconn, const struct ofp_header *oh)
5172 {
5173     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5174     struct ofputil_meter_mod mm;
5175     uint64_t bands_stub[256 / 8];
5176     struct ofpbuf bands;
5177     uint32_t meter_id;
5178     enum ofperr error;
5179
5180     error = reject_slave_controller(ofconn);
5181     if (error) {
5182         return error;
5183     }
5184
5185     ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
5186
5187     error = ofputil_decode_meter_mod(oh, &mm, &bands);
5188     if (error) {
5189         goto exit_free_bands;
5190     }
5191
5192     meter_id = mm.meter.meter_id;
5193
5194     if (mm.command != OFPMC13_DELETE) {
5195         /* Fails also when meters are not implemented by the provider. */
5196         if (meter_id == 0 || meter_id > OFPM13_MAX) {
5197             error = OFPERR_OFPMMFC_INVALID_METER;
5198             goto exit_free_bands;
5199         } else if (meter_id > ofproto->meter_features.max_meters) {
5200             error = OFPERR_OFPMMFC_OUT_OF_METERS;
5201             goto exit_free_bands;
5202         }
5203         if (mm.meter.n_bands > ofproto->meter_features.max_bands) {
5204             error = OFPERR_OFPMMFC_OUT_OF_BANDS;
5205             goto exit_free_bands;
5206         }
5207     }
5208
5209     switch (mm.command) {
5210     case OFPMC13_ADD:
5211         error = handle_add_meter(ofproto, &mm);
5212         break;
5213
5214     case OFPMC13_MODIFY:
5215         error = handle_modify_meter(ofproto, &mm);
5216         break;
5217
5218     case OFPMC13_DELETE:
5219         error = handle_delete_meter(ofconn, oh, &mm);
5220         break;
5221
5222     default:
5223         error = OFPERR_OFPMMFC_BAD_COMMAND;
5224         break;
5225     }
5226
5227 exit_free_bands:
5228     ofpbuf_uninit(&bands);
5229     return error;
5230 }
5231
5232 static enum ofperr
5233 handle_meter_features_request(struct ofconn *ofconn,
5234                               const struct ofp_header *request)
5235 {
5236     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5237     struct ofputil_meter_features features;
5238     struct ofpbuf *b;
5239
5240     if (ofproto->ofproto_class->meter_get_features) {
5241         ofproto->ofproto_class->meter_get_features(ofproto, &features);
5242     } else {
5243         memset(&features, 0, sizeof features);
5244     }
5245     b = ofputil_encode_meter_features_reply(&features, request);
5246
5247     ofconn_send_reply(ofconn, b);
5248     return 0;
5249 }
5250
5251 static enum ofperr
5252 handle_meter_request(struct ofconn *ofconn, const struct ofp_header *request,
5253                      enum ofptype type)
5254 {
5255     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5256     struct list replies;
5257     uint64_t bands_stub[256 / 8];
5258     struct ofpbuf bands;
5259     uint32_t meter_id, first, last;
5260
5261     ofputil_decode_meter_request(request, &meter_id);
5262
5263     if (meter_id == OFPM13_ALL) {
5264         first = 1;
5265         last = ofproto->meter_features.max_meters;
5266     } else {
5267         if (!meter_id || meter_id > ofproto->meter_features.max_meters ||
5268             !ofproto->meters[meter_id]) {
5269             return OFPERR_OFPMMFC_UNKNOWN_METER;
5270         }
5271         first = last = meter_id;
5272     }
5273
5274     ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
5275     ofpmp_init(&replies, request);
5276
5277     for (meter_id = first; meter_id <= last; ++meter_id) {
5278         struct meter *meter = ofproto->meters[meter_id];
5279         if (!meter) {
5280             continue; /* Skip non-existing meters. */
5281         }
5282         if (type == OFPTYPE_METER_STATS_REQUEST) {
5283             struct ofputil_meter_stats stats;
5284
5285             stats.meter_id = meter_id;
5286
5287             /* Provider sets the packet and byte counts, we do the rest. */
5288             stats.flow_count = list_size(&meter->rules);
5289             calc_duration(meter->created, time_msec(),
5290                           &stats.duration_sec, &stats.duration_nsec);
5291             stats.n_bands = meter->n_bands;
5292             ofpbuf_clear(&bands);
5293             stats.bands
5294                 = ofpbuf_put_uninit(&bands,
5295                                     meter->n_bands * sizeof *stats.bands);
5296
5297             if (!ofproto->ofproto_class->meter_get(ofproto,
5298                                                    meter->provider_meter_id,
5299                                                    &stats)) {
5300                 ofputil_append_meter_stats(&replies, &stats);
5301             }
5302         } else { /* type == OFPTYPE_METER_CONFIG_REQUEST */
5303             struct ofputil_meter_config config;
5304
5305             config.meter_id = meter_id;
5306             config.flags = meter->flags;
5307             config.n_bands = meter->n_bands;
5308             config.bands = meter->bands;
5309             ofputil_append_meter_config(&replies, &config);
5310         }
5311     }
5312
5313     ofconn_send_replies(ofconn, &replies);
5314     ofpbuf_uninit(&bands);
5315     return 0;
5316 }
5317
5318 static bool
5319 ofproto_group_lookup__(const struct ofproto *ofproto, uint32_t group_id,
5320                        struct ofgroup **group)
5321     OVS_REQ_RDLOCK(ofproto->groups_rwlock)
5322 {
5323     HMAP_FOR_EACH_IN_BUCKET (*group, hmap_node,
5324                              hash_int(group_id, 0), &ofproto->groups) {
5325         if ((*group)->group_id == group_id) {
5326             return true;
5327         }
5328     }
5329
5330     return false;
5331 }
5332
5333 /* If the group exists, this function increments the groups's reference count.
5334  *
5335  * Make sure to call ofproto_group_unref() after no longer needing to maintain
5336  * a reference to the group. */
5337 bool
5338 ofproto_group_lookup(const struct ofproto *ofproto, uint32_t group_id,
5339                      struct ofgroup **group)
5340 {
5341     bool found;
5342
5343     ovs_rwlock_rdlock(&ofproto->groups_rwlock);
5344     found = ofproto_group_lookup__(ofproto, group_id, group);
5345     if (found) {
5346         ofproto_group_ref(*group);
5347     }
5348     ovs_rwlock_unlock(&ofproto->groups_rwlock);
5349     return found;
5350 }
5351
5352 static bool
5353 ofproto_group_exists__(const struct ofproto *ofproto, uint32_t group_id)
5354     OVS_REQ_RDLOCK(ofproto->groups_rwlock)
5355 {
5356     struct ofgroup *grp;
5357
5358     HMAP_FOR_EACH_IN_BUCKET (grp, hmap_node,
5359                              hash_int(group_id, 0), &ofproto->groups) {
5360         if (grp->group_id == group_id) {
5361             return true;
5362         }
5363     }
5364     return false;
5365 }
5366
5367 static bool
5368 ofproto_group_exists(const struct ofproto *ofproto, uint32_t group_id)
5369     OVS_EXCLUDED(ofproto->groups_rwlock)
5370 {
5371     bool exists;
5372
5373     ovs_rwlock_rdlock(&ofproto->groups_rwlock);
5374     exists = ofproto_group_exists__(ofproto, group_id);
5375     ovs_rwlock_unlock(&ofproto->groups_rwlock);
5376
5377     return exists;
5378 }
5379
5380 static uint32_t
5381 group_get_ref_count(struct ofgroup *group)
5382     OVS_EXCLUDED(ofproto_mutex)
5383 {
5384     struct ofproto *ofproto = CONST_CAST(struct ofproto *, group->ofproto);
5385     struct rule_criteria criteria;
5386     struct rule_collection rules;
5387     struct match match;
5388     enum ofperr error;
5389     uint32_t count;
5390
5391     match_init_catchall(&match);
5392     rule_criteria_init(&criteria, 0xff, &match, 0, htonll(0), htonll(0),
5393                        OFPP_ANY, group->group_id);
5394     ovs_mutex_lock(&ofproto_mutex);
5395     error = collect_rules_loose(ofproto, &criteria, &rules);
5396     ovs_mutex_unlock(&ofproto_mutex);
5397     rule_criteria_destroy(&criteria);
5398
5399     count = !error && rules.n < UINT32_MAX ? rules.n : UINT32_MAX;
5400
5401     rule_collection_destroy(&rules);
5402     return count;
5403 }
5404
5405 static void
5406 append_group_stats(struct ofgroup *group, struct list *replies)
5407 {
5408     struct ofputil_group_stats ogs;
5409     const struct ofproto *ofproto = group->ofproto;
5410     long long int now = time_msec();
5411     int error;
5412
5413     ogs.bucket_stats = xmalloc(group->n_buckets * sizeof *ogs.bucket_stats);
5414
5415     /* Provider sets the packet and byte counts, we do the rest. */
5416     ogs.ref_count = group_get_ref_count(group);
5417     ogs.n_buckets = group->n_buckets;
5418
5419     error = (ofproto->ofproto_class->group_get_stats
5420              ? ofproto->ofproto_class->group_get_stats(group, &ogs)
5421              : EOPNOTSUPP);
5422     if (error) {
5423         ogs.packet_count = UINT64_MAX;
5424         ogs.byte_count = UINT64_MAX;
5425         memset(ogs.bucket_stats, 0xff,
5426                ogs.n_buckets * sizeof *ogs.bucket_stats);
5427     }
5428
5429     ogs.group_id = group->group_id;
5430     calc_duration(group->created, now, &ogs.duration_sec, &ogs.duration_nsec);
5431
5432     ofputil_append_group_stats(replies, &ogs);
5433
5434     free(ogs.bucket_stats);
5435 }
5436
5437 static void
5438 handle_group_request(struct ofconn *ofconn,
5439                      const struct ofp_header *request, uint32_t group_id,
5440                      void (*cb)(struct ofgroup *, struct list *replies))
5441 {
5442     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5443     struct ofgroup *group;
5444     struct list replies;
5445
5446     ofpmp_init(&replies, request);
5447     if (group_id == OFPG_ALL) {
5448         ovs_rwlock_rdlock(&ofproto->groups_rwlock);
5449         HMAP_FOR_EACH (group, hmap_node, &ofproto->groups) {
5450             cb(group, &replies);
5451         }
5452         ovs_rwlock_unlock(&ofproto->groups_rwlock);
5453     } else {
5454         if (ofproto_group_lookup(ofproto, group_id, &group)) {
5455             cb(group, &replies);
5456             ofproto_group_unref(group);
5457         }
5458     }
5459     ofconn_send_replies(ofconn, &replies);
5460 }
5461
5462 static enum ofperr
5463 handle_group_stats_request(struct ofconn *ofconn,
5464                            const struct ofp_header *request)
5465 {
5466     uint32_t group_id;
5467     enum ofperr error;
5468
5469     error = ofputil_decode_group_stats_request(request, &group_id);
5470     if (error) {
5471         return error;
5472     }
5473
5474     handle_group_request(ofconn, request, group_id, append_group_stats);
5475     return 0;
5476 }
5477
5478 static void
5479 append_group_desc(struct ofgroup *group, struct list *replies)
5480 {
5481     struct ofputil_group_desc gds;
5482
5483     gds.group_id = group->group_id;
5484     gds.type = group->type;
5485     ofputil_append_group_desc_reply(&gds, &group->buckets, replies);
5486 }
5487
5488 static enum ofperr
5489 handle_group_desc_stats_request(struct ofconn *ofconn,
5490                                 const struct ofp_header *request)
5491 {
5492     handle_group_request(ofconn, request,
5493                          ofputil_decode_group_desc_request(request),
5494                          append_group_desc);
5495     return 0;
5496 }
5497
5498 static enum ofperr
5499 handle_group_features_stats_request(struct ofconn *ofconn,
5500                                     const struct ofp_header *request)
5501 {
5502     struct ofproto *p = ofconn_get_ofproto(ofconn);
5503     struct ofpbuf *msg;
5504
5505     msg = ofputil_encode_group_features_reply(&p->ogf, request);
5506     if (msg) {
5507         ofconn_send_reply(ofconn, msg);
5508     }
5509
5510     return 0;
5511 }
5512
5513 static enum ofperr
5514 handle_queue_get_config_request(struct ofconn *ofconn,
5515                                 const struct ofp_header *oh)
5516 {
5517    struct ofproto *p = ofconn_get_ofproto(ofconn);
5518    struct netdev_queue_dump queue_dump;
5519    struct ofport *ofport;
5520    unsigned int queue_id;
5521    struct ofpbuf *reply;
5522    struct smap details;
5523    ofp_port_t request;
5524    enum ofperr error;
5525
5526    error = ofputil_decode_queue_get_config_request(oh, &request);
5527    if (error) {
5528        return error;
5529    }
5530
5531    ofport = ofproto_get_port(p, request);
5532    if (!ofport) {
5533       return OFPERR_OFPQOFC_BAD_PORT;
5534    }
5535
5536    reply = ofputil_encode_queue_get_config_reply(oh);
5537
5538    smap_init(&details);
5539    NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &queue_dump, ofport->netdev) {
5540        struct ofputil_queue_config queue;
5541
5542        /* None of the existing queues have compatible properties, so we
5543         * hard-code omitting min_rate and max_rate. */
5544        queue.queue_id = queue_id;
5545        queue.min_rate = UINT16_MAX;
5546        queue.max_rate = UINT16_MAX;
5547        ofputil_append_queue_get_config_reply(reply, &queue);
5548    }
5549    smap_destroy(&details);
5550
5551    ofconn_send_reply(ofconn, reply);
5552
5553    return 0;
5554 }
5555
5556 static enum ofperr
5557 init_group(struct ofproto *ofproto, struct ofputil_group_mod *gm,
5558            struct ofgroup **ofgroup)
5559 {
5560     enum ofperr error;
5561     const long long int now = time_msec();
5562
5563     if (gm->group_id > OFPG_MAX) {
5564         return OFPERR_OFPGMFC_INVALID_GROUP;
5565     }
5566     if (gm->type > OFPGT11_FF) {
5567         return OFPERR_OFPGMFC_BAD_TYPE;
5568     }
5569
5570     *ofgroup = ofproto->ofproto_class->group_alloc();
5571     if (!*ofgroup) {
5572         VLOG_WARN_RL(&rl, "%s: failed to allocate group", ofproto->name);
5573         return OFPERR_OFPGMFC_OUT_OF_GROUPS;
5574     }
5575
5576     (*ofgroup)->ofproto = ofproto;
5577     *CONST_CAST(uint32_t *, &((*ofgroup)->group_id)) = gm->group_id;
5578     *CONST_CAST(enum ofp11_group_type *, &(*ofgroup)->type) = gm->type;
5579     *CONST_CAST(long long int *, &((*ofgroup)->created)) = now;
5580     *CONST_CAST(long long int *, &((*ofgroup)->modified)) = now;
5581     ovs_refcount_init(&(*ofgroup)->ref_count);
5582
5583     list_move(&(*ofgroup)->buckets, &gm->buckets);
5584     *CONST_CAST(uint32_t *, &(*ofgroup)->n_buckets) =
5585         list_size(&(*ofgroup)->buckets);
5586
5587     /* Construct called BEFORE any locks are held. */
5588     error = ofproto->ofproto_class->group_construct(*ofgroup);
5589     if (error) {
5590         ofputil_bucket_list_destroy(&(*ofgroup)->buckets);
5591         ofproto->ofproto_class->group_dealloc(*ofgroup);
5592     }
5593     return error;
5594 }
5595
5596 /* Implements the OFPGC11_ADD operation specified by 'gm', adding a group to
5597  * 'ofproto''s group table.  Returns 0 on success or an OpenFlow error code on
5598  * failure. */
5599 static enum ofperr
5600 add_group(struct ofproto *ofproto, struct ofputil_group_mod *gm)
5601 {
5602     struct ofgroup *ofgroup;
5603     enum ofperr error;
5604
5605     /* Allocate new group and initialize it. */
5606     error = init_group(ofproto, gm, &ofgroup);
5607     if (error) {
5608         return error;
5609     }
5610
5611     /* We wrlock as late as possible to minimize the time we jam any other
5612      * threads: No visible state changes before acquiring the lock. */
5613     ovs_rwlock_wrlock(&ofproto->groups_rwlock);
5614
5615     if (ofproto->n_groups[gm->type] >= ofproto->ogf.max_groups[gm->type]) {
5616         error = OFPERR_OFPGMFC_OUT_OF_GROUPS;
5617         goto unlock_out;
5618     }
5619
5620     if (ofproto_group_exists__(ofproto, gm->group_id)) {
5621         error = OFPERR_OFPGMFC_GROUP_EXISTS;
5622         goto unlock_out;
5623     }
5624
5625     if (!error) {
5626         /* Insert new group. */
5627         hmap_insert(&ofproto->groups, &ofgroup->hmap_node,
5628                     hash_int(ofgroup->group_id, 0));
5629         ofproto->n_groups[ofgroup->type]++;
5630
5631         ovs_rwlock_unlock(&ofproto->groups_rwlock);
5632         return error;
5633     }
5634
5635  unlock_out:
5636     ovs_rwlock_unlock(&ofproto->groups_rwlock);
5637     ofproto->ofproto_class->group_destruct(ofgroup);
5638     ofputil_bucket_list_destroy(&ofgroup->buckets);
5639     ofproto->ofproto_class->group_dealloc(ofgroup);
5640
5641     return error;
5642 }
5643
5644 /* Implements OFPGC11_MODIFY.  Returns 0 on success or an OpenFlow error code
5645  * on failure.
5646  *
5647  * Note that the group is re-created and then replaces the old group in
5648  * ofproto's ofgroup hash map. Thus, the group is never altered while users of
5649  * the xlate module hold a pointer to the group. */
5650 static enum ofperr
5651 modify_group(struct ofproto *ofproto, struct ofputil_group_mod *gm)
5652 {
5653     struct ofgroup *ofgroup, *new_ofgroup, *retiring;
5654     enum ofperr error;
5655
5656     error = init_group(ofproto, gm, &new_ofgroup);
5657     if (error) {
5658         return error;
5659     }
5660
5661     retiring = new_ofgroup;
5662
5663     ovs_rwlock_wrlock(&ofproto->groups_rwlock);
5664     if (!ofproto_group_lookup__(ofproto, gm->group_id, &ofgroup)) {
5665         error = OFPERR_OFPGMFC_UNKNOWN_GROUP;
5666         goto out;
5667     }
5668
5669     /* Ofproto's group write lock is held now. */
5670     if (ofgroup->type != gm->type
5671         && ofproto->n_groups[gm->type] >= ofproto->ogf.max_groups[gm->type]) {
5672         error = OFPERR_OFPGMFC_OUT_OF_GROUPS;
5673         goto out;
5674     }
5675
5676     /* The group creation time does not change during modification. */
5677     *CONST_CAST(long long int *, &(new_ofgroup->created)) = ofgroup->created;
5678     *CONST_CAST(long long int *, &(new_ofgroup->modified)) = time_msec();
5679
5680     error = ofproto->ofproto_class->group_modify(new_ofgroup);
5681     if (error) {
5682         goto out;
5683     }
5684
5685     retiring = ofgroup;
5686     /* Replace ofgroup in ofproto's groups hash map with new_ofgroup. */
5687     hmap_remove(&ofproto->groups, &ofgroup->hmap_node);
5688     hmap_insert(&ofproto->groups, &new_ofgroup->hmap_node,
5689                 hash_int(new_ofgroup->group_id, 0));
5690     if (ofgroup->type != new_ofgroup->type) {
5691         ofproto->n_groups[ofgroup->type]--;
5692         ofproto->n_groups[new_ofgroup->type]++;
5693     }
5694
5695 out:
5696     ofproto_group_unref(retiring);
5697     ovs_rwlock_unlock(&ofproto->groups_rwlock);
5698     return error;
5699 }
5700
5701 static void
5702 delete_group__(struct ofproto *ofproto, struct ofgroup *ofgroup)
5703     OVS_RELEASES(ofproto->groups_rwlock)
5704 {
5705     struct match match;
5706     struct ofputil_flow_mod fm;
5707
5708     /* Delete all flow entries containing this group in a group action */
5709     match_init_catchall(&match);
5710     flow_mod_init(&fm, &match, 0, NULL, 0, OFPFC_DELETE);
5711     fm.delete_reason = OFPRR_GROUP_DELETE;
5712     fm.out_group = ofgroup->group_id;
5713     handle_flow_mod__(ofproto, NULL, &fm, NULL);
5714
5715     hmap_remove(&ofproto->groups, &ofgroup->hmap_node);
5716     /* No-one can find this group any more. */
5717     ofproto->n_groups[ofgroup->type]--;
5718     ovs_rwlock_unlock(&ofproto->groups_rwlock);
5719     ofproto_group_unref(ofgroup);
5720 }
5721
5722 /* Implements OFPGC11_DELETE. */
5723 static void
5724 delete_group(struct ofproto *ofproto, uint32_t group_id)
5725 {
5726     struct ofgroup *ofgroup;
5727
5728     ovs_rwlock_wrlock(&ofproto->groups_rwlock);
5729     if (group_id == OFPG_ALL) {
5730         for (;;) {
5731             struct hmap_node *node = hmap_first(&ofproto->groups);
5732             if (!node) {
5733                 break;
5734             }
5735             ofgroup = CONTAINER_OF(node, struct ofgroup, hmap_node);
5736             delete_group__(ofproto, ofgroup);
5737             /* Lock for each node separately, so that we will not jam the
5738              * other threads for too long time. */
5739             ovs_rwlock_wrlock(&ofproto->groups_rwlock);
5740         }
5741     } else {
5742         HMAP_FOR_EACH_IN_BUCKET (ofgroup, hmap_node,
5743                                  hash_int(group_id, 0), &ofproto->groups) {
5744             if (ofgroup->group_id == group_id) {
5745                 delete_group__(ofproto, ofgroup);
5746                 return;
5747             }
5748         }
5749     }
5750     ovs_rwlock_unlock(&ofproto->groups_rwlock);
5751 }
5752
5753 static enum ofperr
5754 handle_group_mod(struct ofconn *ofconn, const struct ofp_header *oh)
5755 {
5756     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5757     struct ofputil_group_mod gm;
5758     enum ofperr error;
5759
5760     error = reject_slave_controller(ofconn);
5761     if (error) {
5762         return error;
5763     }
5764
5765     error = ofputil_decode_group_mod(oh, &gm);
5766     if (error) {
5767         return error;
5768     }
5769
5770     switch (gm.command) {
5771     case OFPGC11_ADD:
5772         return add_group(ofproto, &gm);
5773
5774     case OFPGC11_MODIFY:
5775         return modify_group(ofproto, &gm);
5776
5777     case OFPGC11_DELETE:
5778         delete_group(ofproto, gm.group_id);
5779         return 0;
5780
5781     default:
5782         if (gm.command > OFPGC11_DELETE) {
5783             VLOG_WARN_RL(&rl, "%s: Invalid group_mod command type %d",
5784                          ofproto->name, gm.command);
5785         }
5786         return OFPERR_OFPGMFC_BAD_COMMAND;
5787     }
5788 }
5789
5790 enum ofproto_table_config
5791 ofproto_table_get_config(const struct ofproto *ofproto, uint8_t table_id)
5792 {
5793     unsigned int value;
5794     atomic_read(&ofproto->tables[table_id].config, &value);
5795     return (enum ofproto_table_config)value;
5796 }
5797
5798 static enum ofperr
5799 table_mod(struct ofproto *ofproto, const struct ofputil_table_mod *tm)
5800 {
5801     /* Only accept currently supported configurations */
5802     if (tm->config & ~OFPTC11_TABLE_MISS_MASK) {
5803         return OFPERR_OFPTMFC_BAD_CONFIG;
5804     }
5805
5806     if (tm->table_id == OFPTT_ALL) {
5807         int i;
5808         for (i = 0; i < ofproto->n_tables; i++) {
5809             atomic_store(&ofproto->tables[i].config,
5810                          (unsigned int)tm->config);
5811         }
5812     } else if (!check_table_id(ofproto, tm->table_id)) {
5813         return OFPERR_OFPTMFC_BAD_TABLE;
5814     } else {
5815         atomic_store(&ofproto->tables[tm->table_id].config,
5816                      (unsigned int)tm->config);
5817     }
5818
5819     return 0;
5820 }
5821
5822 static enum ofperr
5823 handle_table_mod(struct ofconn *ofconn, const struct ofp_header *oh)
5824 {
5825     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5826     struct ofputil_table_mod tm;
5827     enum ofperr error;
5828
5829     error = reject_slave_controller(ofconn);
5830     if (error) {
5831         return error;
5832     }
5833
5834     error = ofputil_decode_table_mod(oh, &tm);
5835     if (error) {
5836         return error;
5837     }
5838
5839     return table_mod(ofproto, &tm);
5840 }
5841
5842 static enum ofperr
5843 handle_bundle_control(struct ofconn *ofconn, const struct ofp_header *oh)
5844 {
5845     enum ofperr error;
5846     struct ofputil_bundle_ctrl_msg bctrl;
5847     struct ofpbuf *buf;
5848     struct ofputil_bundle_ctrl_msg reply;
5849
5850     error = ofputil_decode_bundle_ctrl(oh, &bctrl);
5851     if (error) {
5852         return error;
5853     }
5854     reply.flags = 0;
5855     reply.bundle_id = bctrl.bundle_id;
5856
5857     switch (bctrl.type) {
5858         case OFPBCT_OPEN_REQUEST:
5859         error = ofp_bundle_open(ofconn, bctrl.bundle_id, bctrl.flags);
5860         reply.type = OFPBCT_OPEN_REPLY;
5861         break;
5862     case OFPBCT_CLOSE_REQUEST:
5863         error = ofp_bundle_close(ofconn, bctrl.bundle_id, bctrl.flags);
5864         reply.type = OFPBCT_CLOSE_REPLY;;
5865         break;
5866     case OFPBCT_COMMIT_REQUEST:
5867         error = ofp_bundle_commit(ofconn, bctrl.bundle_id, bctrl.flags);
5868         reply.type = OFPBCT_COMMIT_REPLY;
5869         break;
5870     case OFPBCT_DISCARD_REQUEST:
5871         error = ofp_bundle_discard(ofconn, bctrl.bundle_id);
5872         reply.type = OFPBCT_DISCARD_REPLY;
5873         break;
5874
5875     case OFPBCT_OPEN_REPLY:
5876     case OFPBCT_CLOSE_REPLY:
5877     case OFPBCT_COMMIT_REPLY:
5878     case OFPBCT_DISCARD_REPLY:
5879         return OFPERR_OFPBFC_BAD_TYPE;
5880         break;
5881     }
5882
5883     if (!error) {
5884         buf = ofputil_encode_bundle_ctrl_reply(oh, &reply);
5885         ofconn_send_reply(ofconn, buf);
5886     }
5887     return error;
5888 }
5889
5890
5891 static enum ofperr
5892 handle_bundle_add(struct ofconn *ofconn, const struct ofp_header *oh)
5893 {
5894     enum ofperr error;
5895     struct ofputil_bundle_add_msg badd;
5896
5897     error = ofputil_decode_bundle_add(oh, &badd);
5898     if (error) {
5899         return error;
5900     }
5901
5902     return ofp_bundle_add_message(ofconn, &badd);
5903 }
5904
5905 static enum ofperr
5906 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
5907     OVS_EXCLUDED(ofproto_mutex)
5908 {
5909     const struct ofp_header *oh = ofpbuf_data(msg);
5910     enum ofptype type;
5911     enum ofperr error;
5912
5913     error = ofptype_decode(&type, oh);
5914     if (error) {
5915         return error;
5916     }
5917     if (oh->version >= OFP13_VERSION && ofpmsg_is_stat_request(oh)
5918         && ofpmp_more(oh)) {
5919         /* We have no buffer implementation for multipart requests.
5920          * Report overflow for requests which consists of multiple
5921          * messages. */
5922         return OFPERR_OFPBRC_MULTIPART_BUFFER_OVERFLOW;
5923     }
5924
5925     switch (type) {
5926         /* OpenFlow requests. */
5927     case OFPTYPE_ECHO_REQUEST:
5928         return handle_echo_request(ofconn, oh);
5929
5930     case OFPTYPE_FEATURES_REQUEST:
5931         return handle_features_request(ofconn, oh);
5932
5933     case OFPTYPE_GET_CONFIG_REQUEST:
5934         return handle_get_config_request(ofconn, oh);
5935
5936     case OFPTYPE_SET_CONFIG:
5937         return handle_set_config(ofconn, oh);
5938
5939     case OFPTYPE_PACKET_OUT:
5940         return handle_packet_out(ofconn, oh);
5941
5942     case OFPTYPE_PORT_MOD:
5943         return handle_port_mod(ofconn, oh);
5944
5945     case OFPTYPE_FLOW_MOD:
5946         return handle_flow_mod(ofconn, oh);
5947
5948     case OFPTYPE_GROUP_MOD:
5949         return handle_group_mod(ofconn, oh);
5950
5951     case OFPTYPE_TABLE_MOD:
5952         return handle_table_mod(ofconn, oh);
5953
5954     case OFPTYPE_METER_MOD:
5955         return handle_meter_mod(ofconn, oh);
5956
5957     case OFPTYPE_BARRIER_REQUEST:
5958         return handle_barrier_request(ofconn, oh);
5959
5960     case OFPTYPE_ROLE_REQUEST:
5961         return handle_role_request(ofconn, oh);
5962
5963         /* OpenFlow replies. */
5964     case OFPTYPE_ECHO_REPLY:
5965         return 0;
5966
5967         /* Nicira extension requests. */
5968     case OFPTYPE_FLOW_MOD_TABLE_ID:
5969         return handle_nxt_flow_mod_table_id(ofconn, oh);
5970
5971     case OFPTYPE_SET_FLOW_FORMAT:
5972         return handle_nxt_set_flow_format(ofconn, oh);
5973
5974     case OFPTYPE_SET_PACKET_IN_FORMAT:
5975         return handle_nxt_set_packet_in_format(ofconn, oh);
5976
5977     case OFPTYPE_SET_CONTROLLER_ID:
5978         return handle_nxt_set_controller_id(ofconn, oh);
5979
5980     case OFPTYPE_FLOW_AGE:
5981         /* Nothing to do. */
5982         return 0;
5983
5984     case OFPTYPE_FLOW_MONITOR_CANCEL:
5985         return handle_flow_monitor_cancel(ofconn, oh);
5986
5987     case OFPTYPE_SET_ASYNC_CONFIG:
5988         return handle_nxt_set_async_config(ofconn, oh);
5989
5990     case OFPTYPE_GET_ASYNC_REQUEST:
5991         return handle_nxt_get_async_request(ofconn, oh);
5992
5993         /* Statistics requests. */
5994     case OFPTYPE_DESC_STATS_REQUEST:
5995         return handle_desc_stats_request(ofconn, oh);
5996
5997     case OFPTYPE_FLOW_STATS_REQUEST:
5998         return handle_flow_stats_request(ofconn, oh);
5999
6000     case OFPTYPE_AGGREGATE_STATS_REQUEST:
6001         return handle_aggregate_stats_request(ofconn, oh);
6002
6003     case OFPTYPE_TABLE_STATS_REQUEST:
6004         return handle_table_stats_request(ofconn, oh);
6005
6006     case OFPTYPE_PORT_STATS_REQUEST:
6007         return handle_port_stats_request(ofconn, oh);
6008
6009     case OFPTYPE_QUEUE_STATS_REQUEST:
6010         return handle_queue_stats_request(ofconn, oh);
6011
6012     case OFPTYPE_PORT_DESC_STATS_REQUEST:
6013         return handle_port_desc_stats_request(ofconn, oh);
6014
6015     case OFPTYPE_FLOW_MONITOR_STATS_REQUEST:
6016         return handle_flow_monitor_request(ofconn, oh);
6017
6018     case OFPTYPE_METER_STATS_REQUEST:
6019     case OFPTYPE_METER_CONFIG_STATS_REQUEST:
6020         return handle_meter_request(ofconn, oh, type);
6021
6022     case OFPTYPE_METER_FEATURES_STATS_REQUEST:
6023         return handle_meter_features_request(ofconn, oh);
6024
6025     case OFPTYPE_GROUP_STATS_REQUEST:
6026         return handle_group_stats_request(ofconn, oh);
6027
6028     case OFPTYPE_GROUP_DESC_STATS_REQUEST:
6029         return handle_group_desc_stats_request(ofconn, oh);
6030
6031     case OFPTYPE_GROUP_FEATURES_STATS_REQUEST:
6032         return handle_group_features_stats_request(ofconn, oh);
6033
6034     case OFPTYPE_QUEUE_GET_CONFIG_REQUEST:
6035         return handle_queue_get_config_request(ofconn, oh);
6036
6037     case OFPTYPE_BUNDLE_CONTROL:
6038         return handle_bundle_control(ofconn, oh);
6039
6040     case OFPTYPE_BUNDLE_ADD_MESSAGE:
6041         return handle_bundle_add(ofconn, oh);
6042
6043     case OFPTYPE_HELLO:
6044     case OFPTYPE_ERROR:
6045     case OFPTYPE_FEATURES_REPLY:
6046     case OFPTYPE_GET_CONFIG_REPLY:
6047     case OFPTYPE_PACKET_IN:
6048     case OFPTYPE_FLOW_REMOVED:
6049     case OFPTYPE_PORT_STATUS:
6050     case OFPTYPE_BARRIER_REPLY:
6051     case OFPTYPE_QUEUE_GET_CONFIG_REPLY:
6052     case OFPTYPE_DESC_STATS_REPLY:
6053     case OFPTYPE_FLOW_STATS_REPLY:
6054     case OFPTYPE_QUEUE_STATS_REPLY:
6055     case OFPTYPE_PORT_STATS_REPLY:
6056     case OFPTYPE_TABLE_STATS_REPLY:
6057     case OFPTYPE_AGGREGATE_STATS_REPLY:
6058     case OFPTYPE_PORT_DESC_STATS_REPLY:
6059     case OFPTYPE_ROLE_REPLY:
6060     case OFPTYPE_FLOW_MONITOR_PAUSED:
6061     case OFPTYPE_FLOW_MONITOR_RESUMED:
6062     case OFPTYPE_FLOW_MONITOR_STATS_REPLY:
6063     case OFPTYPE_GET_ASYNC_REPLY:
6064     case OFPTYPE_GROUP_STATS_REPLY:
6065     case OFPTYPE_GROUP_DESC_STATS_REPLY:
6066     case OFPTYPE_GROUP_FEATURES_STATS_REPLY:
6067     case OFPTYPE_METER_STATS_REPLY:
6068     case OFPTYPE_METER_CONFIG_STATS_REPLY:
6069     case OFPTYPE_METER_FEATURES_STATS_REPLY:
6070     case OFPTYPE_TABLE_FEATURES_STATS_REQUEST:
6071     case OFPTYPE_TABLE_FEATURES_STATS_REPLY:
6072     case OFPTYPE_ROLE_STATUS:
6073     default:
6074         if (ofpmsg_is_stat_request(oh)) {
6075             return OFPERR_OFPBRC_BAD_STAT;
6076         } else {
6077             return OFPERR_OFPBRC_BAD_TYPE;
6078         }
6079     }
6080 }
6081
6082 static bool
6083 handle_openflow(struct ofconn *ofconn, const struct ofpbuf *ofp_msg)
6084     OVS_EXCLUDED(ofproto_mutex)
6085 {
6086     int error = handle_openflow__(ofconn, ofp_msg);
6087     if (error && error != OFPROTO_POSTPONE) {
6088         ofconn_send_error(ofconn, ofpbuf_data(ofp_msg), error);
6089     }
6090     COVERAGE_INC(ofproto_recv_openflow);
6091     return error != OFPROTO_POSTPONE;
6092 }
6093 \f
6094 /* Asynchronous operations. */
6095
6096 /* Creates and returns a new ofopgroup that is not associated with any
6097  * OpenFlow connection.
6098  *
6099  * The caller should add operations to the returned group with
6100  * ofoperation_create() and then submit it with ofopgroup_submit(). */
6101 static struct ofopgroup *
6102 ofopgroup_create_unattached(struct ofproto *ofproto)
6103     OVS_REQUIRES(ofproto_mutex)
6104 {
6105     struct ofopgroup *group = xzalloc(sizeof *group);
6106     group->ofproto = ofproto;
6107     list_init(&group->ofproto_node);
6108     list_init(&group->ops);
6109     list_init(&group->ofconn_node);
6110     return group;
6111 }
6112
6113 /* Creates and returns a new ofopgroup for 'ofproto'.
6114  *
6115  * If 'ofconn' is NULL, the new ofopgroup is not associated with any OpenFlow
6116  * connection.  The 'request' and 'buffer_id' arguments are ignored.
6117  *
6118  * If 'ofconn' is nonnull, then the new ofopgroup is associated with 'ofconn'.
6119  * If the ofopgroup eventually fails, then the error reply will include
6120  * 'request'.  If the ofopgroup eventually succeeds, then the packet with
6121  * buffer id 'buffer_id' on 'ofconn' will be sent by 'ofconn''s ofproto.
6122  *
6123  * The caller should add operations to the returned group with
6124  * ofoperation_create() and then submit it with ofopgroup_submit(). */
6125 static struct ofopgroup *
6126 ofopgroup_create(struct ofproto *ofproto, struct ofconn *ofconn,
6127                  const struct ofp_header *request, uint32_t buffer_id)
6128     OVS_REQUIRES(ofproto_mutex)
6129 {
6130     struct ofopgroup *group = ofopgroup_create_unattached(ofproto);
6131     if (ofconn) {
6132         size_t request_len = ntohs(request->length);
6133
6134         ovs_assert(ofconn_get_ofproto(ofconn) == ofproto);
6135
6136         ofconn_add_opgroup(ofconn, &group->ofconn_node);
6137         group->ofconn = ofconn;
6138         group->request = xmemdup(request, MIN(request_len, 64));
6139         group->buffer_id = buffer_id;
6140     }
6141     return group;
6142 }
6143
6144 /* Submits 'group' for processing.
6145  *
6146  * If 'group' contains no operations (e.g. none were ever added, or all of the
6147  * ones that were added completed synchronously), then it is destroyed
6148  * immediately.  Otherwise it is added to the ofproto's list of pending
6149  * groups. */
6150 static void
6151 ofopgroup_submit(struct ofopgroup *group)
6152     OVS_REQUIRES(ofproto_mutex)
6153 {
6154     if (!group->n_running) {
6155         ofopgroup_complete(group);
6156     } else {
6157         list_push_back(&group->ofproto->pending, &group->ofproto_node);
6158         group->ofproto->n_pending++;
6159     }
6160 }
6161
6162 static void
6163 ofopgroup_complete(struct ofopgroup *group)
6164     OVS_REQUIRES(ofproto_mutex)
6165 {
6166     struct ofproto *ofproto = group->ofproto;
6167
6168     struct ofconn *abbrev_ofconn;
6169     ovs_be32 abbrev_xid;
6170
6171     struct ofoperation *op, *next_op;
6172     int error;
6173
6174     ovs_assert(!group->n_running);
6175
6176     error = 0;
6177     LIST_FOR_EACH (op, group_node, &group->ops) {
6178         if (op->error) {
6179             error = op->error;
6180             break;
6181         }
6182     }
6183
6184     if (!error && group->ofconn && group->buffer_id != UINT32_MAX) {
6185         LIST_FOR_EACH (op, group_node, &group->ops) {
6186             if (op->type != OFOPERATION_DELETE) {
6187                 struct ofpbuf *packet;
6188                 ofp_port_t in_port;
6189
6190                 error = ofconn_pktbuf_retrieve(group->ofconn, group->buffer_id,
6191                                                &packet, &in_port);
6192                 if (packet) {
6193                     struct rule_execute *re;
6194
6195                     ovs_assert(!error);
6196
6197                     ofproto_rule_ref(op->rule);
6198
6199                     re = xmalloc(sizeof *re);
6200                     re->rule = op->rule;
6201                     re->in_port = in_port;
6202                     re->packet = packet;
6203
6204                     if (!guarded_list_push_back(&ofproto->rule_executes,
6205                                                 &re->list_node, 1024)) {
6206                         ofproto_rule_unref(op->rule);
6207                         ofpbuf_delete(re->packet);
6208                         free(re);
6209                     }
6210                 }
6211                 break;
6212             }
6213         }
6214     }
6215
6216     if (!error && !list_is_empty(&group->ofconn_node)) {
6217         abbrev_ofconn = group->ofconn;
6218         abbrev_xid = group->request->xid;
6219     } else {
6220         abbrev_ofconn = NULL;
6221         abbrev_xid = htonl(0);
6222     }
6223     LIST_FOR_EACH_SAFE (op, next_op, group_node, &group->ops) {
6224         struct rule *rule = op->rule;
6225
6226         /* We generally want to report the change to active OpenFlow flow
6227            monitors (e.g. NXST_FLOW_MONITOR).  There are three exceptions:
6228
6229               - The operation failed.
6230
6231               - The affected rule is not visible to controllers.
6232
6233               - The operation's only effect was to update rule->modified. */
6234         if (!(op->error
6235               || ofproto_rule_is_hidden(rule)
6236               || (op->type == OFOPERATION_MODIFY
6237                   && !op->actions
6238                   && rule->flow_cookie == op->flow_cookie))) {
6239             enum nx_flow_update_event event_type;
6240
6241             switch (op->type) {
6242             case OFOPERATION_ADD:
6243             case OFOPERATION_REPLACE:
6244                 event_type = NXFME_ADDED;
6245                 break;
6246
6247             case OFOPERATION_DELETE:
6248                 event_type = NXFME_DELETED;
6249                 break;
6250
6251             case OFOPERATION_MODIFY:
6252                 event_type = NXFME_MODIFIED;
6253                 break;
6254
6255             default:
6256                 OVS_NOT_REACHED();
6257             }
6258
6259             ofmonitor_report(ofproto->connmgr, rule, event_type,
6260                              op->reason, abbrev_ofconn, abbrev_xid);
6261         }
6262
6263         rule->pending = NULL;
6264
6265         switch (op->type) {
6266         case OFOPERATION_ADD:
6267             if (!op->error) {
6268                 uint16_t vid_mask;
6269
6270                 vid_mask = minimask_get_vid_mask(&rule->cr.match.mask);
6271                 if (vid_mask == VLAN_VID_MASK) {
6272                     if (ofproto->vlan_bitmap) {
6273                         uint16_t vid = miniflow_get_vid(&rule->cr.match.flow);
6274                         if (!bitmap_is_set(ofproto->vlan_bitmap, vid)) {
6275                             bitmap_set1(ofproto->vlan_bitmap, vid);
6276                             ofproto->vlans_changed = true;
6277                         }
6278                     } else {
6279                         ofproto->vlans_changed = true;
6280                     }
6281                 }
6282             } else {
6283                 oftable_remove_rule(rule);
6284                 ofproto_rule_unref(rule);
6285             }
6286             break;
6287
6288         case OFOPERATION_DELETE:
6289             ovs_assert(!op->error);
6290             ofproto_rule_unref(rule);
6291             op->rule = NULL;
6292             break;
6293
6294         case OFOPERATION_MODIFY:
6295         case OFOPERATION_REPLACE:
6296             if (!op->error) {
6297                 long long int now = time_msec();
6298
6299                 ovs_mutex_lock(&rule->mutex);
6300                 rule->modified = now;
6301                 if (op->type == OFOPERATION_REPLACE) {
6302                     rule->created = now;
6303                 }
6304                 ovs_mutex_unlock(&rule->mutex);
6305             } else {
6306                 ofproto_rule_change_cookie(ofproto, rule, op->flow_cookie);
6307                 ovs_mutex_lock(&rule->mutex);
6308                 rule->idle_timeout = op->idle_timeout;
6309                 rule->hard_timeout = op->hard_timeout;
6310                 ovs_mutex_unlock(&rule->mutex);
6311                 if (op->actions) {
6312                     const struct rule_actions *old_actions;
6313
6314                     ovs_mutex_lock(&rule->mutex);
6315                     old_actions = rule_get_actions(rule);
6316                     ovsrcu_set(&rule->actions, op->actions);
6317                     ovs_mutex_unlock(&rule->mutex);
6318
6319                     op->actions = NULL;
6320                     rule_actions_destroy(old_actions);
6321                 }
6322                 rule->flags = op->flags;
6323             }
6324             break;
6325
6326         default:
6327             OVS_NOT_REACHED();
6328         }
6329
6330         ofoperation_destroy(op);
6331     }
6332
6333     ofmonitor_flush(ofproto->connmgr);
6334
6335     if (!list_is_empty(&group->ofproto_node)) {
6336         ovs_assert(ofproto->n_pending > 0);
6337         ofproto->n_pending--;
6338         list_remove(&group->ofproto_node);
6339     }
6340     if (!list_is_empty(&group->ofconn_node)) {
6341         list_remove(&group->ofconn_node);
6342         if (error) {
6343             ofconn_send_error(group->ofconn, group->request, error);
6344         }
6345         connmgr_retry(ofproto->connmgr);
6346     }
6347     free(group->request);
6348     free(group);
6349 }
6350
6351 /* Initiates a new operation on 'rule', of the specified 'type', within
6352  * 'group'.  Prior to calling, 'rule' must not have any pending operation.
6353  *
6354  * For a 'type' of OFOPERATION_DELETE, 'reason' should specify the reason that
6355  * the flow is being deleted.  For other 'type's, 'reason' is ignored (use 0).
6356  *
6357  * Returns the newly created ofoperation (which is also available as
6358  * rule->pending). */
6359 static struct ofoperation *
6360 ofoperation_create(struct ofopgroup *group, struct rule *rule,
6361                    enum ofoperation_type type,
6362                    enum ofp_flow_removed_reason reason)
6363     OVS_REQUIRES(ofproto_mutex)
6364 {
6365     struct ofproto *ofproto = group->ofproto;
6366     struct ofoperation *op;
6367
6368     ovs_assert(!rule->pending);
6369
6370     op = rule->pending = xzalloc(sizeof *op);
6371     op->group = group;
6372     list_push_back(&group->ops, &op->group_node);
6373     op->rule = rule;
6374     op->type = type;
6375     op->reason = reason;
6376     op->flow_cookie = rule->flow_cookie;
6377     ovs_mutex_lock(&rule->mutex);
6378     op->idle_timeout = rule->idle_timeout;
6379     op->hard_timeout = rule->hard_timeout;
6380     ovs_mutex_unlock(&rule->mutex);
6381     op->flags = rule->flags;
6382
6383     group->n_running++;
6384
6385     if (type == OFOPERATION_DELETE) {
6386         hmap_insert(&ofproto->deletions, &op->hmap_node,
6387                     cls_rule_hash(&rule->cr, rule->table_id));
6388     }
6389
6390     return op;
6391 }
6392
6393 static void
6394 ofoperation_destroy(struct ofoperation *op)
6395     OVS_REQUIRES(ofproto_mutex)
6396 {
6397     struct ofopgroup *group = op->group;
6398
6399     if (op->rule) {
6400         op->rule->pending = NULL;
6401     }
6402     if (op->type == OFOPERATION_DELETE) {
6403         hmap_remove(&group->ofproto->deletions, &op->hmap_node);
6404     }
6405     list_remove(&op->group_node);
6406     rule_actions_destroy(op->actions);
6407     free(op);
6408 }
6409
6410 /* Indicates that 'op' completed with status 'error', which is either 0 to
6411  * indicate success or an OpenFlow error code on failure.
6412  *
6413  * If 'error' is 0, indicating success, the operation will be committed
6414  * permanently to the flow table.
6415  *
6416  * If 'error' is nonzero, then generally the operation will be rolled back:
6417  *
6418  *   - If 'op' is an "add flow" operation, ofproto removes the new rule or
6419  *     restores the original rule.  The caller must have uninitialized any
6420  *     derived state in the new rule, as in step 5 of in the "Life Cycle" in
6421  *     ofproto/ofproto-provider.h.  ofoperation_complete() performs steps 6 and
6422  *     and 7 for the new rule, calling its ->rule_dealloc() function.
6423  *
6424  *   - If 'op' is a "modify flow" operation, ofproto restores the original
6425  *     actions.
6426  *
6427  *   - 'op' must not be a "delete flow" operation.  Removing a rule is not
6428  *     allowed to fail.  It must always succeed.
6429  *
6430  * Please see the large comment in ofproto/ofproto-provider.h titled
6431  * "Asynchronous Operation Support" for more information. */
6432 void
6433 ofoperation_complete(struct ofoperation *op, enum ofperr error)
6434 {
6435     struct ofopgroup *group = op->group;
6436
6437     ovs_assert(group->n_running > 0);
6438     ovs_assert(!error || op->type != OFOPERATION_DELETE);
6439
6440     op->error = error;
6441     if (!--group->n_running && !list_is_empty(&group->ofproto_node)) {
6442         /* This function can be called from ->rule_construct(), in which case
6443          * ofproto_mutex is held, or it can be called from ->run(), in which
6444          * case ofproto_mutex is not held.  But only in the latter case can we
6445          * arrive here, so we can safely take ofproto_mutex now. */
6446         ovs_mutex_lock(&ofproto_mutex);
6447         ovs_assert(op->rule->pending == op);
6448         ofopgroup_complete(group);
6449         ovs_mutex_unlock(&ofproto_mutex);
6450     }
6451 }
6452 \f
6453 static uint64_t
6454 pick_datapath_id(const struct ofproto *ofproto)
6455 {
6456     const struct ofport *port;
6457
6458     port = ofproto_get_port(ofproto, OFPP_LOCAL);
6459     if (port) {
6460         uint8_t ea[ETH_ADDR_LEN];
6461         int error;
6462
6463         error = netdev_get_etheraddr(port->netdev, ea);
6464         if (!error) {
6465             return eth_addr_to_uint64(ea);
6466         }
6467         VLOG_WARN("%s: could not get MAC address for %s (%s)",
6468                   ofproto->name, netdev_get_name(port->netdev),
6469                   ovs_strerror(error));
6470     }
6471     return ofproto->fallback_dpid;
6472 }
6473
6474 static uint64_t
6475 pick_fallback_dpid(void)
6476 {
6477     uint8_t ea[ETH_ADDR_LEN];
6478     eth_addr_nicira_random(ea);
6479     return eth_addr_to_uint64(ea);
6480 }
6481 \f
6482 /* Table overflow policy. */
6483
6484 /* Chooses and updates 'rulep' with a rule to evict from 'table'.  Sets 'rulep'
6485  * to NULL if the table is not configured to evict rules or if the table
6486  * contains no evictable rules.  (Rules with a readlock on their evict rwlock,
6487  * or with no timeouts are not evictable.) */
6488 static bool
6489 choose_rule_to_evict(struct oftable *table, struct rule **rulep)
6490     OVS_REQUIRES(ofproto_mutex)
6491 {
6492     struct eviction_group *evg;
6493
6494     *rulep = NULL;
6495     if (!table->eviction_fields) {
6496         return false;
6497     }
6498
6499     /* In the common case, the outer and inner loops here will each be entered
6500      * exactly once:
6501      *
6502      *   - The inner loop normally "return"s in its first iteration.  If the
6503      *     eviction group has any evictable rules, then it always returns in
6504      *     some iteration.
6505      *
6506      *   - The outer loop only iterates more than once if the largest eviction
6507      *     group has no evictable rules.
6508      *
6509      *   - The outer loop can exit only if table's 'max_flows' is all filled up
6510      *     by unevictable rules. */
6511     HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
6512         struct rule *rule;
6513
6514         HEAP_FOR_EACH (rule, evg_node, &evg->rules) {
6515             *rulep = rule;
6516             return true;
6517         }
6518     }
6519
6520     return false;
6521 }
6522
6523 /* Searches 'ofproto' for tables that have more flows than their configured
6524  * maximum and that have flow eviction enabled, and evicts as many flows as
6525  * necessary and currently feasible from them.
6526  *
6527  * This triggers only when an OpenFlow table has N flows in it and then the
6528  * client configures a maximum number of flows less than N. */
6529 static void
6530 ofproto_evict(struct ofproto *ofproto)
6531 {
6532     struct oftable *table;
6533
6534     ovs_mutex_lock(&ofproto_mutex);
6535     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
6536         evict_rules_from_table(ofproto, table, 0);
6537     }
6538     ovs_mutex_unlock(&ofproto_mutex);
6539 }
6540 \f
6541 /* Eviction groups. */
6542
6543 /* Returns the priority to use for an eviction_group that contains 'n_rules'
6544  * rules.  The priority contains low-order random bits to ensure that eviction
6545  * groups with the same number of rules are prioritized randomly. */
6546 static uint32_t
6547 eviction_group_priority(size_t n_rules)
6548 {
6549     uint16_t size = MIN(UINT16_MAX, n_rules);
6550     return (size << 16) | random_uint16();
6551 }
6552
6553 /* Updates 'evg', an eviction_group within 'table', following a change that
6554  * adds or removes rules in 'evg'. */
6555 static void
6556 eviction_group_resized(struct oftable *table, struct eviction_group *evg)
6557     OVS_REQUIRES(ofproto_mutex)
6558 {
6559     heap_change(&table->eviction_groups_by_size, &evg->size_node,
6560                 eviction_group_priority(heap_count(&evg->rules)));
6561 }
6562
6563 /* Destroys 'evg', an eviction_group within 'table':
6564  *
6565  *   - Removes all the rules, if any, from 'evg'.  (It doesn't destroy the
6566  *     rules themselves, just removes them from the eviction group.)
6567  *
6568  *   - Removes 'evg' from 'table'.
6569  *
6570  *   - Frees 'evg'. */
6571 static void
6572 eviction_group_destroy(struct oftable *table, struct eviction_group *evg)
6573     OVS_REQUIRES(ofproto_mutex)
6574 {
6575     while (!heap_is_empty(&evg->rules)) {
6576         struct rule *rule;
6577
6578         rule = CONTAINER_OF(heap_pop(&evg->rules), struct rule, evg_node);
6579         rule->eviction_group = NULL;
6580     }
6581     hmap_remove(&table->eviction_groups_by_id, &evg->id_node);
6582     heap_remove(&table->eviction_groups_by_size, &evg->size_node);
6583     heap_destroy(&evg->rules);
6584     free(evg);
6585 }
6586
6587 /* Removes 'rule' from its eviction group, if any. */
6588 static void
6589 eviction_group_remove_rule(struct rule *rule)
6590     OVS_REQUIRES(ofproto_mutex)
6591 {
6592     if (rule->eviction_group) {
6593         struct oftable *table = &rule->ofproto->tables[rule->table_id];
6594         struct eviction_group *evg = rule->eviction_group;
6595
6596         rule->eviction_group = NULL;
6597         heap_remove(&evg->rules, &rule->evg_node);
6598         if (heap_is_empty(&evg->rules)) {
6599             eviction_group_destroy(table, evg);
6600         } else {
6601             eviction_group_resized(table, evg);
6602         }
6603     }
6604 }
6605
6606 /* Hashes the 'rule''s values for the eviction_fields of 'rule''s table, and
6607  * returns the hash value. */
6608 static uint32_t
6609 eviction_group_hash_rule(struct rule *rule)
6610     OVS_REQUIRES(ofproto_mutex)
6611 {
6612     struct oftable *table = &rule->ofproto->tables[rule->table_id];
6613     const struct mf_subfield *sf;
6614     struct flow flow;
6615     uint32_t hash;
6616
6617     hash = table->eviction_group_id_basis;
6618     miniflow_expand(&rule->cr.match.flow, &flow);
6619     for (sf = table->eviction_fields;
6620          sf < &table->eviction_fields[table->n_eviction_fields];
6621          sf++)
6622     {
6623         if (mf_are_prereqs_ok(sf->field, &flow)) {
6624             union mf_value value;
6625
6626             mf_get_value(sf->field, &flow, &value);
6627             if (sf->ofs) {
6628                 bitwise_zero(&value, sf->field->n_bytes, 0, sf->ofs);
6629             }
6630             if (sf->ofs + sf->n_bits < sf->field->n_bytes * 8) {
6631                 unsigned int start = sf->ofs + sf->n_bits;
6632                 bitwise_zero(&value, sf->field->n_bytes, start,
6633                              sf->field->n_bytes * 8 - start);
6634             }
6635             hash = hash_bytes(&value, sf->field->n_bytes, hash);
6636         } else {
6637             hash = hash_int(hash, 0);
6638         }
6639     }
6640
6641     return hash;
6642 }
6643
6644 /* Returns an eviction group within 'table' with the given 'id', creating one
6645  * if necessary. */
6646 static struct eviction_group *
6647 eviction_group_find(struct oftable *table, uint32_t id)
6648     OVS_REQUIRES(ofproto_mutex)
6649 {
6650     struct eviction_group *evg;
6651
6652     HMAP_FOR_EACH_WITH_HASH (evg, id_node, id, &table->eviction_groups_by_id) {
6653         return evg;
6654     }
6655
6656     evg = xmalloc(sizeof *evg);
6657     hmap_insert(&table->eviction_groups_by_id, &evg->id_node, id);
6658     heap_insert(&table->eviction_groups_by_size, &evg->size_node,
6659                 eviction_group_priority(0));
6660     heap_init(&evg->rules);
6661
6662     return evg;
6663 }
6664
6665 /* Returns an eviction priority for 'rule'.  The return value should be
6666  * interpreted so that higher priorities make a rule more attractive candidates
6667  * for eviction.
6668  * Called only if have a timeout. */
6669 static uint32_t
6670 rule_eviction_priority(struct ofproto *ofproto, struct rule *rule)
6671     OVS_REQUIRES(ofproto_mutex)
6672 {
6673     long long int expiration = LLONG_MAX;
6674     long long int modified;
6675     uint32_t expiration_offset;
6676
6677     /* 'modified' needs protection even when we hold 'ofproto_mutex'. */
6678     ovs_mutex_lock(&rule->mutex);
6679     modified = rule->modified;
6680     ovs_mutex_unlock(&rule->mutex);
6681
6682     if (rule->hard_timeout) {
6683         expiration = modified + rule->hard_timeout * 1000;
6684     }
6685     if (rule->idle_timeout) {
6686         uint64_t packets, bytes;
6687         long long int used;
6688         long long int idle_expiration;
6689
6690         ofproto->ofproto_class->rule_get_stats(rule, &packets, &bytes, &used);
6691         idle_expiration = used + rule->idle_timeout * 1000;
6692         expiration = MIN(expiration, idle_expiration);
6693     }
6694
6695     if (expiration == LLONG_MAX) {
6696         return 0;
6697     }
6698
6699     /* Calculate the time of expiration as a number of (approximate) seconds
6700      * after program startup.
6701      *
6702      * This should work OK for program runs that last UINT32_MAX seconds or
6703      * less.  Therefore, please restart OVS at least once every 136 years. */
6704     expiration_offset = (expiration >> 10) - (time_boot_msec() >> 10);
6705
6706     /* Invert the expiration offset because we're using a max-heap. */
6707     return UINT32_MAX - expiration_offset;
6708 }
6709
6710 /* Adds 'rule' to an appropriate eviction group for its oftable's
6711  * configuration.  Does nothing if 'rule''s oftable doesn't have eviction
6712  * enabled, or if 'rule' is a permanent rule (one that will never expire on its
6713  * own).
6714  *
6715  * The caller must ensure that 'rule' is not already in an eviction group. */
6716 static void
6717 eviction_group_add_rule(struct rule *rule)
6718     OVS_REQUIRES(ofproto_mutex)
6719 {
6720     struct ofproto *ofproto = rule->ofproto;
6721     struct oftable *table = &ofproto->tables[rule->table_id];
6722     bool has_timeout;
6723
6724     /* Timeouts may be modified only when holding 'ofproto_mutex'.  We have it
6725      * so no additional protection is needed. */
6726     has_timeout = rule->hard_timeout || rule->idle_timeout;
6727
6728     if (table->eviction_fields && has_timeout) {
6729         struct eviction_group *evg;
6730
6731         evg = eviction_group_find(table, eviction_group_hash_rule(rule));
6732
6733         rule->eviction_group = evg;
6734         heap_insert(&evg->rules, &rule->evg_node,
6735                     rule_eviction_priority(ofproto, rule));
6736         eviction_group_resized(table, evg);
6737     }
6738 }
6739 \f
6740 /* oftables. */
6741
6742 /* Initializes 'table'. */
6743 static void
6744 oftable_init(struct oftable *table)
6745 {
6746     memset(table, 0, sizeof *table);
6747     classifier_init(&table->cls, flow_segment_u32s);
6748     table->max_flows = UINT_MAX;
6749     atomic_init(&table->config, (unsigned int)OFPROTO_TABLE_MISS_DEFAULT);
6750
6751     fat_rwlock_wrlock(&table->cls.rwlock);
6752     classifier_set_prefix_fields(&table->cls, default_prefix_fields,
6753                                  ARRAY_SIZE(default_prefix_fields));
6754     fat_rwlock_unlock(&table->cls.rwlock);
6755
6756     atomic_init(&table->n_matched, 0);
6757     atomic_init(&table->n_missed, 0);
6758 }
6759
6760 /* Destroys 'table', including its classifier and eviction groups.
6761  *
6762  * The caller is responsible for freeing 'table' itself. */
6763 static void
6764 oftable_destroy(struct oftable *table)
6765 {
6766     fat_rwlock_rdlock(&table->cls.rwlock);
6767     ovs_assert(classifier_is_empty(&table->cls));
6768     fat_rwlock_unlock(&table->cls.rwlock);
6769     oftable_disable_eviction(table);
6770     classifier_destroy(&table->cls);
6771     free(table->name);
6772 }
6773
6774 /* Changes the name of 'table' to 'name'.  If 'name' is NULL or the empty
6775  * string, then 'table' will use its default name.
6776  *
6777  * This only affects the name exposed for a table exposed through the OpenFlow
6778  * OFPST_TABLE (as printed by "ovs-ofctl dump-tables"). */
6779 static void
6780 oftable_set_name(struct oftable *table, const char *name)
6781 {
6782     if (name && name[0]) {
6783         int len = strnlen(name, OFP_MAX_TABLE_NAME_LEN);
6784         if (!table->name || strncmp(name, table->name, len)) {
6785             free(table->name);
6786             table->name = xmemdup0(name, len);
6787         }
6788     } else {
6789         free(table->name);
6790         table->name = NULL;
6791     }
6792 }
6793
6794 /* oftables support a choice of two policies when adding a rule would cause the
6795  * number of flows in the table to exceed the configured maximum number: either
6796  * they can refuse to add the new flow or they can evict some existing flow.
6797  * This function configures the former policy on 'table'. */
6798 static void
6799 oftable_disable_eviction(struct oftable *table)
6800     OVS_REQUIRES(ofproto_mutex)
6801 {
6802     if (table->eviction_fields) {
6803         struct eviction_group *evg, *next;
6804
6805         HMAP_FOR_EACH_SAFE (evg, next, id_node,
6806                             &table->eviction_groups_by_id) {
6807             eviction_group_destroy(table, evg);
6808         }
6809         hmap_destroy(&table->eviction_groups_by_id);
6810         heap_destroy(&table->eviction_groups_by_size);
6811
6812         free(table->eviction_fields);
6813         table->eviction_fields = NULL;
6814         table->n_eviction_fields = 0;
6815     }
6816 }
6817
6818 /* oftables support a choice of two policies when adding a rule would cause the
6819  * number of flows in the table to exceed the configured maximum number: either
6820  * they can refuse to add the new flow or they can evict some existing flow.
6821  * This function configures the latter policy on 'table', with fairness based
6822  * on the values of the 'n_fields' fields specified in 'fields'.  (Specifying
6823  * 'n_fields' as 0 disables fairness.) */
6824 static void
6825 oftable_enable_eviction(struct oftable *table,
6826                         const struct mf_subfield *fields, size_t n_fields)
6827     OVS_REQUIRES(ofproto_mutex)
6828 {
6829     struct cls_cursor cursor;
6830     struct rule *rule;
6831
6832     if (table->eviction_fields
6833         && n_fields == table->n_eviction_fields
6834         && (!n_fields
6835             || !memcmp(fields, table->eviction_fields,
6836                        n_fields * sizeof *fields))) {
6837         /* No change. */
6838         return;
6839     }
6840
6841     oftable_disable_eviction(table);
6842
6843     table->n_eviction_fields = n_fields;
6844     table->eviction_fields = xmemdup(fields, n_fields * sizeof *fields);
6845
6846     table->eviction_group_id_basis = random_uint32();
6847     hmap_init(&table->eviction_groups_by_id);
6848     heap_init(&table->eviction_groups_by_size);
6849
6850     fat_rwlock_rdlock(&table->cls.rwlock);
6851     cls_cursor_init(&cursor, &table->cls, NULL);
6852     CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
6853         eviction_group_add_rule(rule);
6854     }
6855     fat_rwlock_unlock(&table->cls.rwlock);
6856 }
6857
6858 /* Removes 'rule' from the oftable that contains it. */
6859 static void
6860 oftable_remove_rule__(struct ofproto *ofproto, struct rule *rule)
6861     OVS_REQUIRES(ofproto_mutex)
6862 {
6863     struct classifier *cls = &ofproto->tables[rule->table_id].cls;
6864
6865     fat_rwlock_wrlock(&cls->rwlock);
6866     classifier_remove(cls, CONST_CAST(struct cls_rule *, &rule->cr));
6867     fat_rwlock_unlock(&cls->rwlock);
6868
6869     cookies_remove(ofproto, rule);
6870
6871     eviction_group_remove_rule(rule);
6872     if (!list_is_empty(&rule->expirable)) {
6873         list_remove(&rule->expirable);
6874     }
6875     if (!list_is_empty(&rule->meter_list_node)) {
6876         list_remove(&rule->meter_list_node);
6877         list_init(&rule->meter_list_node);
6878     }
6879 }
6880
6881 static void
6882 oftable_remove_rule(struct rule *rule)
6883     OVS_REQUIRES(ofproto_mutex)
6884 {
6885     oftable_remove_rule__(rule->ofproto, rule);
6886 }
6887
6888 /* Inserts 'rule' into its oftable, which must not already contain any rule for
6889  * the same cls_rule. */
6890 static void
6891 oftable_insert_rule(struct rule *rule)
6892     OVS_REQUIRES(ofproto_mutex)
6893 {
6894     struct ofproto *ofproto = rule->ofproto;
6895     struct oftable *table = &ofproto->tables[rule->table_id];
6896     const struct rule_actions *actions;
6897     bool may_expire;
6898
6899     ovs_mutex_lock(&rule->mutex);
6900     may_expire = rule->hard_timeout || rule->idle_timeout;
6901     ovs_mutex_unlock(&rule->mutex);
6902
6903     if (may_expire) {
6904         list_insert(&ofproto->expirable, &rule->expirable);
6905     }
6906
6907     cookies_insert(ofproto, rule);
6908
6909     actions = rule_get_actions(rule);
6910     if (actions->provider_meter_id != UINT32_MAX) {
6911         uint32_t meter_id = ofpacts_get_meter(actions->ofpacts,
6912                                               actions->ofpacts_len);
6913         struct meter *meter = ofproto->meters[meter_id];
6914         list_insert(&meter->rules, &rule->meter_list_node);
6915     }
6916     fat_rwlock_wrlock(&table->cls.rwlock);
6917     classifier_insert(&table->cls, CONST_CAST(struct cls_rule *, &rule->cr));
6918     fat_rwlock_unlock(&table->cls.rwlock);
6919     eviction_group_add_rule(rule);
6920 }
6921 \f
6922 /* unixctl commands. */
6923
6924 struct ofproto *
6925 ofproto_lookup(const char *name)
6926 {
6927     struct ofproto *ofproto;
6928
6929     HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
6930                              &all_ofprotos) {
6931         if (!strcmp(ofproto->name, name)) {
6932             return ofproto;
6933         }
6934     }
6935     return NULL;
6936 }
6937
6938 static void
6939 ofproto_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED,
6940                      const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
6941 {
6942     struct ofproto *ofproto;
6943     struct ds results;
6944
6945     ds_init(&results);
6946     HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
6947         ds_put_format(&results, "%s\n", ofproto->name);
6948     }
6949     unixctl_command_reply(conn, ds_cstr(&results));
6950     ds_destroy(&results);
6951 }
6952
6953 static void
6954 ofproto_unixctl_init(void)
6955 {
6956     static bool registered;
6957     if (registered) {
6958         return;
6959     }
6960     registered = true;
6961
6962     unixctl_command_register("ofproto/list", "", 0, 0,
6963                              ofproto_unixctl_list, NULL);
6964 }
6965 \f
6966 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
6967  *
6968  * This is deprecated.  It is only for compatibility with broken device drivers
6969  * in old versions of Linux that do not properly support VLANs when VLAN
6970  * devices are not used.  When broken device drivers are no longer in
6971  * widespread use, we will delete these interfaces. */
6972
6973 /* Sets a 1-bit in the 4096-bit 'vlan_bitmap' for each VLAN ID that is matched
6974  * (exactly) by an OpenFlow rule in 'ofproto'. */
6975 void
6976 ofproto_get_vlan_usage(struct ofproto *ofproto, unsigned long int *vlan_bitmap)
6977 {
6978     struct match match;
6979     struct cls_rule target;
6980     const struct oftable *oftable;
6981
6982     match_init_catchall(&match);
6983     match_set_vlan_vid_masked(&match, htons(VLAN_CFI), htons(VLAN_CFI));
6984     cls_rule_init(&target, &match, 0);
6985
6986     free(ofproto->vlan_bitmap);
6987     ofproto->vlan_bitmap = bitmap_allocate(4096);
6988     ofproto->vlans_changed = false;
6989
6990     OFPROTO_FOR_EACH_TABLE (oftable, ofproto) {
6991         struct cls_cursor cursor;
6992         struct rule *rule;
6993
6994         fat_rwlock_rdlock(&oftable->cls.rwlock);
6995         cls_cursor_init(&cursor, &oftable->cls, &target);
6996         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
6997             if (minimask_get_vid_mask(&rule->cr.match.mask) == VLAN_VID_MASK) {
6998                 uint16_t vid = miniflow_get_vid(&rule->cr.match.flow);
6999
7000                 bitmap_set1(vlan_bitmap, vid);
7001                 bitmap_set1(ofproto->vlan_bitmap, vid);
7002             }
7003         }
7004         fat_rwlock_unlock(&oftable->cls.rwlock);
7005     }
7006
7007     cls_rule_destroy(&target);
7008 }
7009
7010 /* Returns true if new VLANs have come into use by the flow table since the
7011  * last call to ofproto_get_vlan_usage().
7012  *
7013  * We don't track when old VLANs stop being used. */
7014 bool
7015 ofproto_has_vlan_usage_changed(const struct ofproto *ofproto)
7016 {
7017     return ofproto->vlans_changed;
7018 }
7019
7020 /* Configures a VLAN splinter binding between the ports identified by OpenFlow
7021  * port numbers 'vlandev_ofp_port' and 'realdev_ofp_port'.  If
7022  * 'realdev_ofp_port' is nonzero, then the VLAN device is enslaved to the real
7023  * device as a VLAN splinter for VLAN ID 'vid'.  If 'realdev_ofp_port' is zero,
7024  * then the VLAN device is un-enslaved. */
7025 int
7026 ofproto_port_set_realdev(struct ofproto *ofproto, ofp_port_t vlandev_ofp_port,
7027                          ofp_port_t realdev_ofp_port, int vid)
7028 {
7029     struct ofport *ofport;
7030     int error;
7031
7032     ovs_assert(vlandev_ofp_port != realdev_ofp_port);
7033
7034     ofport = ofproto_get_port(ofproto, vlandev_ofp_port);
7035     if (!ofport) {
7036         VLOG_WARN("%s: cannot set realdev on nonexistent port %"PRIu16,
7037                   ofproto->name, vlandev_ofp_port);
7038         return EINVAL;
7039     }
7040
7041     if (!ofproto->ofproto_class->set_realdev) {
7042         if (!vlandev_ofp_port) {
7043             return 0;
7044         }
7045         VLOG_WARN("%s: vlan splinters not supported", ofproto->name);
7046         return EOPNOTSUPP;
7047     }
7048
7049     error = ofproto->ofproto_class->set_realdev(ofport, realdev_ofp_port, vid);
7050     if (error) {
7051         VLOG_WARN("%s: setting realdev on port %"PRIu16" (%s) failed (%s)",
7052                   ofproto->name, vlandev_ofp_port,
7053                   netdev_get_name(ofport->netdev), ovs_strerror(error));
7054     }
7055     return error;
7056 }