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