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