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