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