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