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