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