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