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