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