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