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