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