ofproto: Move function find_meter() into ofpacts as ofpacts_get_meter().
[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 /* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
1725  * performs the 'n_actions' actions in 'actions'.  The new flow will not
1726  * timeout.
1727  *
1728  * If cls_rule->priority is in the range of priorities supported by OpenFlow
1729  * (0...65535, inclusive) then the flow will be visible to OpenFlow
1730  * controllers; otherwise, it will be hidden.
1731  *
1732  * The caller retains ownership of 'cls_rule' and 'ofpacts'.
1733  *
1734  * This is a helper function for in-band control and fail-open. */
1735 void
1736 ofproto_add_flow(struct ofproto *ofproto, const struct match *match,
1737                  unsigned int priority,
1738                  const struct ofpact *ofpacts, size_t ofpacts_len)
1739 {
1740     const struct rule *rule;
1741
1742     ovs_rwlock_rdlock(&ofproto->tables[0].cls.rwlock);
1743     rule = rule_from_cls_rule(classifier_find_match_exactly(
1744                                   &ofproto->tables[0].cls, match, priority));
1745     ovs_rwlock_unlock(&ofproto->tables[0].cls.rwlock);
1746     if (!rule || !ofpacts_equal(rule->ofpacts, rule->ofpacts_len,
1747                                 ofpacts, ofpacts_len)) {
1748         struct ofputil_flow_mod fm;
1749
1750         memset(&fm, 0, sizeof fm);
1751         fm.match = *match;
1752         fm.priority = priority;
1753         fm.buffer_id = UINT32_MAX;
1754         fm.ofpacts = CONST_CAST(struct ofpact *, ofpacts);
1755         fm.ofpacts_len = ofpacts_len;
1756         add_flow(ofproto, NULL, &fm, NULL);
1757     }
1758 }
1759
1760 /* Executes the flow modification specified in 'fm'.  Returns 0 on success, an
1761  * OFPERR_* OpenFlow error code on failure, or OFPROTO_POSTPONE if the
1762  * operation cannot be initiated now but may be retried later.
1763  *
1764  * This is a helper function for in-band control and fail-open. */
1765 int
1766 ofproto_flow_mod(struct ofproto *ofproto, struct ofputil_flow_mod *fm)
1767 {
1768     return handle_flow_mod__(ofproto, NULL, fm, NULL);
1769 }
1770
1771 /* Searches for a rule with matching criteria exactly equal to 'target' in
1772  * ofproto's table 0 and, if it finds one, deletes it.
1773  *
1774  * This is a helper function for in-band control and fail-open. */
1775 bool
1776 ofproto_delete_flow(struct ofproto *ofproto,
1777                     const struct match *target, unsigned int priority)
1778 {
1779     struct classifier *cls = &ofproto->tables[0].cls;
1780     struct rule *rule;
1781
1782     ovs_rwlock_rdlock(&cls->rwlock);
1783     rule = rule_from_cls_rule(classifier_find_match_exactly(cls, target,
1784                                                             priority));
1785     ovs_rwlock_unlock(&cls->rwlock);
1786     if (!rule) {
1787         /* No such rule -> success. */
1788         return true;
1789     } else if (rule->pending) {
1790         /* An operation on the rule is already pending -> failure.
1791          * Caller must retry later if it's important. */
1792         return false;
1793     } else {
1794         /* Initiate deletion -> success. */
1795         ovs_rwlock_wrlock(&cls->rwlock);
1796         ofproto_rule_delete(ofproto, cls, rule);
1797         ovs_rwlock_unlock(&cls->rwlock);
1798
1799         return true;
1800     }
1801
1802 }
1803
1804 /* Starts the process of deleting all of the flows from all of ofproto's flow
1805  * tables and then reintroducing the flows required by in-band control and
1806  * fail-open.  The process will complete in a later call to ofproto_run(). */
1807 void
1808 ofproto_flush_flows(struct ofproto *ofproto)
1809 {
1810     COVERAGE_INC(ofproto_flush);
1811     ofproto->state = S_FLUSH;
1812 }
1813 \f
1814 static void
1815 reinit_ports(struct ofproto *p)
1816 {
1817     struct ofproto_port_dump dump;
1818     struct sset devnames;
1819     struct ofport *ofport;
1820     struct ofproto_port ofproto_port;
1821     const char *devname;
1822
1823     COVERAGE_INC(ofproto_reinit_ports);
1824
1825     sset_init(&devnames);
1826     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1827         sset_add(&devnames, netdev_get_name(ofport->netdev));
1828     }
1829     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
1830         sset_add(&devnames, ofproto_port.name);
1831     }
1832
1833     SSET_FOR_EACH (devname, &devnames) {
1834         update_port(p, devname);
1835     }
1836     sset_destroy(&devnames);
1837 }
1838
1839 static ofp_port_t
1840 alloc_ofp_port(struct ofproto *ofproto, const char *netdev_name)
1841 {
1842     uint16_t port_idx;
1843
1844     port_idx = simap_get(&ofproto->ofp_requests, netdev_name);
1845     port_idx = port_idx ? port_idx : UINT16_MAX;
1846
1847     if (port_idx >= ofproto->max_ports
1848         || bitmap_is_set(ofproto->ofp_port_ids, port_idx)) {
1849         uint16_t end_port_no = ofproto->alloc_port_no;
1850
1851         /* Search for a free OpenFlow port number.  We try not to
1852          * immediately reuse them to prevent problems due to old
1853          * flows. */
1854         for (;;) {
1855             if (++ofproto->alloc_port_no >= ofproto->max_ports) {
1856                 ofproto->alloc_port_no = 0;
1857             }
1858             if (!bitmap_is_set(ofproto->ofp_port_ids,
1859                                ofproto->alloc_port_no)) {
1860                 port_idx = ofproto->alloc_port_no;
1861                 break;
1862             }
1863             if (ofproto->alloc_port_no == end_port_no) {
1864                 return OFPP_NONE;
1865             }
1866         }
1867     }
1868     bitmap_set1(ofproto->ofp_port_ids, port_idx);
1869     return u16_to_ofp(port_idx);
1870 }
1871
1872 static void
1873 dealloc_ofp_port(const struct ofproto *ofproto, ofp_port_t ofp_port)
1874 {
1875     if (ofp_to_u16(ofp_port) < ofproto->max_ports) {
1876         bitmap_set0(ofproto->ofp_port_ids, ofp_to_u16(ofp_port));
1877     }
1878 }
1879
1880 /* Opens and returns a netdev for 'ofproto_port' in 'ofproto', or a null
1881  * pointer if the netdev cannot be opened.  On success, also fills in
1882  * 'opp'.  */
1883 static struct netdev *
1884 ofport_open(struct ofproto *ofproto,
1885             struct ofproto_port *ofproto_port,
1886             struct ofputil_phy_port *pp)
1887 {
1888     enum netdev_flags flags;
1889     struct netdev *netdev;
1890     int error;
1891
1892     error = netdev_open(ofproto_port->name, ofproto_port->type, &netdev);
1893     if (error) {
1894         VLOG_WARN_RL(&rl, "%s: ignoring port %s (%"PRIu16") because netdev %s "
1895                      "cannot be opened (%s)",
1896                      ofproto->name,
1897                      ofproto_port->name, ofproto_port->ofp_port,
1898                      ofproto_port->name, ovs_strerror(error));
1899         return NULL;
1900     }
1901
1902     if (ofproto_port->ofp_port == OFPP_NONE) {
1903         if (!strcmp(ofproto->name, ofproto_port->name)) {
1904             ofproto_port->ofp_port = OFPP_LOCAL;
1905         } else {
1906             ofproto_port->ofp_port = alloc_ofp_port(ofproto,
1907                                                     ofproto_port->name);
1908         }
1909     }
1910     pp->port_no = ofproto_port->ofp_port;
1911     netdev_get_etheraddr(netdev, pp->hw_addr);
1912     ovs_strlcpy(pp->name, ofproto_port->name, sizeof pp->name);
1913     netdev_get_flags(netdev, &flags);
1914     pp->config = flags & NETDEV_UP ? 0 : OFPUTIL_PC_PORT_DOWN;
1915     pp->state = netdev_get_carrier(netdev) ? 0 : OFPUTIL_PS_LINK_DOWN;
1916     netdev_get_features(netdev, &pp->curr, &pp->advertised,
1917                         &pp->supported, &pp->peer);
1918     pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
1919     pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
1920
1921     return netdev;
1922 }
1923
1924 /* Returns true if most fields of 'a' and 'b' are equal.  Differences in name,
1925  * port number, and 'config' bits other than OFPUTIL_PS_LINK_DOWN are
1926  * disregarded. */
1927 static bool
1928 ofport_equal(const struct ofputil_phy_port *a,
1929              const struct ofputil_phy_port *b)
1930 {
1931     return (eth_addr_equals(a->hw_addr, b->hw_addr)
1932             && a->state == b->state
1933             && !((a->config ^ b->config) & OFPUTIL_PC_PORT_DOWN)
1934             && a->curr == b->curr
1935             && a->advertised == b->advertised
1936             && a->supported == b->supported
1937             && a->peer == b->peer
1938             && a->curr_speed == b->curr_speed
1939             && a->max_speed == b->max_speed);
1940 }
1941
1942 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
1943  * The caller must ensure that 'p' does not have a conflicting ofport (that is,
1944  * one with the same name or port number). */
1945 static void
1946 ofport_install(struct ofproto *p,
1947                struct netdev *netdev, const struct ofputil_phy_port *pp)
1948 {
1949     const char *netdev_name = netdev_get_name(netdev);
1950     struct ofport *ofport;
1951     int error;
1952
1953     /* Create ofport. */
1954     ofport = p->ofproto_class->port_alloc();
1955     if (!ofport) {
1956         error = ENOMEM;
1957         goto error;
1958     }
1959     ofport->ofproto = p;
1960     ofport->netdev = netdev;
1961     ofport->change_seq = netdev_change_seq(netdev);
1962     ofport->pp = *pp;
1963     ofport->ofp_port = pp->port_no;
1964     ofport->created = time_msec();
1965
1966     /* Add port to 'p'. */
1967     hmap_insert(&p->ports, &ofport->hmap_node,
1968                 hash_ofp_port(ofport->ofp_port));
1969     shash_add(&p->port_by_name, netdev_name, ofport);
1970
1971     update_mtu(p, ofport);
1972
1973     /* Let the ofproto_class initialize its private data. */
1974     error = p->ofproto_class->port_construct(ofport);
1975     if (error) {
1976         goto error;
1977     }
1978     connmgr_send_port_status(p->connmgr, pp, OFPPR_ADD);
1979     return;
1980
1981 error:
1982     VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
1983                  p->name, netdev_name, ovs_strerror(error));
1984     if (ofport) {
1985         ofport_destroy__(ofport);
1986     } else {
1987         netdev_close(netdev);
1988     }
1989 }
1990
1991 /* Removes 'ofport' from 'p' and destroys it. */
1992 static void
1993 ofport_remove(struct ofport *ofport)
1994 {
1995     connmgr_send_port_status(ofport->ofproto->connmgr, &ofport->pp,
1996                              OFPPR_DELETE);
1997     ofport_destroy(ofport);
1998 }
1999
2000 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
2001  * destroys it. */
2002 static void
2003 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
2004 {
2005     struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
2006     if (port) {
2007         ofport_remove(port);
2008     }
2009 }
2010
2011 /* Updates 'port' with new 'pp' description.
2012  *
2013  * Does not handle a name or port number change.  The caller must implement
2014  * such a change as a delete followed by an add.  */
2015 static void
2016 ofport_modified(struct ofport *port, struct ofputil_phy_port *pp)
2017 {
2018     memcpy(port->pp.hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2019     port->pp.config = ((port->pp.config & ~OFPUTIL_PC_PORT_DOWN)
2020                         | (pp->config & OFPUTIL_PC_PORT_DOWN));
2021     port->pp.state = pp->state;
2022     port->pp.curr = pp->curr;
2023     port->pp.advertised = pp->advertised;
2024     port->pp.supported = pp->supported;
2025     port->pp.peer = pp->peer;
2026     port->pp.curr_speed = pp->curr_speed;
2027     port->pp.max_speed = pp->max_speed;
2028
2029     connmgr_send_port_status(port->ofproto->connmgr, &port->pp, OFPPR_MODIFY);
2030 }
2031
2032 /* Update OpenFlow 'state' in 'port' and notify controller. */
2033 void
2034 ofproto_port_set_state(struct ofport *port, enum ofputil_port_state state)
2035 {
2036     if (port->pp.state != state) {
2037         port->pp.state = state;
2038         connmgr_send_port_status(port->ofproto->connmgr, &port->pp,
2039                                  OFPPR_MODIFY);
2040     }
2041 }
2042
2043 void
2044 ofproto_port_unregister(struct ofproto *ofproto, ofp_port_t ofp_port)
2045 {
2046     struct ofport *port = ofproto_get_port(ofproto, ofp_port);
2047     if (port) {
2048         if (port->ofproto->ofproto_class->set_realdev) {
2049             port->ofproto->ofproto_class->set_realdev(port, 0, 0);
2050         }
2051         if (port->ofproto->ofproto_class->set_stp_port) {
2052             port->ofproto->ofproto_class->set_stp_port(port, NULL);
2053         }
2054         if (port->ofproto->ofproto_class->set_cfm) {
2055             port->ofproto->ofproto_class->set_cfm(port, NULL);
2056         }
2057         if (port->ofproto->ofproto_class->bundle_remove) {
2058             port->ofproto->ofproto_class->bundle_remove(port);
2059         }
2060     }
2061 }
2062
2063 static void
2064 ofport_destroy__(struct ofport *port)
2065 {
2066     struct ofproto *ofproto = port->ofproto;
2067     const char *name = netdev_get_name(port->netdev);
2068
2069     hmap_remove(&ofproto->ports, &port->hmap_node);
2070     shash_delete(&ofproto->port_by_name,
2071                  shash_find(&ofproto->port_by_name, name));
2072
2073     netdev_close(port->netdev);
2074     ofproto->ofproto_class->port_dealloc(port);
2075 }
2076
2077 static void
2078 ofport_destroy(struct ofport *port)
2079 {
2080     if (port) {
2081         dealloc_ofp_port(port->ofproto, port->ofp_port);
2082         port->ofproto->ofproto_class->port_destruct(port);
2083         ofport_destroy__(port);
2084      }
2085 }
2086
2087 struct ofport *
2088 ofproto_get_port(const struct ofproto *ofproto, ofp_port_t ofp_port)
2089 {
2090     struct ofport *port;
2091
2092     HMAP_FOR_EACH_IN_BUCKET (port, hmap_node, hash_ofp_port(ofp_port),
2093                              &ofproto->ports) {
2094         if (port->ofp_port == ofp_port) {
2095             return port;
2096         }
2097     }
2098     return NULL;
2099 }
2100
2101 int
2102 ofproto_port_get_stats(const struct ofport *port, struct netdev_stats *stats)
2103 {
2104     struct ofproto *ofproto = port->ofproto;
2105     int error;
2106
2107     if (ofproto->ofproto_class->port_get_stats) {
2108         error = ofproto->ofproto_class->port_get_stats(port, stats);
2109     } else {
2110         error = EOPNOTSUPP;
2111     }
2112
2113     return error;
2114 }
2115
2116 static void
2117 update_port(struct ofproto *ofproto, const char *name)
2118 {
2119     struct ofproto_port ofproto_port;
2120     struct ofputil_phy_port pp;
2121     struct netdev *netdev;
2122     struct ofport *port;
2123
2124     COVERAGE_INC(ofproto_update_port);
2125
2126     /* Fetch 'name''s location and properties from the datapath. */
2127     netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
2128               ? ofport_open(ofproto, &ofproto_port, &pp)
2129               : NULL);
2130
2131     if (netdev) {
2132         port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
2133         if (port && !strcmp(netdev_get_name(port->netdev), name)) {
2134             struct netdev *old_netdev = port->netdev;
2135
2136             /* 'name' hasn't changed location.  Any properties changed? */
2137             if (!ofport_equal(&port->pp, &pp)) {
2138                 ofport_modified(port, &pp);
2139             }
2140
2141             update_mtu(ofproto, port);
2142
2143             /* Install the newly opened netdev in case it has changed.
2144              * Don't close the old netdev yet in case port_modified has to
2145              * remove a retained reference to it.*/
2146             port->netdev = netdev;
2147             port->change_seq = netdev_change_seq(netdev);
2148
2149             if (port->ofproto->ofproto_class->port_modified) {
2150                 port->ofproto->ofproto_class->port_modified(port);
2151             }
2152
2153             netdev_close(old_netdev);
2154         } else {
2155             /* If 'port' is nonnull then its name differs from 'name' and thus
2156              * we should delete it.  If we think there's a port named 'name'
2157              * then its port number must be wrong now so delete it too. */
2158             if (port) {
2159                 ofport_remove(port);
2160             }
2161             ofport_remove_with_name(ofproto, name);
2162             ofport_install(ofproto, netdev, &pp);
2163         }
2164     } else {
2165         /* Any port named 'name' is gone now. */
2166         ofport_remove_with_name(ofproto, name);
2167     }
2168     ofproto_port_destroy(&ofproto_port);
2169 }
2170
2171 static int
2172 init_ports(struct ofproto *p)
2173 {
2174     struct ofproto_port_dump dump;
2175     struct ofproto_port ofproto_port;
2176     struct shash_node *node, *next;
2177
2178     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2179         const char *name = ofproto_port.name;
2180
2181         if (shash_find(&p->port_by_name, name)) {
2182             VLOG_WARN_RL(&rl, "%s: ignoring duplicate device %s in datapath",
2183                          p->name, name);
2184         } else {
2185             struct ofputil_phy_port pp;
2186             struct netdev *netdev;
2187
2188             /* Check if an OpenFlow port number had been requested. */
2189             node = shash_find(&init_ofp_ports, name);
2190             if (node) {
2191                 const struct iface_hint *iface_hint = node->data;
2192                 simap_put(&p->ofp_requests, name,
2193                           ofp_to_u16(iface_hint->ofp_port));
2194             }
2195
2196             netdev = ofport_open(p, &ofproto_port, &pp);
2197             if (netdev) {
2198                 ofport_install(p, netdev, &pp);
2199                 if (ofp_to_u16(ofproto_port.ofp_port) < p->max_ports) {
2200                     p->alloc_port_no = MAX(p->alloc_port_no,
2201                                            ofp_to_u16(ofproto_port.ofp_port));
2202                 }
2203             }
2204         }
2205     }
2206
2207     SHASH_FOR_EACH_SAFE(node, next, &init_ofp_ports) {
2208         struct iface_hint *iface_hint = node->data;
2209
2210         if (!strcmp(iface_hint->br_name, p->name)) {
2211             free(iface_hint->br_name);
2212             free(iface_hint->br_type);
2213             free(iface_hint);
2214             shash_delete(&init_ofp_ports, node);
2215         }
2216     }
2217
2218     return 0;
2219 }
2220
2221 /* Find the minimum MTU of all non-datapath devices attached to 'p'.
2222  * Returns ETH_PAYLOAD_MAX or the minimum of the ports. */
2223 static int
2224 find_min_mtu(struct ofproto *p)
2225 {
2226     struct ofport *ofport;
2227     int mtu = 0;
2228
2229     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2230         struct netdev *netdev = ofport->netdev;
2231         int dev_mtu;
2232
2233         /* Skip any internal ports, since that's what we're trying to
2234          * set. */
2235         if (!strcmp(netdev_get_type(netdev), "internal")) {
2236             continue;
2237         }
2238
2239         if (netdev_get_mtu(netdev, &dev_mtu)) {
2240             continue;
2241         }
2242         if (!mtu || dev_mtu < mtu) {
2243             mtu = dev_mtu;
2244         }
2245     }
2246
2247     return mtu ? mtu: ETH_PAYLOAD_MAX;
2248 }
2249
2250 /* Update MTU of all datapath devices on 'p' to the minimum of the
2251  * non-datapath ports in event of 'port' added or changed. */
2252 static void
2253 update_mtu(struct ofproto *p, struct ofport *port)
2254 {
2255     struct ofport *ofport;
2256     struct netdev *netdev = port->netdev;
2257     int dev_mtu, old_min;
2258
2259     if (netdev_get_mtu(netdev, &dev_mtu)) {
2260         port->mtu = 0;
2261         return;
2262     }
2263     if (!strcmp(netdev_get_type(port->netdev), "internal")) {
2264         if (dev_mtu > p->min_mtu) {
2265            if (!netdev_set_mtu(port->netdev, p->min_mtu)) {
2266                dev_mtu = p->min_mtu;
2267            }
2268         }
2269         port->mtu = dev_mtu;
2270         return;
2271     }
2272
2273     /* For non-internal port find new min mtu. */
2274     old_min = p->min_mtu;
2275     port->mtu = dev_mtu;
2276     p->min_mtu = find_min_mtu(p);
2277     if (p->min_mtu == old_min) {
2278         return;
2279     }
2280
2281     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2282         struct netdev *netdev = ofport->netdev;
2283
2284         if (!strcmp(netdev_get_type(netdev), "internal")) {
2285             if (!netdev_set_mtu(netdev, p->min_mtu)) {
2286                 ofport->mtu = p->min_mtu;
2287             }
2288         }
2289     }
2290 }
2291 \f
2292 static void
2293 ofproto_rule_destroy(struct rule *rule)
2294 {
2295     if (rule) {
2296         rule->ofproto->ofproto_class->rule_destruct(rule);
2297         ofproto_rule_destroy__(rule);
2298     }
2299 }
2300
2301 static void
2302 ofproto_rule_destroy__(struct rule *rule)
2303 {
2304     cls_rule_destroy(&rule->cr);
2305     free(rule->ofpacts);
2306     ovs_mutex_destroy(&rule->timeout_mutex);
2307     ovs_rwlock_destroy(&rule->rwlock);
2308     rule->ofproto->ofproto_class->rule_dealloc(rule);
2309 }
2310
2311 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
2312  * that outputs to 'port' (output to OFPP_FLOOD and OFPP_ALL doesn't count). */
2313 bool
2314 ofproto_rule_has_out_port(const struct rule *rule, ofp_port_t port)
2315 {
2316     return (port == OFPP_ANY
2317             || ofpacts_output_to_port(rule->ofpacts, rule->ofpacts_len, port));
2318 }
2319
2320 /* Returns true if a rule related to 'op' has an OpenFlow OFPAT_OUTPUT or
2321  * OFPAT_ENQUEUE action that outputs to 'out_port'. */
2322 bool
2323 ofoperation_has_out_port(const struct ofoperation *op, ofp_port_t out_port)
2324 {
2325     if (ofproto_rule_has_out_port(op->rule, out_port)) {
2326         return true;
2327     }
2328
2329     switch (op->type) {
2330     case OFOPERATION_ADD:
2331     case OFOPERATION_DELETE:
2332         return false;
2333
2334     case OFOPERATION_MODIFY:
2335     case OFOPERATION_REPLACE:
2336         return ofpacts_output_to_port(op->ofpacts, op->ofpacts_len, out_port);
2337     }
2338
2339     NOT_REACHED();
2340 }
2341
2342 /* Executes the actions indicated by 'rule' on 'packet' and credits 'rule''s
2343  * statistics appropriately.
2344  *
2345  * 'packet' doesn't necessarily have to match 'rule'.  'rule' will be credited
2346  * with statistics for 'packet' either way.
2347  *
2348  * Takes ownership of 'packet'. */
2349 static int
2350 rule_execute(struct rule *rule, ofp_port_t in_port, struct ofpbuf *packet)
2351 {
2352     struct flow flow;
2353     union flow_in_port in_port_;
2354
2355     in_port_.ofp_port = in_port;
2356     flow_extract(packet, 0, 0, NULL, &in_port_, &flow);
2357     return rule->ofproto->ofproto_class->rule_execute(rule, &flow, packet);
2358 }
2359
2360 /* Returns true if 'rule' should be hidden from the controller.
2361  *
2362  * Rules with priority higher than UINT16_MAX are set up by ofproto itself
2363  * (e.g. by in-band control) and are intentionally hidden from the
2364  * controller. */
2365 bool
2366 ofproto_rule_is_hidden(const struct rule *rule)
2367 {
2368     return rule->cr.priority > UINT16_MAX;
2369 }
2370
2371 static enum oftable_flags
2372 rule_get_flags(const struct rule *rule)
2373 {
2374     return rule->ofproto->tables[rule->table_id].flags;
2375 }
2376
2377 static bool
2378 rule_is_modifiable(const struct rule *rule)
2379 {
2380     return !(rule_get_flags(rule) & OFTABLE_READONLY);
2381 }
2382 \f
2383 static enum ofperr
2384 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
2385 {
2386     ofconn_send_reply(ofconn, make_echo_reply(oh));
2387     return 0;
2388 }
2389
2390 static enum ofperr
2391 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
2392 {
2393     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2394     struct ofputil_switch_features features;
2395     struct ofport *port;
2396     bool arp_match_ip;
2397     struct ofpbuf *b;
2398     int n_tables;
2399     int i;
2400
2401     ofproto->ofproto_class->get_features(ofproto, &arp_match_ip,
2402                                          &features.actions);
2403     ovs_assert(features.actions & OFPUTIL_A_OUTPUT); /* sanity check */
2404
2405     /* Count only non-hidden tables in the number of tables.  (Hidden tables,
2406      * if present, are always at the end.) */
2407     n_tables = ofproto->n_tables;
2408     for (i = 0; i < ofproto->n_tables; i++) {
2409         if (ofproto->tables[i].flags & OFTABLE_HIDDEN) {
2410             n_tables = i;
2411             break;
2412         }
2413     }
2414
2415     features.datapath_id = ofproto->datapath_id;
2416     features.n_buffers = pktbuf_capacity();
2417     features.n_tables = n_tables;
2418     features.capabilities = (OFPUTIL_C_FLOW_STATS | OFPUTIL_C_TABLE_STATS |
2419                              OFPUTIL_C_PORT_STATS | OFPUTIL_C_QUEUE_STATS);
2420     if (arp_match_ip) {
2421         features.capabilities |= OFPUTIL_C_ARP_MATCH_IP;
2422     }
2423     /* FIXME: Fill in proper features.auxiliary_id for auxiliary connections */
2424     features.auxiliary_id = 0;
2425     b = ofputil_encode_switch_features(&features, ofconn_get_protocol(ofconn),
2426                                        oh->xid);
2427     HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
2428         ofputil_put_switch_features_port(&port->pp, b);
2429     }
2430
2431     ofconn_send_reply(ofconn, b);
2432     return 0;
2433 }
2434
2435 static enum ofperr
2436 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
2437 {
2438     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2439     struct ofp_switch_config *osc;
2440     enum ofp_config_flags flags;
2441     struct ofpbuf *buf;
2442
2443     /* Send reply. */
2444     buf = ofpraw_alloc_reply(OFPRAW_OFPT_GET_CONFIG_REPLY, oh, 0);
2445     osc = ofpbuf_put_uninit(buf, sizeof *osc);
2446     flags = ofproto->frag_handling;
2447     /* OFPC_INVALID_TTL_TO_CONTROLLER is deprecated in OF 1.3 */
2448     if (oh->version < OFP13_VERSION
2449         && ofconn_get_invalid_ttl_to_controller(ofconn)) {
2450         flags |= OFPC_INVALID_TTL_TO_CONTROLLER;
2451     }
2452     osc->flags = htons(flags);
2453     osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
2454     ofconn_send_reply(ofconn, buf);
2455
2456     return 0;
2457 }
2458
2459 static enum ofperr
2460 handle_set_config(struct ofconn *ofconn, const struct ofp_header *oh)
2461 {
2462     const struct ofp_switch_config *osc = ofpmsg_body(oh);
2463     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2464     uint16_t flags = ntohs(osc->flags);
2465
2466     if (ofconn_get_type(ofconn) != OFCONN_PRIMARY
2467         || ofconn_get_role(ofconn) != OFPCR12_ROLE_SLAVE) {
2468         enum ofp_config_flags cur = ofproto->frag_handling;
2469         enum ofp_config_flags next = flags & OFPC_FRAG_MASK;
2470
2471         ovs_assert((cur & OFPC_FRAG_MASK) == cur);
2472         if (cur != next) {
2473             if (ofproto->ofproto_class->set_frag_handling(ofproto, next)) {
2474                 ofproto->frag_handling = next;
2475             } else {
2476                 VLOG_WARN_RL(&rl, "%s: unsupported fragment handling mode %s",
2477                              ofproto->name,
2478                              ofputil_frag_handling_to_string(next));
2479             }
2480         }
2481     }
2482     /* OFPC_INVALID_TTL_TO_CONTROLLER is deprecated in OF 1.3 */
2483     ofconn_set_invalid_ttl_to_controller(ofconn,
2484              (oh->version < OFP13_VERSION
2485               && flags & OFPC_INVALID_TTL_TO_CONTROLLER));
2486
2487     ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
2488
2489     return 0;
2490 }
2491
2492 /* Checks whether 'ofconn' is a slave controller.  If so, returns an OpenFlow
2493  * error message code for the caller to propagate upward.  Otherwise, returns
2494  * 0.
2495  *
2496  * The log message mentions 'msg_type'. */
2497 static enum ofperr
2498 reject_slave_controller(struct ofconn *ofconn)
2499 {
2500     if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
2501         && ofconn_get_role(ofconn) == OFPCR12_ROLE_SLAVE) {
2502         return OFPERR_OFPBRC_EPERM;
2503     } else {
2504         return 0;
2505     }
2506 }
2507
2508 /* Checks that the 'ofpacts_len' bytes of actions in 'ofpacts' are appropriate
2509  * for a packet with the prerequisites satisfied by 'flow' in table 'table_id'.
2510  * 'flow' may be temporarily modified, but is restored at return.
2511  */
2512 static enum ofperr
2513 ofproto_check_ofpacts(struct ofproto *ofproto,
2514                       const struct ofpact ofpacts[], size_t ofpacts_len,
2515                       struct flow *flow, uint8_t table_id)
2516 {
2517     enum ofperr error;
2518     uint32_t mid;
2519
2520     error = ofpacts_check(ofpacts, ofpacts_len, flow,
2521                           u16_to_ofp(ofproto->max_ports), table_id);
2522     if (error) {
2523         return error;
2524     }
2525
2526     mid = ofpacts_get_meter(ofpacts, ofpacts_len);
2527     if (mid && ofproto_get_provider_meter_id(ofproto, mid) == UINT32_MAX) {
2528         return OFPERR_OFPMMFC_INVALID_METER;
2529     }
2530     return 0;
2531 }
2532
2533 static enum ofperr
2534 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
2535 {
2536     struct ofproto *p = ofconn_get_ofproto(ofconn);
2537     struct ofputil_packet_out po;
2538     struct ofpbuf *payload;
2539     uint64_t ofpacts_stub[1024 / 8];
2540     struct ofpbuf ofpacts;
2541     struct flow flow;
2542     union flow_in_port in_port_;
2543     enum ofperr error;
2544
2545     COVERAGE_INC(ofproto_packet_out);
2546
2547     error = reject_slave_controller(ofconn);
2548     if (error) {
2549         goto exit;
2550     }
2551
2552     /* Decode message. */
2553     ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
2554     error = ofputil_decode_packet_out(&po, oh, &ofpacts);
2555     if (error) {
2556         goto exit_free_ofpacts;
2557     }
2558     if (ofp_to_u16(po.in_port) >= p->max_ports
2559         && ofp_to_u16(po.in_port) < ofp_to_u16(OFPP_MAX)) {
2560         error = OFPERR_OFPBRC_BAD_PORT;
2561         goto exit_free_ofpacts;
2562     }
2563
2564
2565     /* Get payload. */
2566     if (po.buffer_id != UINT32_MAX) {
2567         error = ofconn_pktbuf_retrieve(ofconn, po.buffer_id, &payload, NULL);
2568         if (error || !payload) {
2569             goto exit_free_ofpacts;
2570         }
2571     } else {
2572         /* Ensure that the L3 header is 32-bit aligned. */
2573         payload = ofpbuf_clone_data_with_headroom(po.packet, po.packet_len, 2);
2574     }
2575
2576     /* Verify actions against packet, then send packet if successful. */
2577     in_port_.ofp_port = po.in_port;
2578     flow_extract(payload, 0, 0, NULL, &in_port_, &flow);
2579     error = ofproto_check_ofpacts(p, po.ofpacts, po.ofpacts_len, &flow, 0);
2580     if (!error) {
2581         error = p->ofproto_class->packet_out(p, payload, &flow,
2582                                              po.ofpacts, po.ofpacts_len);
2583     }
2584     ofpbuf_delete(payload);
2585
2586 exit_free_ofpacts:
2587     ofpbuf_uninit(&ofpacts);
2588 exit:
2589     return error;
2590 }
2591
2592 static void
2593 update_port_config(struct ofport *port,
2594                    enum ofputil_port_config config,
2595                    enum ofputil_port_config mask)
2596 {
2597     enum ofputil_port_config old_config = port->pp.config;
2598     enum ofputil_port_config toggle;
2599
2600     toggle = (config ^ port->pp.config) & mask;
2601     if (toggle & OFPUTIL_PC_PORT_DOWN) {
2602         if (config & OFPUTIL_PC_PORT_DOWN) {
2603             netdev_turn_flags_off(port->netdev, NETDEV_UP, NULL);
2604         } else {
2605             netdev_turn_flags_on(port->netdev, NETDEV_UP, NULL);
2606         }
2607         toggle &= ~OFPUTIL_PC_PORT_DOWN;
2608     }
2609
2610     port->pp.config ^= toggle;
2611     if (port->pp.config != old_config) {
2612         port->ofproto->ofproto_class->port_reconfigured(port, old_config);
2613     }
2614 }
2615
2616 static enum ofperr
2617 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
2618 {
2619     struct ofproto *p = ofconn_get_ofproto(ofconn);
2620     struct ofputil_port_mod pm;
2621     struct ofport *port;
2622     enum ofperr error;
2623
2624     error = reject_slave_controller(ofconn);
2625     if (error) {
2626         return error;
2627     }
2628
2629     error = ofputil_decode_port_mod(oh, &pm);
2630     if (error) {
2631         return error;
2632     }
2633
2634     port = ofproto_get_port(p, pm.port_no);
2635     if (!port) {
2636         return OFPERR_OFPPMFC_BAD_PORT;
2637     } else if (!eth_addr_equals(port->pp.hw_addr, pm.hw_addr)) {
2638         return OFPERR_OFPPMFC_BAD_HW_ADDR;
2639     } else {
2640         update_port_config(port, pm.config, pm.mask);
2641         if (pm.advertise) {
2642             netdev_set_advertisements(port->netdev, pm.advertise);
2643         }
2644     }
2645     return 0;
2646 }
2647
2648 static enum ofperr
2649 handle_desc_stats_request(struct ofconn *ofconn,
2650                           const struct ofp_header *request)
2651 {
2652     static const char *default_mfr_desc = "Nicira, Inc.";
2653     static const char *default_hw_desc = "Open vSwitch";
2654     static const char *default_sw_desc = VERSION;
2655     static const char *default_serial_desc = "None";
2656     static const char *default_dp_desc = "None";
2657
2658     struct ofproto *p = ofconn_get_ofproto(ofconn);
2659     struct ofp_desc_stats *ods;
2660     struct ofpbuf *msg;
2661
2662     msg = ofpraw_alloc_stats_reply(request, 0);
2663     ods = ofpbuf_put_zeros(msg, sizeof *ods);
2664     ovs_strlcpy(ods->mfr_desc, p->mfr_desc ? p->mfr_desc : default_mfr_desc,
2665                 sizeof ods->mfr_desc);
2666     ovs_strlcpy(ods->hw_desc, p->hw_desc ? p->hw_desc : default_hw_desc,
2667                 sizeof ods->hw_desc);
2668     ovs_strlcpy(ods->sw_desc, p->sw_desc ? p->sw_desc : default_sw_desc,
2669                 sizeof ods->sw_desc);
2670     ovs_strlcpy(ods->serial_num,
2671                 p->serial_desc ? p->serial_desc : default_serial_desc,
2672                 sizeof ods->serial_num);
2673     ovs_strlcpy(ods->dp_desc, p->dp_desc ? p->dp_desc : default_dp_desc,
2674                 sizeof ods->dp_desc);
2675     ofconn_send_reply(ofconn, msg);
2676
2677     return 0;
2678 }
2679
2680 static enum ofperr
2681 handle_table_stats_request(struct ofconn *ofconn,
2682                            const struct ofp_header *request)
2683 {
2684     struct ofproto *p = ofconn_get_ofproto(ofconn);
2685     struct ofp12_table_stats *ots;
2686     struct ofpbuf *msg;
2687     int n_tables;
2688     size_t i;
2689
2690     /* Set up default values.
2691      *
2692      * ofp12_table_stats is used as a generic structure as
2693      * it is able to hold all the fields for ofp10_table_stats
2694      * and ofp11_table_stats (and of course itself).
2695      */
2696     ots = xcalloc(p->n_tables, sizeof *ots);
2697     for (i = 0; i < p->n_tables; i++) {
2698         ots[i].table_id = i;
2699         sprintf(ots[i].name, "table%zu", i);
2700         ots[i].match = htonll(OFPXMT12_MASK);
2701         ots[i].wildcards = htonll(OFPXMT12_MASK);
2702         ots[i].write_actions = htonl(OFPAT11_OUTPUT);
2703         ots[i].apply_actions = htonl(OFPAT11_OUTPUT);
2704         ots[i].write_setfields = htonll(OFPXMT12_MASK);
2705         ots[i].apply_setfields = htonll(OFPXMT12_MASK);
2706         ots[i].metadata_match = htonll(UINT64_MAX);
2707         ots[i].metadata_write = htonll(UINT64_MAX);
2708         ots[i].instructions = htonl(OFPIT11_ALL);
2709         ots[i].config = htonl(OFPTC11_TABLE_MISS_MASK);
2710         ots[i].max_entries = htonl(1000000); /* An arbitrary big number. */
2711         ovs_rwlock_rdlock(&p->tables[i].cls.rwlock);
2712         ots[i].active_count = htonl(classifier_count(&p->tables[i].cls));
2713         ovs_rwlock_unlock(&p->tables[i].cls.rwlock);
2714     }
2715
2716     p->ofproto_class->get_tables(p, ots);
2717
2718     /* Post-process the tables, dropping hidden tables. */
2719     n_tables = p->n_tables;
2720     for (i = 0; i < p->n_tables; i++) {
2721         const struct oftable *table = &p->tables[i];
2722
2723         if (table->flags & OFTABLE_HIDDEN) {
2724             n_tables = i;
2725             break;
2726         }
2727
2728         if (table->name) {
2729             ovs_strzcpy(ots[i].name, table->name, sizeof ots[i].name);
2730         }
2731
2732         if (table->max_flows < ntohl(ots[i].max_entries)) {
2733             ots[i].max_entries = htonl(table->max_flows);
2734         }
2735     }
2736
2737     msg = ofputil_encode_table_stats_reply(ots, n_tables, request);
2738     ofconn_send_reply(ofconn, msg);
2739
2740     free(ots);
2741
2742     return 0;
2743 }
2744
2745 static void
2746 append_port_stat(struct ofport *port, struct list *replies)
2747 {
2748     struct ofputil_port_stats ops = { .port_no = port->pp.port_no };
2749
2750     calc_duration(port->created, time_msec(),
2751                   &ops.duration_sec, &ops.duration_nsec);
2752
2753     /* Intentionally ignore return value, since errors will set
2754      * 'stats' to all-1s, which is correct for OpenFlow, and
2755      * netdev_get_stats() will log errors. */
2756     ofproto_port_get_stats(port, &ops.stats);
2757
2758     ofputil_append_port_stat(replies, &ops);
2759 }
2760
2761 static enum ofperr
2762 handle_port_stats_request(struct ofconn *ofconn,
2763                           const struct ofp_header *request)
2764 {
2765     struct ofproto *p = ofconn_get_ofproto(ofconn);
2766     struct ofport *port;
2767     struct list replies;
2768     ofp_port_t port_no;
2769     enum ofperr error;
2770
2771     error = ofputil_decode_port_stats_request(request, &port_no);
2772     if (error) {
2773         return error;
2774     }
2775
2776     ofpmp_init(&replies, request);
2777     if (port_no != OFPP_ANY) {
2778         port = ofproto_get_port(p, port_no);
2779         if (port) {
2780             append_port_stat(port, &replies);
2781         }
2782     } else {
2783         HMAP_FOR_EACH (port, hmap_node, &p->ports) {
2784             append_port_stat(port, &replies);
2785         }
2786     }
2787
2788     ofconn_send_replies(ofconn, &replies);
2789     return 0;
2790 }
2791
2792 static enum ofperr
2793 handle_port_desc_stats_request(struct ofconn *ofconn,
2794                                const struct ofp_header *request)
2795 {
2796     struct ofproto *p = ofconn_get_ofproto(ofconn);
2797     enum ofp_version version;
2798     struct ofport *port;
2799     struct list replies;
2800
2801     ofpmp_init(&replies, request);
2802
2803     version = ofputil_protocol_to_ofp_version(ofconn_get_protocol(ofconn));
2804     HMAP_FOR_EACH (port, hmap_node, &p->ports) {
2805         ofputil_append_port_desc_stats_reply(version, &port->pp, &replies);
2806     }
2807
2808     ofconn_send_replies(ofconn, &replies);
2809     return 0;
2810 }
2811
2812 static uint32_t
2813 hash_cookie(ovs_be64 cookie)
2814 {
2815     return hash_2words((OVS_FORCE uint64_t)cookie >> 32,
2816                        (OVS_FORCE uint64_t)cookie);
2817 }
2818
2819 static void
2820 cookies_insert(struct ofproto *ofproto, struct rule *rule)
2821 {
2822     hindex_insert(&ofproto->cookies, &rule->cookie_node,
2823                   hash_cookie(rule->flow_cookie));
2824 }
2825
2826 static void
2827 cookies_remove(struct ofproto *ofproto, struct rule *rule)
2828 {
2829     hindex_remove(&ofproto->cookies, &rule->cookie_node);
2830 }
2831
2832 static void
2833 ofproto_rule_change_cookie(struct ofproto *ofproto, struct rule *rule,
2834                            ovs_be64 new_cookie)
2835 {
2836     if (new_cookie != rule->flow_cookie) {
2837         cookies_remove(ofproto, rule);
2838
2839         ovs_rwlock_wrlock(&rule->rwlock);
2840         rule->flow_cookie = new_cookie;
2841         ovs_rwlock_unlock(&rule->rwlock);
2842
2843         cookies_insert(ofproto, rule);
2844     }
2845 }
2846
2847 static void
2848 calc_duration(long long int start, long long int now,
2849               uint32_t *sec, uint32_t *nsec)
2850 {
2851     long long int msecs = now - start;
2852     *sec = msecs / 1000;
2853     *nsec = (msecs % 1000) * (1000 * 1000);
2854 }
2855
2856 /* Checks whether 'table_id' is 0xff or a valid table ID in 'ofproto'.  Returns
2857  * 0 if 'table_id' is OK, otherwise an OpenFlow error code.  */
2858 static enum ofperr
2859 check_table_id(const struct ofproto *ofproto, uint8_t table_id)
2860 {
2861     return (table_id == 0xff || table_id < ofproto->n_tables
2862             ? 0
2863             : OFPERR_OFPBRC_BAD_TABLE_ID);
2864
2865 }
2866
2867 static struct oftable *
2868 next_visible_table(const struct ofproto *ofproto, uint8_t table_id)
2869 {
2870     struct oftable *table;
2871
2872     for (table = &ofproto->tables[table_id];
2873          table < &ofproto->tables[ofproto->n_tables];
2874          table++) {
2875         if (!(table->flags & OFTABLE_HIDDEN)) {
2876             return table;
2877         }
2878     }
2879
2880     return NULL;
2881 }
2882
2883 static struct oftable *
2884 first_matching_table(const struct ofproto *ofproto, uint8_t table_id)
2885 {
2886     if (table_id == 0xff) {
2887         return next_visible_table(ofproto, 0);
2888     } else if (table_id < ofproto->n_tables) {
2889         return &ofproto->tables[table_id];
2890     } else {
2891         return NULL;
2892     }
2893 }
2894
2895 static struct oftable *
2896 next_matching_table(const struct ofproto *ofproto,
2897                     const struct oftable *table, uint8_t table_id)
2898 {
2899     return (table_id == 0xff
2900             ? next_visible_table(ofproto, (table - ofproto->tables) + 1)
2901             : NULL);
2902 }
2903
2904 /* Assigns TABLE to each oftable, in turn, that matches TABLE_ID in OFPROTO:
2905  *
2906  *   - If TABLE_ID is 0xff, this iterates over every classifier table in
2907  *     OFPROTO, skipping tables marked OFTABLE_HIDDEN.
2908  *
2909  *   - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
2910  *     only once, for that table.  (This can be used to access tables marked
2911  *     OFTABLE_HIDDEN.)
2912  *
2913  *   - Otherwise, TABLE_ID isn't valid for OFPROTO, so the loop won't be
2914  *     entered at all.  (Perhaps you should have validated TABLE_ID with
2915  *     check_table_id().)
2916  *
2917  * All parameters are evaluated multiple times.
2918  */
2919 #define FOR_EACH_MATCHING_TABLE(TABLE, TABLE_ID, OFPROTO)         \
2920     for ((TABLE) = first_matching_table(OFPROTO, TABLE_ID);       \
2921          (TABLE) != NULL;                                         \
2922          (TABLE) = next_matching_table(OFPROTO, TABLE, TABLE_ID))
2923
2924 /* Initializes 'criteria' in a straightforward way based on the other
2925  * parameters.
2926  *
2927  * For "loose" matching, the 'priority' parameter is unimportant and may be
2928  * supplied as 0. */
2929 static void
2930 rule_criteria_init(struct rule_criteria *criteria, uint8_t table_id,
2931                    const struct match *match, unsigned int priority,
2932                    ovs_be64 cookie, ovs_be64 cookie_mask,
2933                    ofp_port_t out_port)
2934 {
2935     criteria->table_id = table_id;
2936     cls_rule_init(&criteria->cr, match, priority);
2937     criteria->cookie = cookie;
2938     criteria->cookie_mask = cookie_mask;
2939     criteria->out_port = out_port;
2940 }
2941
2942 static void
2943 rule_criteria_destroy(struct rule_criteria *criteria)
2944 {
2945     cls_rule_destroy(&criteria->cr);
2946 }
2947
2948 void
2949 rule_collection_init(struct rule_collection *rules)
2950 {
2951     rules->rules = rules->stub;
2952     rules->n = 0;
2953     rules->capacity = ARRAY_SIZE(rules->stub);
2954 }
2955
2956 void
2957 rule_collection_add(struct rule_collection *rules, struct rule *rule)
2958 {
2959     if (rules->n >= rules->capacity) {
2960         size_t old_size, new_size;
2961
2962         old_size = rules->capacity * sizeof *rules->rules;
2963         rules->capacity *= 2;
2964         new_size = rules->capacity * sizeof *rules->rules;
2965
2966         if (rules->rules == rules->stub) {
2967             rules->rules = xmalloc(new_size);
2968             memcpy(rules->rules, rules->stub, old_size);
2969         } else {
2970             rules->rules = xrealloc(rules->rules, new_size);
2971         }
2972     }
2973
2974     rules->rules[rules->n++] = rule;
2975 }
2976
2977 void
2978 rule_collection_destroy(struct rule_collection *rules)
2979 {
2980     if (rules->rules != rules->stub) {
2981         free(rules->rules);
2982     }
2983 }
2984
2985 static enum ofperr
2986 collect_rule(struct rule *rule, const struct rule_criteria *c,
2987              struct rule_collection *rules)
2988 {
2989     if (ofproto_rule_is_hidden(rule)) {
2990         return 0;
2991     } else if (rule->pending) {
2992         return OFPROTO_POSTPONE;
2993     } else {
2994         if ((c->table_id == rule->table_id || c->table_id == 0xff)
2995             && ofproto_rule_has_out_port(rule, c->out_port)
2996             && !((rule->flow_cookie ^ c->cookie) & c->cookie_mask)) {
2997             rule_collection_add(rules, rule);
2998         }
2999         return 0;
3000     }
3001 }
3002
3003 /* Searches 'ofproto' for rules that match the criteria in 'criteria'.  Matches
3004  * on classifiers rules are done in the "loose" way required for OpenFlow
3005  * OFPFC_MODIFY and OFPFC_DELETE requests.  Puts the selected rules on list
3006  * 'rules'.
3007  *
3008  * Hidden rules are always omitted.
3009  *
3010  * Returns 0 on success, otherwise an OpenFlow error code. */
3011 static enum ofperr
3012 collect_rules_loose(struct ofproto *ofproto,
3013                     const struct rule_criteria *criteria,
3014                     struct rule_collection *rules)
3015 {
3016     struct oftable *table;
3017     enum ofperr error;
3018
3019     rule_collection_init(rules);
3020
3021     error = check_table_id(ofproto, criteria->table_id);
3022     if (error) {
3023         goto exit;
3024     }
3025
3026     if (criteria->cookie_mask == htonll(UINT64_MAX)) {
3027         struct rule *rule;
3028
3029         HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
3030                                    hash_cookie(criteria->cookie),
3031                                    &ofproto->cookies) {
3032             if (cls_rule_is_loose_match(&rule->cr, &criteria->cr.match)) {
3033                 error = collect_rule(rule, criteria, rules);
3034                 if (error) {
3035                     break;
3036                 }
3037             }
3038         }
3039     } else {
3040         FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
3041             struct cls_cursor cursor;
3042             struct rule *rule;
3043
3044             ovs_rwlock_rdlock(&table->cls.rwlock);
3045             cls_cursor_init(&cursor, &table->cls, &criteria->cr);
3046             CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3047                 error = collect_rule(rule, criteria, rules);
3048                 if (error) {
3049                     break;
3050                 }
3051             }
3052             ovs_rwlock_unlock(&table->cls.rwlock);
3053         }
3054     }
3055
3056 exit:
3057     if (error) {
3058         rule_collection_destroy(rules);
3059     }
3060     return error;
3061 }
3062
3063 /* Searches 'ofproto' for rules that match the criteria in 'criteria'.  Matches
3064  * on classifiers rules are done in the "strict" way required for OpenFlow
3065  * OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests.  Puts the selected
3066  * rules on list 'rules'.
3067  *
3068  * Hidden rules are always omitted.
3069  *
3070  * Returns 0 on success, otherwise an OpenFlow error code. */
3071 static enum ofperr
3072 collect_rules_strict(struct ofproto *ofproto,
3073                      const struct rule_criteria *criteria,
3074                      struct rule_collection *rules)
3075 {
3076     struct oftable *table;
3077     int error;
3078
3079     rule_collection_init(rules);
3080
3081     error = check_table_id(ofproto, criteria->table_id);
3082     if (error) {
3083         goto exit;
3084     }
3085
3086     if (criteria->cookie_mask == htonll(UINT64_MAX)) {
3087         struct rule *rule;
3088
3089         HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
3090                                    hash_cookie(criteria->cookie),
3091                                    &ofproto->cookies) {
3092             if (cls_rule_equal(&rule->cr, &criteria->cr)) {
3093                 error = collect_rule(rule, criteria, rules);
3094                 if (error) {
3095                     break;
3096                 }
3097             }
3098         }
3099     } else {
3100         FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
3101             struct rule *rule;
3102
3103             ovs_rwlock_rdlock(&table->cls.rwlock);
3104             rule = rule_from_cls_rule(classifier_find_rule_exactly(
3105                                           &table->cls, &criteria->cr));
3106             ovs_rwlock_unlock(&table->cls.rwlock);
3107             if (rule) {
3108                 error = collect_rule(rule, criteria, rules);
3109                 if (error) {
3110                     break;
3111                 }
3112             }
3113         }
3114     }
3115
3116 exit:
3117     if (error) {
3118         rule_collection_destroy(rules);
3119     }
3120     return error;
3121 }
3122
3123 /* Returns 'age_ms' (a duration in milliseconds), converted to seconds and
3124  * forced into the range of a uint16_t. */
3125 static int
3126 age_secs(long long int age_ms)
3127 {
3128     return (age_ms < 0 ? 0
3129             : age_ms >= UINT16_MAX * 1000 ? UINT16_MAX
3130             : (unsigned int) age_ms / 1000);
3131 }
3132
3133 static enum ofperr
3134 handle_flow_stats_request(struct ofconn *ofconn,
3135                           const struct ofp_header *request)
3136 {
3137     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3138     struct ofputil_flow_stats_request fsr;
3139     struct rule_criteria criteria;
3140     struct rule_collection rules;
3141     struct list replies;
3142     enum ofperr error;
3143     size_t i;
3144
3145     error = ofputil_decode_flow_stats_request(&fsr, request);
3146     if (error) {
3147         return error;
3148     }
3149
3150     rule_criteria_init(&criteria, fsr.table_id, &fsr.match, 0, fsr.cookie,
3151                        fsr.cookie_mask, fsr.out_port);
3152     error = collect_rules_loose(ofproto, &criteria, &rules);
3153     rule_criteria_destroy(&criteria);
3154     if (error) {
3155         return error;
3156     }
3157
3158     ofpmp_init(&replies, request);
3159     for (i = 0; i < rules.n; i++) {
3160         struct rule *rule = rules.rules[i];
3161         long long int now = time_msec();
3162         struct ofputil_flow_stats fs;
3163
3164         minimatch_expand(&rule->cr.match, &fs.match);
3165         fs.priority = rule->cr.priority;
3166         fs.cookie = rule->flow_cookie;
3167         fs.table_id = rule->table_id;
3168         calc_duration(rule->created, now, &fs.duration_sec, &fs.duration_nsec);
3169         fs.idle_age = age_secs(now - rule->used);
3170         fs.hard_age = age_secs(now - rule->modified);
3171         ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
3172                                                &fs.byte_count);
3173         fs.ofpacts = rule->ofpacts;
3174         fs.ofpacts_len = rule->ofpacts_len;
3175
3176         ovs_mutex_lock(&rule->timeout_mutex);
3177         fs.idle_timeout = rule->idle_timeout;
3178         fs.hard_timeout = rule->hard_timeout;
3179         ovs_mutex_unlock(&rule->timeout_mutex);
3180
3181         fs.flags = 0;
3182         if (rule->send_flow_removed) {
3183             fs.flags |= OFPUTIL_FF_SEND_FLOW_REM;
3184             /* FIXME: Implement OFPUTIL_FF_NO_PKT_COUNTS and
3185                OFPUTIL_FF_NO_BYT_COUNTS. */
3186         }
3187         ofputil_append_flow_stats_reply(&fs, &replies);
3188     }
3189     rule_collection_destroy(&rules);
3190
3191     ofconn_send_replies(ofconn, &replies);
3192
3193     return 0;
3194 }
3195
3196 static void
3197 flow_stats_ds(struct rule *rule, struct ds *results)
3198 {
3199     uint64_t packet_count, byte_count;
3200
3201     rule->ofproto->ofproto_class->rule_get_stats(rule,
3202                                                  &packet_count, &byte_count);
3203
3204     if (rule->table_id != 0) {
3205         ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
3206     }
3207     ds_put_format(results, "duration=%llds, ",
3208                   (time_msec() - rule->created) / 1000);
3209     ds_put_format(results, "priority=%u, ", rule->cr.priority);
3210     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
3211     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
3212     cls_rule_format(&rule->cr, results);
3213     ds_put_char(results, ',');
3214     ofpacts_format(rule->ofpacts, rule->ofpacts_len, results);
3215     ds_put_cstr(results, "\n");
3216 }
3217
3218 /* Adds a pretty-printed description of all flows to 'results', including
3219  * hidden flows (e.g., set up by in-band control). */
3220 void
3221 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3222 {
3223     struct oftable *table;
3224
3225     OFPROTO_FOR_EACH_TABLE (table, p) {
3226         struct cls_cursor cursor;
3227         struct rule *rule;
3228
3229         ovs_rwlock_rdlock(&table->cls.rwlock);
3230         cls_cursor_init(&cursor, &table->cls, NULL);
3231         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
3232             flow_stats_ds(rule, results);
3233         }
3234         ovs_rwlock_unlock(&table->cls.rwlock);
3235     }
3236 }
3237
3238 /* Obtains the NetFlow engine type and engine ID for 'ofproto' into
3239  * '*engine_type' and '*engine_id', respectively. */
3240 void
3241 ofproto_get_netflow_ids(const struct ofproto *ofproto,
3242                         uint8_t *engine_type, uint8_t *engine_id)
3243 {
3244     ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
3245 }
3246
3247 /* Checks the status of CFM configured on 'ofp_port' within 'ofproto'.  Returns
3248  * true if the port's CFM status was successfully stored into '*status'.
3249  * Returns false if the port did not have CFM configured, in which case
3250  * '*status' is indeterminate.
3251  *
3252  * The caller must provide and owns '*status', and must free 'status->rmps'. */
3253 bool
3254 ofproto_port_get_cfm_status(const struct ofproto *ofproto, ofp_port_t ofp_port,
3255                             struct ofproto_cfm_status *status)
3256 {
3257     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
3258     return (ofport
3259             && ofproto->ofproto_class->get_cfm_status
3260             && ofproto->ofproto_class->get_cfm_status(ofport, status));
3261 }
3262
3263 static enum ofperr
3264 handle_aggregate_stats_request(struct ofconn *ofconn,
3265                                const struct ofp_header *oh)
3266 {
3267     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3268     struct ofputil_flow_stats_request request;
3269     struct ofputil_aggregate_stats stats;
3270     bool unknown_packets, unknown_bytes;
3271     struct rule_criteria criteria;
3272     struct rule_collection rules;
3273     struct ofpbuf *reply;
3274     enum ofperr error;
3275     size_t i;
3276
3277     error = ofputil_decode_flow_stats_request(&request, oh);
3278     if (error) {
3279         return error;
3280     }
3281
3282     rule_criteria_init(&criteria, request.table_id, &request.match, 0,
3283                        request.cookie, request.cookie_mask,
3284                        request.out_port);
3285     error = collect_rules_loose(ofproto, &criteria, &rules);
3286     rule_criteria_destroy(&criteria);
3287     if (error) {
3288         return error;
3289     }
3290
3291     memset(&stats, 0, sizeof stats);
3292     unknown_packets = unknown_bytes = false;
3293     for (i = 0; i < rules.n; i++) {
3294         struct rule *rule = rules.rules[i];
3295         uint64_t packet_count;
3296         uint64_t byte_count;
3297
3298         ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
3299                                                &byte_count);
3300
3301         if (packet_count == UINT64_MAX) {
3302             unknown_packets = true;
3303         } else {
3304             stats.packet_count += packet_count;
3305         }
3306
3307         if (byte_count == UINT64_MAX) {
3308             unknown_bytes = true;
3309         } else {
3310             stats.byte_count += byte_count;
3311         }
3312
3313         stats.flow_count++;
3314     }
3315     if (unknown_packets) {
3316         stats.packet_count = UINT64_MAX;
3317     }
3318     if (unknown_bytes) {
3319         stats.byte_count = UINT64_MAX;
3320     }
3321
3322     rule_collection_destroy(&rules);
3323
3324     reply = ofputil_encode_aggregate_stats_reply(&stats, oh);
3325     ofconn_send_reply(ofconn, reply);
3326
3327     return 0;
3328 }
3329
3330 struct queue_stats_cbdata {
3331     struct ofport *ofport;
3332     struct list replies;
3333     long long int now;
3334 };
3335
3336 static void
3337 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
3338                 const struct netdev_queue_stats *stats)
3339 {
3340     struct ofputil_queue_stats oqs;
3341
3342     oqs.port_no = cbdata->ofport->pp.port_no;
3343     oqs.queue_id = queue_id;
3344     oqs.tx_bytes = stats->tx_bytes;
3345     oqs.tx_packets = stats->tx_packets;
3346     oqs.tx_errors = stats->tx_errors;
3347     if (stats->created != LLONG_MIN) {
3348         calc_duration(stats->created, cbdata->now,
3349                       &oqs.duration_sec, &oqs.duration_nsec);
3350     } else {
3351         oqs.duration_sec = oqs.duration_nsec = UINT32_MAX;
3352     }
3353     ofputil_append_queue_stat(&cbdata->replies, &oqs);
3354 }
3355
3356 static void
3357 handle_queue_stats_dump_cb(uint32_t queue_id,
3358                            struct netdev_queue_stats *stats,
3359                            void *cbdata_)
3360 {
3361     struct queue_stats_cbdata *cbdata = cbdata_;
3362
3363     put_queue_stats(cbdata, queue_id, stats);
3364 }
3365
3366 static enum ofperr
3367 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
3368                             struct queue_stats_cbdata *cbdata)
3369 {
3370     cbdata->ofport = port;
3371     if (queue_id == OFPQ_ALL) {
3372         netdev_dump_queue_stats(port->netdev,
3373                                 handle_queue_stats_dump_cb, cbdata);
3374     } else {
3375         struct netdev_queue_stats stats;
3376
3377         if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
3378             put_queue_stats(cbdata, queue_id, &stats);
3379         } else {
3380             return OFPERR_OFPQOFC_BAD_QUEUE;
3381         }
3382     }
3383     return 0;
3384 }
3385
3386 static enum ofperr
3387 handle_queue_stats_request(struct ofconn *ofconn,
3388                            const struct ofp_header *rq)
3389 {
3390     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3391     struct queue_stats_cbdata cbdata;
3392     struct ofport *port;
3393     enum ofperr error;
3394     struct ofputil_queue_stats_request oqsr;
3395
3396     COVERAGE_INC(ofproto_queue_req);
3397
3398     ofpmp_init(&cbdata.replies, rq);
3399     cbdata.now = time_msec();
3400
3401     error = ofputil_decode_queue_stats_request(rq, &oqsr);
3402     if (error) {
3403         return error;
3404     }
3405
3406     if (oqsr.port_no == OFPP_ANY) {
3407         error = OFPERR_OFPQOFC_BAD_QUEUE;
3408         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3409             if (!handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)) {
3410                 error = 0;
3411             }
3412         }
3413     } else {
3414         port = ofproto_get_port(ofproto, oqsr.port_no);
3415         error = (port
3416                  ? handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)
3417                  : OFPERR_OFPQOFC_BAD_PORT);
3418     }
3419     if (!error) {
3420         ofconn_send_replies(ofconn, &cbdata.replies);
3421     } else {
3422         ofpbuf_list_delete(&cbdata.replies);
3423     }
3424
3425     return error;
3426 }
3427
3428 static bool
3429 is_flow_deletion_pending(const struct ofproto *ofproto,
3430                          const struct cls_rule *cls_rule,
3431                          uint8_t table_id)
3432 {
3433     if (!hmap_is_empty(&ofproto->deletions)) {
3434         struct ofoperation *op;
3435
3436         HMAP_FOR_EACH_WITH_HASH (op, hmap_node,
3437                                  cls_rule_hash(cls_rule, table_id),
3438                                  &ofproto->deletions) {
3439             if (cls_rule_equal(cls_rule, &op->rule->cr)) {
3440                 return true;
3441             }
3442         }
3443     }
3444
3445     return false;
3446 }
3447
3448 static enum ofperr
3449 evict_rule_from_table(struct ofproto *ofproto, struct oftable *table)
3450 {
3451     struct rule *rule;
3452     size_t n_rules;
3453
3454     ovs_rwlock_rdlock(&table->cls.rwlock);
3455     n_rules = classifier_count(&table->cls);
3456     ovs_rwlock_unlock(&table->cls.rwlock);
3457
3458     if (n_rules < table->max_flows) {
3459         return 0;
3460     } else if (!choose_rule_to_evict(table, &rule)) {
3461         return OFPERR_OFPFMFC_TABLE_FULL;
3462     } else if (rule->pending) {
3463         ovs_rwlock_unlock(&rule->rwlock);
3464         return OFPROTO_POSTPONE;
3465     } else {
3466         struct ofopgroup *group;
3467
3468         group = ofopgroup_create_unattached(ofproto);
3469         delete_flow__(rule, group, OFPRR_EVICTION);
3470         ofopgroup_submit(group);
3471
3472         return 0;
3473     }
3474 }
3475
3476 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
3477  * in which no matching flow already exists in the flow table.
3478  *
3479  * Adds the flow specified by 'ofm', which is followed by 'n_actions'
3480  * ofp_actions, to the ofproto's flow table.  Returns 0 on success, an OpenFlow
3481  * error code on failure, or OFPROTO_POSTPONE if the operation cannot be
3482  * initiated now but may be retried later.
3483  *
3484  * The caller retains ownership of 'fm->ofpacts'.
3485  *
3486  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3487  * if any. */
3488 static enum ofperr
3489 add_flow(struct ofproto *ofproto, struct ofconn *ofconn,
3490          struct ofputil_flow_mod *fm, const struct ofp_header *request)
3491 {
3492     struct oftable *table;
3493     struct ofopgroup *group;
3494     struct cls_rule cr;
3495     struct rule *rule;
3496     uint8_t table_id;
3497     int error;
3498
3499     error = check_table_id(ofproto, fm->table_id);
3500     if (error) {
3501         return error;
3502     }
3503
3504     /* Pick table. */
3505     if (fm->table_id == 0xff) {
3506         if (ofproto->ofproto_class->rule_choose_table) {
3507             error = ofproto->ofproto_class->rule_choose_table(ofproto,
3508                                                               &fm->match,
3509                                                               &table_id);
3510             if (error) {
3511                 return error;
3512             }
3513             ovs_assert(table_id < ofproto->n_tables);
3514         } else {
3515             table_id = 0;
3516         }
3517     } else if (fm->table_id < ofproto->n_tables) {
3518         table_id = fm->table_id;
3519     } else {
3520         return OFPERR_OFPBRC_BAD_TABLE_ID;
3521     }
3522
3523     table = &ofproto->tables[table_id];
3524
3525     if (table->flags & OFTABLE_READONLY) {
3526         return OFPERR_OFPBRC_EPERM;
3527     }
3528
3529     cls_rule_init(&cr, &fm->match, fm->priority);
3530
3531     /* Transform "add" into "modify" if there's an existing identical flow. */
3532     ovs_rwlock_rdlock(&table->cls.rwlock);
3533     rule = rule_from_cls_rule(classifier_find_rule_exactly(&table->cls, &cr));
3534     ovs_rwlock_unlock(&table->cls.rwlock);
3535     if (rule) {
3536         cls_rule_destroy(&cr);
3537         if (!rule_is_modifiable(rule)) {
3538             return OFPERR_OFPBRC_EPERM;
3539         } else if (rule->pending) {
3540             return OFPROTO_POSTPONE;
3541         } else {
3542             struct rule_collection rules;
3543
3544             rule_collection_init(&rules);
3545             rule_collection_add(&rules, rule);
3546             fm->modify_cookie = true;
3547             error = modify_flows__(ofproto, ofconn, fm, request, &rules);
3548             rule_collection_destroy(&rules);
3549
3550             return error;
3551         }
3552     }
3553
3554     /* Verify actions. */
3555     error = ofproto_check_ofpacts(ofproto, fm->ofpacts, fm->ofpacts_len,
3556                                   &fm->match.flow, table_id);
3557     if (error) {
3558         cls_rule_destroy(&cr);
3559         return error;
3560     }
3561
3562     /* Serialize against pending deletion. */
3563     if (is_flow_deletion_pending(ofproto, &cr, table_id)) {
3564         cls_rule_destroy(&cr);
3565         return OFPROTO_POSTPONE;
3566     }
3567
3568     /* Check for overlap, if requested. */
3569     if (fm->flags & OFPUTIL_FF_CHECK_OVERLAP) {
3570         bool overlaps;
3571
3572         ovs_rwlock_rdlock(&table->cls.rwlock);
3573         overlaps = classifier_rule_overlaps(&table->cls, &cr);
3574         ovs_rwlock_unlock(&table->cls.rwlock);
3575
3576         if (overlaps) {
3577             cls_rule_destroy(&cr);
3578             return OFPERR_OFPFMFC_OVERLAP;
3579         }
3580     }
3581
3582     /* If necessary, evict an existing rule to clear out space. */
3583     error = evict_rule_from_table(ofproto, table);
3584     if (error) {
3585         cls_rule_destroy(&cr);
3586         return error;
3587     }
3588
3589     /* Allocate new rule. */
3590     rule = ofproto->ofproto_class->rule_alloc();
3591     if (!rule) {
3592         cls_rule_destroy(&cr);
3593         VLOG_WARN_RL(&rl, "%s: failed to create rule (%s)",
3594                      ofproto->name, ovs_strerror(error));
3595         return ENOMEM;
3596     }
3597
3598     /* Initialize base state. */
3599     rule->ofproto = ofproto;
3600     cls_rule_move(&rule->cr, &cr);
3601     rule->pending = NULL;
3602     rule->flow_cookie = fm->new_cookie;
3603     rule->created = rule->modified = rule->used = time_msec();
3604
3605     ovs_mutex_init(&rule->timeout_mutex);
3606     ovs_mutex_lock(&rule->timeout_mutex);
3607     rule->idle_timeout = fm->idle_timeout;
3608     rule->hard_timeout = fm->hard_timeout;
3609     ovs_mutex_unlock(&rule->timeout_mutex);
3610
3611     rule->table_id = table - ofproto->tables;
3612     rule->send_flow_removed = (fm->flags & OFPUTIL_FF_SEND_FLOW_REM) != 0;
3613     rule->ofpacts = xmemdup(fm->ofpacts, fm->ofpacts_len);
3614     rule->ofpacts_len = fm->ofpacts_len;
3615     rule->meter_id = ofpacts_get_meter(rule->ofpacts, rule->ofpacts_len);
3616     list_init(&rule->meter_list_node);
3617     rule->eviction_group = NULL;
3618     list_init(&rule->expirable);
3619     rule->monitor_flags = 0;
3620     rule->add_seqno = 0;
3621     rule->modify_seqno = 0;
3622     ovs_rwlock_init(&rule->rwlock);
3623
3624     /* Construct rule, initializing derived state. */
3625     error = ofproto->ofproto_class->rule_construct(rule);
3626     if (error) {
3627         ofproto_rule_destroy__(rule);
3628         return error;
3629     }
3630
3631     /* Insert rule. */
3632     oftable_insert_rule(rule);
3633
3634     group = ofopgroup_create(ofproto, ofconn, request, fm->buffer_id);
3635     ofoperation_create(group, rule, OFOPERATION_ADD, 0);
3636     ofproto->ofproto_class->rule_insert(rule);
3637     ofopgroup_submit(group);
3638
3639     return error;
3640 }
3641 \f
3642 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
3643
3644 /* Modifies the rules listed in 'rules', changing their actions to match those
3645  * in 'fm'.
3646  *
3647  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
3648  * if any.
3649  *
3650  * Returns 0 on success, otherwise an OpenFlow error code. */
3651 static enum ofperr
3652 modify_flows__(struct ofproto *ofproto, struct ofconn *ofconn,
3653                struct ofputil_flow_mod *fm, const struct ofp_header *request,
3654                const struct rule_collection *rules)
3655 {
3656     enum ofoperation_type type;
3657     struct ofopgroup *group;
3658     enum ofperr error;
3659     size_t i;
3660
3661     type = fm->command == OFPFC_ADD ? OFOPERATION_REPLACE : OFOPERATION_MODIFY;
3662     group = ofopgroup_create(ofproto, ofconn, request, fm->buffer_id);
3663     error = OFPERR_OFPBRC_EPERM;
3664     for (i = 0; i < rules->n; i++) {
3665         struct rule *rule = rules->rules[i];
3666         struct ofoperation *op;
3667         bool actions_changed;
3668         bool reset_counters;
3669
3670         /* FIXME: Implement OFPFUTIL_FF_RESET_COUNTS */
3671
3672         if (rule_is_modifiable(rule)) {
3673             /* At least one rule is modifiable, don't report EPERM error. */
3674             error = 0;
3675         } else {
3676             continue;
3677         }
3678
3679         /* Verify actions. */
3680         error = ofpacts_check(fm->ofpacts, fm->ofpacts_len, &fm->match.flow,
3681                               u16_to_ofp(ofproto->max_ports), rule->table_id);
3682         if (error) {
3683             return error;
3684         }
3685
3686         actions_changed = !ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
3687                                          rule->ofpacts, rule->ofpacts_len);
3688
3689         op = ofoperation_create(group, rule, type, 0);
3690
3691         if (fm->modify_cookie && fm->new_cookie != htonll(UINT64_MAX)) {
3692             ofproto_rule_change_cookie(ofproto, rule, fm->new_cookie);
3693         }
3694         if (type == OFOPERATION_REPLACE) {
3695             ovs_mutex_lock(&rule->timeout_mutex);
3696             rule->idle_timeout = fm->idle_timeout;
3697             rule->hard_timeout = fm->hard_timeout;
3698             ovs_mutex_unlock(&rule->timeout_mutex);
3699
3700             rule->send_flow_removed = (fm->flags
3701                                        & OFPUTIL_FF_SEND_FLOW_REM) != 0;
3702
3703             if (fm->idle_timeout || fm->hard_timeout) {
3704                 if (!rule->eviction_group) {
3705                     eviction_group_add_rule(rule);
3706                 }
3707             } else {
3708                 eviction_group_remove_rule(rule);
3709             }
3710         }
3711
3712         reset_counters = (fm->flags & OFPUTIL_FF_RESET_COUNTS) != 0;
3713         if (actions_changed || reset_counters) {
3714             op->ofpacts = rule->ofpacts;
3715             op->ofpacts_len = rule->ofpacts_len;
3716             op->meter_id = rule->meter_id;
3717
3718             ovs_rwlock_wrlock(&rule->rwlock);
3719             rule->ofpacts = xmemdup(fm->ofpacts, fm->ofpacts_len);
3720             rule->ofpacts_len = fm->ofpacts_len;
3721             ovs_rwlock_unlock(&rule->rwlock);
3722
3723             rule->meter_id = ofpacts_get_meter(rule->ofpacts,
3724                                                rule->ofpacts_len);
3725             rule->ofproto->ofproto_class->rule_modify_actions(rule,
3726                                                               reset_counters);
3727         } else {
3728             ofoperation_complete(op, 0);
3729         }
3730     }
3731     ofopgroup_submit(group);
3732
3733     return error;
3734 }
3735
3736 static enum ofperr
3737 modify_flows_add(struct ofproto *ofproto, struct ofconn *ofconn,
3738                  struct ofputil_flow_mod *fm, const struct ofp_header *request)
3739 {
3740     if (fm->cookie_mask != htonll(0) || fm->new_cookie == htonll(UINT64_MAX)) {
3741         return 0;
3742     }
3743     return add_flow(ofproto, ofconn, fm, request);
3744 }
3745
3746 /* Implements OFPFC_MODIFY.  Returns 0 on success or an OpenFlow error code on
3747  * failure.
3748  *
3749  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
3750  * if any. */
3751 static enum ofperr
3752 modify_flows_loose(struct ofproto *ofproto, struct ofconn *ofconn,
3753                    struct ofputil_flow_mod *fm,
3754                    const struct ofp_header *request)
3755 {
3756     struct rule_criteria criteria;
3757     struct rule_collection rules;
3758     int error;
3759
3760     rule_criteria_init(&criteria, fm->table_id, &fm->match, 0,
3761                        fm->cookie, fm->cookie_mask, OFPP_ANY);
3762     error = collect_rules_loose(ofproto, &criteria, &rules);
3763     rule_criteria_destroy(&criteria);
3764
3765     if (!error) {
3766         error = (rules.n > 0
3767                  ? modify_flows__(ofproto, ofconn, fm, request, &rules)
3768                  : modify_flows_add(ofproto, ofconn, fm, request));
3769     }
3770
3771     rule_collection_destroy(&rules);
3772
3773     return error;
3774 }
3775
3776 /* Implements OFPFC_MODIFY_STRICT.  Returns 0 on success or an OpenFlow error
3777  * code on failure.
3778  *
3779  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
3780  * if any. */
3781 static enum ofperr
3782 modify_flow_strict(struct ofproto *ofproto, struct ofconn *ofconn,
3783                    struct ofputil_flow_mod *fm,
3784                    const struct ofp_header *request)
3785 {
3786     struct rule_criteria criteria;
3787     struct rule_collection rules;
3788     int error;
3789
3790     rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
3791                        fm->cookie, fm->cookie_mask, OFPP_ANY);
3792     error = collect_rules_strict(ofproto, &criteria, &rules);
3793     rule_criteria_destroy(&criteria);
3794
3795     if (!error) {
3796         if (rules.n == 0) {
3797             error =  modify_flows_add(ofproto, ofconn, fm, request);
3798         } else if (rules.n == 1) {
3799             error = modify_flows__(ofproto, ofconn, fm, request, &rules);
3800         }
3801     }
3802
3803     rule_collection_destroy(&rules);
3804
3805     return error;
3806 }
3807 \f
3808 /* OFPFC_DELETE implementation. */
3809
3810 static void
3811 delete_flow__(struct rule *rule, struct ofopgroup *group,
3812               enum ofp_flow_removed_reason reason)
3813 {
3814     struct ofproto *ofproto = rule->ofproto;
3815
3816     ofproto_rule_send_removed(rule, reason);
3817
3818     ofoperation_create(group, rule, OFOPERATION_DELETE, reason);
3819     oftable_remove_rule(rule);
3820     ofproto->ofproto_class->rule_delete(rule);
3821 }
3822
3823 /* Deletes the rules listed in 'rules'.
3824  *
3825  * Returns 0 on success, otherwise an OpenFlow error code. */
3826 static enum ofperr
3827 delete_flows__(struct ofproto *ofproto, struct ofconn *ofconn,
3828                const struct ofp_header *request,
3829                const struct rule_collection *rules,
3830                enum ofp_flow_removed_reason reason)
3831 {
3832     struct ofopgroup *group;
3833     size_t i;
3834
3835     group = ofopgroup_create(ofproto, ofconn, request, UINT32_MAX);
3836     for (i = 0; i < rules->n; i++) {
3837         struct rule *rule = rules->rules[i];
3838         ovs_rwlock_wrlock(&rule->rwlock);
3839         delete_flow__(rule, group, reason);
3840     }
3841     ofopgroup_submit(group);
3842
3843     return 0;
3844 }
3845
3846 /* Implements OFPFC_DELETE. */
3847 static enum ofperr
3848 delete_flows_loose(struct ofproto *ofproto, struct ofconn *ofconn,
3849                    const struct ofputil_flow_mod *fm,
3850                    const struct ofp_header *request)
3851 {
3852     struct rule_criteria criteria;
3853     struct rule_collection rules;
3854     enum ofperr error;
3855
3856     rule_criteria_init(&criteria, fm->table_id, &fm->match, 0,
3857                        fm->cookie, fm->cookie_mask,
3858                        fm->out_port);
3859     error = collect_rules_loose(ofproto, &criteria, &rules);
3860     rule_criteria_destroy(&criteria);
3861
3862     if (!error && rules.n > 0) {
3863         error = delete_flows__(ofproto, ofconn, request, &rules, OFPRR_DELETE);
3864     }
3865     rule_collection_destroy(&rules);
3866
3867     return error;
3868 }
3869
3870 /* Implements OFPFC_DELETE_STRICT. */
3871 static enum ofperr
3872 delete_flow_strict(struct ofproto *ofproto, struct ofconn *ofconn,
3873                    const struct ofputil_flow_mod *fm,
3874                    const struct ofp_header *request)
3875 {
3876     struct rule_criteria criteria;
3877     struct rule_collection rules;
3878     enum ofperr error;
3879
3880     rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
3881                        fm->cookie, fm->cookie_mask, fm->out_port);
3882     error = collect_rules_strict(ofproto, &criteria, &rules);
3883     rule_criteria_destroy(&criteria);
3884
3885     if (!error && rules.n > 0) {
3886         error = delete_flows__(ofproto, ofconn, request, &rules, OFPRR_DELETE);
3887     }
3888     rule_collection_destroy(&rules);
3889
3890     return error;
3891 }
3892
3893 static void
3894 ofproto_rule_send_removed(struct rule *rule, uint8_t reason)
3895 {
3896     struct ofputil_flow_removed fr;
3897
3898     if (ofproto_rule_is_hidden(rule) || !rule->send_flow_removed) {
3899         return;
3900     }
3901
3902     minimatch_expand(&rule->cr.match, &fr.match);
3903     fr.priority = rule->cr.priority;
3904     fr.cookie = rule->flow_cookie;
3905     fr.reason = reason;
3906     fr.table_id = rule->table_id;
3907     calc_duration(rule->created, time_msec(),
3908                   &fr.duration_sec, &fr.duration_nsec);
3909     ovs_mutex_lock(&rule->timeout_mutex);
3910     fr.idle_timeout = rule->idle_timeout;
3911     fr.hard_timeout = rule->hard_timeout;
3912     ovs_mutex_unlock(&rule->timeout_mutex);
3913     rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
3914                                                  &fr.byte_count);
3915
3916     connmgr_send_flow_removed(rule->ofproto->connmgr, &fr);
3917 }
3918
3919 /* Sends an OpenFlow "flow removed" message with the given 'reason' (either
3920  * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
3921  * ofproto.
3922  *
3923  * 'rule' must not have a pending operation (that is, 'rule->pending' must be
3924  * NULL).
3925  *
3926  * ofproto implementation ->run() functions should use this function to expire
3927  * OpenFlow flows. */
3928 void
3929 ofproto_rule_expire(struct rule *rule, uint8_t reason)
3930 {
3931     struct ofproto *ofproto = rule->ofproto;
3932     struct classifier *cls = &ofproto->tables[rule->table_id].cls;
3933
3934     ovs_assert(reason == OFPRR_HARD_TIMEOUT || reason == OFPRR_IDLE_TIMEOUT);
3935     ofproto_rule_send_removed(rule, reason);
3936
3937     ovs_rwlock_wrlock(&cls->rwlock);
3938     ofproto_rule_delete(ofproto, cls, rule);
3939     ovs_rwlock_unlock(&cls->rwlock);
3940 }
3941
3942 /* Reduces '*timeout' to no more than 'max'.  A value of zero in either case
3943  * means "infinite". */
3944 static void
3945 reduce_timeout(uint16_t max, uint16_t *timeout)
3946 {
3947     if (max && (!*timeout || *timeout > max)) {
3948         *timeout = max;
3949     }
3950 }
3951
3952 /* If 'idle_timeout' is nonzero, and 'rule' has no idle timeout or an idle
3953  * timeout greater than 'idle_timeout', lowers 'rule''s idle timeout to
3954  * 'idle_timeout' seconds.  Similarly for 'hard_timeout'.
3955  *
3956  * Suitable for implementing OFPACT_FIN_TIMEOUT. */
3957 void
3958 ofproto_rule_reduce_timeouts(struct rule *rule,
3959                              uint16_t idle_timeout, uint16_t hard_timeout)
3960     OVS_EXCLUDED(rule->ofproto->expirable_mutex, rule->timeout_mutex)
3961 {
3962     if (!idle_timeout && !hard_timeout) {
3963         return;
3964     }
3965
3966     ovs_mutex_lock(&rule->ofproto->expirable_mutex);
3967     if (list_is_empty(&rule->expirable)) {
3968         list_insert(&rule->ofproto->expirable, &rule->expirable);
3969     }
3970     ovs_mutex_unlock(&rule->ofproto->expirable_mutex);
3971
3972     ovs_mutex_lock(&rule->timeout_mutex);
3973     reduce_timeout(idle_timeout, &rule->idle_timeout);
3974     reduce_timeout(hard_timeout, &rule->hard_timeout);
3975     ovs_mutex_unlock(&rule->timeout_mutex);
3976 }
3977 \f
3978 static enum ofperr
3979 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3980 {
3981     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3982     struct ofputil_flow_mod fm;
3983     uint64_t ofpacts_stub[1024 / 8];
3984     struct ofpbuf ofpacts;
3985     enum ofperr error;
3986     long long int now;
3987
3988     error = reject_slave_controller(ofconn);
3989     if (error) {
3990         goto exit;
3991     }
3992
3993     ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
3994     error = ofputil_decode_flow_mod(&fm, oh, ofconn_get_protocol(ofconn),
3995                                     &ofpacts);
3996     if (!error) {
3997         error = handle_flow_mod__(ofproto, ofconn, &fm, oh);
3998     }
3999     if (error) {
4000         goto exit_free_ofpacts;
4001     }
4002
4003     /* Record the operation for logging a summary report. */
4004     switch (fm.command) {
4005     case OFPFC_ADD:
4006         ofproto->n_add++;
4007         break;
4008
4009     case OFPFC_MODIFY:
4010     case OFPFC_MODIFY_STRICT:
4011         ofproto->n_modify++;
4012         break;
4013
4014     case OFPFC_DELETE:
4015     case OFPFC_DELETE_STRICT:
4016         ofproto->n_delete++;
4017         break;
4018     }
4019
4020     now = time_msec();
4021     if (ofproto->next_op_report == LLONG_MAX) {
4022         ofproto->first_op = now;
4023         ofproto->next_op_report = MAX(now + 10 * 1000,
4024                                       ofproto->op_backoff);
4025         ofproto->op_backoff = ofproto->next_op_report + 60 * 1000;
4026     }
4027     ofproto->last_op = now;
4028
4029 exit_free_ofpacts:
4030     ofpbuf_uninit(&ofpacts);
4031 exit:
4032     return error;
4033 }
4034
4035 static enum ofperr
4036 handle_flow_mod__(struct ofproto *ofproto, struct ofconn *ofconn,
4037                   struct ofputil_flow_mod *fm, const struct ofp_header *oh)
4038 {
4039     if (ofproto->n_pending >= 50) {
4040         ovs_assert(!list_is_empty(&ofproto->pending));
4041         return OFPROTO_POSTPONE;
4042     }
4043
4044     switch (fm->command) {
4045     case OFPFC_ADD:
4046         return add_flow(ofproto, ofconn, fm, oh);
4047
4048     case OFPFC_MODIFY:
4049         return modify_flows_loose(ofproto, ofconn, fm, oh);
4050
4051     case OFPFC_MODIFY_STRICT:
4052         return modify_flow_strict(ofproto, ofconn, fm, oh);
4053
4054     case OFPFC_DELETE:
4055         return delete_flows_loose(ofproto, ofconn, fm, oh);
4056
4057     case OFPFC_DELETE_STRICT:
4058         return delete_flow_strict(ofproto, ofconn, fm, oh);
4059
4060     default:
4061         if (fm->command > 0xff) {
4062             VLOG_WARN_RL(&rl, "%s: flow_mod has explicit table_id but "
4063                          "flow_mod_table_id extension is not enabled",
4064                          ofproto->name);
4065         }
4066         return OFPERR_OFPFMFC_BAD_COMMAND;
4067     }
4068 }
4069
4070 static enum ofperr
4071 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
4072 {
4073     struct ofputil_role_request request;
4074     struct ofputil_role_request reply;
4075     struct ofpbuf *buf;
4076     enum ofperr error;
4077
4078     error = ofputil_decode_role_message(oh, &request);
4079     if (error) {
4080         return error;
4081     }
4082
4083     if (request.role != OFPCR12_ROLE_NOCHANGE) {
4084         if (ofconn_get_role(ofconn) != request.role
4085             && ofconn_has_pending_opgroups(ofconn)) {
4086             return OFPROTO_POSTPONE;
4087         }
4088
4089         if (request.have_generation_id
4090             && !ofconn_set_master_election_id(ofconn, request.generation_id)) {
4091                 return OFPERR_OFPRRFC_STALE;
4092         }
4093
4094         ofconn_set_role(ofconn, request.role);
4095     }
4096
4097     reply.role = ofconn_get_role(ofconn);
4098     reply.have_generation_id = ofconn_get_master_election_id(
4099         ofconn, &reply.generation_id);
4100     buf = ofputil_encode_role_reply(oh, &reply);
4101     ofconn_send_reply(ofconn, buf);
4102
4103     return 0;
4104 }
4105
4106 static enum ofperr
4107 handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
4108                              const struct ofp_header *oh)
4109 {
4110     const struct nx_flow_mod_table_id *msg = ofpmsg_body(oh);
4111     enum ofputil_protocol cur, next;
4112
4113     cur = ofconn_get_protocol(ofconn);
4114     next = ofputil_protocol_set_tid(cur, msg->set != 0);
4115     ofconn_set_protocol(ofconn, next);
4116
4117     return 0;
4118 }
4119
4120 static enum ofperr
4121 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
4122 {
4123     const struct nx_set_flow_format *msg = ofpmsg_body(oh);
4124     enum ofputil_protocol cur, next;
4125     enum ofputil_protocol next_base;
4126
4127     next_base = ofputil_nx_flow_format_to_protocol(ntohl(msg->format));
4128     if (!next_base) {
4129         return OFPERR_OFPBRC_EPERM;
4130     }
4131
4132     cur = ofconn_get_protocol(ofconn);
4133     next = ofputil_protocol_set_base(cur, next_base);
4134     if (cur != next && ofconn_has_pending_opgroups(ofconn)) {
4135         /* Avoid sending async messages in surprising protocol. */
4136         return OFPROTO_POSTPONE;
4137     }
4138
4139     ofconn_set_protocol(ofconn, next);
4140     return 0;
4141 }
4142
4143 static enum ofperr
4144 handle_nxt_set_packet_in_format(struct ofconn *ofconn,
4145                                 const struct ofp_header *oh)
4146 {
4147     const struct nx_set_packet_in_format *msg = ofpmsg_body(oh);
4148     uint32_t format;
4149
4150     format = ntohl(msg->format);
4151     if (format != NXPIF_OPENFLOW10 && format != NXPIF_NXM) {
4152         return OFPERR_OFPBRC_EPERM;
4153     }
4154
4155     if (format != ofconn_get_packet_in_format(ofconn)
4156         && ofconn_has_pending_opgroups(ofconn)) {
4157         /* Avoid sending async message in surprsing packet in format. */
4158         return OFPROTO_POSTPONE;
4159     }
4160
4161     ofconn_set_packet_in_format(ofconn, format);
4162     return 0;
4163 }
4164
4165 static enum ofperr
4166 handle_nxt_set_async_config(struct ofconn *ofconn, const struct ofp_header *oh)
4167 {
4168     const struct nx_async_config *msg = ofpmsg_body(oh);
4169     uint32_t master[OAM_N_TYPES];
4170     uint32_t slave[OAM_N_TYPES];
4171
4172     master[OAM_PACKET_IN] = ntohl(msg->packet_in_mask[0]);
4173     master[OAM_PORT_STATUS] = ntohl(msg->port_status_mask[0]);
4174     master[OAM_FLOW_REMOVED] = ntohl(msg->flow_removed_mask[0]);
4175
4176     slave[OAM_PACKET_IN] = ntohl(msg->packet_in_mask[1]);
4177     slave[OAM_PORT_STATUS] = ntohl(msg->port_status_mask[1]);
4178     slave[OAM_FLOW_REMOVED] = ntohl(msg->flow_removed_mask[1]);
4179
4180     ofconn_set_async_config(ofconn, master, slave);
4181     if (ofconn_get_type(ofconn) == OFCONN_SERVICE &&
4182         !ofconn_get_miss_send_len(ofconn)) {
4183         ofconn_set_miss_send_len(ofconn, OFP_DEFAULT_MISS_SEND_LEN);
4184     }
4185
4186     return 0;
4187 }
4188
4189 static enum ofperr
4190 handle_nxt_set_controller_id(struct ofconn *ofconn,
4191                              const struct ofp_header *oh)
4192 {
4193     const struct nx_controller_id *nci = ofpmsg_body(oh);
4194
4195     if (!is_all_zeros(nci->zero, sizeof nci->zero)) {
4196         return OFPERR_NXBRC_MUST_BE_ZERO;
4197     }
4198
4199     ofconn_set_controller_id(ofconn, ntohs(nci->controller_id));
4200     return 0;
4201 }
4202
4203 static enum ofperr
4204 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
4205 {
4206     struct ofpbuf *buf;
4207
4208     if (ofconn_has_pending_opgroups(ofconn)) {
4209         return OFPROTO_POSTPONE;
4210     }
4211
4212     buf = ofpraw_alloc_reply((oh->version == OFP10_VERSION
4213                               ? OFPRAW_OFPT10_BARRIER_REPLY
4214                               : OFPRAW_OFPT11_BARRIER_REPLY), oh, 0);
4215     ofconn_send_reply(ofconn, buf);
4216     return 0;
4217 }
4218
4219 static void
4220 ofproto_compose_flow_refresh_update(const struct rule *rule,
4221                                     enum nx_flow_monitor_flags flags,
4222                                     struct list *msgs)
4223 {
4224     struct ofoperation *op = rule->pending;
4225     struct ofputil_flow_update fu;
4226     struct match match;
4227
4228     if (op && op->type == OFOPERATION_ADD) {
4229         /* We'll report the final flow when the operation completes.  Reporting
4230          * it now would cause a duplicate report later. */
4231         return;
4232     }
4233
4234     fu.event = (flags & (NXFMF_INITIAL | NXFMF_ADD)
4235                 ? NXFME_ADDED : NXFME_MODIFIED);
4236     fu.reason = 0;
4237     ovs_mutex_lock(&rule->timeout_mutex);
4238     fu.idle_timeout = rule->idle_timeout;
4239     fu.hard_timeout = rule->hard_timeout;
4240     ovs_mutex_unlock(&rule->timeout_mutex);
4241     fu.table_id = rule->table_id;
4242     fu.cookie = rule->flow_cookie;
4243     minimatch_expand(&rule->cr.match, &match);
4244     fu.match = &match;
4245     fu.priority = rule->cr.priority;
4246     if (!(flags & NXFMF_ACTIONS)) {
4247         fu.ofpacts = NULL;
4248         fu.ofpacts_len = 0;
4249     } else if (!op) {
4250         fu.ofpacts = rule->ofpacts;
4251         fu.ofpacts_len = rule->ofpacts_len;
4252     } else {
4253         /* An operation is in progress.  Use the previous version of the flow's
4254          * actions, so that when the operation commits we report the change. */
4255         switch (op->type) {
4256         case OFOPERATION_ADD:
4257             NOT_REACHED();
4258
4259         case OFOPERATION_MODIFY:
4260         case OFOPERATION_REPLACE:
4261             if (op->ofpacts) {
4262                 fu.ofpacts = op->ofpacts;
4263                 fu.ofpacts_len = op->ofpacts_len;
4264             } else {
4265                 fu.ofpacts = rule->ofpacts;
4266                 fu.ofpacts_len = rule->ofpacts_len;
4267             }
4268             break;
4269
4270         case OFOPERATION_DELETE:
4271             fu.ofpacts = rule->ofpacts;
4272             fu.ofpacts_len = rule->ofpacts_len;
4273             break;
4274
4275         default:
4276             NOT_REACHED();
4277         }
4278     }
4279
4280     if (list_is_empty(msgs)) {
4281         ofputil_start_flow_update(msgs);
4282     }
4283     ofputil_append_flow_update(&fu, msgs);
4284 }
4285
4286 void
4287 ofmonitor_compose_refresh_updates(struct rule_collection *rules,
4288                                   struct list *msgs)
4289 {
4290     size_t i;
4291
4292     for (i = 0; i < rules->n; i++) {
4293         struct rule *rule = rules->rules[i];
4294         enum nx_flow_monitor_flags flags = rule->monitor_flags;
4295         rule->monitor_flags = 0;
4296
4297         ofproto_compose_flow_refresh_update(rule, flags, msgs);
4298     }
4299 }
4300
4301 static void
4302 ofproto_collect_ofmonitor_refresh_rule(const struct ofmonitor *m,
4303                                        struct rule *rule, uint64_t seqno,
4304                                        struct rule_collection *rules)
4305 {
4306     enum nx_flow_monitor_flags update;
4307
4308     if (ofproto_rule_is_hidden(rule)) {
4309         return;
4310     }
4311
4312     if (!(rule->pending
4313           ? ofoperation_has_out_port(rule->pending, m->out_port)
4314           : ofproto_rule_has_out_port(rule, m->out_port))) {
4315         return;
4316     }
4317
4318     if (seqno) {
4319         if (rule->add_seqno > seqno) {
4320             update = NXFMF_ADD | NXFMF_MODIFY;
4321         } else if (rule->modify_seqno > seqno) {
4322             update = NXFMF_MODIFY;
4323         } else {
4324             return;
4325         }
4326
4327         if (!(m->flags & update)) {
4328             return;
4329         }
4330     } else {
4331         update = NXFMF_INITIAL;
4332     }
4333
4334     if (!rule->monitor_flags) {
4335         rule_collection_add(rules, rule);
4336     }
4337     rule->monitor_flags |= update | (m->flags & NXFMF_ACTIONS);
4338 }
4339
4340 static void
4341 ofproto_collect_ofmonitor_refresh_rules(const struct ofmonitor *m,
4342                                         uint64_t seqno,
4343                                         struct rule_collection *rules)
4344 {
4345     const struct ofproto *ofproto = ofconn_get_ofproto(m->ofconn);
4346     const struct ofoperation *op;
4347     const struct oftable *table;
4348     struct cls_rule target;
4349
4350     cls_rule_init_from_minimatch(&target, &m->match, 0);
4351     FOR_EACH_MATCHING_TABLE (table, m->table_id, ofproto) {
4352         struct cls_cursor cursor;
4353         struct rule *rule;
4354
4355         ovs_rwlock_rdlock(&table->cls.rwlock);
4356         cls_cursor_init(&cursor, &table->cls, &target);
4357         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
4358             ovs_assert(!rule->pending); /* XXX */
4359             ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
4360         }
4361         ovs_rwlock_unlock(&table->cls.rwlock);
4362     }
4363
4364     HMAP_FOR_EACH (op, hmap_node, &ofproto->deletions) {
4365         struct rule *rule = op->rule;
4366
4367         if (((m->table_id == 0xff
4368               ? !(ofproto->tables[rule->table_id].flags & OFTABLE_HIDDEN)
4369               : m->table_id == rule->table_id))
4370             && cls_rule_is_loose_match(&rule->cr, &target.match)) {
4371             ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
4372         }
4373     }
4374     cls_rule_destroy(&target);
4375 }
4376
4377 static void
4378 ofproto_collect_ofmonitor_initial_rules(struct ofmonitor *m,
4379                                         struct rule_collection *rules)
4380 {
4381     if (m->flags & NXFMF_INITIAL) {
4382         ofproto_collect_ofmonitor_refresh_rules(m, 0, rules);
4383     }
4384 }
4385
4386 void
4387 ofmonitor_collect_resume_rules(struct ofmonitor *m,
4388                                uint64_t seqno, struct rule_collection *rules)
4389 {
4390     ofproto_collect_ofmonitor_refresh_rules(m, seqno, rules);
4391 }
4392
4393 static enum ofperr
4394 handle_flow_monitor_request(struct ofconn *ofconn, const struct ofp_header *oh)
4395 {
4396     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4397     struct ofmonitor **monitors;
4398     size_t n_monitors, allocated_monitors;
4399     struct rule_collection rules;
4400     struct list replies;
4401     enum ofperr error;
4402     struct ofpbuf b;
4403     size_t i;
4404
4405     error = 0;
4406     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4407     monitors = NULL;
4408     n_monitors = allocated_monitors = 0;
4409     for (;;) {
4410         struct ofputil_flow_monitor_request request;
4411         struct ofmonitor *m;
4412         int retval;
4413
4414         retval = ofputil_decode_flow_monitor_request(&request, &b);
4415         if (retval == EOF) {
4416             break;
4417         } else if (retval) {
4418             error = retval;
4419             goto error;
4420         }
4421
4422         if (request.table_id != 0xff
4423             && request.table_id >= ofproto->n_tables) {
4424             error = OFPERR_OFPBRC_BAD_TABLE_ID;
4425             goto error;
4426         }
4427
4428         error = ofmonitor_create(&request, ofconn, &m);
4429         if (error) {
4430             goto error;
4431         }
4432
4433         if (n_monitors >= allocated_monitors) {
4434             monitors = x2nrealloc(monitors, &allocated_monitors,
4435                                   sizeof *monitors);
4436         }
4437         monitors[n_monitors++] = m;
4438     }
4439
4440     rule_collection_init(&rules);
4441     for (i = 0; i < n_monitors; i++) {
4442         ofproto_collect_ofmonitor_initial_rules(monitors[i], &rules);
4443     }
4444
4445     ofpmp_init(&replies, oh);
4446     ofmonitor_compose_refresh_updates(&rules, &replies);
4447     rule_collection_destroy(&rules);
4448
4449     ofconn_send_replies(ofconn, &replies);
4450
4451     free(monitors);
4452
4453     return 0;
4454
4455 error:
4456     for (i = 0; i < n_monitors; i++) {
4457         ofmonitor_destroy(monitors[i]);
4458     }
4459     free(monitors);
4460     return error;
4461 }
4462
4463 static enum ofperr
4464 handle_flow_monitor_cancel(struct ofconn *ofconn, const struct ofp_header *oh)
4465 {
4466     struct ofmonitor *m;
4467     uint32_t id;
4468
4469     id = ofputil_decode_flow_monitor_cancel(oh);
4470     m = ofmonitor_lookup(ofconn, id);
4471     if (!m) {
4472         return OFPERR_NXBRC_FM_BAD_ID;
4473     }
4474
4475     ofmonitor_destroy(m);
4476     return 0;
4477 }
4478
4479 /* Meters implementation.
4480  *
4481  * Meter table entry, indexed by the OpenFlow meter_id.
4482  * These are always dynamically allocated to allocate enough space for
4483  * the bands.
4484  * 'created' is used to compute the duration for meter stats.
4485  * 'list rules' is needed so that we can delete the dependent rules when the
4486  * meter table entry is deleted.
4487  * 'provider_meter_id' is for the provider's private use.
4488  */
4489 struct meter {
4490     long long int created;      /* Time created. */
4491     struct list rules;          /* List of "struct rule_dpif"s. */
4492     ofproto_meter_id provider_meter_id;
4493     uint16_t flags;             /* Meter flags. */
4494     uint16_t n_bands;           /* Number of meter bands. */
4495     struct ofputil_meter_band *bands;
4496 };
4497
4498 /*
4499  * This is used in instruction validation at flow set-up time,
4500  * as flows may not use non-existing meters.
4501  * This is also used by ofproto-providers to translate OpenFlow meter_ids
4502  * in METER instructions to the corresponding provider meter IDs.
4503  * Return value of UINT32_MAX signifies an invalid meter.
4504  */
4505 uint32_t
4506 ofproto_get_provider_meter_id(const struct ofproto * ofproto,
4507                               uint32_t of_meter_id)
4508 {
4509     if (of_meter_id && of_meter_id <= ofproto->meter_features.max_meters) {
4510         const struct meter *meter = ofproto->meters[of_meter_id];
4511         if (meter) {
4512             return meter->provider_meter_id.uint32;
4513         }
4514     }
4515     return UINT32_MAX;
4516 }
4517
4518 static void
4519 meter_update(struct meter *meter, const struct ofputil_meter_config *config)
4520 {
4521     free(meter->bands);
4522
4523     meter->flags = config->flags;
4524     meter->n_bands = config->n_bands;
4525     meter->bands = xmemdup(config->bands,
4526                            config->n_bands * sizeof *meter->bands);
4527 }
4528
4529 static struct meter *
4530 meter_create(const struct ofputil_meter_config *config,
4531              ofproto_meter_id provider_meter_id)
4532 {
4533     struct meter *meter;
4534
4535     meter = xzalloc(sizeof *meter);
4536     meter->provider_meter_id = provider_meter_id;
4537     meter->created = time_msec();
4538     list_init(&meter->rules);
4539
4540     meter_update(meter, config);
4541
4542     return meter;
4543 }
4544
4545 static void
4546 meter_delete(struct ofproto *ofproto, uint32_t first, uint32_t last)
4547 {
4548     uint32_t mid;
4549     for (mid = first; mid <= last; ++mid) {
4550         struct meter *meter = ofproto->meters[mid];
4551         if (meter) {
4552             ofproto->meters[mid] = NULL;
4553             ofproto->ofproto_class->meter_del(ofproto,
4554                                               meter->provider_meter_id);
4555             free(meter->bands);
4556             free(meter);
4557         }
4558     }
4559 }
4560
4561 static enum ofperr
4562 handle_add_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
4563 {
4564     ofproto_meter_id provider_meter_id = { UINT32_MAX };
4565     struct meter **meterp = &ofproto->meters[mm->meter.meter_id];
4566     enum ofperr error;
4567
4568     if (*meterp) {
4569         return OFPERR_OFPMMFC_METER_EXISTS;
4570     }
4571
4572     error = ofproto->ofproto_class->meter_set(ofproto, &provider_meter_id,
4573                                               &mm->meter);
4574     if (!error) {
4575         ovs_assert(provider_meter_id.uint32 != UINT32_MAX);
4576         *meterp = meter_create(&mm->meter, provider_meter_id);
4577     }
4578     return 0;
4579 }
4580
4581 static enum ofperr
4582 handle_modify_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
4583 {
4584     struct meter *meter = ofproto->meters[mm->meter.meter_id];
4585     enum ofperr error;
4586
4587     if (!meter) {
4588         return OFPERR_OFPMMFC_UNKNOWN_METER;
4589     }
4590
4591     error = ofproto->ofproto_class->meter_set(ofproto,
4592                                               &meter->provider_meter_id,
4593                                               &mm->meter);
4594     ovs_assert(meter->provider_meter_id.uint32 != UINT32_MAX);
4595     if (!error) {
4596         meter_update(meter, &mm->meter);
4597     }
4598     return error;
4599 }
4600
4601 static enum ofperr
4602 handle_delete_meter(struct ofconn *ofconn, const struct ofp_header *oh,
4603                     struct ofputil_meter_mod *mm)
4604 {
4605     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4606     uint32_t meter_id = mm->meter.meter_id;
4607     struct rule_collection rules;
4608     enum ofperr error = 0;
4609     uint32_t first, last;
4610
4611     if (meter_id == OFPM13_ALL) {
4612         first = 1;
4613         last = ofproto->meter_features.max_meters;
4614     } else {
4615         if (!meter_id || meter_id > ofproto->meter_features.max_meters) {
4616             return 0;
4617         }
4618         first = last = meter_id;
4619     }
4620
4621     /* First delete the rules that use this meter.  If any of those rules are
4622      * currently being modified, postpone the whole operation until later. */
4623     rule_collection_init(&rules);
4624     for (meter_id = first; meter_id <= last; ++meter_id) {
4625         struct meter *meter = ofproto->meters[meter_id];
4626         if (meter && !list_is_empty(&meter->rules)) {
4627             struct rule *rule;
4628
4629             LIST_FOR_EACH (rule, meter_list_node, &meter->rules) {
4630                 if (rule->pending) {
4631                     error = OFPROTO_POSTPONE;
4632                     goto exit;
4633                 }
4634                 rule_collection_add(&rules, rule);
4635             }
4636         }
4637     }
4638     if (rules.n > 0) {
4639         delete_flows__(ofproto, ofconn, oh, &rules, OFPRR_METER_DELETE);
4640     }
4641
4642     /* Delete the meters. */
4643     meter_delete(ofproto, first, last);
4644
4645 exit:
4646     rule_collection_destroy(&rules);
4647
4648     return error;
4649 }
4650
4651 static enum ofperr
4652 handle_meter_mod(struct ofconn *ofconn, const struct ofp_header *oh)
4653 {
4654     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4655     struct ofputil_meter_mod mm;
4656     uint64_t bands_stub[256 / 8];
4657     struct ofpbuf bands;
4658     uint32_t meter_id;
4659     enum ofperr error;
4660
4661     error = reject_slave_controller(ofconn);
4662     if (error) {
4663         return error;
4664     }
4665
4666     ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
4667
4668     error = ofputil_decode_meter_mod(oh, &mm, &bands);
4669     if (error) {
4670         goto exit_free_bands;
4671     }
4672
4673     meter_id = mm.meter.meter_id;
4674
4675     if (mm.command != OFPMC13_DELETE) {
4676         /* Fails also when meters are not implemented by the provider. */
4677         if (meter_id == 0 || meter_id > OFPM13_MAX) {
4678             error = OFPERR_OFPMMFC_INVALID_METER;
4679             goto exit_free_bands;
4680         } else if (meter_id > ofproto->meter_features.max_meters) {
4681             error = OFPERR_OFPMMFC_OUT_OF_METERS;
4682             goto exit_free_bands;
4683         }
4684         if (mm.meter.n_bands > ofproto->meter_features.max_bands) {
4685             error = OFPERR_OFPMMFC_OUT_OF_BANDS;
4686             goto exit_free_bands;
4687         }
4688     }
4689
4690     switch (mm.command) {
4691     case OFPMC13_ADD:
4692         error = handle_add_meter(ofproto, &mm);
4693         break;
4694
4695     case OFPMC13_MODIFY:
4696         error = handle_modify_meter(ofproto, &mm);
4697         break;
4698
4699     case OFPMC13_DELETE:
4700         error = handle_delete_meter(ofconn, oh, &mm);
4701         break;
4702
4703     default:
4704         error = OFPERR_OFPMMFC_BAD_COMMAND;
4705         break;
4706     }
4707
4708 exit_free_bands:
4709     ofpbuf_uninit(&bands);
4710     return error;
4711 }
4712
4713 static enum ofperr
4714 handle_meter_features_request(struct ofconn *ofconn,
4715                               const struct ofp_header *request)
4716 {
4717     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4718     struct ofputil_meter_features features;
4719     struct ofpbuf *b;
4720
4721     if (ofproto->ofproto_class->meter_get_features) {
4722         ofproto->ofproto_class->meter_get_features(ofproto, &features);
4723     } else {
4724         memset(&features, 0, sizeof features);
4725     }
4726     b = ofputil_encode_meter_features_reply(&features, request);
4727
4728     ofconn_send_reply(ofconn, b);
4729     return 0;
4730 }
4731
4732 static enum ofperr
4733 handle_meter_request(struct ofconn *ofconn, const struct ofp_header *request,
4734                      enum ofptype type)
4735 {
4736     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4737     struct list replies;
4738     uint64_t bands_stub[256 / 8];
4739     struct ofpbuf bands;
4740     uint32_t meter_id, first, last;
4741
4742     ofputil_decode_meter_request(request, &meter_id);
4743
4744     if (meter_id == OFPM13_ALL) {
4745         first = 1;
4746         last = ofproto->meter_features.max_meters;
4747     } else {
4748         if (!meter_id || meter_id > ofproto->meter_features.max_meters ||
4749             !ofproto->meters[meter_id]) {
4750             return OFPERR_OFPMMFC_UNKNOWN_METER;
4751         }
4752         first = last = meter_id;
4753     }
4754
4755     ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
4756     ofpmp_init(&replies, request);
4757
4758     for (meter_id = first; meter_id <= last; ++meter_id) {
4759         struct meter *meter = ofproto->meters[meter_id];
4760         if (!meter) {
4761             continue; /* Skip non-existing meters. */
4762         }
4763         if (type == OFPTYPE_METER_STATS_REQUEST) {
4764             struct ofputil_meter_stats stats;
4765
4766             stats.meter_id = meter_id;
4767
4768             /* Provider sets the packet and byte counts, we do the rest. */
4769             stats.flow_count = list_size(&meter->rules);
4770             calc_duration(meter->created, time_msec(),
4771                           &stats.duration_sec, &stats.duration_nsec);
4772             stats.n_bands = meter->n_bands;
4773             ofpbuf_clear(&bands);
4774             stats.bands
4775                 = ofpbuf_put_uninit(&bands,
4776                                     meter->n_bands * sizeof *stats.bands);
4777
4778             if (!ofproto->ofproto_class->meter_get(ofproto,
4779                                                    meter->provider_meter_id,
4780                                                    &stats)) {
4781                 ofputil_append_meter_stats(&replies, &stats);
4782             }
4783         } else { /* type == OFPTYPE_METER_CONFIG_REQUEST */
4784             struct ofputil_meter_config config;
4785
4786             config.meter_id = meter_id;
4787             config.flags = meter->flags;
4788             config.n_bands = meter->n_bands;
4789             config.bands = meter->bands;
4790             ofputil_append_meter_config(&replies, &config);
4791         }
4792     }
4793
4794     ofconn_send_replies(ofconn, &replies);
4795     ofpbuf_uninit(&bands);
4796     return 0;
4797 }
4798
4799 static enum ofperr
4800 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
4801 {
4802     const struct ofp_header *oh = msg->data;
4803     enum ofptype type;
4804     enum ofperr error;
4805
4806     error = ofptype_decode(&type, oh);
4807     if (error) {
4808         return error;
4809     }
4810
4811     switch (type) {
4812         /* OpenFlow requests. */
4813     case OFPTYPE_ECHO_REQUEST:
4814         return handle_echo_request(ofconn, oh);
4815
4816     case OFPTYPE_FEATURES_REQUEST:
4817         return handle_features_request(ofconn, oh);
4818
4819     case OFPTYPE_GET_CONFIG_REQUEST:
4820         return handle_get_config_request(ofconn, oh);
4821
4822     case OFPTYPE_SET_CONFIG:
4823         return handle_set_config(ofconn, oh);
4824
4825     case OFPTYPE_PACKET_OUT:
4826         return handle_packet_out(ofconn, oh);
4827
4828     case OFPTYPE_PORT_MOD:
4829         return handle_port_mod(ofconn, oh);
4830
4831     case OFPTYPE_FLOW_MOD:
4832         return handle_flow_mod(ofconn, oh);
4833
4834     case OFPTYPE_METER_MOD:
4835         return handle_meter_mod(ofconn, oh);
4836
4837     case OFPTYPE_BARRIER_REQUEST:
4838         return handle_barrier_request(ofconn, oh);
4839
4840     case OFPTYPE_ROLE_REQUEST:
4841         return handle_role_request(ofconn, oh);
4842
4843         /* OpenFlow replies. */
4844     case OFPTYPE_ECHO_REPLY:
4845         return 0;
4846
4847         /* Nicira extension requests. */
4848     case OFPTYPE_FLOW_MOD_TABLE_ID:
4849         return handle_nxt_flow_mod_table_id(ofconn, oh);
4850
4851     case OFPTYPE_SET_FLOW_FORMAT:
4852         return handle_nxt_set_flow_format(ofconn, oh);
4853
4854     case OFPTYPE_SET_PACKET_IN_FORMAT:
4855         return handle_nxt_set_packet_in_format(ofconn, oh);
4856
4857     case OFPTYPE_SET_CONTROLLER_ID:
4858         return handle_nxt_set_controller_id(ofconn, oh);
4859
4860     case OFPTYPE_FLOW_AGE:
4861         /* Nothing to do. */
4862         return 0;
4863
4864     case OFPTYPE_FLOW_MONITOR_CANCEL:
4865         return handle_flow_monitor_cancel(ofconn, oh);
4866
4867     case OFPTYPE_SET_ASYNC_CONFIG:
4868         return handle_nxt_set_async_config(ofconn, oh);
4869
4870         /* Statistics requests. */
4871     case OFPTYPE_DESC_STATS_REQUEST:
4872         return handle_desc_stats_request(ofconn, oh);
4873
4874     case OFPTYPE_FLOW_STATS_REQUEST:
4875         return handle_flow_stats_request(ofconn, oh);
4876
4877     case OFPTYPE_AGGREGATE_STATS_REQUEST:
4878         return handle_aggregate_stats_request(ofconn, oh);
4879
4880     case OFPTYPE_TABLE_STATS_REQUEST:
4881         return handle_table_stats_request(ofconn, oh);
4882
4883     case OFPTYPE_PORT_STATS_REQUEST:
4884         return handle_port_stats_request(ofconn, oh);
4885
4886     case OFPTYPE_QUEUE_STATS_REQUEST:
4887         return handle_queue_stats_request(ofconn, oh);
4888
4889     case OFPTYPE_PORT_DESC_STATS_REQUEST:
4890         return handle_port_desc_stats_request(ofconn, oh);
4891
4892     case OFPTYPE_FLOW_MONITOR_STATS_REQUEST:
4893         return handle_flow_monitor_request(ofconn, oh);
4894
4895     case OFPTYPE_METER_STATS_REQUEST:
4896     case OFPTYPE_METER_CONFIG_STATS_REQUEST:
4897         return handle_meter_request(ofconn, oh, type);
4898
4899     case OFPTYPE_METER_FEATURES_STATS_REQUEST:
4900         return handle_meter_features_request(ofconn, oh);
4901
4902         /* FIXME: Change the following once they are implemented: */
4903     case OFPTYPE_QUEUE_GET_CONFIG_REQUEST:
4904     case OFPTYPE_GET_ASYNC_REQUEST:
4905     case OFPTYPE_GROUP_STATS_REQUEST:
4906     case OFPTYPE_GROUP_DESC_STATS_REQUEST:
4907     case OFPTYPE_GROUP_FEATURES_STATS_REQUEST:
4908     case OFPTYPE_TABLE_FEATURES_STATS_REQUEST:
4909         return OFPERR_OFPBRC_BAD_TYPE;
4910
4911     case OFPTYPE_HELLO:
4912     case OFPTYPE_ERROR:
4913     case OFPTYPE_FEATURES_REPLY:
4914     case OFPTYPE_GET_CONFIG_REPLY:
4915     case OFPTYPE_PACKET_IN:
4916     case OFPTYPE_FLOW_REMOVED:
4917     case OFPTYPE_PORT_STATUS:
4918     case OFPTYPE_BARRIER_REPLY:
4919     case OFPTYPE_QUEUE_GET_CONFIG_REPLY:
4920     case OFPTYPE_DESC_STATS_REPLY:
4921     case OFPTYPE_FLOW_STATS_REPLY:
4922     case OFPTYPE_QUEUE_STATS_REPLY:
4923     case OFPTYPE_PORT_STATS_REPLY:
4924     case OFPTYPE_TABLE_STATS_REPLY:
4925     case OFPTYPE_AGGREGATE_STATS_REPLY:
4926     case OFPTYPE_PORT_DESC_STATS_REPLY:
4927     case OFPTYPE_ROLE_REPLY:
4928     case OFPTYPE_FLOW_MONITOR_PAUSED:
4929     case OFPTYPE_FLOW_MONITOR_RESUMED:
4930     case OFPTYPE_FLOW_MONITOR_STATS_REPLY:
4931     case OFPTYPE_GET_ASYNC_REPLY:
4932     case OFPTYPE_GROUP_STATS_REPLY:
4933     case OFPTYPE_GROUP_DESC_STATS_REPLY:
4934     case OFPTYPE_GROUP_FEATURES_STATS_REPLY:
4935     case OFPTYPE_METER_STATS_REPLY:
4936     case OFPTYPE_METER_CONFIG_STATS_REPLY:
4937     case OFPTYPE_METER_FEATURES_STATS_REPLY:
4938     case OFPTYPE_TABLE_FEATURES_STATS_REPLY:
4939     default:
4940         return OFPERR_OFPBRC_BAD_TYPE;
4941     }
4942 }
4943
4944 static bool
4945 handle_openflow(struct ofconn *ofconn, const struct ofpbuf *ofp_msg)
4946 {
4947     int error = handle_openflow__(ofconn, ofp_msg);
4948     if (error && error != OFPROTO_POSTPONE) {
4949         ofconn_send_error(ofconn, ofp_msg->data, error);
4950     }
4951     COVERAGE_INC(ofproto_recv_openflow);
4952     return error != OFPROTO_POSTPONE;
4953 }
4954 \f
4955 /* Asynchronous operations. */
4956
4957 /* Creates and returns a new ofopgroup that is not associated with any
4958  * OpenFlow connection.
4959  *
4960  * The caller should add operations to the returned group with
4961  * ofoperation_create() and then submit it with ofopgroup_submit(). */
4962 static struct ofopgroup *
4963 ofopgroup_create_unattached(struct ofproto *ofproto)
4964 {
4965     struct ofopgroup *group = xzalloc(sizeof *group);
4966     group->ofproto = ofproto;
4967     list_init(&group->ofproto_node);
4968     list_init(&group->ops);
4969     list_init(&group->ofconn_node);
4970     return group;
4971 }
4972
4973 /* Creates and returns a new ofopgroup for 'ofproto'.
4974  *
4975  * If 'ofconn' is NULL, the new ofopgroup is not associated with any OpenFlow
4976  * connection.  The 'request' and 'buffer_id' arguments are ignored.
4977  *
4978  * If 'ofconn' is nonnull, then the new ofopgroup is associated with 'ofconn'.
4979  * If the ofopgroup eventually fails, then the error reply will include
4980  * 'request'.  If the ofopgroup eventually succeeds, then the packet with
4981  * buffer id 'buffer_id' on 'ofconn' will be sent by 'ofconn''s ofproto.
4982  *
4983  * The caller should add operations to the returned group with
4984  * ofoperation_create() and then submit it with ofopgroup_submit(). */
4985 static struct ofopgroup *
4986 ofopgroup_create(struct ofproto *ofproto, struct ofconn *ofconn,
4987                  const struct ofp_header *request, uint32_t buffer_id)
4988 {
4989     struct ofopgroup *group = ofopgroup_create_unattached(ofproto);
4990     if (ofconn) {
4991         size_t request_len = ntohs(request->length);
4992
4993         ovs_assert(ofconn_get_ofproto(ofconn) == ofproto);
4994
4995         ofconn_add_opgroup(ofconn, &group->ofconn_node);
4996         group->ofconn = ofconn;
4997         group->request = xmemdup(request, MIN(request_len, 64));
4998         group->buffer_id = buffer_id;
4999     }
5000     return group;
5001 }
5002
5003 /* Submits 'group' for processing.
5004  *
5005  * If 'group' contains no operations (e.g. none were ever added, or all of the
5006  * ones that were added completed synchronously), then it is destroyed
5007  * immediately.  Otherwise it is added to the ofproto's list of pending
5008  * groups. */
5009 static void
5010 ofopgroup_submit(struct ofopgroup *group)
5011 {
5012     if (!group->n_running) {
5013         ofopgroup_complete(group);
5014     } else {
5015         list_push_back(&group->ofproto->pending, &group->ofproto_node);
5016         group->ofproto->n_pending++;
5017     }
5018 }
5019
5020 static void
5021 ofopgroup_complete(struct ofopgroup *group)
5022 {
5023     struct ofproto *ofproto = group->ofproto;
5024
5025     struct ofconn *abbrev_ofconn;
5026     ovs_be32 abbrev_xid;
5027
5028     struct ofoperation *op, *next_op;
5029     int error;
5030
5031     ovs_assert(!group->n_running);
5032
5033     error = 0;
5034     LIST_FOR_EACH (op, group_node, &group->ops) {
5035         if (op->error) {
5036             error = op->error;
5037             break;
5038         }
5039     }
5040
5041     if (!error && group->ofconn && group->buffer_id != UINT32_MAX) {
5042         LIST_FOR_EACH (op, group_node, &group->ops) {
5043             if (op->type != OFOPERATION_DELETE) {
5044                 struct ofpbuf *packet;
5045                 ofp_port_t in_port;
5046
5047                 error = ofconn_pktbuf_retrieve(group->ofconn, group->buffer_id,
5048                                                &packet, &in_port);
5049                 if (packet) {
5050                     ovs_assert(!error);
5051                     error = rule_execute(op->rule, in_port, packet);
5052                 }
5053                 break;
5054             }
5055         }
5056     }
5057
5058     if (!error && !list_is_empty(&group->ofconn_node)) {
5059         abbrev_ofconn = group->ofconn;
5060         abbrev_xid = group->request->xid;
5061     } else {
5062         abbrev_ofconn = NULL;
5063         abbrev_xid = htonl(0);
5064     }
5065     LIST_FOR_EACH_SAFE (op, next_op, group_node, &group->ops) {
5066         struct rule *rule = op->rule;
5067
5068         /* We generally want to report the change to active OpenFlow flow
5069            monitors (e.g. NXST_FLOW_MONITOR).  There are three exceptions:
5070
5071               - The operation failed.
5072
5073               - The affected rule is not visible to controllers.
5074
5075               - The operation's only effect was to update rule->modified. */
5076         if (!(op->error
5077               || ofproto_rule_is_hidden(rule)
5078               || (op->type == OFOPERATION_MODIFY
5079                   && op->ofpacts
5080                   && rule->flow_cookie == op->flow_cookie))) {
5081             /* Check that we can just cast from ofoperation_type to
5082              * nx_flow_update_event. */
5083             enum nx_flow_update_event event_type;
5084
5085             switch (op->type) {
5086             case OFOPERATION_ADD:
5087             case OFOPERATION_REPLACE:
5088                 event_type = NXFME_ADDED;
5089                 break;
5090
5091             case OFOPERATION_DELETE:
5092                 event_type = NXFME_DELETED;
5093                 break;
5094
5095             case OFOPERATION_MODIFY:
5096                 event_type = NXFME_MODIFIED;
5097                 break;
5098
5099             default:
5100                 NOT_REACHED();
5101             }
5102
5103             ofmonitor_report(ofproto->connmgr, rule, event_type,
5104                              op->reason, abbrev_ofconn, abbrev_xid);
5105         }
5106
5107         rule->pending = NULL;
5108
5109         switch (op->type) {
5110         case OFOPERATION_ADD:
5111             if (!op->error) {
5112                 uint16_t vid_mask;
5113
5114                 vid_mask = minimask_get_vid_mask(&rule->cr.match.mask);
5115                 if (vid_mask == VLAN_VID_MASK) {
5116                     if (ofproto->vlan_bitmap) {
5117                         uint16_t vid = miniflow_get_vid(&rule->cr.match.flow);
5118                         if (!bitmap_is_set(ofproto->vlan_bitmap, vid)) {
5119                             bitmap_set1(ofproto->vlan_bitmap, vid);
5120                             ofproto->vlans_changed = true;
5121                         }
5122                     } else {
5123                         ofproto->vlans_changed = true;
5124                     }
5125                 }
5126             } else {
5127                 ovs_rwlock_wrlock(&rule->rwlock);
5128                 oftable_remove_rule(rule);
5129                 ofproto_rule_destroy(rule);
5130             }
5131             break;
5132
5133         case OFOPERATION_DELETE:
5134             ovs_assert(!op->error);
5135             ofproto_rule_destroy(rule);
5136             op->rule = NULL;
5137             break;
5138
5139         case OFOPERATION_MODIFY:
5140         case OFOPERATION_REPLACE:
5141             if (!op->error) {
5142                 long long int now = time_msec();
5143
5144                 rule->modified = now;
5145                 if (op->type == OFOPERATION_REPLACE) {
5146                     rule->created = rule->used = now;
5147                 }
5148             } else {
5149                 ofproto_rule_change_cookie(ofproto, rule, op->flow_cookie);
5150                 ovs_mutex_lock(&rule->timeout_mutex);
5151                 rule->idle_timeout = op->idle_timeout;
5152                 rule->hard_timeout = op->hard_timeout;
5153                 ovs_mutex_unlock(&rule->timeout_mutex);
5154                 if (op->ofpacts) {
5155                     free(rule->ofpacts);
5156
5157                     ovs_rwlock_wrlock(&rule->rwlock);
5158                     rule->ofpacts = op->ofpacts;
5159                     rule->ofpacts_len = op->ofpacts_len;
5160                     ovs_rwlock_unlock(&rule->rwlock);
5161
5162                     op->ofpacts = NULL;
5163                     op->ofpacts_len = 0;
5164                 }
5165                 rule->send_flow_removed = op->send_flow_removed;
5166             }
5167             break;
5168
5169         default:
5170             NOT_REACHED();
5171         }
5172
5173         ofoperation_destroy(op);
5174     }
5175
5176     ofmonitor_flush(ofproto->connmgr);
5177
5178     if (!list_is_empty(&group->ofproto_node)) {
5179         ovs_assert(ofproto->n_pending > 0);
5180         ofproto->n_pending--;
5181         list_remove(&group->ofproto_node);
5182     }
5183     if (!list_is_empty(&group->ofconn_node)) {
5184         list_remove(&group->ofconn_node);
5185         if (error) {
5186             ofconn_send_error(group->ofconn, group->request, error);
5187         }
5188         connmgr_retry(ofproto->connmgr);
5189     }
5190     free(group->request);
5191     free(group);
5192 }
5193
5194 /* Initiates a new operation on 'rule', of the specified 'type', within
5195  * 'group'.  Prior to calling, 'rule' must not have any pending operation.
5196  *
5197  * For a 'type' of OFOPERATION_DELETE, 'reason' should specify the reason that
5198  * the flow is being deleted.  For other 'type's, 'reason' is ignored (use 0).
5199  *
5200  * Returns the newly created ofoperation (which is also available as
5201  * rule->pending). */
5202 static struct ofoperation *
5203 ofoperation_create(struct ofopgroup *group, struct rule *rule,
5204                    enum ofoperation_type type,
5205                    enum ofp_flow_removed_reason reason)
5206 {
5207     struct ofproto *ofproto = group->ofproto;
5208     struct ofoperation *op;
5209
5210     ovs_assert(!rule->pending);
5211
5212     op = rule->pending = xzalloc(sizeof *op);
5213     op->group = group;
5214     list_push_back(&group->ops, &op->group_node);
5215     op->rule = rule;
5216     op->type = type;
5217     op->reason = reason;
5218     op->flow_cookie = rule->flow_cookie;
5219     ovs_mutex_lock(&rule->timeout_mutex);
5220     op->idle_timeout = rule->idle_timeout;
5221     op->hard_timeout = rule->hard_timeout;
5222     ovs_mutex_unlock(&rule->timeout_mutex);
5223     op->send_flow_removed = rule->send_flow_removed;
5224
5225     group->n_running++;
5226
5227     if (type == OFOPERATION_DELETE) {
5228         hmap_insert(&ofproto->deletions, &op->hmap_node,
5229                     cls_rule_hash(&rule->cr, rule->table_id));
5230     }
5231
5232     return op;
5233 }
5234
5235 static void
5236 ofoperation_destroy(struct ofoperation *op)
5237 {
5238     struct ofopgroup *group = op->group;
5239
5240     if (op->rule) {
5241         op->rule->pending = NULL;
5242     }
5243     if (op->type == OFOPERATION_DELETE) {
5244         hmap_remove(&group->ofproto->deletions, &op->hmap_node);
5245     }
5246     list_remove(&op->group_node);
5247     free(op->ofpacts);
5248     free(op);
5249 }
5250
5251 /* Indicates that 'op' completed with status 'error', which is either 0 to
5252  * indicate success or an OpenFlow error code on failure.
5253  *
5254  * If 'error' is 0, indicating success, the operation will be committed
5255  * permanently to the flow table.
5256  *
5257  * If 'error' is nonzero, then generally the operation will be rolled back:
5258  *
5259  *   - If 'op' is an "add flow" operation, ofproto removes the new rule or
5260  *     restores the original rule.  The caller must have uninitialized any
5261  *     derived state in the new rule, as in step 5 of in the "Life Cycle" in
5262  *     ofproto/ofproto-provider.h.  ofoperation_complete() performs steps 6 and
5263  *     and 7 for the new rule, calling its ->rule_dealloc() function.
5264  *
5265  *   - If 'op' is a "modify flow" operation, ofproto restores the original
5266  *     actions.
5267  *
5268  *   - 'op' must not be a "delete flow" operation.  Removing a rule is not
5269  *     allowed to fail.  It must always succeed.
5270  *
5271  * Please see the large comment in ofproto/ofproto-provider.h titled
5272  * "Asynchronous Operation Support" for more information. */
5273 void
5274 ofoperation_complete(struct ofoperation *op, enum ofperr error)
5275 {
5276     struct ofopgroup *group = op->group;
5277
5278     ovs_assert(op->rule->pending == op);
5279     ovs_assert(group->n_running > 0);
5280     ovs_assert(!error || op->type != OFOPERATION_DELETE);
5281
5282     op->error = error;
5283     if (!--group->n_running && !list_is_empty(&group->ofproto_node)) {
5284         ofopgroup_complete(group);
5285     }
5286 }
5287 \f
5288 static uint64_t
5289 pick_datapath_id(const struct ofproto *ofproto)
5290 {
5291     const struct ofport *port;
5292
5293     port = ofproto_get_port(ofproto, OFPP_LOCAL);
5294     if (port) {
5295         uint8_t ea[ETH_ADDR_LEN];
5296         int error;
5297
5298         error = netdev_get_etheraddr(port->netdev, ea);
5299         if (!error) {
5300             return eth_addr_to_uint64(ea);
5301         }
5302         VLOG_WARN("%s: could not get MAC address for %s (%s)",
5303                   ofproto->name, netdev_get_name(port->netdev),
5304                   ovs_strerror(error));
5305     }
5306     return ofproto->fallback_dpid;
5307 }
5308
5309 static uint64_t
5310 pick_fallback_dpid(void)
5311 {
5312     uint8_t ea[ETH_ADDR_LEN];
5313     eth_addr_nicira_random(ea);
5314     return eth_addr_to_uint64(ea);
5315 }
5316 \f
5317 /* Table overflow policy. */
5318
5319 /* Chooses and updates 'rulep' with a rule to evict from 'table'.  Sets 'rulep'
5320  * to NULL if the table is not configured to evict rules or if the table
5321  * contains no evictable rules.  (Rules with a readlock on their evict rwlock,
5322  * or with no timeouts are not evictable.) */
5323 static bool
5324 choose_rule_to_evict(struct oftable *table, struct rule **rulep)
5325 {
5326     struct eviction_group *evg;
5327
5328     *rulep = NULL;
5329     if (!table->eviction_fields) {
5330         return false;
5331     }
5332
5333     /* In the common case, the outer and inner loops here will each be entered
5334      * exactly once:
5335      *
5336      *   - The inner loop normally "return"s in its first iteration.  If the
5337      *     eviction group has any evictable rules, then it always returns in
5338      *     some iteration.
5339      *
5340      *   - The outer loop only iterates more than once if the largest eviction
5341      *     group has no evictable rules.
5342      *
5343      *   - The outer loop can exit only if table's 'max_flows' is all filled up
5344      *     by unevictable rules. */
5345     HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
5346         struct rule *rule;
5347
5348         HEAP_FOR_EACH (rule, evg_node, &evg->rules) {
5349             if (!ovs_rwlock_trywrlock(&rule->rwlock)) {
5350                 *rulep = rule;
5351                 return true;
5352             }
5353         }
5354     }
5355
5356     return false;
5357 }
5358
5359 /* Searches 'ofproto' for tables that have more flows than their configured
5360  * maximum and that have flow eviction enabled, and evicts as many flows as
5361  * necessary and currently feasible from them.
5362  *
5363  * This triggers only when an OpenFlow table has N flows in it and then the
5364  * client configures a maximum number of flows less than N. */
5365 static void
5366 ofproto_evict(struct ofproto *ofproto)
5367 {
5368     struct ofopgroup *group;
5369     struct oftable *table;
5370
5371     group = ofopgroup_create_unattached(ofproto);
5372     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
5373         while (table->eviction_fields) {
5374             struct rule *rule;
5375             size_t n_rules;
5376
5377             ovs_rwlock_rdlock(&table->cls.rwlock);
5378             n_rules = classifier_count(&table->cls);
5379             ovs_rwlock_unlock(&table->cls.rwlock);
5380
5381             if (n_rules <= table->max_flows) {
5382                 break;
5383             }
5384
5385             if (!choose_rule_to_evict(table, &rule)) {
5386                 break;
5387             }
5388
5389             if (rule->pending) {
5390                 ovs_rwlock_unlock(&rule->rwlock);
5391                 break;
5392             }
5393
5394             ofoperation_create(group, rule,
5395                                OFOPERATION_DELETE, OFPRR_EVICTION);
5396             oftable_remove_rule(rule);
5397             ofproto->ofproto_class->rule_delete(rule);
5398         }
5399     }
5400     ofopgroup_submit(group);
5401 }
5402 \f
5403 /* Eviction groups. */
5404
5405 /* Returns the priority to use for an eviction_group that contains 'n_rules'
5406  * rules.  The priority contains low-order random bits to ensure that eviction
5407  * groups with the same number of rules are prioritized randomly. */
5408 static uint32_t
5409 eviction_group_priority(size_t n_rules)
5410 {
5411     uint16_t size = MIN(UINT16_MAX, n_rules);
5412     return (size << 16) | random_uint16();
5413 }
5414
5415 /* Updates 'evg', an eviction_group within 'table', following a change that
5416  * adds or removes rules in 'evg'. */
5417 static void
5418 eviction_group_resized(struct oftable *table, struct eviction_group *evg)
5419 {
5420     heap_change(&table->eviction_groups_by_size, &evg->size_node,
5421                 eviction_group_priority(heap_count(&evg->rules)));
5422 }
5423
5424 /* Destroys 'evg', an eviction_group within 'table':
5425  *
5426  *   - Removes all the rules, if any, from 'evg'.  (It doesn't destroy the
5427  *     rules themselves, just removes them from the eviction group.)
5428  *
5429  *   - Removes 'evg' from 'table'.
5430  *
5431  *   - Frees 'evg'. */
5432 static void
5433 eviction_group_destroy(struct oftable *table, struct eviction_group *evg)
5434 {
5435     while (!heap_is_empty(&evg->rules)) {
5436         struct rule *rule;
5437
5438         rule = CONTAINER_OF(heap_pop(&evg->rules), struct rule, evg_node);
5439         rule->eviction_group = NULL;
5440     }
5441     hmap_remove(&table->eviction_groups_by_id, &evg->id_node);
5442     heap_remove(&table->eviction_groups_by_size, &evg->size_node);
5443     heap_destroy(&evg->rules);
5444     free(evg);
5445 }
5446
5447 /* Removes 'rule' from its eviction group, if any. */
5448 static void
5449 eviction_group_remove_rule(struct rule *rule)
5450 {
5451     if (rule->eviction_group) {
5452         struct oftable *table = &rule->ofproto->tables[rule->table_id];
5453         struct eviction_group *evg = rule->eviction_group;
5454
5455         rule->eviction_group = NULL;
5456         heap_remove(&evg->rules, &rule->evg_node);
5457         if (heap_is_empty(&evg->rules)) {
5458             eviction_group_destroy(table, evg);
5459         } else {
5460             eviction_group_resized(table, evg);
5461         }
5462     }
5463 }
5464
5465 /* Hashes the 'rule''s values for the eviction_fields of 'rule''s table, and
5466  * returns the hash value. */
5467 static uint32_t
5468 eviction_group_hash_rule(struct rule *rule)
5469 {
5470     struct oftable *table = &rule->ofproto->tables[rule->table_id];
5471     const struct mf_subfield *sf;
5472     struct flow flow;
5473     uint32_t hash;
5474
5475     hash = table->eviction_group_id_basis;
5476     miniflow_expand(&rule->cr.match.flow, &flow);
5477     for (sf = table->eviction_fields;
5478          sf < &table->eviction_fields[table->n_eviction_fields];
5479          sf++)
5480     {
5481         if (mf_are_prereqs_ok(sf->field, &flow)) {
5482             union mf_value value;
5483
5484             mf_get_value(sf->field, &flow, &value);
5485             if (sf->ofs) {
5486                 bitwise_zero(&value, sf->field->n_bytes, 0, sf->ofs);
5487             }
5488             if (sf->ofs + sf->n_bits < sf->field->n_bytes * 8) {
5489                 unsigned int start = sf->ofs + sf->n_bits;
5490                 bitwise_zero(&value, sf->field->n_bytes, start,
5491                              sf->field->n_bytes * 8 - start);
5492             }
5493             hash = hash_bytes(&value, sf->field->n_bytes, hash);
5494         } else {
5495             hash = hash_int(hash, 0);
5496         }
5497     }
5498
5499     return hash;
5500 }
5501
5502 /* Returns an eviction group within 'table' with the given 'id', creating one
5503  * if necessary. */
5504 static struct eviction_group *
5505 eviction_group_find(struct oftable *table, uint32_t id)
5506 {
5507     struct eviction_group *evg;
5508
5509     HMAP_FOR_EACH_WITH_HASH (evg, id_node, id, &table->eviction_groups_by_id) {
5510         return evg;
5511     }
5512
5513     evg = xmalloc(sizeof *evg);
5514     hmap_insert(&table->eviction_groups_by_id, &evg->id_node, id);
5515     heap_insert(&table->eviction_groups_by_size, &evg->size_node,
5516                 eviction_group_priority(0));
5517     heap_init(&evg->rules);
5518
5519     return evg;
5520 }
5521
5522 /* Returns an eviction priority for 'rule'.  The return value should be
5523  * interpreted so that higher priorities make a rule more attractive candidates
5524  * for eviction. */
5525 static uint32_t
5526 rule_eviction_priority(struct rule *rule)
5527 {
5528     long long int hard_expiration;
5529     long long int idle_expiration;
5530     long long int expiration;
5531     uint32_t expiration_offset;
5532
5533     /* Calculate time of expiration. */
5534     ovs_mutex_lock(&rule->timeout_mutex);
5535     hard_expiration = (rule->hard_timeout
5536                        ? rule->modified + rule->hard_timeout * 1000
5537                        : LLONG_MAX);
5538     idle_expiration = (rule->idle_timeout
5539                        ? rule->used + rule->idle_timeout * 1000
5540                        : LLONG_MAX);
5541     expiration = MIN(hard_expiration, idle_expiration);
5542     ovs_mutex_unlock(&rule->timeout_mutex);
5543     if (expiration == LLONG_MAX) {
5544         return 0;
5545     }
5546
5547     /* Calculate the time of expiration as a number of (approximate) seconds
5548      * after program startup.
5549      *
5550      * This should work OK for program runs that last UINT32_MAX seconds or
5551      * less.  Therefore, please restart OVS at least once every 136 years. */
5552     expiration_offset = (expiration >> 10) - (time_boot_msec() >> 10);
5553
5554     /* Invert the expiration offset because we're using a max-heap. */
5555     return UINT32_MAX - expiration_offset;
5556 }
5557
5558 /* Adds 'rule' to an appropriate eviction group for its oftable's
5559  * configuration.  Does nothing if 'rule''s oftable doesn't have eviction
5560  * enabled, or if 'rule' is a permanent rule (one that will never expire on its
5561  * own).
5562  *
5563  * The caller must ensure that 'rule' is not already in an eviction group. */
5564 static void
5565 eviction_group_add_rule(struct rule *rule)
5566 {
5567     struct ofproto *ofproto = rule->ofproto;
5568     struct oftable *table = &ofproto->tables[rule->table_id];
5569     bool has_timeout;
5570
5571     ovs_mutex_lock(&rule->timeout_mutex);
5572     has_timeout = rule->hard_timeout || rule->idle_timeout;
5573     ovs_mutex_unlock(&rule->timeout_mutex);
5574
5575     if (table->eviction_fields && has_timeout) {
5576         struct eviction_group *evg;
5577
5578         evg = eviction_group_find(table, eviction_group_hash_rule(rule));
5579
5580         rule->eviction_group = evg;
5581         heap_insert(&evg->rules, &rule->evg_node,
5582                     rule_eviction_priority(rule));
5583         eviction_group_resized(table, evg);
5584     }
5585 }
5586 \f
5587 /* oftables. */
5588
5589 /* Initializes 'table'. */
5590 static void
5591 oftable_init(struct oftable *table)
5592 {
5593     memset(table, 0, sizeof *table);
5594     classifier_init(&table->cls);
5595     table->max_flows = UINT_MAX;
5596 }
5597
5598 /* Destroys 'table', including its classifier and eviction groups.
5599  *
5600  * The caller is responsible for freeing 'table' itself. */
5601 static void
5602 oftable_destroy(struct oftable *table)
5603 {
5604     ovs_rwlock_rdlock(&table->cls.rwlock);
5605     ovs_assert(classifier_is_empty(&table->cls));
5606     ovs_rwlock_unlock(&table->cls.rwlock);
5607     oftable_disable_eviction(table);
5608     classifier_destroy(&table->cls);
5609     free(table->name);
5610 }
5611
5612 /* Changes the name of 'table' to 'name'.  If 'name' is NULL or the empty
5613  * string, then 'table' will use its default name.
5614  *
5615  * This only affects the name exposed for a table exposed through the OpenFlow
5616  * OFPST_TABLE (as printed by "ovs-ofctl dump-tables"). */
5617 static void
5618 oftable_set_name(struct oftable *table, const char *name)
5619 {
5620     if (name && name[0]) {
5621         int len = strnlen(name, OFP_MAX_TABLE_NAME_LEN);
5622         if (!table->name || strncmp(name, table->name, len)) {
5623             free(table->name);
5624             table->name = xmemdup0(name, len);
5625         }
5626     } else {
5627         free(table->name);
5628         table->name = NULL;
5629     }
5630 }
5631
5632 /* oftables support a choice of two policies when adding a rule would cause the
5633  * number of flows in the table to exceed the configured maximum number: either
5634  * they can refuse to add the new flow or they can evict some existing flow.
5635  * This function configures the former policy on 'table'. */
5636 static void
5637 oftable_disable_eviction(struct oftable *table)
5638 {
5639     if (table->eviction_fields) {
5640         struct eviction_group *evg, *next;
5641
5642         HMAP_FOR_EACH_SAFE (evg, next, id_node,
5643                             &table->eviction_groups_by_id) {
5644             eviction_group_destroy(table, evg);
5645         }
5646         hmap_destroy(&table->eviction_groups_by_id);
5647         heap_destroy(&table->eviction_groups_by_size);
5648
5649         free(table->eviction_fields);
5650         table->eviction_fields = NULL;
5651         table->n_eviction_fields = 0;
5652     }
5653 }
5654
5655 /* oftables support a choice of two policies when adding a rule would cause the
5656  * number of flows in the table to exceed the configured maximum number: either
5657  * they can refuse to add the new flow or they can evict some existing flow.
5658  * This function configures the latter policy on 'table', with fairness based
5659  * on the values of the 'n_fields' fields specified in 'fields'.  (Specifying
5660  * 'n_fields' as 0 disables fairness.) */
5661 static void
5662 oftable_enable_eviction(struct oftable *table,
5663                         const struct mf_subfield *fields, size_t n_fields)
5664 {
5665     struct cls_cursor cursor;
5666     struct rule *rule;
5667
5668     if (table->eviction_fields
5669         && n_fields == table->n_eviction_fields
5670         && (!n_fields
5671             || !memcmp(fields, table->eviction_fields,
5672                        n_fields * sizeof *fields))) {
5673         /* No change. */
5674         return;
5675     }
5676
5677     oftable_disable_eviction(table);
5678
5679     table->n_eviction_fields = n_fields;
5680     table->eviction_fields = xmemdup(fields, n_fields * sizeof *fields);
5681
5682     table->eviction_group_id_basis = random_uint32();
5683     hmap_init(&table->eviction_groups_by_id);
5684     heap_init(&table->eviction_groups_by_size);
5685
5686     ovs_rwlock_rdlock(&table->cls.rwlock);
5687     cls_cursor_init(&cursor, &table->cls, NULL);
5688     CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
5689         eviction_group_add_rule(rule);
5690     }
5691     ovs_rwlock_unlock(&table->cls.rwlock);
5692 }
5693
5694 /* Removes 'rule' from the oftable that contains it. */
5695 static void
5696 oftable_remove_rule__(struct ofproto *ofproto, struct classifier *cls,
5697                       struct rule *rule)
5698     OVS_REQ_WRLOCK(cls->rwlock) OVS_RELEASES(rule->rwlock)
5699 {
5700     classifier_remove(cls, &rule->cr);
5701     cookies_remove(ofproto, rule);
5702     eviction_group_remove_rule(rule);
5703     ovs_mutex_lock(&ofproto->expirable_mutex);
5704     if (!list_is_empty(&rule->expirable)) {
5705         list_remove(&rule->expirable);
5706     }
5707     ovs_mutex_unlock(&ofproto->expirable_mutex);
5708     if (!list_is_empty(&rule->meter_list_node)) {
5709         list_remove(&rule->meter_list_node);
5710         list_init(&rule->meter_list_node);
5711     }
5712     ovs_rwlock_unlock(&rule->rwlock);
5713 }
5714
5715 static void
5716 oftable_remove_rule(struct rule *rule)
5717 {
5718     struct ofproto *ofproto = rule->ofproto;
5719     struct oftable *table = &ofproto->tables[rule->table_id];
5720
5721     ovs_rwlock_wrlock(&table->cls.rwlock);
5722     oftable_remove_rule__(ofproto, &table->cls, rule);
5723     ovs_rwlock_unlock(&table->cls.rwlock);
5724 }
5725
5726 /* Inserts 'rule' into its oftable, which must not already contain any rule for
5727  * the same cls_rule. */
5728 static void
5729 oftable_insert_rule(struct rule *rule)
5730 {
5731     struct ofproto *ofproto = rule->ofproto;
5732     struct oftable *table = &ofproto->tables[rule->table_id];
5733     bool may_expire;
5734
5735     ovs_mutex_lock(&rule->timeout_mutex);
5736     may_expire = rule->hard_timeout || rule->idle_timeout;
5737     ovs_mutex_unlock(&rule->timeout_mutex);
5738
5739     if (may_expire) {
5740         ovs_mutex_lock(&ofproto->expirable_mutex);
5741         list_insert(&ofproto->expirable, &rule->expirable);
5742         ovs_mutex_unlock(&ofproto->expirable_mutex);
5743     }
5744     cookies_insert(ofproto, rule);
5745     if (rule->meter_id) {
5746         struct meter *meter = ofproto->meters[rule->meter_id];
5747         list_insert(&meter->rules, &rule->meter_list_node);
5748     }
5749     ovs_rwlock_wrlock(&table->cls.rwlock);
5750     classifier_insert(&table->cls, &rule->cr);
5751     ovs_rwlock_unlock(&table->cls.rwlock);
5752     eviction_group_add_rule(rule);
5753 }
5754 \f
5755 /* unixctl commands. */
5756
5757 struct ofproto *
5758 ofproto_lookup(const char *name)
5759 {
5760     struct ofproto *ofproto;
5761
5762     HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
5763                              &all_ofprotos) {
5764         if (!strcmp(ofproto->name, name)) {
5765             return ofproto;
5766         }
5767     }
5768     return NULL;
5769 }
5770
5771 static void
5772 ofproto_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED,
5773                      const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5774 {
5775     struct ofproto *ofproto;
5776     struct ds results;
5777
5778     ds_init(&results);
5779     HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
5780         ds_put_format(&results, "%s\n", ofproto->name);
5781     }
5782     unixctl_command_reply(conn, ds_cstr(&results));
5783     ds_destroy(&results);
5784 }
5785
5786 static void
5787 ofproto_unixctl_init(void)
5788 {
5789     static bool registered;
5790     if (registered) {
5791         return;
5792     }
5793     registered = true;
5794
5795     unixctl_command_register("ofproto/list", "", 0, 0,
5796                              ofproto_unixctl_list, NULL);
5797 }
5798 \f
5799 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
5800  *
5801  * This is deprecated.  It is only for compatibility with broken device drivers
5802  * in old versions of Linux that do not properly support VLANs when VLAN
5803  * devices are not used.  When broken device drivers are no longer in
5804  * widespread use, we will delete these interfaces. */
5805
5806 /* Sets a 1-bit in the 4096-bit 'vlan_bitmap' for each VLAN ID that is matched
5807  * (exactly) by an OpenFlow rule in 'ofproto'. */
5808 void
5809 ofproto_get_vlan_usage(struct ofproto *ofproto, unsigned long int *vlan_bitmap)
5810 {
5811     const struct oftable *oftable;
5812
5813     free(ofproto->vlan_bitmap);
5814     ofproto->vlan_bitmap = bitmap_allocate(4096);
5815     ofproto->vlans_changed = false;
5816
5817     OFPROTO_FOR_EACH_TABLE (oftable, ofproto) {
5818         const struct cls_table *table;
5819
5820         HMAP_FOR_EACH (table, hmap_node, &oftable->cls.tables) {
5821             if (minimask_get_vid_mask(&table->mask) == VLAN_VID_MASK) {
5822                 const struct cls_rule *rule;
5823
5824                 HMAP_FOR_EACH (rule, hmap_node, &table->rules) {
5825                     uint16_t vid = miniflow_get_vid(&rule->match.flow);
5826                     bitmap_set1(vlan_bitmap, vid);
5827                     bitmap_set1(ofproto->vlan_bitmap, vid);
5828                 }
5829             }
5830         }
5831     }
5832 }
5833
5834 /* Returns true if new VLANs have come into use by the flow table since the
5835  * last call to ofproto_get_vlan_usage().
5836  *
5837  * We don't track when old VLANs stop being used. */
5838 bool
5839 ofproto_has_vlan_usage_changed(const struct ofproto *ofproto)
5840 {
5841     return ofproto->vlans_changed;
5842 }
5843
5844 /* Configures a VLAN splinter binding between the ports identified by OpenFlow
5845  * port numbers 'vlandev_ofp_port' and 'realdev_ofp_port'.  If
5846  * 'realdev_ofp_port' is nonzero, then the VLAN device is enslaved to the real
5847  * device as a VLAN splinter for VLAN ID 'vid'.  If 'realdev_ofp_port' is zero,
5848  * then the VLAN device is un-enslaved. */
5849 int
5850 ofproto_port_set_realdev(struct ofproto *ofproto, ofp_port_t vlandev_ofp_port,
5851                          ofp_port_t realdev_ofp_port, int vid)
5852 {
5853     struct ofport *ofport;
5854     int error;
5855
5856     ovs_assert(vlandev_ofp_port != realdev_ofp_port);
5857
5858     ofport = ofproto_get_port(ofproto, vlandev_ofp_port);
5859     if (!ofport) {
5860         VLOG_WARN("%s: cannot set realdev on nonexistent port %"PRIu16,
5861                   ofproto->name, vlandev_ofp_port);
5862         return EINVAL;
5863     }
5864
5865     if (!ofproto->ofproto_class->set_realdev) {
5866         if (!vlandev_ofp_port) {
5867             return 0;
5868         }
5869         VLOG_WARN("%s: vlan splinters not supported", ofproto->name);
5870         return EOPNOTSUPP;
5871     }
5872
5873     error = ofproto->ofproto_class->set_realdev(ofport, realdev_ofp_port, vid);
5874     if (error) {
5875         VLOG_WARN("%s: setting realdev on port %"PRIu16" (%s) failed (%s)",
5876                   ofproto->name, vlandev_ofp_port,
5877                   netdev_get_name(ofport->netdev), ovs_strerror(error));
5878     }
5879     return error;
5880 }