ofproto: Disable STP when unregistering a port.
[sliver-openvswitch.git] / ofproto / ofproto.c
1 /*
2  * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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 "byte-order.h"
25 #include "classifier.h"
26 #include "connmgr.h"
27 #include "coverage.h"
28 #include "dynamic-string.h"
29 #include "hash.h"
30 #include "hmap.h"
31 #include "netdev.h"
32 #include "nx-match.h"
33 #include "ofp-print.h"
34 #include "ofp-util.h"
35 #include "ofpbuf.h"
36 #include "ofproto-provider.h"
37 #include "openflow/nicira-ext.h"
38 #include "openflow/openflow.h"
39 #include "packets.h"
40 #include "pinsched.h"
41 #include "pktbuf.h"
42 #include "poll-loop.h"
43 #include "shash.h"
44 #include "sset.h"
45 #include "timeval.h"
46 #include "unaligned.h"
47 #include "unixctl.h"
48 #include "vlog.h"
49
50 VLOG_DEFINE_THIS_MODULE(ofproto);
51
52 COVERAGE_DEFINE(ofproto_error);
53 COVERAGE_DEFINE(ofproto_flush);
54 COVERAGE_DEFINE(ofproto_no_packet_in);
55 COVERAGE_DEFINE(ofproto_packet_out);
56 COVERAGE_DEFINE(ofproto_queue_req);
57 COVERAGE_DEFINE(ofproto_recv_openflow);
58 COVERAGE_DEFINE(ofproto_reinit_ports);
59 COVERAGE_DEFINE(ofproto_uninstallable);
60 COVERAGE_DEFINE(ofproto_update_port);
61
62 enum ofproto_state {
63     S_OPENFLOW,                 /* Processing OpenFlow commands. */
64     S_FLUSH,                    /* Deleting all flow table rules. */
65 };
66
67 enum ofoperation_type {
68     OFOPERATION_ADD,
69     OFOPERATION_DELETE,
70     OFOPERATION_MODIFY
71 };
72
73 /* A single OpenFlow request can execute any number of operations.  The
74  * ofopgroup maintain OpenFlow state common to all of the operations, e.g. the
75  * ofconn to which an error reply should be sent if necessary.
76  *
77  * ofproto initiates some operations internally.  These operations are still
78  * assigned to groups but will not have an associated ofconn. */
79 struct ofopgroup {
80     struct ofproto *ofproto;    /* Owning ofproto. */
81     struct list ofproto_node;   /* In ofproto's "pending" list. */
82     struct list ops;            /* List of "struct ofoperation"s. */
83
84     /* Data needed to send OpenFlow reply on failure or to send a buffered
85      * packet on success.
86      *
87      * If list_is_empty(ofconn_node) then this ofopgroup never had an
88      * associated ofconn or its ofconn's connection dropped after it initiated
89      * the operation.  In the latter case 'ofconn' is a wild pointer that
90      * refers to freed memory, so the 'ofconn' member must be used only if
91      * !list_is_empty(ofconn_node).
92      */
93     struct list ofconn_node;    /* In ofconn's list of pending opgroups. */
94     struct ofconn *ofconn;      /* ofconn for reply (but see note above). */
95     struct ofp_header *request; /* Original request (truncated at 64 bytes). */
96     uint32_t buffer_id;         /* Buffer id from original request. */
97     int error;                  /* 0 if no error yet, otherwise error code. */
98 };
99
100 static struct ofopgroup *ofopgroup_create_unattached(struct ofproto *);
101 static struct ofopgroup *ofopgroup_create(struct ofproto *, struct ofconn *,
102                                           const struct ofp_header *,
103                                           uint32_t buffer_id);
104 static void ofopgroup_submit(struct ofopgroup *);
105 static void ofopgroup_destroy(struct ofopgroup *);
106
107 /* A single flow table operation. */
108 struct ofoperation {
109     struct ofopgroup *group;    /* Owning group. */
110     struct list group_node;     /* In ofopgroup's "ops" list. */
111     struct hmap_node hmap_node; /* In ofproto's "deletions" hmap. */
112     struct rule *rule;          /* Rule being operated upon. */
113     enum ofoperation_type type; /* Type of operation. */
114     int status;                 /* -1 if pending, otherwise 0 or error code. */
115     struct rule *victim;        /* OFOPERATION_ADDING: Replaced rule. */
116     union ofp_action *actions;  /* OFOPERATION_MODIFYING: Replaced actions. */
117     int n_actions;              /* OFOPERATION_MODIFYING: # of old actions. */
118     ovs_be64 flow_cookie;       /* Rule's old flow cookie. */
119 };
120
121 static void ofoperation_create(struct ofopgroup *, struct rule *,
122                                enum ofoperation_type);
123 static void ofoperation_destroy(struct ofoperation *);
124
125 static void ofport_destroy__(struct ofport *);
126 static void ofport_destroy(struct ofport *);
127
128 static uint64_t pick_datapath_id(const struct ofproto *);
129 static uint64_t pick_fallback_dpid(void);
130
131 static void ofproto_destroy__(struct ofproto *);
132
133 static void ofproto_rule_destroy__(struct rule *);
134 static void ofproto_rule_send_removed(struct rule *, uint8_t reason);
135
136 static void ofopgroup_destroy(struct ofopgroup *);
137
138 static int add_flow(struct ofproto *, struct ofconn *,
139                     const struct ofputil_flow_mod *,
140                     const struct ofp_header *);
141
142 static bool handle_openflow(struct ofconn *, struct ofpbuf *);
143 static int handle_flow_mod__(struct ofproto *, struct ofconn *,
144                              const struct ofputil_flow_mod *,
145                              const struct ofp_header *);
146
147 static void update_port(struct ofproto *, const char *devname);
148 static int init_ports(struct ofproto *);
149 static void reinit_ports(struct ofproto *);
150 static void set_internal_devs_mtu(struct ofproto *);
151
152 static void ofproto_unixctl_init(void);
153
154 /* All registered ofproto classes, in probe order. */
155 static const struct ofproto_class **ofproto_classes;
156 static size_t n_ofproto_classes;
157 static size_t allocated_ofproto_classes;
158
159 /* Map from datapath name to struct ofproto, for use by unixctl commands. */
160 static struct hmap all_ofprotos = HMAP_INITIALIZER(&all_ofprotos);
161
162 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
163
164 static void
165 ofproto_initialize(void)
166 {
167     static bool inited;
168
169     if (!inited) {
170         inited = true;
171         ofproto_class_register(&ofproto_dpif_class);
172     }
173 }
174
175 /* 'type' should be a normalized datapath type, as returned by
176  * ofproto_normalize_type().  Returns the corresponding ofproto_class
177  * structure, or a null pointer if there is none registered for 'type'. */
178 static const struct ofproto_class *
179 ofproto_class_find__(const char *type)
180 {
181     size_t i;
182
183     ofproto_initialize();
184     for (i = 0; i < n_ofproto_classes; i++) {
185         const struct ofproto_class *class = ofproto_classes[i];
186         struct sset types;
187         bool found;
188
189         sset_init(&types);
190         class->enumerate_types(&types);
191         found = sset_contains(&types, type);
192         sset_destroy(&types);
193
194         if (found) {
195             return class;
196         }
197     }
198     VLOG_WARN("unknown datapath type %s", type);
199     return NULL;
200 }
201
202 /* Registers a new ofproto class.  After successful registration, new ofprotos
203  * of that type can be created using ofproto_create(). */
204 int
205 ofproto_class_register(const struct ofproto_class *new_class)
206 {
207     size_t i;
208
209     for (i = 0; i < n_ofproto_classes; i++) {
210         if (ofproto_classes[i] == new_class) {
211             return EEXIST;
212         }
213     }
214
215     if (n_ofproto_classes >= allocated_ofproto_classes) {
216         ofproto_classes = x2nrealloc(ofproto_classes,
217                                      &allocated_ofproto_classes,
218                                      sizeof *ofproto_classes);
219     }
220     ofproto_classes[n_ofproto_classes++] = new_class;
221     return 0;
222 }
223
224 /* Unregisters a datapath provider.  'type' must have been previously
225  * registered and not currently be in use by any ofprotos.  After
226  * unregistration new datapaths of that type cannot be opened using
227  * ofproto_create(). */
228 int
229 ofproto_class_unregister(const struct ofproto_class *class)
230 {
231     size_t i;
232
233     for (i = 0; i < n_ofproto_classes; i++) {
234         if (ofproto_classes[i] == class) {
235             for (i++; i < n_ofproto_classes; i++) {
236                 ofproto_classes[i - 1] = ofproto_classes[i];
237             }
238             n_ofproto_classes--;
239             return 0;
240         }
241     }
242     VLOG_WARN("attempted to unregister an ofproto class that is not "
243               "registered");
244     return EAFNOSUPPORT;
245 }
246
247 /* Clears 'types' and enumerates all registered ofproto types into it.  The
248  * caller must first initialize the sset. */
249 void
250 ofproto_enumerate_types(struct sset *types)
251 {
252     size_t i;
253
254     ofproto_initialize();
255     for (i = 0; i < n_ofproto_classes; i++) {
256         ofproto_classes[i]->enumerate_types(types);
257     }
258 }
259
260 /* Returns the fully spelled out name for the given ofproto 'type'.
261  *
262  * Normalized type string can be compared with strcmp().  Unnormalized type
263  * string might be the same even if they have different spellings. */
264 const char *
265 ofproto_normalize_type(const char *type)
266 {
267     return type && type[0] ? type : "system";
268 }
269
270 /* Clears 'names' and enumerates the names of all known created ofprotos with
271  * the given 'type'.  The caller must first initialize the sset.  Returns 0 if
272  * successful, otherwise a positive errno value.
273  *
274  * Some kinds of datapaths might not be practically enumerable.  This is not
275  * considered an error. */
276 int
277 ofproto_enumerate_names(const char *type, struct sset *names)
278 {
279     const struct ofproto_class *class = ofproto_class_find__(type);
280     return class ? class->enumerate_names(type, names) : EAFNOSUPPORT;
281  }
282
283 int
284 ofproto_create(const char *datapath_name, const char *datapath_type,
285                struct ofproto **ofprotop)
286 {
287     const struct ofproto_class *class;
288     struct classifier *table;
289     struct ofproto *ofproto;
290     int n_tables;
291     int error;
292
293     *ofprotop = NULL;
294
295     ofproto_initialize();
296     ofproto_unixctl_init();
297
298     datapath_type = ofproto_normalize_type(datapath_type);
299     class = ofproto_class_find__(datapath_type);
300     if (!class) {
301         VLOG_WARN("could not create datapath %s of unknown type %s",
302                   datapath_name, datapath_type);
303         return EAFNOSUPPORT;
304     }
305
306     ofproto = class->alloc();
307     if (!ofproto) {
308         VLOG_ERR("failed to allocate datapath %s of type %s",
309                  datapath_name, datapath_type);
310         return ENOMEM;
311     }
312
313     /* Initialize. */
314     memset(ofproto, 0, sizeof *ofproto);
315     ofproto->ofproto_class = class;
316     ofproto->name = xstrdup(datapath_name);
317     ofproto->type = xstrdup(datapath_type);
318     hmap_insert(&all_ofprotos, &ofproto->hmap_node,
319                 hash_string(ofproto->name, 0));
320     ofproto->datapath_id = 0;
321     ofproto_set_flow_eviction_threshold(ofproto,
322                                         OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT);
323     ofproto->forward_bpdu = false;
324     ofproto->fallback_dpid = pick_fallback_dpid();
325     ofproto->mfr_desc = xstrdup(DEFAULT_MFR_DESC);
326     ofproto->hw_desc = xstrdup(DEFAULT_HW_DESC);
327     ofproto->sw_desc = xstrdup(DEFAULT_SW_DESC);
328     ofproto->serial_desc = xstrdup(DEFAULT_SERIAL_DESC);
329     ofproto->dp_desc = xstrdup(DEFAULT_DP_DESC);
330     ofproto->frag_handling = OFPC_FRAG_NORMAL;
331     hmap_init(&ofproto->ports);
332     shash_init(&ofproto->port_by_name);
333     ofproto->tables = NULL;
334     ofproto->n_tables = 0;
335     ofproto->connmgr = connmgr_create(ofproto, datapath_name, datapath_name);
336     ofproto->state = S_OPENFLOW;
337     list_init(&ofproto->pending);
338     ofproto->n_pending = 0;
339     hmap_init(&ofproto->deletions);
340
341     error = ofproto->ofproto_class->construct(ofproto, &n_tables);
342     if (error) {
343         VLOG_ERR("failed to open datapath %s: %s",
344                  datapath_name, strerror(error));
345         ofproto_destroy__(ofproto);
346         return error;
347     }
348
349     assert(n_tables >= 1 && n_tables <= 255);
350     ofproto->n_tables = n_tables;
351     ofproto->tables = xmalloc(n_tables * sizeof *ofproto->tables);
352     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
353         classifier_init(table);
354     }
355
356     ofproto->datapath_id = pick_datapath_id(ofproto);
357     VLOG_INFO("using datapath ID %016"PRIx64, ofproto->datapath_id);
358     init_ports(ofproto);
359
360     *ofprotop = ofproto;
361     return 0;
362 }
363
364 void
365 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
366 {
367     uint64_t old_dpid = p->datapath_id;
368     p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
369     if (p->datapath_id != old_dpid) {
370         VLOG_INFO("datapath ID changed to %016"PRIx64, p->datapath_id);
371
372         /* Force all active connections to reconnect, since there is no way to
373          * notify a controller that the datapath ID has changed. */
374         ofproto_reconnect_controllers(p);
375     }
376 }
377
378 void
379 ofproto_set_controllers(struct ofproto *p,
380                         const struct ofproto_controller *controllers,
381                         size_t n_controllers)
382 {
383     connmgr_set_controllers(p->connmgr, controllers, n_controllers);
384 }
385
386 void
387 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
388 {
389     connmgr_set_fail_mode(p->connmgr, fail_mode);
390 }
391
392 /* Drops the connections between 'ofproto' and all of its controllers, forcing
393  * them to reconnect. */
394 void
395 ofproto_reconnect_controllers(struct ofproto *ofproto)
396 {
397     connmgr_reconnect(ofproto->connmgr);
398 }
399
400 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
401  * in-band control should guarantee access, in the same way that in-band
402  * control guarantees access to OpenFlow controllers. */
403 void
404 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
405                                   const struct sockaddr_in *extras, size_t n)
406 {
407     connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
408 }
409
410 /* Sets the OpenFlow queue used by flows set up by in-band control on
411  * 'ofproto' to 'queue_id'.  If 'queue_id' is negative, then in-band control
412  * flows will use the default queue. */
413 void
414 ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
415 {
416     connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
417 }
418
419 /* Sets the number of flows at which eviction from the kernel flow table
420  * will occur. */
421 void
422 ofproto_set_flow_eviction_threshold(struct ofproto *ofproto, unsigned threshold)
423 {
424     if (threshold < OFPROTO_FLOW_EVICTION_THRESHOLD_MIN) {
425         ofproto->flow_eviction_threshold = OFPROTO_FLOW_EVICTION_THRESHOLD_MIN;
426     } else {
427         ofproto->flow_eviction_threshold = threshold;
428     }
429 }
430
431 /* If forward_bpdu is true, the NORMAL action will forward frames with
432  * reserved (e.g. STP) destination Ethernet addresses. if forward_bpdu is false,
433  * the NORMAL action will drop these frames. */
434 void
435 ofproto_set_forward_bpdu(struct ofproto *ofproto, bool forward_bpdu)
436 {
437     bool old_val = ofproto->forward_bpdu;
438     ofproto->forward_bpdu = forward_bpdu;
439     if (old_val != ofproto->forward_bpdu) {
440         if (ofproto->ofproto_class->forward_bpdu_changed) {
441             ofproto->ofproto_class->forward_bpdu_changed(ofproto);
442         }
443     }
444 }
445
446 void
447 ofproto_set_desc(struct ofproto *p,
448                  const char *mfr_desc, const char *hw_desc,
449                  const char *sw_desc, const char *serial_desc,
450                  const char *dp_desc)
451 {
452     struct ofp_desc_stats *ods;
453
454     if (mfr_desc) {
455         if (strlen(mfr_desc) >= sizeof ods->mfr_desc) {
456             VLOG_WARN("truncating mfr_desc, must be less than %zu characters",
457                     sizeof ods->mfr_desc);
458         }
459         free(p->mfr_desc);
460         p->mfr_desc = xstrdup(mfr_desc);
461     }
462     if (hw_desc) {
463         if (strlen(hw_desc) >= sizeof ods->hw_desc) {
464             VLOG_WARN("truncating hw_desc, must be less than %zu characters",
465                     sizeof ods->hw_desc);
466         }
467         free(p->hw_desc);
468         p->hw_desc = xstrdup(hw_desc);
469     }
470     if (sw_desc) {
471         if (strlen(sw_desc) >= sizeof ods->sw_desc) {
472             VLOG_WARN("truncating sw_desc, must be less than %zu characters",
473                     sizeof ods->sw_desc);
474         }
475         free(p->sw_desc);
476         p->sw_desc = xstrdup(sw_desc);
477     }
478     if (serial_desc) {
479         if (strlen(serial_desc) >= sizeof ods->serial_num) {
480             VLOG_WARN("truncating serial_desc, must be less than %zu "
481                     "characters",
482                     sizeof ods->serial_num);
483         }
484         free(p->serial_desc);
485         p->serial_desc = xstrdup(serial_desc);
486     }
487     if (dp_desc) {
488         if (strlen(dp_desc) >= sizeof ods->dp_desc) {
489             VLOG_WARN("truncating dp_desc, must be less than %zu characters",
490                     sizeof ods->dp_desc);
491         }
492         free(p->dp_desc);
493         p->dp_desc = xstrdup(dp_desc);
494     }
495 }
496
497 int
498 ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
499 {
500     return connmgr_set_snoops(ofproto->connmgr, snoops);
501 }
502
503 int
504 ofproto_set_netflow(struct ofproto *ofproto,
505                     const struct netflow_options *nf_options)
506 {
507     if (nf_options && sset_is_empty(&nf_options->collectors)) {
508         nf_options = NULL;
509     }
510
511     if (ofproto->ofproto_class->set_netflow) {
512         return ofproto->ofproto_class->set_netflow(ofproto, nf_options);
513     } else {
514         return nf_options ? EOPNOTSUPP : 0;
515     }
516 }
517
518 int
519 ofproto_set_sflow(struct ofproto *ofproto,
520                   const struct ofproto_sflow_options *oso)
521 {
522     if (oso && sset_is_empty(&oso->targets)) {
523         oso = NULL;
524     }
525
526     if (ofproto->ofproto_class->set_sflow) {
527         return ofproto->ofproto_class->set_sflow(ofproto, oso);
528     } else {
529         return oso ? EOPNOTSUPP : 0;
530     }
531 }
532 \f
533 /* Spanning Tree Protocol (STP) configuration. */
534
535 /* Configures STP on 'ofproto' using the settings defined in 's'.  If
536  * 's' is NULL, disables STP.
537  *
538  * Returns 0 if successful, otherwise a positive errno value. */
539 int
540 ofproto_set_stp(struct ofproto *ofproto,
541                 const struct ofproto_stp_settings *s)
542 {
543     return (ofproto->ofproto_class->set_stp
544             ? ofproto->ofproto_class->set_stp(ofproto, s)
545             : EOPNOTSUPP);
546 }
547
548 /* Retrieves STP status of 'ofproto' and stores it in 's'.  If the
549  * 'enabled' member of 's' is false, then the other members are not
550  * meaningful.
551  *
552  * Returns 0 if successful, otherwise a positive errno value. */
553 int
554 ofproto_get_stp_status(struct ofproto *ofproto,
555                        struct ofproto_stp_status *s)
556 {
557     return (ofproto->ofproto_class->get_stp_status
558             ? ofproto->ofproto_class->get_stp_status(ofproto, s)
559             : EOPNOTSUPP);
560 }
561
562 /* Configures STP on 'ofp_port' of 'ofproto' using the settings defined
563  * in 's'.  The caller is responsible for assigning STP port numbers
564  * (using the 'port_num' member in the range of 1 through 255, inclusive)
565  * and ensuring there are no duplicates.  If the 's' is NULL, then STP
566  * is disabled on the port.
567  *
568  * Returns 0 if successful, otherwise a positive errno value.*/
569 int
570 ofproto_port_set_stp(struct ofproto *ofproto, uint16_t ofp_port,
571                      const struct ofproto_port_stp_settings *s)
572 {
573     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
574     if (!ofport) {
575         VLOG_WARN("%s: cannot configure STP on nonexistent port %"PRIu16,
576                   ofproto->name, ofp_port);
577         return ENODEV;
578     }
579
580     return (ofproto->ofproto_class->set_stp_port
581             ? ofproto->ofproto_class->set_stp_port(ofport, s)
582             : EOPNOTSUPP);
583 }
584
585 /* Retrieves STP port status of 'ofp_port' on 'ofproto' and stores it in
586  * 's'.  If the 'enabled' member in 's' is false, then the other members
587  * are not meaningful.
588  *
589  * Returns 0 if successful, otherwise a positive errno value.*/
590 int
591 ofproto_port_get_stp_status(struct ofproto *ofproto, uint16_t ofp_port,
592                             struct ofproto_port_stp_status *s)
593 {
594     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
595     if (!ofport) {
596         VLOG_WARN("%s: cannot get STP status on nonexistent port %"PRIu16,
597                   ofproto->name, ofp_port);
598         return ENODEV;
599     }
600
601     return (ofproto->ofproto_class->get_stp_port_status
602             ? ofproto->ofproto_class->get_stp_port_status(ofport, s)
603             : EOPNOTSUPP);
604 }
605 \f
606 /* Connectivity Fault Management configuration. */
607
608 /* Clears the CFM configuration from 'ofp_port' on 'ofproto'. */
609 void
610 ofproto_port_clear_cfm(struct ofproto *ofproto, uint16_t ofp_port)
611 {
612     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
613     if (ofport && ofproto->ofproto_class->set_cfm) {
614         ofproto->ofproto_class->set_cfm(ofport, NULL);
615     }
616 }
617
618 /* Configures connectivity fault management on 'ofp_port' in 'ofproto'.  Takes
619  * basic configuration from the configuration members in 'cfm', and the remote
620  * maintenance point ID from  remote_mpid.  Ignores the statistics members of
621  * 'cfm'.
622  *
623  * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
624 void
625 ofproto_port_set_cfm(struct ofproto *ofproto, uint16_t ofp_port,
626                      const struct cfm_settings *s)
627 {
628     struct ofport *ofport;
629     int error;
630
631     ofport = ofproto_get_port(ofproto, ofp_port);
632     if (!ofport) {
633         VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu16,
634                   ofproto->name, ofp_port);
635         return;
636     }
637
638     /* XXX: For configuration simplicity, we only support one remote_mpid
639      * outside of the CFM module.  It's not clear if this is the correct long
640      * term solution or not. */
641     error = (ofproto->ofproto_class->set_cfm
642              ? ofproto->ofproto_class->set_cfm(ofport, s)
643              : EOPNOTSUPP);
644     if (error) {
645         VLOG_WARN("%s: CFM configuration on port %"PRIu16" (%s) failed (%s)",
646                   ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
647                   strerror(error));
648     }
649 }
650
651 /* Checks the status of LACP negotiation for 'ofp_port' within ofproto.
652  * Returns 1 if LACP partner information for 'ofp_port' is up-to-date,
653  * 0 if LACP partner information is not current (generally indicating a
654  * connectivity problem), or -1 if LACP is not enabled on 'ofp_port'. */
655 int
656 ofproto_port_is_lacp_current(struct ofproto *ofproto, uint16_t ofp_port)
657 {
658     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
659     return (ofport && ofproto->ofproto_class->port_is_lacp_current
660             ? ofproto->ofproto_class->port_is_lacp_current(ofport)
661             : -1);
662 }
663 \f
664 /* Bundles. */
665
666 /* Registers a "bundle" associated with client data pointer 'aux' in 'ofproto'.
667  * A bundle is the same concept as a Port in OVSDB, that is, it consists of one
668  * or more "slave" devices (Interfaces, in OVSDB) along with a VLAN
669  * configuration plus, if there is more than one slave, a bonding
670  * configuration.
671  *
672  * If 'aux' is already registered then this function updates its configuration
673  * to 's'.  Otherwise, this function registers a new bundle.
674  *
675  * Bundles only affect the NXAST_AUTOPATH action and output to the OFPP_NORMAL
676  * port. */
677 int
678 ofproto_bundle_register(struct ofproto *ofproto, void *aux,
679                         const struct ofproto_bundle_settings *s)
680 {
681     return (ofproto->ofproto_class->bundle_set
682             ? ofproto->ofproto_class->bundle_set(ofproto, aux, s)
683             : EOPNOTSUPP);
684 }
685
686 /* Unregisters the bundle registered on 'ofproto' with auxiliary data 'aux'.
687  * If no such bundle has been registered, this has no effect. */
688 int
689 ofproto_bundle_unregister(struct ofproto *ofproto, void *aux)
690 {
691     return ofproto_bundle_register(ofproto, aux, NULL);
692 }
693
694 \f
695 /* Registers a mirror associated with client data pointer 'aux' in 'ofproto'.
696  * If 'aux' is already registered then this function updates its configuration
697  * to 's'.  Otherwise, this function registers a new mirror.
698  *
699  * Mirrors affect only the treatment of packets output to the OFPP_NORMAL
700  * port.  */
701 int
702 ofproto_mirror_register(struct ofproto *ofproto, void *aux,
703                         const struct ofproto_mirror_settings *s)
704 {
705     return (ofproto->ofproto_class->mirror_set
706             ? ofproto->ofproto_class->mirror_set(ofproto, aux, s)
707             : EOPNOTSUPP);
708 }
709
710 /* Unregisters the mirror registered on 'ofproto' with auxiliary data 'aux'.
711  * If no mirror has been registered, this has no effect. */
712 int
713 ofproto_mirror_unregister(struct ofproto *ofproto, void *aux)
714 {
715     return ofproto_mirror_register(ofproto, aux, NULL);
716 }
717
718 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs on
719  * which all packets are flooded, instead of using MAC learning.  If
720  * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
721  *
722  * Flood VLANs affect only the treatment of packets output to the OFPP_NORMAL
723  * port. */
724 int
725 ofproto_set_flood_vlans(struct ofproto *ofproto, unsigned long *flood_vlans)
726 {
727     return (ofproto->ofproto_class->set_flood_vlans
728             ? ofproto->ofproto_class->set_flood_vlans(ofproto, flood_vlans)
729             : EOPNOTSUPP);
730 }
731
732 /* Returns true if 'aux' is a registered bundle that is currently in use as the
733  * output for a mirror. */
734 bool
735 ofproto_is_mirror_output_bundle(const struct ofproto *ofproto, void *aux)
736 {
737     return (ofproto->ofproto_class->is_mirror_output_bundle
738             ? ofproto->ofproto_class->is_mirror_output_bundle(ofproto, aux)
739             : false);
740 }
741 \f
742 bool
743 ofproto_has_snoops(const struct ofproto *ofproto)
744 {
745     return connmgr_has_snoops(ofproto->connmgr);
746 }
747
748 void
749 ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
750 {
751     connmgr_get_snoops(ofproto->connmgr, snoops);
752 }
753
754 static void
755 ofproto_flush__(struct ofproto *ofproto)
756 {
757     struct classifier *table;
758     struct ofopgroup *group;
759
760     if (ofproto->ofproto_class->flush) {
761         ofproto->ofproto_class->flush(ofproto);
762     }
763
764     group = ofopgroup_create_unattached(ofproto);
765     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
766         struct rule *rule, *next_rule;
767         struct cls_cursor cursor;
768
769         cls_cursor_init(&cursor, table, NULL);
770         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
771             if (!rule->pending) {
772                 ofoperation_create(group, rule, OFOPERATION_DELETE);
773                 classifier_remove(table, &rule->cr);
774                 ofproto->ofproto_class->rule_destruct(rule);
775             }
776         }
777     }
778     ofopgroup_submit(group);
779 }
780
781 static void
782 ofproto_destroy__(struct ofproto *ofproto)
783 {
784     struct classifier *table;
785
786     assert(list_is_empty(&ofproto->pending));
787     assert(!ofproto->n_pending);
788
789     connmgr_destroy(ofproto->connmgr);
790
791     hmap_remove(&all_ofprotos, &ofproto->hmap_node);
792     free(ofproto->name);
793     free(ofproto->type);
794     free(ofproto->mfr_desc);
795     free(ofproto->hw_desc);
796     free(ofproto->sw_desc);
797     free(ofproto->serial_desc);
798     free(ofproto->dp_desc);
799     hmap_destroy(&ofproto->ports);
800     shash_destroy(&ofproto->port_by_name);
801
802     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
803         assert(classifier_is_empty(table));
804         classifier_destroy(table);
805     }
806     free(ofproto->tables);
807
808     hmap_destroy(&ofproto->deletions);
809
810     ofproto->ofproto_class->dealloc(ofproto);
811 }
812
813 void
814 ofproto_destroy(struct ofproto *p)
815 {
816     struct ofport *ofport, *next_ofport;
817
818     if (!p) {
819         return;
820     }
821
822     ofproto_flush__(p);
823     HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
824         ofport_destroy(ofport);
825     }
826
827     p->ofproto_class->destruct(p);
828     ofproto_destroy__(p);
829 }
830
831 /* Destroys the datapath with the respective 'name' and 'type'.  With the Linux
832  * kernel datapath, for example, this destroys the datapath in the kernel, and
833  * with the netdev-based datapath, it tears down the data structures that
834  * represent the datapath.
835  *
836  * The datapath should not be currently open as an ofproto. */
837 int
838 ofproto_delete(const char *name, const char *type)
839 {
840     const struct ofproto_class *class = ofproto_class_find__(type);
841     return (!class ? EAFNOSUPPORT
842             : !class->del ? EACCES
843             : class->del(type, name));
844 }
845
846 static void
847 process_port_change(struct ofproto *ofproto, int error, char *devname)
848 {
849     if (error == ENOBUFS) {
850         reinit_ports(ofproto);
851     } else if (!error) {
852         update_port(ofproto, devname);
853         free(devname);
854     }
855 }
856
857 int
858 ofproto_run(struct ofproto *p)
859 {
860     struct ofport *ofport;
861     char *devname;
862     int error;
863
864     error = p->ofproto_class->run(p);
865     if (error == ENODEV) {
866         /* Someone destroyed the datapath behind our back.  The caller
867          * better destroy us and give up, because we're just going to
868          * spin from here on out. */
869         static struct vlog_rate_limit rl2 = VLOG_RATE_LIMIT_INIT(1, 5);
870         VLOG_ERR_RL(&rl2, "%s: datapath was destroyed externally",
871                     p->name);
872         return ENODEV;
873     }
874
875     if (p->ofproto_class->port_poll) {
876         while ((error = p->ofproto_class->port_poll(p, &devname)) != EAGAIN) {
877             process_port_change(p, error, devname);
878         }
879     }
880
881     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
882         unsigned int change_seq = netdev_change_seq(ofport->netdev);
883         if (ofport->change_seq != change_seq) {
884             ofport->change_seq = change_seq;
885             update_port(p, netdev_get_name(ofport->netdev));
886         }
887     }
888
889
890     switch (p->state) {
891     case S_OPENFLOW:
892         connmgr_run(p->connmgr, handle_openflow);
893         break;
894
895     case S_FLUSH:
896         connmgr_run(p->connmgr, NULL);
897         ofproto_flush__(p);
898         if (list_is_empty(&p->pending) && hmap_is_empty(&p->deletions)) {
899             connmgr_flushed(p->connmgr);
900             p->state = S_OPENFLOW;
901         }
902         break;
903
904     default:
905         NOT_REACHED();
906     }
907
908     return 0;
909 }
910
911 void
912 ofproto_wait(struct ofproto *p)
913 {
914     struct ofport *ofport;
915
916     p->ofproto_class->wait(p);
917     if (p->ofproto_class->port_poll_wait) {
918         p->ofproto_class->port_poll_wait(p);
919     }
920
921     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
922         if (ofport->change_seq != netdev_change_seq(ofport->netdev)) {
923             poll_immediate_wake();
924         }
925     }
926
927     switch (p->state) {
928     case S_OPENFLOW:
929         connmgr_wait(p->connmgr, true);
930         break;
931
932     case S_FLUSH:
933         connmgr_wait(p->connmgr, false);
934         if (list_is_empty(&p->pending) && hmap_is_empty(&p->deletions)) {
935             poll_immediate_wake();
936         }
937         break;
938     }
939 }
940
941 bool
942 ofproto_is_alive(const struct ofproto *p)
943 {
944     return connmgr_has_controllers(p->connmgr);
945 }
946
947 void
948 ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
949                                     struct shash *info)
950 {
951     connmgr_get_controller_info(ofproto->connmgr, info);
952 }
953
954 void
955 ofproto_free_ofproto_controller_info(struct shash *info)
956 {
957     connmgr_free_controller_info(info);
958 }
959
960 /* Makes a deep copy of 'old' into 'port'. */
961 void
962 ofproto_port_clone(struct ofproto_port *port, const struct ofproto_port *old)
963 {
964     port->name = xstrdup(old->name);
965     port->type = xstrdup(old->type);
966     port->ofp_port = old->ofp_port;
967 }
968
969 /* Frees memory allocated to members of 'ofproto_port'.
970  *
971  * Do not call this function on an ofproto_port obtained from
972  * ofproto_port_dump_next(): that function retains ownership of the data in the
973  * ofproto_port. */
974 void
975 ofproto_port_destroy(struct ofproto_port *ofproto_port)
976 {
977     free(ofproto_port->name);
978     free(ofproto_port->type);
979 }
980
981 /* Initializes 'dump' to begin dumping the ports in an ofproto.
982  *
983  * This function provides no status indication.  An error status for the entire
984  * dump operation is provided when it is completed by calling
985  * ofproto_port_dump_done().
986  */
987 void
988 ofproto_port_dump_start(struct ofproto_port_dump *dump,
989                         const struct ofproto *ofproto)
990 {
991     dump->ofproto = ofproto;
992     dump->error = ofproto->ofproto_class->port_dump_start(ofproto,
993                                                           &dump->state);
994 }
995
996 /* Attempts to retrieve another port from 'dump', which must have been created
997  * with ofproto_port_dump_start().  On success, stores a new ofproto_port into
998  * 'port' and returns true.  On failure, returns false.
999  *
1000  * Failure might indicate an actual error or merely that the last port has been
1001  * dumped.  An error status for the entire dump operation is provided when it
1002  * is completed by calling ofproto_port_dump_done().
1003  *
1004  * The ofproto owns the data stored in 'port'.  It will remain valid until at
1005  * least the next time 'dump' is passed to ofproto_port_dump_next() or
1006  * ofproto_port_dump_done(). */
1007 bool
1008 ofproto_port_dump_next(struct ofproto_port_dump *dump,
1009                        struct ofproto_port *port)
1010 {
1011     const struct ofproto *ofproto = dump->ofproto;
1012
1013     if (dump->error) {
1014         return false;
1015     }
1016
1017     dump->error = ofproto->ofproto_class->port_dump_next(ofproto, dump->state,
1018                                                          port);
1019     if (dump->error) {
1020         ofproto->ofproto_class->port_dump_done(ofproto, dump->state);
1021         return false;
1022     }
1023     return true;
1024 }
1025
1026 /* Completes port table dump operation 'dump', which must have been created
1027  * with ofproto_port_dump_start().  Returns 0 if the dump operation was
1028  * error-free, otherwise a positive errno value describing the problem. */
1029 int
1030 ofproto_port_dump_done(struct ofproto_port_dump *dump)
1031 {
1032     const struct ofproto *ofproto = dump->ofproto;
1033     if (!dump->error) {
1034         dump->error = ofproto->ofproto_class->port_dump_done(ofproto,
1035                                                              dump->state);
1036     }
1037     return dump->error == EOF ? 0 : dump->error;
1038 }
1039
1040 /* Attempts to add 'netdev' as a port on 'ofproto'.  If successful, returns 0
1041  * and sets '*ofp_portp' to the new port's OpenFlow port number (if 'ofp_portp'
1042  * is non-null).  On failure, returns a positive errno value and sets
1043  * '*ofp_portp' to OFPP_NONE (if 'ofp_portp' is non-null). */
1044 int
1045 ofproto_port_add(struct ofproto *ofproto, struct netdev *netdev,
1046                  uint16_t *ofp_portp)
1047 {
1048     uint16_t ofp_port;
1049     int error;
1050
1051     error = ofproto->ofproto_class->port_add(ofproto, netdev, &ofp_port);
1052     if (!error) {
1053         update_port(ofproto, netdev_get_name(netdev));
1054     }
1055     if (ofp_portp) {
1056         *ofp_portp = error ? OFPP_NONE : ofp_port;
1057     }
1058     return error;
1059 }
1060
1061 /* Looks up a port named 'devname' in 'ofproto'.  On success, returns 0 and
1062  * initializes '*port' appropriately; on failure, returns a positive errno
1063  * value.
1064  *
1065  * The caller owns the data in 'ofproto_port' and must free it with
1066  * ofproto_port_destroy() when it is no longer needed. */
1067 int
1068 ofproto_port_query_by_name(const struct ofproto *ofproto, const char *devname,
1069                            struct ofproto_port *port)
1070 {
1071     int error;
1072
1073     error = ofproto->ofproto_class->port_query_by_name(ofproto, devname, port);
1074     if (error) {
1075         memset(port, 0, sizeof *port);
1076     }
1077     return error;
1078 }
1079
1080 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'.
1081  * Returns 0 if successful, otherwise a positive errno. */
1082 int
1083 ofproto_port_del(struct ofproto *ofproto, uint16_t ofp_port)
1084 {
1085     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1086     const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
1087     int error;
1088
1089     error = ofproto->ofproto_class->port_del(ofproto, ofp_port);
1090     if (!error && ofport) {
1091         /* 'name' is the netdev's name and update_port() is going to close the
1092          * netdev.  Just in case update_port() refers to 'name' after it
1093          * destroys 'ofport', make a copy of it around the update_port()
1094          * call. */
1095         char *devname = xstrdup(name);
1096         update_port(ofproto, devname);
1097         free(devname);
1098     }
1099     return error;
1100 }
1101
1102 /* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
1103  * performs the 'n_actions' actions in 'actions'.  The new flow will not
1104  * timeout.
1105  *
1106  * If cls_rule->priority is in the range of priorities supported by OpenFlow
1107  * (0...65535, inclusive) then the flow will be visible to OpenFlow
1108  * controllers; otherwise, it will be hidden.
1109  *
1110  * The caller retains ownership of 'cls_rule' and 'actions'.
1111  *
1112  * This is a helper function for in-band control and fail-open. */
1113 void
1114 ofproto_add_flow(struct ofproto *ofproto, const struct cls_rule *cls_rule,
1115                  const union ofp_action *actions, size_t n_actions)
1116 {
1117     const struct rule *rule;
1118
1119     rule = rule_from_cls_rule(classifier_find_rule_exactly(
1120                                     &ofproto->tables[0], cls_rule));
1121     if (!rule || !ofputil_actions_equal(rule->actions, rule->n_actions,
1122                                         actions, n_actions)) {
1123         struct ofputil_flow_mod fm;
1124
1125         memset(&fm, 0, sizeof fm);
1126         fm.cr = *cls_rule;
1127         fm.buffer_id = UINT32_MAX;
1128         fm.actions = (union ofp_action *) actions;
1129         fm.n_actions = n_actions;
1130         add_flow(ofproto, NULL, &fm, NULL);
1131     }
1132 }
1133
1134 /* Executes the flow modification specified in 'fm'.  Returns 0 on success, an
1135  * OpenFlow error code as encoded by ofp_mkerr() on failure, or
1136  * OFPROTO_POSTPONE if the operation cannot be initiated now but may be retried
1137  * later.
1138  *
1139  * This is a helper function for in-band control and fail-open. */
1140 int
1141 ofproto_flow_mod(struct ofproto *ofproto, const struct ofputil_flow_mod *fm)
1142 {
1143     return handle_flow_mod__(ofproto, NULL, fm, NULL);
1144 }
1145
1146 /* Searches for a rule with matching criteria exactly equal to 'target' in
1147  * ofproto's table 0 and, if it finds one, deletes it.
1148  *
1149  * This is a helper function for in-band control and fail-open. */
1150 bool
1151 ofproto_delete_flow(struct ofproto *ofproto, const struct cls_rule *target)
1152 {
1153     struct rule *rule;
1154
1155     rule = rule_from_cls_rule(classifier_find_rule_exactly(
1156                                   &ofproto->tables[0], target));
1157     if (!rule) {
1158         /* No such rule -> success. */
1159         return true;
1160     } else if (rule->pending) {
1161         /* An operation on the rule is already pending -> failure.
1162          * Caller must retry later if it's important. */
1163         return false;
1164     } else {
1165         /* Initiate deletion -> success. */
1166         struct ofopgroup *group = ofopgroup_create_unattached(ofproto);
1167         ofoperation_create(group, rule, OFOPERATION_DELETE);
1168         classifier_remove(&ofproto->tables[rule->table_id], &rule->cr);
1169         rule->ofproto->ofproto_class->rule_destruct(rule);
1170         ofopgroup_submit(group);
1171         return true;
1172     }
1173
1174 }
1175
1176 /* Starts the process of deleting all of the flows from all of ofproto's flow
1177  * tables and then reintroducing the flows required by in-band control and
1178  * fail-open.  The process will complete in a later call to ofproto_run(). */
1179 void
1180 ofproto_flush_flows(struct ofproto *ofproto)
1181 {
1182     COVERAGE_INC(ofproto_flush);
1183     ofproto->state = S_FLUSH;
1184 }
1185 \f
1186 static void
1187 reinit_ports(struct ofproto *p)
1188 {
1189     struct ofproto_port_dump dump;
1190     struct sset devnames;
1191     struct ofport *ofport;
1192     struct ofproto_port ofproto_port;
1193     const char *devname;
1194
1195     COVERAGE_INC(ofproto_reinit_ports);
1196
1197     sset_init(&devnames);
1198     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1199         sset_add(&devnames, netdev_get_name(ofport->netdev));
1200     }
1201     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
1202         sset_add(&devnames, ofproto_port.name);
1203     }
1204
1205     SSET_FOR_EACH (devname, &devnames) {
1206         update_port(p, devname);
1207     }
1208     sset_destroy(&devnames);
1209 }
1210
1211 /* Opens and returns a netdev for 'ofproto_port', or a null pointer if the
1212  * netdev cannot be opened.  On success, also fills in 'opp'.  */
1213 static struct netdev *
1214 ofport_open(const struct ofproto_port *ofproto_port, struct ofp_phy_port *opp)
1215 {
1216     uint32_t curr, advertised, supported, peer;
1217     enum netdev_flags flags;
1218     struct netdev *netdev;
1219     int error;
1220
1221     error = netdev_open(ofproto_port->name, ofproto_port->type, &netdev);
1222     if (error) {
1223         VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1224                      "cannot be opened (%s)",
1225                      ofproto_port->name, ofproto_port->ofp_port,
1226                      ofproto_port->name, strerror(error));
1227         return NULL;
1228     }
1229
1230     netdev_get_flags(netdev, &flags);
1231     netdev_get_features(netdev, &curr, &advertised, &supported, &peer);
1232
1233     opp->port_no = htons(ofproto_port->ofp_port);
1234     netdev_get_etheraddr(netdev, opp->hw_addr);
1235     ovs_strzcpy(opp->name, ofproto_port->name, sizeof opp->name);
1236     opp->config = flags & NETDEV_UP ? 0 : htonl(OFPPC_PORT_DOWN);
1237     opp->state = netdev_get_carrier(netdev) ? 0 : htonl(OFPPS_LINK_DOWN);
1238     opp->curr = htonl(curr);
1239     opp->advertised = htonl(advertised);
1240     opp->supported = htonl(supported);
1241     opp->peer = htonl(peer);
1242
1243     return netdev;
1244 }
1245
1246 /* Returns true if most fields of 'a' and 'b' are equal.  Differences in name,
1247  * port number, and 'config' bits other than OFPPC_PORT_DOWN are
1248  * disregarded. */
1249 static bool
1250 ofport_equal(const struct ofp_phy_port *a, const struct ofp_phy_port *b)
1251 {
1252     BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
1253     return (!memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
1254             && a->state == b->state
1255             && !((a->config ^ b->config) & htonl(OFPPC_PORT_DOWN))
1256             && a->curr == b->curr
1257             && a->advertised == b->advertised
1258             && a->supported == b->supported
1259             && a->peer == b->peer);
1260 }
1261
1262 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
1263  * The caller must ensure that 'p' does not have a conflicting ofport (that is,
1264  * one with the same name or port number). */
1265 static void
1266 ofport_install(struct ofproto *p,
1267                struct netdev *netdev, const struct ofp_phy_port *opp)
1268 {
1269     const char *netdev_name = netdev_get_name(netdev);
1270     struct ofport *ofport;
1271     int dev_mtu;
1272     int error;
1273
1274     /* Create ofport. */
1275     ofport = p->ofproto_class->port_alloc();
1276     if (!ofport) {
1277         error = ENOMEM;
1278         goto error;
1279     }
1280     ofport->ofproto = p;
1281     ofport->netdev = netdev;
1282     ofport->change_seq = netdev_change_seq(netdev);
1283     ofport->opp = *opp;
1284     ofport->ofp_port = ntohs(opp->port_no);
1285
1286     /* Add port to 'p'. */
1287     hmap_insert(&p->ports, &ofport->hmap_node, hash_int(ofport->ofp_port, 0));
1288     shash_add(&p->port_by_name, netdev_name, ofport);
1289
1290     if (!netdev_get_mtu(netdev, &dev_mtu)) {
1291         set_internal_devs_mtu(p);
1292         ofport->mtu = dev_mtu;
1293     } else {
1294         ofport->mtu = 0;
1295     }
1296
1297     /* Let the ofproto_class initialize its private data. */
1298     error = p->ofproto_class->port_construct(ofport);
1299     if (error) {
1300         goto error;
1301     }
1302     connmgr_send_port_status(p->connmgr, opp, OFPPR_ADD);
1303     return;
1304
1305 error:
1306     VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
1307                  p->name, netdev_name, strerror(error));
1308     if (ofport) {
1309         ofport_destroy__(ofport);
1310     } else {
1311         netdev_close(netdev);
1312     }
1313 }
1314
1315 /* Removes 'ofport' from 'p' and destroys it. */
1316 static void
1317 ofport_remove(struct ofport *ofport)
1318 {
1319     connmgr_send_port_status(ofport->ofproto->connmgr, &ofport->opp,
1320                              OFPPR_DELETE);
1321     ofport_destroy(ofport);
1322 }
1323
1324 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
1325  * destroys it. */
1326 static void
1327 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
1328 {
1329     struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
1330     if (port) {
1331         ofport_remove(port);
1332     }
1333 }
1334
1335 /* Updates 'port' with new 'opp' description.
1336  *
1337  * Does not handle a name or port number change.  The caller must implement
1338  * such a change as a delete followed by an add.  */
1339 static void
1340 ofport_modified(struct ofport *port, struct ofp_phy_port *opp)
1341 {
1342     memcpy(port->opp.hw_addr, opp->hw_addr, ETH_ADDR_LEN);
1343     port->opp.config = ((port->opp.config & ~htonl(OFPPC_PORT_DOWN))
1344                         | (opp->config & htonl(OFPPC_PORT_DOWN)));
1345     port->opp.state = opp->state;
1346     port->opp.curr = opp->curr;
1347     port->opp.advertised = opp->advertised;
1348     port->opp.supported = opp->supported;
1349     port->opp.peer = opp->peer;
1350
1351     connmgr_send_port_status(port->ofproto->connmgr, &port->opp, OFPPR_MODIFY);
1352 }
1353
1354 /* Update OpenFlow 'state' in 'port' and notify controller. */
1355 void
1356 ofproto_port_set_state(struct ofport *port, ovs_be32 state)
1357 {
1358     if (port->opp.state != state) {
1359         port->opp.state = state;
1360         connmgr_send_port_status(port->ofproto->connmgr, &port->opp,
1361                                  OFPPR_MODIFY);
1362     }
1363 }
1364
1365 void
1366 ofproto_port_unregister(struct ofproto *ofproto, uint16_t ofp_port)
1367 {
1368     struct ofport *port = ofproto_get_port(ofproto, ofp_port);
1369     if (port) {
1370         if (port->ofproto->ofproto_class->set_stp_port) {
1371             port->ofproto->ofproto_class->set_stp_port(port, NULL);
1372         }
1373         if (port->ofproto->ofproto_class->set_cfm) {
1374             port->ofproto->ofproto_class->set_cfm(port, NULL);
1375         }
1376         if (port->ofproto->ofproto_class->bundle_remove) {
1377             port->ofproto->ofproto_class->bundle_remove(port);
1378         }
1379     }
1380 }
1381
1382 static void
1383 ofport_destroy__(struct ofport *port)
1384 {
1385     struct ofproto *ofproto = port->ofproto;
1386     const char *name = netdev_get_name(port->netdev);
1387
1388     hmap_remove(&ofproto->ports, &port->hmap_node);
1389     shash_delete(&ofproto->port_by_name,
1390                  shash_find(&ofproto->port_by_name, name));
1391
1392     netdev_close(port->netdev);
1393     ofproto->ofproto_class->port_dealloc(port);
1394 }
1395
1396 static void
1397 ofport_destroy(struct ofport *port)
1398 {
1399     if (port) {
1400         port->ofproto->ofproto_class->port_destruct(port);
1401         ofport_destroy__(port);
1402      }
1403 }
1404
1405 struct ofport *
1406 ofproto_get_port(const struct ofproto *ofproto, uint16_t ofp_port)
1407 {
1408     struct ofport *port;
1409
1410     HMAP_FOR_EACH_IN_BUCKET (port, hmap_node,
1411                              hash_int(ofp_port, 0), &ofproto->ports) {
1412         if (port->ofp_port == ofp_port) {
1413             return port;
1414         }
1415     }
1416     return NULL;
1417 }
1418
1419 static void
1420 update_port(struct ofproto *ofproto, const char *name)
1421 {
1422     struct ofproto_port ofproto_port;
1423     struct ofp_phy_port opp;
1424     struct netdev *netdev;
1425     struct ofport *port;
1426
1427     COVERAGE_INC(ofproto_update_port);
1428
1429     /* Fetch 'name''s location and properties from the datapath. */
1430     netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
1431               ? ofport_open(&ofproto_port, &opp)
1432               : NULL);
1433     if (netdev) {
1434         port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
1435         if (port && !strcmp(netdev_get_name(port->netdev), name)) {
1436             struct netdev *old_netdev = port->netdev;
1437             int dev_mtu;
1438
1439             /* 'name' hasn't changed location.  Any properties changed? */
1440             if (!ofport_equal(&port->opp, &opp)) {
1441                 ofport_modified(port, &opp);
1442             }
1443
1444             /* If this is a non-internal port and the MTU changed, check
1445              * if the datapath's MTU needs to be updated. */
1446             if (strcmp(netdev_get_type(netdev), "internal")
1447                     && !netdev_get_mtu(netdev, &dev_mtu)
1448                     && port->mtu != dev_mtu) {
1449                 set_internal_devs_mtu(ofproto);
1450                 port->mtu = dev_mtu;
1451             }
1452
1453             /* Install the newly opened netdev in case it has changed.
1454              * Don't close the old netdev yet in case port_modified has to
1455              * remove a retained reference to it.*/
1456             port->netdev = netdev;
1457             port->change_seq = netdev_change_seq(netdev);
1458
1459             if (port->ofproto->ofproto_class->port_modified) {
1460                 port->ofproto->ofproto_class->port_modified(port);
1461             }
1462
1463             netdev_close(old_netdev);
1464         } else {
1465             /* If 'port' is nonnull then its name differs from 'name' and thus
1466              * we should delete it.  If we think there's a port named 'name'
1467              * then its port number must be wrong now so delete it too. */
1468             if (port) {
1469                 ofport_remove(port);
1470             }
1471             ofport_remove_with_name(ofproto, name);
1472             ofport_install(ofproto, netdev, &opp);
1473         }
1474     } else {
1475         /* Any port named 'name' is gone now. */
1476         ofport_remove_with_name(ofproto, name);
1477     }
1478     ofproto_port_destroy(&ofproto_port);
1479 }
1480
1481 static int
1482 init_ports(struct ofproto *p)
1483 {
1484     struct ofproto_port_dump dump;
1485     struct ofproto_port ofproto_port;
1486
1487     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
1488         uint16_t ofp_port = ofproto_port.ofp_port;
1489         if (ofproto_get_port(p, ofp_port)) {
1490             VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1491                          ofp_port);
1492         } else if (shash_find(&p->port_by_name, ofproto_port.name)) {
1493             VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1494                          ofproto_port.name);
1495         } else {
1496             struct ofp_phy_port opp;
1497             struct netdev *netdev;
1498
1499             netdev = ofport_open(&ofproto_port, &opp);
1500             if (netdev) {
1501                 ofport_install(p, netdev, &opp);
1502             }
1503         }
1504     }
1505
1506     return 0;
1507 }
1508
1509 /* Find the minimum MTU of all non-datapath devices attached to 'p'.
1510  * Returns ETH_PAYLOAD_MAX or the minimum of the ports. */
1511 static int
1512 find_min_mtu(struct ofproto *p)
1513 {
1514     struct ofport *ofport;
1515     int mtu = 0;
1516
1517     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1518         struct netdev *netdev = ofport->netdev;
1519         int dev_mtu;
1520
1521         /* Skip any internal ports, since that's what we're trying to
1522          * set. */
1523         if (!strcmp(netdev_get_type(netdev), "internal")) {
1524             continue;
1525         }
1526
1527         if (netdev_get_mtu(netdev, &dev_mtu)) {
1528             continue;
1529         }
1530         if (!mtu || dev_mtu < mtu) {
1531             mtu = dev_mtu;
1532         }
1533     }
1534
1535     return mtu ? mtu: ETH_PAYLOAD_MAX;
1536 }
1537
1538 /* Set the MTU of all datapath devices on 'p' to the minimum of the
1539  * non-datapath ports. */
1540 static void
1541 set_internal_devs_mtu(struct ofproto *p)
1542 {
1543     struct ofport *ofport;
1544     int mtu = find_min_mtu(p);
1545
1546     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1547         struct netdev *netdev = ofport->netdev;
1548
1549         if (!strcmp(netdev_get_type(netdev), "internal")) {
1550             netdev_set_mtu(netdev, mtu);
1551         }
1552     }
1553 }
1554 \f
1555 static void
1556 ofproto_rule_destroy__(struct rule *rule)
1557 {
1558     free(rule->actions);
1559     rule->ofproto->ofproto_class->rule_dealloc(rule);
1560 }
1561
1562 /* This function allows an ofproto implementation to destroy any rules that
1563  * remain when its ->destruct() function is called.  The caller must have
1564  * already uninitialized any derived members of 'rule' (step 5 described in the
1565  * large comment in ofproto/ofproto-provider.h titled "Life Cycle").
1566  * This function implements steps 6 and 7.
1567  *
1568  * This function should only be called from an ofproto implementation's
1569  * ->destruct() function.  It is not suitable elsewhere. */
1570 void
1571 ofproto_rule_destroy(struct rule *rule)
1572 {
1573     assert(!rule->pending);
1574     classifier_remove(&rule->ofproto->tables[rule->table_id], &rule->cr);
1575     ofproto_rule_destroy__(rule);
1576 }
1577
1578 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
1579  * that outputs to 'out_port' (output to OFPP_FLOOD and OFPP_ALL doesn't
1580  * count). */
1581 static bool
1582 rule_has_out_port(const struct rule *rule, uint16_t out_port)
1583 {
1584     const union ofp_action *oa;
1585     size_t left;
1586
1587     if (out_port == OFPP_NONE) {
1588         return true;
1589     }
1590     OFPUTIL_ACTION_FOR_EACH_UNSAFE (oa, left, rule->actions, rule->n_actions) {
1591         if (action_outputs_to_port(oa, htons(out_port))) {
1592             return true;
1593         }
1594     }
1595     return false;
1596 }
1597
1598 /* Executes the actions indicated by 'rule' on 'packet' and credits 'rule''s
1599  * statistics appropriately.  'packet' must have at least sizeof(struct
1600  * ofp_packet_in) bytes of headroom.
1601  *
1602  * 'packet' doesn't necessarily have to match 'rule'.  'rule' will be credited
1603  * with statistics for 'packet' either way.
1604  *
1605  * Takes ownership of 'packet'. */
1606 static int
1607 rule_execute(struct rule *rule, uint16_t in_port, struct ofpbuf *packet)
1608 {
1609     struct flow flow;
1610
1611     assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
1612
1613     flow_extract(packet, 0, in_port, &flow);
1614     return rule->ofproto->ofproto_class->rule_execute(rule, &flow, packet);
1615 }
1616
1617 /* Returns true if 'rule' should be hidden from the controller.
1618  *
1619  * Rules with priority higher than UINT16_MAX are set up by ofproto itself
1620  * (e.g. by in-band control) and are intentionally hidden from the
1621  * controller. */
1622 static bool
1623 rule_is_hidden(const struct rule *rule)
1624 {
1625     return rule->cr.priority > UINT16_MAX;
1626 }
1627 \f
1628 static int
1629 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
1630 {
1631     ofconn_send_reply(ofconn, make_echo_reply(oh));
1632     return 0;
1633 }
1634
1635 static int
1636 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
1637 {
1638     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1639     struct ofp_switch_features *osf;
1640     struct ofpbuf *buf;
1641     struct ofport *port;
1642     bool arp_match_ip;
1643     uint32_t actions;
1644
1645     ofproto->ofproto_class->get_features(ofproto, &arp_match_ip, &actions);
1646     assert(actions & (1 << OFPAT_OUTPUT)); /* sanity check */
1647
1648     osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
1649     osf->datapath_id = htonll(ofproto->datapath_id);
1650     osf->n_buffers = htonl(pktbuf_capacity());
1651     osf->n_tables = ofproto->n_tables;
1652     osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
1653                               OFPC_PORT_STATS | OFPC_QUEUE_STATS);
1654     if (arp_match_ip) {
1655         osf->capabilities |= htonl(OFPC_ARP_MATCH_IP);
1656     }
1657     osf->actions = htonl(actions);
1658
1659     HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
1660         ofpbuf_put(buf, &port->opp, sizeof port->opp);
1661     }
1662
1663     ofconn_send_reply(ofconn, buf);
1664     return 0;
1665 }
1666
1667 static int
1668 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
1669 {
1670     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1671     struct ofp_switch_config *osc;
1672     struct ofpbuf *buf;
1673
1674     /* Send reply. */
1675     osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
1676     osc->flags = htons(ofproto->frag_handling);
1677     osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
1678     ofconn_send_reply(ofconn, buf);
1679
1680     return 0;
1681 }
1682
1683 static int
1684 handle_set_config(struct ofconn *ofconn, const struct ofp_switch_config *osc)
1685 {
1686     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1687     uint16_t flags = ntohs(osc->flags);
1688
1689     if (ofconn_get_type(ofconn) != OFCONN_PRIMARY
1690         || ofconn_get_role(ofconn) != NX_ROLE_SLAVE) {
1691         enum ofp_config_flags cur = ofproto->frag_handling;
1692         enum ofp_config_flags next = flags & OFPC_FRAG_MASK;
1693
1694         assert((cur & OFPC_FRAG_MASK) == cur);
1695         if (cur != next) {
1696             if (ofproto->ofproto_class->set_frag_handling(ofproto, next)) {
1697                 ofproto->frag_handling = next;
1698             } else {
1699                 VLOG_WARN_RL(&rl, "%s: unsupported fragment handling mode %s",
1700                              ofproto->name,
1701                              ofputil_frag_handling_to_string(next));
1702             }
1703         }
1704     }
1705
1706     ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
1707
1708     return 0;
1709 }
1710
1711 /* Checks whether 'ofconn' is a slave controller.  If so, returns an OpenFlow
1712  * error message code (composed with ofp_mkerr()) for the caller to propagate
1713  * upward.  Otherwise, returns 0.
1714  *
1715  * The log message mentions 'msg_type'. */
1716 static int
1717 reject_slave_controller(struct ofconn *ofconn, const char *msg_type)
1718 {
1719     if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
1720         && ofconn_get_role(ofconn) == NX_ROLE_SLAVE) {
1721         static struct vlog_rate_limit perm_rl = VLOG_RATE_LIMIT_INIT(1, 5);
1722         VLOG_WARN_RL(&perm_rl, "rejecting %s message from slave controller",
1723                      msg_type);
1724
1725         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
1726     } else {
1727         return 0;
1728     }
1729 }
1730
1731 static int
1732 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
1733 {
1734     struct ofproto *p = ofconn_get_ofproto(ofconn);
1735     struct ofp_packet_out *opo;
1736     struct ofpbuf payload, *buffer;
1737     union ofp_action *ofp_actions;
1738     struct ofpbuf request;
1739     struct flow flow;
1740     size_t n_ofp_actions;
1741     int error;
1742
1743     COVERAGE_INC(ofproto_packet_out);
1744
1745     error = reject_slave_controller(ofconn, "OFPT_PACKET_OUT");
1746     if (error) {
1747         return error;
1748     }
1749
1750     /* Get ofp_packet_out. */
1751     ofpbuf_use_const(&request, oh, ntohs(oh->length));
1752     opo = ofpbuf_pull(&request, offsetof(struct ofp_packet_out, actions));
1753
1754     /* Get actions. */
1755     error = ofputil_pull_actions(&request, ntohs(opo->actions_len),
1756                                  &ofp_actions, &n_ofp_actions);
1757     if (error) {
1758         return error;
1759     }
1760
1761     /* Get payload. */
1762     if (opo->buffer_id != htonl(UINT32_MAX)) {
1763         error = ofconn_pktbuf_retrieve(ofconn, ntohl(opo->buffer_id),
1764                                        &buffer, NULL);
1765         if (error || !buffer) {
1766             return error;
1767         }
1768         payload = *buffer;
1769     } else {
1770         payload = request;
1771         buffer = NULL;
1772     }
1773
1774     /* Send out packet. */
1775     flow_extract(&payload, 0, ntohs(opo->in_port), &flow);
1776     error = p->ofproto_class->packet_out(p, &payload, &flow,
1777                                          ofp_actions, n_ofp_actions);
1778     ofpbuf_delete(buffer);
1779
1780     return error;
1781 }
1782
1783 static void
1784 update_port_config(struct ofport *port, ovs_be32 config, ovs_be32 mask)
1785 {
1786     ovs_be32 old_config = port->opp.config;
1787
1788     mask &= config ^ port->opp.config;
1789     if (mask & htonl(OFPPC_PORT_DOWN)) {
1790         if (config & htonl(OFPPC_PORT_DOWN)) {
1791             netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
1792         } else {
1793             netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
1794         }
1795     }
1796
1797     port->opp.config ^= mask & (htonl(OFPPC_NO_RECV | OFPPC_NO_RECV_STP |
1798                                       OFPPC_NO_FLOOD | OFPPC_NO_FWD |
1799                                       OFPPC_NO_PACKET_IN));
1800     if (port->opp.config != old_config) {
1801         port->ofproto->ofproto_class->port_reconfigured(port, old_config);
1802     }
1803 }
1804
1805 static int
1806 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
1807 {
1808     struct ofproto *p = ofconn_get_ofproto(ofconn);
1809     const struct ofp_port_mod *opm = (const struct ofp_port_mod *) oh;
1810     struct ofport *port;
1811     int error;
1812
1813     error = reject_slave_controller(ofconn, "OFPT_PORT_MOD");
1814     if (error) {
1815         return error;
1816     }
1817
1818     port = ofproto_get_port(p, ntohs(opm->port_no));
1819     if (!port) {
1820         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
1821     } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
1822         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
1823     } else {
1824         update_port_config(port, opm->config, opm->mask);
1825         if (opm->advertise) {
1826             netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
1827         }
1828     }
1829     return 0;
1830 }
1831
1832 static int
1833 handle_desc_stats_request(struct ofconn *ofconn,
1834                           const struct ofp_stats_msg *request)
1835 {
1836     struct ofproto *p = ofconn_get_ofproto(ofconn);
1837     struct ofp_desc_stats *ods;
1838     struct ofpbuf *msg;
1839
1840     ods = ofputil_make_stats_reply(sizeof *ods, request, &msg);
1841     ovs_strlcpy(ods->mfr_desc, p->mfr_desc, sizeof ods->mfr_desc);
1842     ovs_strlcpy(ods->hw_desc, p->hw_desc, sizeof ods->hw_desc);
1843     ovs_strlcpy(ods->sw_desc, p->sw_desc, sizeof ods->sw_desc);
1844     ovs_strlcpy(ods->serial_num, p->serial_desc, sizeof ods->serial_num);
1845     ovs_strlcpy(ods->dp_desc, p->dp_desc, sizeof ods->dp_desc);
1846     ofconn_send_reply(ofconn, msg);
1847
1848     return 0;
1849 }
1850
1851 static int
1852 handle_table_stats_request(struct ofconn *ofconn,
1853                            const struct ofp_stats_msg *request)
1854 {
1855     struct ofproto *p = ofconn_get_ofproto(ofconn);
1856     struct ofp_table_stats *ots;
1857     struct ofpbuf *msg;
1858     size_t i;
1859
1860     ofputil_make_stats_reply(sizeof(struct ofp_stats_msg), request, &msg);
1861
1862     ots = ofpbuf_put_zeros(msg, sizeof *ots * p->n_tables);
1863     for (i = 0; i < p->n_tables; i++) {
1864         ots[i].table_id = i;
1865         sprintf(ots[i].name, "table%zu", i);
1866         ots[i].wildcards = htonl(OFPFW_ALL);
1867         ots[i].max_entries = htonl(1000000); /* An arbitrary big number. */
1868         ots[i].active_count = htonl(classifier_count(&p->tables[i]));
1869     }
1870
1871     p->ofproto_class->get_tables(p, ots);
1872
1873     ofconn_send_reply(ofconn, msg);
1874     return 0;
1875 }
1876
1877 static void
1878 append_port_stat(struct ofport *port, struct list *replies)
1879 {
1880     struct netdev_stats stats;
1881     struct ofp_port_stats *ops;
1882
1883     /* Intentionally ignore return value, since errors will set
1884      * 'stats' to all-1s, which is correct for OpenFlow, and
1885      * netdev_get_stats() will log errors. */
1886     netdev_get_stats(port->netdev, &stats);
1887
1888     ops = ofputil_append_stats_reply(sizeof *ops, replies);
1889     ops->port_no = port->opp.port_no;
1890     memset(ops->pad, 0, sizeof ops->pad);
1891     put_32aligned_be64(&ops->rx_packets, htonll(stats.rx_packets));
1892     put_32aligned_be64(&ops->tx_packets, htonll(stats.tx_packets));
1893     put_32aligned_be64(&ops->rx_bytes, htonll(stats.rx_bytes));
1894     put_32aligned_be64(&ops->tx_bytes, htonll(stats.tx_bytes));
1895     put_32aligned_be64(&ops->rx_dropped, htonll(stats.rx_dropped));
1896     put_32aligned_be64(&ops->tx_dropped, htonll(stats.tx_dropped));
1897     put_32aligned_be64(&ops->rx_errors, htonll(stats.rx_errors));
1898     put_32aligned_be64(&ops->tx_errors, htonll(stats.tx_errors));
1899     put_32aligned_be64(&ops->rx_frame_err, htonll(stats.rx_frame_errors));
1900     put_32aligned_be64(&ops->rx_over_err, htonll(stats.rx_over_errors));
1901     put_32aligned_be64(&ops->rx_crc_err, htonll(stats.rx_crc_errors));
1902     put_32aligned_be64(&ops->collisions, htonll(stats.collisions));
1903 }
1904
1905 static int
1906 handle_port_stats_request(struct ofconn *ofconn,
1907                           const struct ofp_port_stats_request *psr)
1908 {
1909     struct ofproto *p = ofconn_get_ofproto(ofconn);
1910     struct ofport *port;
1911     struct list replies;
1912
1913     ofputil_start_stats_reply(&psr->osm, &replies);
1914     if (psr->port_no != htons(OFPP_NONE)) {
1915         port = ofproto_get_port(p, ntohs(psr->port_no));
1916         if (port) {
1917             append_port_stat(port, &replies);
1918         }
1919     } else {
1920         HMAP_FOR_EACH (port, hmap_node, &p->ports) {
1921             append_port_stat(port, &replies);
1922         }
1923     }
1924
1925     ofconn_send_replies(ofconn, &replies);
1926     return 0;
1927 }
1928
1929 static void
1930 calc_flow_duration__(long long int start, uint32_t *sec, uint32_t *nsec)
1931 {
1932     long long int msecs = time_msec() - start;
1933     *sec = msecs / 1000;
1934     *nsec = (msecs % 1000) * (1000 * 1000);
1935 }
1936
1937 static struct classifier *
1938 first_matching_table(struct ofproto *ofproto, uint8_t table_id)
1939 {
1940     if (table_id == 0xff) {
1941         return &ofproto->tables[0];
1942     } else if (table_id < ofproto->n_tables) {
1943         return &ofproto->tables[table_id];
1944     } else {
1945         /* It would probably be better to reply with an error but there doesn't
1946          * seem to be any appropriate value, so that might just be
1947          * confusing. */
1948         VLOG_WARN_RL(&rl, "controller asked for invalid table %"PRIu8,
1949                      table_id);
1950         return NULL;
1951     }
1952 }
1953
1954 static struct classifier *
1955 next_matching_table(struct ofproto *ofproto,
1956                     struct classifier *cls, uint8_t table_id)
1957 {
1958     return (table_id == 0xff && cls != &ofproto->tables[ofproto->n_tables - 1]
1959             ? cls + 1
1960             : NULL);
1961 }
1962
1963 /* Assigns CLS to each classifier table, in turn, that matches TABLE_ID in
1964  * OFPROTO:
1965  *
1966  *   - If TABLE_ID is 0xff, this iterates over every classifier table in
1967  *     OFPROTO.
1968  *
1969  *   - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
1970  *     only once, for that table.
1971  *
1972  *   - Otherwise, TABLE_ID isn't valid for OFPROTO, so ofproto logs a warning
1973  *     and does not enter the loop at all.
1974  *
1975  * All parameters are evaluated multiple times.
1976  */
1977 #define FOR_EACH_MATCHING_TABLE(CLS, TABLE_ID, OFPROTO)         \
1978     for ((CLS) = first_matching_table(OFPROTO, TABLE_ID);       \
1979          (CLS) != NULL;                                         \
1980          (CLS) = next_matching_table(OFPROTO, CLS, TABLE_ID))
1981
1982 /* Searches 'ofproto' for rules in table 'table_id' (or in all tables, if
1983  * 'table_id' is 0xff) that match 'match' in the "loose" way required for
1984  * OpenFlow OFPFC_MODIFY and OFPFC_DELETE requests and puts them on list
1985  * 'rules'.
1986  *
1987  * If 'out_port' is anything other than OFPP_NONE, then only rules that output
1988  * to 'out_port' are included.
1989  *
1990  * Hidden rules are always omitted.
1991  *
1992  * Returns 0 on success, otherwise an OpenFlow error code. */
1993 static int
1994 collect_rules_loose(struct ofproto *ofproto, uint8_t table_id,
1995                     const struct cls_rule *match, uint16_t out_port,
1996                     struct list *rules)
1997 {
1998     struct classifier *cls;
1999
2000     list_init(rules);
2001     FOR_EACH_MATCHING_TABLE (cls, table_id, ofproto) {
2002         struct cls_cursor cursor;
2003         struct rule *rule;
2004
2005         cls_cursor_init(&cursor, cls, match);
2006         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
2007             if (rule->pending) {
2008                 return OFPROTO_POSTPONE;
2009             }
2010             if (!rule_is_hidden(rule) && rule_has_out_port(rule, out_port)) {
2011                 list_push_back(rules, &rule->ofproto_node);
2012             }
2013         }
2014     }
2015     return 0;
2016 }
2017
2018 /* Searches 'ofproto' for rules in table 'table_id' (or in all tables, if
2019  * 'table_id' is 0xff) that match 'match' in the "strict" way required for
2020  * OpenFlow OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests and puts them
2021  * on list 'rules'.
2022  *
2023  * If 'out_port' is anything other than OFPP_NONE, then only rules that output
2024  * to 'out_port' are included.
2025  *
2026  * Hidden rules are always omitted.
2027  *
2028  * Returns 0 on success, otherwise an OpenFlow error code. */
2029 static int
2030 collect_rules_strict(struct ofproto *ofproto, uint8_t table_id,
2031                      const struct cls_rule *match, uint16_t out_port,
2032                      struct list *rules)
2033 {
2034     struct classifier *cls;
2035
2036     list_init(rules);
2037     FOR_EACH_MATCHING_TABLE (cls, table_id, ofproto) {
2038         struct rule *rule;
2039
2040         rule = rule_from_cls_rule(classifier_find_rule_exactly(cls, match));
2041         if (rule) {
2042             if (rule->pending) {
2043                 return OFPROTO_POSTPONE;
2044             }
2045             if (!rule_is_hidden(rule) && rule_has_out_port(rule, out_port)) {
2046                 list_push_back(rules, &rule->ofproto_node);
2047             }
2048         }
2049     }
2050     return 0;
2051 }
2052
2053 static int
2054 handle_flow_stats_request(struct ofconn *ofconn,
2055                           const struct ofp_stats_msg *osm)
2056 {
2057     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2058     struct ofputil_flow_stats_request fsr;
2059     struct list replies;
2060     struct list rules;
2061     struct rule *rule;
2062     int error;
2063
2064     error = ofputil_decode_flow_stats_request(&fsr, &osm->header);
2065     if (error) {
2066         return error;
2067     }
2068
2069     error = collect_rules_loose(ofproto, fsr.table_id, &fsr.match,
2070                                 fsr.out_port, &rules);
2071     if (error) {
2072         return error;
2073     }
2074
2075     ofputil_start_stats_reply(osm, &replies);
2076     LIST_FOR_EACH (rule, ofproto_node, &rules) {
2077         struct ofputil_flow_stats fs;
2078
2079         fs.rule = rule->cr;
2080         fs.cookie = rule->flow_cookie;
2081         fs.table_id = rule->table_id;
2082         calc_flow_duration__(rule->created, &fs.duration_sec,
2083                              &fs.duration_nsec);
2084         fs.idle_timeout = rule->idle_timeout;
2085         fs.hard_timeout = rule->hard_timeout;
2086         ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
2087                                                &fs.byte_count);
2088         fs.actions = rule->actions;
2089         fs.n_actions = rule->n_actions;
2090         ofputil_append_flow_stats_reply(&fs, &replies);
2091     }
2092     ofconn_send_replies(ofconn, &replies);
2093
2094     return 0;
2095 }
2096
2097 static void
2098 flow_stats_ds(struct rule *rule, struct ds *results)
2099 {
2100     uint64_t packet_count, byte_count;
2101
2102     rule->ofproto->ofproto_class->rule_get_stats(rule,
2103                                                  &packet_count, &byte_count);
2104
2105     if (rule->table_id != 0) {
2106         ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
2107     }
2108     ds_put_format(results, "duration=%llds, ",
2109                   (time_msec() - rule->created) / 1000);
2110     ds_put_format(results, "priority=%u, ", rule->cr.priority);
2111     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
2112     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
2113     cls_rule_format(&rule->cr, results);
2114     ds_put_char(results, ',');
2115     if (rule->n_actions > 0) {
2116         ofp_print_actions(results, rule->actions, rule->n_actions);
2117     } else {
2118         ds_put_cstr(results, "drop");
2119     }
2120     ds_put_cstr(results, "\n");
2121 }
2122
2123 /* Adds a pretty-printed description of all flows to 'results', including
2124  * hidden flows (e.g., set up by in-band control). */
2125 void
2126 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
2127 {
2128     struct classifier *cls;
2129
2130     OFPROTO_FOR_EACH_TABLE (cls, p) {
2131         struct cls_cursor cursor;
2132         struct rule *rule;
2133
2134         cls_cursor_init(&cursor, cls, NULL);
2135         CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
2136             flow_stats_ds(rule, results);
2137         }
2138     }
2139 }
2140
2141 /* Obtains the NetFlow engine type and engine ID for 'ofproto' into
2142  * '*engine_type' and '*engine_id', respectively. */
2143 void
2144 ofproto_get_netflow_ids(const struct ofproto *ofproto,
2145                         uint8_t *engine_type, uint8_t *engine_id)
2146 {
2147     ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
2148 }
2149
2150 /* Checks the fault status of CFM for 'ofp_port' within 'ofproto'.  Returns 1
2151  * if CFM is faulted (generally indiciating a connectivity problem), 0 if CFM
2152  * is not faulted, and -1 if CFM is not enabled on 'ofp_port'. */
2153 int
2154 ofproto_port_get_cfm_fault(const struct ofproto *ofproto, uint16_t ofp_port)
2155 {
2156     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
2157     return (ofport && ofproto->ofproto_class->get_cfm_fault
2158             ? ofproto->ofproto_class->get_cfm_fault(ofport)
2159             : -1);
2160 }
2161
2162 /* Gets the MPIDs of the remote maintenance points broadcasting to 'ofp_port'
2163  * within 'ofproto'.  Populates 'rmps' with an array of MPIDs owned by
2164  * 'ofproto', and 'n_rmps' with the number of MPIDs in 'rmps'.  Returns a
2165  * number less than 0 if CFM is not enabled on 'ofp_port'. */
2166 int
2167 ofproto_port_get_cfm_remote_mpids(const struct ofproto *ofproto,
2168                                   uint16_t ofp_port, const uint64_t **rmps,
2169                                   size_t *n_rmps)
2170 {
2171     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
2172
2173     *rmps = NULL;
2174     *n_rmps = 0;
2175     return (ofport && ofproto->ofproto_class->get_cfm_remote_mpids
2176             ? ofproto->ofproto_class->get_cfm_remote_mpids(ofport, rmps,
2177                                                            n_rmps)
2178             : -1);
2179 }
2180
2181 static int
2182 handle_aggregate_stats_request(struct ofconn *ofconn,
2183                                const struct ofp_stats_msg *osm)
2184 {
2185     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2186     struct ofputil_flow_stats_request request;
2187     struct ofputil_aggregate_stats stats;
2188     bool unknown_packets, unknown_bytes;
2189     struct ofpbuf *reply;
2190     struct list rules;
2191     struct rule *rule;
2192     int error;
2193
2194     error = ofputil_decode_flow_stats_request(&request, &osm->header);
2195     if (error) {
2196         return error;
2197     }
2198
2199     error = collect_rules_loose(ofproto, request.table_id, &request.match,
2200                                 request.out_port, &rules);
2201     if (error) {
2202         return error;
2203     }
2204
2205     memset(&stats, 0, sizeof stats);
2206     unknown_packets = unknown_bytes = false;
2207     LIST_FOR_EACH (rule, ofproto_node, &rules) {
2208         uint64_t packet_count;
2209         uint64_t byte_count;
2210
2211         ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
2212                                                &byte_count);
2213
2214         if (packet_count == UINT64_MAX) {
2215             unknown_packets = true;
2216         } else {
2217             stats.packet_count += packet_count;
2218         }
2219
2220         if (byte_count == UINT64_MAX) {
2221             unknown_bytes = true;
2222         } else {
2223             stats.byte_count += byte_count;
2224         }
2225
2226         stats.flow_count++;
2227     }
2228     if (unknown_packets) {
2229         stats.packet_count = UINT64_MAX;
2230     }
2231     if (unknown_bytes) {
2232         stats.byte_count = UINT64_MAX;
2233     }
2234
2235     reply = ofputil_encode_aggregate_stats_reply(&stats, osm);
2236     ofconn_send_reply(ofconn, reply);
2237
2238     return 0;
2239 }
2240
2241 struct queue_stats_cbdata {
2242     struct ofport *ofport;
2243     struct list replies;
2244 };
2245
2246 static void
2247 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
2248                 const struct netdev_queue_stats *stats)
2249 {
2250     struct ofp_queue_stats *reply;
2251
2252     reply = ofputil_append_stats_reply(sizeof *reply, &cbdata->replies);
2253     reply->port_no = cbdata->ofport->opp.port_no;
2254     memset(reply->pad, 0, sizeof reply->pad);
2255     reply->queue_id = htonl(queue_id);
2256     put_32aligned_be64(&reply->tx_bytes, htonll(stats->tx_bytes));
2257     put_32aligned_be64(&reply->tx_packets, htonll(stats->tx_packets));
2258     put_32aligned_be64(&reply->tx_errors, htonll(stats->tx_errors));
2259 }
2260
2261 static void
2262 handle_queue_stats_dump_cb(uint32_t queue_id,
2263                            struct netdev_queue_stats *stats,
2264                            void *cbdata_)
2265 {
2266     struct queue_stats_cbdata *cbdata = cbdata_;
2267
2268     put_queue_stats(cbdata, queue_id, stats);
2269 }
2270
2271 static void
2272 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
2273                             struct queue_stats_cbdata *cbdata)
2274 {
2275     cbdata->ofport = port;
2276     if (queue_id == OFPQ_ALL) {
2277         netdev_dump_queue_stats(port->netdev,
2278                                 handle_queue_stats_dump_cb, cbdata);
2279     } else {
2280         struct netdev_queue_stats stats;
2281
2282         if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
2283             put_queue_stats(cbdata, queue_id, &stats);
2284         }
2285     }
2286 }
2287
2288 static int
2289 handle_queue_stats_request(struct ofconn *ofconn,
2290                            const struct ofp_queue_stats_request *qsr)
2291 {
2292     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2293     struct queue_stats_cbdata cbdata;
2294     struct ofport *port;
2295     unsigned int port_no;
2296     uint32_t queue_id;
2297
2298     COVERAGE_INC(ofproto_queue_req);
2299
2300     ofputil_start_stats_reply(&qsr->osm, &cbdata.replies);
2301
2302     port_no = ntohs(qsr->port_no);
2303     queue_id = ntohl(qsr->queue_id);
2304     if (port_no == OFPP_ALL) {
2305         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
2306             handle_queue_stats_for_port(port, queue_id, &cbdata);
2307         }
2308     } else if (port_no < OFPP_MAX) {
2309         port = ofproto_get_port(ofproto, port_no);
2310         if (port) {
2311             handle_queue_stats_for_port(port, queue_id, &cbdata);
2312         }
2313     } else {
2314         ofpbuf_list_delete(&cbdata.replies);
2315         return ofp_mkerr(OFPET_QUEUE_OP_FAILED, OFPQOFC_BAD_PORT);
2316     }
2317     ofconn_send_replies(ofconn, &cbdata.replies);
2318
2319     return 0;
2320 }
2321
2322 static bool
2323 is_flow_deletion_pending(const struct ofproto *ofproto,
2324                          const struct cls_rule *cls_rule,
2325                          uint8_t table_id)
2326 {
2327     if (!hmap_is_empty(&ofproto->deletions)) {
2328         struct ofoperation *op;
2329
2330         HMAP_FOR_EACH_WITH_HASH (op, hmap_node,
2331                                  cls_rule_hash(cls_rule, table_id),
2332                                  &ofproto->deletions) {
2333             if (cls_rule_equal(cls_rule, &op->rule->cr)) {
2334                 return true;
2335             }
2336         }
2337     }
2338
2339     return false;
2340 }
2341
2342 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
2343  * in which no matching flow already exists in the flow table.
2344  *
2345  * Adds the flow specified by 'ofm', which is followed by 'n_actions'
2346  * ofp_actions, to the ofproto's flow table.  Returns 0 on success, an OpenFlow
2347  * error code as encoded by ofp_mkerr() on failure, or OFPROTO_POSTPONE if the
2348  * operation cannot be initiated now but may be retried later.
2349  *
2350  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
2351  * if any. */
2352 static int
2353 add_flow(struct ofproto *ofproto, struct ofconn *ofconn,
2354          const struct ofputil_flow_mod *fm, const struct ofp_header *request)
2355 {
2356     struct classifier *table;
2357     struct ofopgroup *group;
2358     struct rule *victim;
2359     struct rule *rule;
2360     int error;
2361
2362     /* Pick table. */
2363     if (fm->table_id == 0xff) {
2364         uint8_t table_id;
2365         if (ofproto->ofproto_class->rule_choose_table) {
2366             error = ofproto->ofproto_class->rule_choose_table(ofproto, &fm->cr,
2367                                                               &table_id);
2368             if (error) {
2369                 return error;
2370             }
2371             assert(table_id < ofproto->n_tables);
2372             table = &ofproto->tables[table_id];
2373         } else {
2374             table = &ofproto->tables[0];
2375         }
2376     } else if (fm->table_id < ofproto->n_tables) {
2377         table = &ofproto->tables[fm->table_id];
2378     } else {
2379         return ofp_mkerr_nicira(OFPET_FLOW_MOD_FAILED, NXFMFC_BAD_TABLE_ID);
2380     }
2381
2382     /* Check for overlap, if requested. */
2383     if (fm->flags & OFPFF_CHECK_OVERLAP
2384         && classifier_rule_overlaps(table, &fm->cr)) {
2385         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP);
2386     }
2387
2388     /* Serialize against pending deletion. */
2389     if (is_flow_deletion_pending(ofproto, &fm->cr, table - ofproto->tables)) {
2390         return OFPROTO_POSTPONE;
2391     }
2392
2393     /* Allocate new rule. */
2394     rule = ofproto->ofproto_class->rule_alloc();
2395     if (!rule) {
2396         VLOG_WARN_RL(&rl, "%s: failed to create rule (%s)",
2397                      ofproto->name, strerror(error));
2398         return ENOMEM;
2399     }
2400     rule->ofproto = ofproto;
2401     rule->cr = fm->cr;
2402     rule->pending = NULL;
2403     rule->flow_cookie = fm->cookie;
2404     rule->created = rule->modified = time_msec();
2405     rule->idle_timeout = fm->idle_timeout;
2406     rule->hard_timeout = fm->hard_timeout;
2407     rule->table_id = table - ofproto->tables;
2408     rule->send_flow_removed = (fm->flags & OFPFF_SEND_FLOW_REM) != 0;
2409     rule->actions = ofputil_actions_clone(fm->actions, fm->n_actions);
2410     rule->n_actions = fm->n_actions;
2411
2412     /* Insert new rule. */
2413     victim = rule_from_cls_rule(classifier_replace(table, &rule->cr));
2414     if (victim && victim->pending) {
2415         error = OFPROTO_POSTPONE;
2416     } else {
2417         group = ofopgroup_create(ofproto, ofconn, request, fm->buffer_id);
2418         ofoperation_create(group, rule, OFOPERATION_ADD);
2419         rule->pending->victim = victim;
2420
2421         error = ofproto->ofproto_class->rule_construct(rule);
2422         if (error) {
2423             ofoperation_destroy(rule->pending);
2424         }
2425         ofopgroup_submit(group);
2426     }
2427
2428     /* Back out if an error occurred. */
2429     if (error) {
2430         if (victim) {
2431             classifier_replace(table, &victim->cr);
2432         } else {
2433             classifier_remove(table, &rule->cr);
2434         }
2435         ofproto_rule_destroy__(rule);
2436     }
2437     return error;
2438 }
2439 \f
2440 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
2441
2442 /* Modifies the rules listed in 'rules', changing their actions to match those
2443  * in 'fm'.
2444  *
2445  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
2446  * if any.
2447  *
2448  * Returns 0 on success, otherwise an OpenFlow error code. */
2449 static int
2450 modify_flows__(struct ofproto *ofproto, struct ofconn *ofconn,
2451                const struct ofputil_flow_mod *fm,
2452                const struct ofp_header *request, struct list *rules)
2453 {
2454     struct ofopgroup *group;
2455     struct rule *rule;
2456
2457     group = ofopgroup_create(ofproto, ofconn, request, fm->buffer_id);
2458     LIST_FOR_EACH (rule, ofproto_node, rules) {
2459         if (!ofputil_actions_equal(fm->actions, fm->n_actions,
2460                                    rule->actions, rule->n_actions)) {
2461             ofoperation_create(group, rule, OFOPERATION_MODIFY);
2462             rule->pending->actions = rule->actions;
2463             rule->pending->n_actions = rule->n_actions;
2464             rule->actions = ofputil_actions_clone(fm->actions, fm->n_actions);
2465             rule->n_actions = fm->n_actions;
2466             rule->ofproto->ofproto_class->rule_modify_actions(rule);
2467         } else {
2468             rule->modified = time_msec();
2469         }
2470         rule->flow_cookie = fm->cookie;
2471     }
2472     ofopgroup_submit(group);
2473
2474     return 0;
2475 }
2476
2477 /* Implements OFPFC_MODIFY.  Returns 0 on success or an OpenFlow error code as
2478  * encoded by ofp_mkerr() on failure.
2479  *
2480  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
2481  * if any. */
2482 static int
2483 modify_flows_loose(struct ofproto *ofproto, struct ofconn *ofconn,
2484                    const struct ofputil_flow_mod *fm,
2485                    const struct ofp_header *request)
2486 {
2487     struct list rules;
2488     int error;
2489
2490     error = collect_rules_loose(ofproto, fm->table_id, &fm->cr, OFPP_NONE,
2491                                 &rules);
2492     return (error ? error
2493             : list_is_empty(&rules) ? add_flow(ofproto, ofconn, fm, request)
2494             : modify_flows__(ofproto, ofconn, fm, request, &rules));
2495 }
2496
2497 /* Implements OFPFC_MODIFY_STRICT.  Returns 0 on success or an OpenFlow error
2498  * code as encoded by ofp_mkerr() on failure.
2499  *
2500  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
2501  * if any. */
2502 static int
2503 modify_flow_strict(struct ofproto *ofproto, struct ofconn *ofconn,
2504                    const struct ofputil_flow_mod *fm,
2505                    const struct ofp_header *request)
2506 {
2507     struct list rules;
2508     int error;
2509
2510     error = collect_rules_strict(ofproto, fm->table_id, &fm->cr, OFPP_NONE,
2511                                  &rules);
2512     return (error ? error
2513             : list_is_empty(&rules) ? add_flow(ofproto, ofconn, fm, request)
2514             : list_is_singleton(&rules) ? modify_flows__(ofproto, ofconn,
2515                                                          fm, request, &rules)
2516             : 0);
2517 }
2518 \f
2519 /* OFPFC_DELETE implementation. */
2520
2521 /* Deletes the rules listed in 'rules'.
2522  *
2523  * Returns 0 on success, otherwise an OpenFlow error code. */
2524 static int
2525 delete_flows__(struct ofproto *ofproto, struct ofconn *ofconn,
2526                const struct ofp_header *request, struct list *rules)
2527 {
2528     struct rule *rule, *next;
2529     struct ofopgroup *group;
2530
2531     group = ofopgroup_create(ofproto, ofconn, request, UINT32_MAX);
2532     LIST_FOR_EACH_SAFE (rule, next, ofproto_node, rules) {
2533         ofproto_rule_send_removed(rule, OFPRR_DELETE);
2534
2535         ofoperation_create(group, rule, OFOPERATION_DELETE);
2536         classifier_remove(&ofproto->tables[rule->table_id], &rule->cr);
2537         rule->ofproto->ofproto_class->rule_destruct(rule);
2538     }
2539     ofopgroup_submit(group);
2540
2541     return 0;
2542 }
2543
2544 /* Implements OFPFC_DELETE. */
2545 static int
2546 delete_flows_loose(struct ofproto *ofproto, struct ofconn *ofconn,
2547                    const struct ofputil_flow_mod *fm,
2548                    const struct ofp_header *request)
2549 {
2550     struct list rules;
2551     int error;
2552
2553     error = collect_rules_loose(ofproto, fm->table_id, &fm->cr, fm->out_port,
2554                                 &rules);
2555     return (error ? error
2556             : !list_is_empty(&rules) ? delete_flows__(ofproto, ofconn, request,
2557                                                       &rules)
2558             : 0);
2559 }
2560
2561 /* Implements OFPFC_DELETE_STRICT. */
2562 static int
2563 delete_flow_strict(struct ofproto *ofproto, struct ofconn *ofconn,
2564                    const struct ofputil_flow_mod *fm,
2565                    const struct ofp_header *request)
2566 {
2567     struct list rules;
2568     int error;
2569
2570     error = collect_rules_strict(ofproto, fm->table_id, &fm->cr, fm->out_port,
2571                                  &rules);
2572     return (error ? error
2573             : list_is_singleton(&rules) ? delete_flows__(ofproto, ofconn,
2574                                                          request, &rules)
2575             : 0);
2576 }
2577
2578 static void
2579 ofproto_rule_send_removed(struct rule *rule, uint8_t reason)
2580 {
2581     struct ofputil_flow_removed fr;
2582
2583     if (rule_is_hidden(rule) || !rule->send_flow_removed) {
2584         return;
2585     }
2586
2587     fr.rule = rule->cr;
2588     fr.cookie = rule->flow_cookie;
2589     fr.reason = reason;
2590     calc_flow_duration__(rule->created, &fr.duration_sec, &fr.duration_nsec);
2591     fr.idle_timeout = rule->idle_timeout;
2592     rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
2593                                                  &fr.byte_count);
2594
2595     connmgr_send_flow_removed(rule->ofproto->connmgr, &fr);
2596 }
2597
2598 /* Sends an OpenFlow "flow removed" message with the given 'reason' (either
2599  * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
2600  * ofproto.
2601  *
2602  * ofproto implementation ->run() functions should use this function to expire
2603  * OpenFlow flows. */
2604 void
2605 ofproto_rule_expire(struct rule *rule, uint8_t reason)
2606 {
2607     struct ofproto *ofproto = rule->ofproto;
2608     struct ofopgroup *group;
2609
2610     assert(reason == OFPRR_HARD_TIMEOUT || reason == OFPRR_IDLE_TIMEOUT);
2611
2612     ofproto_rule_send_removed(rule, reason);
2613
2614     group = ofopgroup_create_unattached(ofproto);
2615     ofoperation_create(group, rule, OFOPERATION_DELETE);
2616     classifier_remove(&ofproto->tables[rule->table_id], &rule->cr);
2617     rule->ofproto->ofproto_class->rule_destruct(rule);
2618     ofopgroup_submit(group);
2619 }
2620 \f
2621 static int
2622 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
2623 {
2624     struct ofputil_flow_mod fm;
2625     int error;
2626
2627     error = reject_slave_controller(ofconn, "flow_mod");
2628     if (error) {
2629         return error;
2630     }
2631
2632     error = ofputil_decode_flow_mod(&fm, oh,
2633                                     ofconn_get_flow_mod_table_id(ofconn));
2634     if (error) {
2635         return error;
2636     }
2637
2638     /* We do not support the emergency flow cache.  It will hopefully get
2639      * dropped from OpenFlow in the near future. */
2640     if (fm.flags & OFPFF_EMERG) {
2641         /* There isn't a good fit for an error code, so just state that the
2642          * flow table is full. */
2643         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL);
2644     }
2645
2646     return handle_flow_mod__(ofconn_get_ofproto(ofconn), ofconn, &fm, oh);
2647 }
2648
2649 static int
2650 handle_flow_mod__(struct ofproto *ofproto, struct ofconn *ofconn,
2651                   const struct ofputil_flow_mod *fm,
2652                   const struct ofp_header *oh)
2653 {
2654     if (ofproto->n_pending >= 50) {
2655         assert(!list_is_empty(&ofproto->pending));
2656         return OFPROTO_POSTPONE;
2657     }
2658
2659     switch (fm->command) {
2660     case OFPFC_ADD:
2661         return add_flow(ofproto, ofconn, fm, oh);
2662
2663     case OFPFC_MODIFY:
2664         return modify_flows_loose(ofproto, ofconn, fm, oh);
2665
2666     case OFPFC_MODIFY_STRICT:
2667         return modify_flow_strict(ofproto, ofconn, fm, oh);
2668
2669     case OFPFC_DELETE:
2670         return delete_flows_loose(ofproto, ofconn, fm, oh);
2671
2672     case OFPFC_DELETE_STRICT:
2673         return delete_flow_strict(ofproto, ofconn, fm, oh);
2674
2675     default:
2676         if (fm->command > 0xff) {
2677             VLOG_WARN_RL(&rl, "flow_mod has explicit table_id but "
2678                          "flow_mod_table_id extension is not enabled");
2679         }
2680         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
2681     }
2682 }
2683
2684 static int
2685 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
2686 {
2687     struct nx_role_request *nrr = (struct nx_role_request *) oh;
2688     struct nx_role_request *reply;
2689     struct ofpbuf *buf;
2690     uint32_t role;
2691
2692     if (ofconn_get_type(ofconn) != OFCONN_PRIMARY) {
2693         VLOG_WARN_RL(&rl, "ignoring role request on service connection");
2694         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2695     }
2696
2697     role = ntohl(nrr->role);
2698     if (role != NX_ROLE_OTHER && role != NX_ROLE_MASTER
2699         && role != NX_ROLE_SLAVE) {
2700         VLOG_WARN_RL(&rl, "received request for unknown role %"PRIu32, role);
2701
2702         /* There's no good error code for this. */
2703         return ofp_mkerr(OFPET_BAD_REQUEST, -1);
2704     }
2705
2706     if (ofconn_get_role(ofconn) != role
2707         && ofconn_has_pending_opgroups(ofconn)) {
2708         return OFPROTO_POSTPONE;
2709     }
2710
2711     ofconn_set_role(ofconn, role);
2712
2713     reply = make_nxmsg_xid(sizeof *reply, NXT_ROLE_REPLY, oh->xid, &buf);
2714     reply->role = htonl(role);
2715     ofconn_send_reply(ofconn, buf);
2716
2717     return 0;
2718 }
2719
2720 static int
2721 handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
2722                              const struct ofp_header *oh)
2723 {
2724     const struct nxt_flow_mod_table_id *msg
2725         = (const struct nxt_flow_mod_table_id *) oh;
2726
2727     ofconn_set_flow_mod_table_id(ofconn, msg->set != 0);
2728     return 0;
2729 }
2730
2731 static int
2732 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
2733 {
2734     const struct nxt_set_flow_format *msg
2735         = (const struct nxt_set_flow_format *) oh;
2736     uint32_t format;
2737
2738     format = ntohl(msg->format);
2739     if (format != NXFF_OPENFLOW10 && format != NXFF_NXM) {
2740         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2741     }
2742
2743     if (format != ofconn_get_flow_format(ofconn)
2744         && ofconn_has_pending_opgroups(ofconn)) {
2745         /* Avoid sending async messages in surprising flow format. */
2746         return OFPROTO_POSTPONE;
2747     }
2748
2749     ofconn_set_flow_format(ofconn, format);
2750     return 0;
2751 }
2752
2753 static int
2754 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
2755 {
2756     struct ofp_header *ob;
2757     struct ofpbuf *buf;
2758
2759     if (ofconn_has_pending_opgroups(ofconn)) {
2760         return OFPROTO_POSTPONE;
2761     }
2762
2763     ob = make_openflow_xid(sizeof *ob, OFPT_BARRIER_REPLY, oh->xid, &buf);
2764     ofconn_send_reply(ofconn, buf);
2765     return 0;
2766 }
2767
2768 static int
2769 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
2770 {
2771     const struct ofp_header *oh = msg->data;
2772     const struct ofputil_msg_type *type;
2773     int error;
2774
2775     error = ofputil_decode_msg_type(oh, &type);
2776     if (error) {
2777         return error;
2778     }
2779
2780     switch (ofputil_msg_type_code(type)) {
2781         /* OpenFlow requests. */
2782     case OFPUTIL_OFPT_ECHO_REQUEST:
2783         return handle_echo_request(ofconn, oh);
2784
2785     case OFPUTIL_OFPT_FEATURES_REQUEST:
2786         return handle_features_request(ofconn, oh);
2787
2788     case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
2789         return handle_get_config_request(ofconn, oh);
2790
2791     case OFPUTIL_OFPT_SET_CONFIG:
2792         return handle_set_config(ofconn, msg->data);
2793
2794     case OFPUTIL_OFPT_PACKET_OUT:
2795         return handle_packet_out(ofconn, oh);
2796
2797     case OFPUTIL_OFPT_PORT_MOD:
2798         return handle_port_mod(ofconn, oh);
2799
2800     case OFPUTIL_OFPT_FLOW_MOD:
2801         return handle_flow_mod(ofconn, oh);
2802
2803     case OFPUTIL_OFPT_BARRIER_REQUEST:
2804         return handle_barrier_request(ofconn, oh);
2805
2806         /* OpenFlow replies. */
2807     case OFPUTIL_OFPT_ECHO_REPLY:
2808         return 0;
2809
2810         /* Nicira extension requests. */
2811     case OFPUTIL_NXT_ROLE_REQUEST:
2812         return handle_role_request(ofconn, oh);
2813
2814     case OFPUTIL_NXT_FLOW_MOD_TABLE_ID:
2815         return handle_nxt_flow_mod_table_id(ofconn, oh);
2816
2817     case OFPUTIL_NXT_SET_FLOW_FORMAT:
2818         return handle_nxt_set_flow_format(ofconn, oh);
2819
2820     case OFPUTIL_NXT_FLOW_MOD:
2821         return handle_flow_mod(ofconn, oh);
2822
2823         /* Statistics requests. */
2824     case OFPUTIL_OFPST_DESC_REQUEST:
2825         return handle_desc_stats_request(ofconn, msg->data);
2826
2827     case OFPUTIL_OFPST_FLOW_REQUEST:
2828     case OFPUTIL_NXST_FLOW_REQUEST:
2829         return handle_flow_stats_request(ofconn, msg->data);
2830
2831     case OFPUTIL_OFPST_AGGREGATE_REQUEST:
2832     case OFPUTIL_NXST_AGGREGATE_REQUEST:
2833         return handle_aggregate_stats_request(ofconn, msg->data);
2834
2835     case OFPUTIL_OFPST_TABLE_REQUEST:
2836         return handle_table_stats_request(ofconn, msg->data);
2837
2838     case OFPUTIL_OFPST_PORT_REQUEST:
2839         return handle_port_stats_request(ofconn, msg->data);
2840
2841     case OFPUTIL_OFPST_QUEUE_REQUEST:
2842         return handle_queue_stats_request(ofconn, msg->data);
2843
2844     case OFPUTIL_MSG_INVALID:
2845     case OFPUTIL_OFPT_HELLO:
2846     case OFPUTIL_OFPT_ERROR:
2847     case OFPUTIL_OFPT_FEATURES_REPLY:
2848     case OFPUTIL_OFPT_GET_CONFIG_REPLY:
2849     case OFPUTIL_OFPT_PACKET_IN:
2850     case OFPUTIL_OFPT_FLOW_REMOVED:
2851     case OFPUTIL_OFPT_PORT_STATUS:
2852     case OFPUTIL_OFPT_BARRIER_REPLY:
2853     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
2854     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
2855     case OFPUTIL_OFPST_DESC_REPLY:
2856     case OFPUTIL_OFPST_FLOW_REPLY:
2857     case OFPUTIL_OFPST_QUEUE_REPLY:
2858     case OFPUTIL_OFPST_PORT_REPLY:
2859     case OFPUTIL_OFPST_TABLE_REPLY:
2860     case OFPUTIL_OFPST_AGGREGATE_REPLY:
2861     case OFPUTIL_NXT_ROLE_REPLY:
2862     case OFPUTIL_NXT_FLOW_REMOVED:
2863     case OFPUTIL_NXST_FLOW_REPLY:
2864     case OFPUTIL_NXST_AGGREGATE_REPLY:
2865     default:
2866         if (VLOG_IS_WARN_ENABLED()) {
2867             char *s = ofp_to_string(oh, ntohs(oh->length), 2);
2868             VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
2869             free(s);
2870         }
2871         if (oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY) {
2872             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
2873         } else {
2874             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
2875         }
2876     }
2877 }
2878
2879 static bool
2880 handle_openflow(struct ofconn *ofconn, struct ofpbuf *ofp_msg)
2881 {
2882     int error = handle_openflow__(ofconn, ofp_msg);
2883     if (error && error != OFPROTO_POSTPONE) {
2884         ofconn_send_error(ofconn, ofp_msg->data, error);
2885     }
2886     COVERAGE_INC(ofproto_recv_openflow);
2887     return error != OFPROTO_POSTPONE;
2888 }
2889 \f
2890 /* Asynchronous operations. */
2891
2892 /* Creates and returns a new ofopgroup that is not associated with any
2893  * OpenFlow connection.
2894  *
2895  * The caller should add operations to the returned group with
2896  * ofoperation_create() and then submit it with ofopgroup_submit(). */
2897 static struct ofopgroup *
2898 ofopgroup_create_unattached(struct ofproto *ofproto)
2899 {
2900     struct ofopgroup *group = xzalloc(sizeof *group);
2901     group->ofproto = ofproto;
2902     list_init(&group->ofproto_node);
2903     list_init(&group->ops);
2904     list_init(&group->ofconn_node);
2905     return group;
2906 }
2907
2908 /* Creates and returns a new ofopgroup for 'ofproto'.
2909  *
2910  * If 'ofconn' is NULL, the new ofopgroup is not associated with any OpenFlow
2911  * connection.  The 'request' and 'buffer_id' arguments are ignored.
2912  *
2913  * If 'ofconn' is nonnull, then the new ofopgroup is associated with 'ofconn'.
2914  * If the ofopgroup eventually fails, then the error reply will include
2915  * 'request'.  If the ofopgroup eventually succeeds, then the packet with
2916  * buffer id 'buffer_id' on 'ofconn' will be sent by 'ofconn''s ofproto.
2917  *
2918  * The caller should add operations to the returned group with
2919  * ofoperation_create() and then submit it with ofopgroup_submit(). */
2920 static struct ofopgroup *
2921 ofopgroup_create(struct ofproto *ofproto, struct ofconn *ofconn,
2922                  const struct ofp_header *request, uint32_t buffer_id)
2923 {
2924     struct ofopgroup *group = ofopgroup_create_unattached(ofproto);
2925     if (ofconn) {
2926         size_t request_len = ntohs(request->length);
2927
2928         assert(ofconn_get_ofproto(ofconn) == ofproto);
2929
2930         ofconn_add_opgroup(ofconn, &group->ofconn_node);
2931         group->ofconn = ofconn;
2932         group->request = xmemdup(request, MIN(request_len, 64));
2933         group->buffer_id = buffer_id;
2934     }
2935     return group;
2936 }
2937
2938 /* Submits 'group' for processing.
2939  *
2940  * If 'group' contains no operations (e.g. none were ever added, or all of the
2941  * ones that were added completed synchronously), then it is destroyed
2942  * immediately.  Otherwise it is added to the ofproto's list of pending
2943  * groups. */
2944 static void
2945 ofopgroup_submit(struct ofopgroup *group)
2946 {
2947     if (list_is_empty(&group->ops)) {
2948         ofopgroup_destroy(group);
2949     } else {
2950         list_push_back(&group->ofproto->pending, &group->ofproto_node);
2951         group->ofproto->n_pending++;
2952     }
2953 }
2954
2955 static void
2956 ofopgroup_destroy(struct ofopgroup *group)
2957 {
2958     assert(list_is_empty(&group->ops));
2959     if (!list_is_empty(&group->ofproto_node)) {
2960         assert(group->ofproto->n_pending > 0);
2961         group->ofproto->n_pending--;
2962         list_remove(&group->ofproto_node);
2963     }
2964     if (!list_is_empty(&group->ofconn_node)) {
2965         list_remove(&group->ofconn_node);
2966         if (group->error) {
2967             ofconn_send_error(group->ofconn, group->request, group->error);
2968         }
2969         connmgr_retry(group->ofproto->connmgr);
2970     }
2971     free(group->request);
2972     free(group);
2973 }
2974
2975 /* Initiates a new operation on 'rule', of the specified 'type', within
2976  * 'group'.  Prior to calling, 'rule' must not have any pending operation. */
2977 static void
2978 ofoperation_create(struct ofopgroup *group, struct rule *rule,
2979                    enum ofoperation_type type)
2980 {
2981     struct ofoperation *op;
2982
2983     assert(!rule->pending);
2984
2985     op = rule->pending = xzalloc(sizeof *op);
2986     op->group = group;
2987     list_push_back(&group->ops, &op->group_node);
2988     op->rule = rule;
2989     op->type = type;
2990     op->status = -1;
2991     op->flow_cookie = rule->flow_cookie;
2992
2993     if (type == OFOPERATION_DELETE) {
2994         hmap_insert(&op->group->ofproto->deletions, &op->hmap_node,
2995                     cls_rule_hash(&rule->cr, rule->table_id));
2996     }
2997 }
2998
2999 static void
3000 ofoperation_destroy(struct ofoperation *op)
3001 {
3002     struct ofopgroup *group = op->group;
3003
3004     if (op->rule) {
3005         op->rule->pending = NULL;
3006     }
3007     if (op->type == OFOPERATION_DELETE) {
3008         hmap_remove(&group->ofproto->deletions, &op->hmap_node);
3009     }
3010     list_remove(&op->group_node);
3011     free(op->actions);
3012     free(op);
3013
3014     if (list_is_empty(&group->ops) && !list_is_empty(&group->ofproto_node)) {
3015         ofopgroup_destroy(group);
3016     }
3017 }
3018
3019 /* Indicates that 'op' completed with status 'error', which is either 0 to
3020  * indicate success or an OpenFlow error code (constructed with
3021  * e.g. ofp_mkerr()).
3022  *
3023  * If 'error' is 0, indicating success, the operation will be committed
3024  * permanently to the flow table.  There is one interesting subcase:
3025  *
3026  *   - If 'op' is an "add flow" operation that is replacing an existing rule in
3027  *     the flow table (the "victim" rule) by a new one, then the caller must
3028  *     have uninitialized any derived state in the victim rule, as in step 5 in
3029  *     the "Life Cycle" in ofproto/ofproto-provider.h.  ofoperation_complete()
3030  *     performs steps 6 and 7 for the victim rule, most notably by calling its
3031  *     ->rule_dealloc() function.
3032  *
3033  * If 'error' is nonzero, then generally the operation will be rolled back:
3034  *
3035  *   - If 'op' is an "add flow" operation, ofproto removes the new rule or
3036  *     restores the original rule.  The caller must have uninitialized any
3037  *     derived state in the new rule, as in step 5 of in the "Life Cycle" in
3038  *     ofproto/ofproto-provider.h.  ofoperation_complete() performs steps 6 and
3039  *     and 7 for the new rule, calling its ->rule_dealloc() function.
3040  *
3041  *   - If 'op' is a "modify flow" operation, ofproto restores the original
3042  *     actions.
3043  *
3044  *   - 'op' must not be a "delete flow" operation.  Removing a rule is not
3045  *     allowed to fail.  It must always succeed.
3046  *
3047  * Please see the large comment in ofproto/ofproto-provider.h titled
3048  * "Asynchronous Operation Support" for more information. */
3049 void
3050 ofoperation_complete(struct ofoperation *op, int error)
3051 {
3052     struct ofopgroup *group = op->group;
3053     struct rule *rule = op->rule;
3054     struct classifier *table = &rule->ofproto->tables[rule->table_id];
3055
3056     assert(rule->pending == op);
3057     assert(op->status < 0);
3058     assert(error >= 0);
3059
3060     if (!error
3061         && !group->error
3062         && op->type != OFOPERATION_DELETE
3063         && group->ofconn
3064         && group->buffer_id != UINT32_MAX
3065         && list_is_singleton(&op->group_node)) {
3066         struct ofpbuf *packet;
3067         uint16_t in_port;
3068
3069         error = ofconn_pktbuf_retrieve(group->ofconn, group->buffer_id,
3070                                        &packet, &in_port);
3071         if (packet) {
3072             assert(!error);
3073             error = rule_execute(rule, in_port, packet);
3074         }
3075     }
3076     if (!group->error) {
3077         group->error = error;
3078     }
3079
3080     switch (op->type) {
3081     case OFOPERATION_ADD:
3082         if (!error) {
3083             if (op->victim) {
3084                 ofproto_rule_destroy__(op->victim);
3085             }
3086         } else {
3087             if (op->victim) {
3088                 classifier_replace(table, &op->victim->cr);
3089                 op->victim = NULL;
3090             } else {
3091                 classifier_remove(table, &rule->cr);
3092             }
3093             ofproto_rule_destroy__(rule);
3094         }
3095         op->victim = NULL;
3096         break;
3097
3098     case OFOPERATION_DELETE:
3099         assert(!error);
3100         ofproto_rule_destroy__(rule);
3101         op->rule = NULL;
3102         break;
3103
3104     case OFOPERATION_MODIFY:
3105         if (!error) {
3106             rule->modified = time_msec();
3107         } else {
3108             free(rule->actions);
3109             rule->actions = op->actions;
3110             rule->n_actions = op->n_actions;
3111             op->actions = NULL;
3112         }
3113         break;
3114
3115     default:
3116         NOT_REACHED();
3117     }
3118     ofoperation_destroy(op);
3119 }
3120
3121 struct rule *
3122 ofoperation_get_victim(struct ofoperation *op)
3123 {
3124     assert(op->type == OFOPERATION_ADD);
3125     return op->victim;
3126 }
3127 \f
3128 static uint64_t
3129 pick_datapath_id(const struct ofproto *ofproto)
3130 {
3131     const struct ofport *port;
3132
3133     port = ofproto_get_port(ofproto, OFPP_LOCAL);
3134     if (port) {
3135         uint8_t ea[ETH_ADDR_LEN];
3136         int error;
3137
3138         error = netdev_get_etheraddr(port->netdev, ea);
3139         if (!error) {
3140             return eth_addr_to_uint64(ea);
3141         }
3142         VLOG_WARN("could not get MAC address for %s (%s)",
3143                   netdev_get_name(port->netdev), strerror(error));
3144     }
3145     return ofproto->fallback_dpid;
3146 }
3147
3148 static uint64_t
3149 pick_fallback_dpid(void)
3150 {
3151     uint8_t ea[ETH_ADDR_LEN];
3152     eth_addr_nicira_random(ea);
3153     return eth_addr_to_uint64(ea);
3154 }
3155 \f
3156 /* unixctl commands. */
3157
3158 struct ofproto *
3159 ofproto_lookup(const char *name)
3160 {
3161     struct ofproto *ofproto;
3162
3163     HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
3164                              &all_ofprotos) {
3165         if (!strcmp(ofproto->name, name)) {
3166             return ofproto;
3167         }
3168     }
3169     return NULL;
3170 }
3171
3172 static void
3173 ofproto_unixctl_list(struct unixctl_conn *conn, const char *arg OVS_UNUSED,
3174                      void *aux OVS_UNUSED)
3175 {
3176     struct ofproto *ofproto;
3177     struct ds results;
3178
3179     ds_init(&results);
3180     HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
3181         ds_put_format(&results, "%s\n", ofproto->name);
3182     }
3183     unixctl_command_reply(conn, 200, ds_cstr(&results));
3184     ds_destroy(&results);
3185 }
3186
3187 static void
3188 ofproto_unixctl_init(void)
3189 {
3190     static bool registered;
3191     if (registered) {
3192         return;
3193     }
3194     registered = true;
3195
3196     unixctl_command_register("ofproto/list", "", ofproto_unixctl_list, NULL);
3197 }