5fa34936a79139dde61b02f74990648c71dc5003
[cascardo/ovs.git] / ofproto / ofproto.c
1 /*
2  * Copyright (c) 2009-2016 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 <unistd.h>
25 #include "bitmap.h"
26 #include "byte-order.h"
27 #include "classifier.h"
28 #include "connectivity.h"
29 #include "connmgr.h"
30 #include "coverage.h"
31 #include "dynamic-string.h"
32 #include "hash.h"
33 #include "hmap.h"
34 #include "meta-flow.h"
35 #include "netdev.h"
36 #include "nx-match.h"
37 #include "ofp-actions.h"
38 #include "ofp-errors.h"
39 #include "ofp-msgs.h"
40 #include "ofp-print.h"
41 #include "ofp-util.h"
42 #include "ofpbuf.h"
43 #include "ofproto-provider.h"
44 #include "openflow/nicira-ext.h"
45 #include "openflow/openflow.h"
46 #include "ovs-rcu.h"
47 #include "dp-packet.h"
48 #include "packets.h"
49 #include "pinsched.h"
50 #include "pktbuf.h"
51 #include "poll-loop.h"
52 #include "random.h"
53 #include "seq.h"
54 #include "shash.h"
55 #include "simap.h"
56 #include "smap.h"
57 #include "sset.h"
58 #include "timeval.h"
59 #include "tun-metadata.h"
60 #include "unaligned.h"
61 #include "unixctl.h"
62 #include "openvswitch/vlog.h"
63 #include "bundles.h"
64
65 VLOG_DEFINE_THIS_MODULE(ofproto);
66
67 COVERAGE_DEFINE(ofproto_flush);
68 COVERAGE_DEFINE(ofproto_packet_out);
69 COVERAGE_DEFINE(ofproto_queue_req);
70 COVERAGE_DEFINE(ofproto_recv_openflow);
71 COVERAGE_DEFINE(ofproto_reinit_ports);
72 COVERAGE_DEFINE(ofproto_update_port);
73
74 /* Default fields to use for prefix tries in each flow table, unless something
75  * else is configured. */
76 const enum mf_field_id default_prefix_fields[2] =
77     { MFF_IPV4_DST, MFF_IPV4_SRC };
78
79 /* oftable. */
80 static void oftable_init(struct oftable *);
81 static void oftable_destroy(struct oftable *);
82
83 static void oftable_set_name(struct oftable *, const char *name);
84
85 static enum ofperr evict_rules_from_table(struct oftable *)
86     OVS_REQUIRES(ofproto_mutex);
87 static void oftable_configure_eviction(struct oftable *,
88                                        unsigned int eviction,
89                                        const struct mf_subfield *fields,
90                                        size_t n_fields)
91     OVS_REQUIRES(ofproto_mutex);
92
93 /* This is the only combination of OpenFlow eviction flags that OVS supports: a
94  * combination of OF1.4+ importance, the remaining lifetime of the flow, and
95  * fairness based on user-specified fields. */
96 #define OFPROTO_EVICTION_FLAGS \
97     (OFPTMPEF14_OTHER | OFPTMPEF14_IMPORTANCE | OFPTMPEF14_LIFETIME)
98
99 /* A set of rules within a single OpenFlow table (oftable) that have the same
100  * values for the oftable's eviction_fields.  A rule to be evicted, when one is
101  * needed, is taken from the eviction group that contains the greatest number
102  * of rules.
103  *
104  * An oftable owns any number of eviction groups, each of which contains any
105  * number of rules.
106  *
107  * Membership in an eviction group is imprecise, based on the hash of the
108  * oftable's eviction_fields (in the eviction_group's id_node.hash member).
109  * That is, if two rules have different eviction_fields, but those
110  * eviction_fields hash to the same value, then they will belong to the same
111  * eviction_group anyway.
112  *
113  * (When eviction is not enabled on an oftable, we don't track any eviction
114  * groups, to save time and space.) */
115 struct eviction_group {
116     struct hmap_node id_node;   /* In oftable's "eviction_groups_by_id". */
117     struct heap_node size_node; /* In oftable's "eviction_groups_by_size". */
118     struct heap rules;          /* Contains "struct rule"s. */
119 };
120
121 static bool choose_rule_to_evict(struct oftable *table, struct rule **rulep)
122     OVS_REQUIRES(ofproto_mutex);
123 static uint64_t rule_eviction_priority(struct ofproto *ofproto, struct rule *)
124     OVS_REQUIRES(ofproto_mutex);
125 static void eviction_group_add_rule(struct rule *)
126     OVS_REQUIRES(ofproto_mutex);
127 static void eviction_group_remove_rule(struct rule *)
128     OVS_REQUIRES(ofproto_mutex);
129
130 /* Criteria that flow_mod and other operations use for selecting rules on
131  * which to operate. */
132 struct rule_criteria {
133     /* An OpenFlow table or 255 for all tables. */
134     uint8_t table_id;
135
136     /* OpenFlow matching criteria.  Interpreted different in "loose" way by
137      * collect_rules_loose() and "strict" way by collect_rules_strict(), as
138      * defined in the OpenFlow spec. */
139     struct cls_rule cr;
140     cls_version_t version;
141
142     /* Matching criteria for the OpenFlow cookie.  Consider a bit B in a rule's
143      * cookie and the corresponding bits C in 'cookie' and M in 'cookie_mask'.
144      * The rule will not be selected if M is 1 and B != C.  */
145     ovs_be64 cookie;
146     ovs_be64 cookie_mask;
147
148     /* Selection based on actions within a rule:
149      *
150      * If out_port != OFPP_ANY, selects only rules that output to out_port.
151      * If out_group != OFPG_ALL, select only rules that output to out_group. */
152     ofp_port_t out_port;
153     uint32_t out_group;
154
155     /* If true, collects only rules that are modifiable. */
156     bool include_hidden;
157     bool include_readonly;
158 };
159
160 static void rule_criteria_init(struct rule_criteria *, uint8_t table_id,
161                                const struct match *match, int priority,
162                                cls_version_t version,
163                                ovs_be64 cookie, ovs_be64 cookie_mask,
164                                ofp_port_t out_port, uint32_t out_group);
165 static void rule_criteria_require_rw(struct rule_criteria *,
166                                      bool can_write_readonly);
167 static void rule_criteria_destroy(struct rule_criteria *);
168
169 static enum ofperr collect_rules_loose(struct ofproto *,
170                                        const struct rule_criteria *,
171                                        struct rule_collection *);
172
173 /* A packet that needs to be passed to rule_execute().
174  *
175  * (We can't do this immediately from ofopgroup_complete() because that holds
176  * ofproto_mutex, which rule_execute() needs released.) */
177 struct rule_execute {
178     struct ovs_list list_node;  /* In struct ofproto's "rule_executes" list. */
179     struct rule *rule;          /* Owns a reference to the rule. */
180     ofp_port_t in_port;
181     struct dp_packet *packet;      /* Owns the packet. */
182 };
183
184 static void run_rule_executes(struct ofproto *) OVS_EXCLUDED(ofproto_mutex);
185 static void destroy_rule_executes(struct ofproto *);
186
187 struct learned_cookie {
188     union {
189         /* In struct ofproto's 'learned_cookies' hmap. */
190         struct hmap_node hmap_node OVS_GUARDED_BY(ofproto_mutex);
191
192         /* In 'dead_cookies' list when removed from hmap. */
193         struct ovs_list list_node;
194     } u;
195
196     /* Key. */
197     ovs_be64 cookie OVS_GUARDED_BY(ofproto_mutex);
198     uint8_t table_id OVS_GUARDED_BY(ofproto_mutex);
199
200     /* Number of references from "learn" actions.
201      *
202      * When this drops to 0, all of the flows in 'table_id' with the specified
203      * 'cookie' are deleted. */
204     int n OVS_GUARDED_BY(ofproto_mutex);
205 };
206
207 static const struct ofpact_learn *next_learn_with_delete(
208     const struct rule_actions *, const struct ofpact_learn *start);
209
210 static void learned_cookies_inc(struct ofproto *, const struct rule_actions *)
211     OVS_REQUIRES(ofproto_mutex);
212 static void learned_cookies_dec(struct ofproto *, const struct rule_actions *,
213                                 struct ovs_list *dead_cookies)
214     OVS_REQUIRES(ofproto_mutex);
215 static void learned_cookies_flush(struct ofproto *, struct ovs_list *dead_cookies)
216     OVS_REQUIRES(ofproto_mutex);
217
218 /* ofport. */
219 static void ofport_destroy__(struct ofport *) OVS_EXCLUDED(ofproto_mutex);
220 static void ofport_destroy(struct ofport *, bool del);
221
222 static int update_port(struct ofproto *, const char *devname);
223 static int init_ports(struct ofproto *);
224 static void reinit_ports(struct ofproto *);
225
226 static long long int ofport_get_usage(const struct ofproto *,
227                                       ofp_port_t ofp_port);
228 static void ofport_set_usage(struct ofproto *, ofp_port_t ofp_port,
229                              long long int last_used);
230 static void ofport_remove_usage(struct ofproto *, ofp_port_t ofp_port);
231
232 /* Ofport usage.
233  *
234  * Keeps track of the currently used and recently used ofport values and is
235  * used to prevent immediate recycling of ofport values. */
236 struct ofport_usage {
237     struct hmap_node hmap_node; /* In struct ofproto's "ofport_usage" hmap. */
238     ofp_port_t ofp_port;        /* OpenFlow port number. */
239     long long int last_used;    /* Last time the 'ofp_port' was used. LLONG_MAX
240                                    represents in-use ofports. */
241 };
242
243 /* rule. */
244 static void ofproto_rule_send_removed(struct rule *)
245         OVS_EXCLUDED(ofproto_mutex);
246 static bool rule_is_readonly(const struct rule *);
247 static void ofproto_rule_insert__(struct ofproto *, struct rule *)
248     OVS_REQUIRES(ofproto_mutex);
249 static void ofproto_rule_remove__(struct ofproto *, struct rule *)
250     OVS_REQUIRES(ofproto_mutex);
251
252 /* The source of a flow_mod request, in the code that processes flow_mods.
253  *
254  * A flow table modification request can be generated externally, via OpenFlow,
255  * or internally through a function call.  This structure indicates the source
256  * of an OpenFlow-generated flow_mod.  For an internal flow_mod, it isn't
257  * meaningful and thus supplied as NULL. */
258 struct flow_mod_requester {
259     struct ofconn *ofconn;      /* Connection on which flow_mod arrived. */
260     const struct ofp_header *request;
261 };
262
263 /* OpenFlow. */
264 static enum ofperr replace_rule_create(struct ofproto *,
265                                        struct ofputil_flow_mod *,
266                                        struct cls_rule *cr, uint8_t table_id,
267                                        struct rule *old_rule,
268                                        struct rule **new_rule)
269     OVS_REQUIRES(ofproto_mutex);
270
271 static void replace_rule_start(struct ofproto *, cls_version_t version,
272                                struct rule *old_rule, struct rule *new_rule,
273                                struct cls_conjunction *, size_t n_conjs)
274     OVS_REQUIRES(ofproto_mutex);
275
276 static void replace_rule_revert(struct ofproto *, struct rule *old_rule,
277                                 struct rule *new_rule)
278     OVS_REQUIRES(ofproto_mutex);
279
280 static void replace_rule_finish(struct ofproto *, struct ofputil_flow_mod *,
281                                 const struct flow_mod_requester *,
282                                 struct rule *old_rule, struct rule *new_rule,
283                                 struct ovs_list *dead_cookies)
284     OVS_REQUIRES(ofproto_mutex);
285 static void delete_flows__(struct rule_collection *,
286                            enum ofp_flow_removed_reason,
287                            const struct flow_mod_requester *)
288     OVS_REQUIRES(ofproto_mutex);
289
290 static void send_buffered_packet(const struct flow_mod_requester *,
291                                  uint32_t buffer_id, struct rule *)
292     OVS_REQUIRES(ofproto_mutex);
293
294 static bool ofproto_group_exists__(const struct ofproto *ofproto,
295                                    uint32_t group_id)
296     OVS_REQ_RDLOCK(ofproto->groups_rwlock);
297 static bool ofproto_group_exists(const struct ofproto *ofproto,
298                                  uint32_t group_id)
299     OVS_EXCLUDED(ofproto->groups_rwlock);
300 static enum ofperr add_group(struct ofproto *,
301                              const struct ofputil_group_mod *);
302 static void handle_openflow(struct ofconn *, const struct ofpbuf *);
303 static enum ofperr ofproto_flow_mod_start(struct ofproto *,
304                                           struct ofproto_flow_mod *)
305     OVS_REQUIRES(ofproto_mutex);
306 static void ofproto_flow_mod_finish(struct ofproto *,
307                                     struct ofproto_flow_mod *,
308                                     const struct flow_mod_requester *)
309     OVS_REQUIRES(ofproto_mutex);
310 static enum ofperr handle_flow_mod__(struct ofproto *,
311                                      struct ofproto_flow_mod *,
312                                      const struct flow_mod_requester *)
313     OVS_EXCLUDED(ofproto_mutex);
314 static void calc_duration(long long int start, long long int now,
315                           uint32_t *sec, uint32_t *nsec);
316
317 /* ofproto. */
318 static uint64_t pick_datapath_id(const struct ofproto *);
319 static uint64_t pick_fallback_dpid(void);
320 static void ofproto_destroy__(struct ofproto *);
321 static void update_mtu(struct ofproto *, struct ofport *);
322 static void meter_delete(struct ofproto *, uint32_t first, uint32_t last);
323 static void meter_insert_rule(struct rule *);
324
325 /* unixctl. */
326 static void ofproto_unixctl_init(void);
327
328 /* All registered ofproto classes, in probe order. */
329 static const struct ofproto_class **ofproto_classes;
330 static size_t n_ofproto_classes;
331 static size_t allocated_ofproto_classes;
332
333 /* Global lock that protects all flow table operations. */
334 struct ovs_mutex ofproto_mutex = OVS_MUTEX_INITIALIZER;
335
336 unsigned ofproto_flow_limit = OFPROTO_FLOW_LIMIT_DEFAULT;
337 unsigned ofproto_max_idle = OFPROTO_MAX_IDLE_DEFAULT;
338
339 size_t n_handlers, n_revalidators;
340 char *pmd_cpu_mask;
341
342 /* Map from datapath name to struct ofproto, for use by unixctl commands. */
343 static struct hmap all_ofprotos = HMAP_INITIALIZER(&all_ofprotos);
344
345 /* Initial mappings of port to OpenFlow number mappings. */
346 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
347
348 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
349
350 /* The default value of true waits for flow restore. */
351 static bool flow_restore_wait = true;
352
353 /* Must be called to initialize the ofproto library.
354  *
355  * The caller may pass in 'iface_hints', which contains an shash of
356  * "iface_hint" elements indexed by the interface's name.  The provider
357  * may use these hints to describe the startup configuration in order to
358  * reinitialize its state.  The caller owns the provided data, so a
359  * provider will make copies of anything required.  An ofproto provider
360  * will remove any existing state that is not described by the hint, and
361  * may choose to remove it all. */
362 void
363 ofproto_init(const struct shash *iface_hints)
364 {
365     struct shash_node *node;
366     size_t i;
367
368     ofproto_class_register(&ofproto_dpif_class);
369
370     /* Make a local copy, since we don't own 'iface_hints' elements. */
371     SHASH_FOR_EACH(node, iface_hints) {
372         const struct iface_hint *orig_hint = node->data;
373         struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
374         const char *br_type = ofproto_normalize_type(orig_hint->br_type);
375
376         new_hint->br_name = xstrdup(orig_hint->br_name);
377         new_hint->br_type = xstrdup(br_type);
378         new_hint->ofp_port = orig_hint->ofp_port;
379
380         shash_add(&init_ofp_ports, node->name, new_hint);
381     }
382
383     for (i = 0; i < n_ofproto_classes; i++) {
384         ofproto_classes[i]->init(&init_ofp_ports);
385     }
386
387     ofproto_unixctl_init();
388 }
389
390 /* 'type' should be a normalized datapath type, as returned by
391  * ofproto_normalize_type().  Returns the corresponding ofproto_class
392  * structure, or a null pointer if there is none registered for 'type'. */
393 static const struct ofproto_class *
394 ofproto_class_find__(const char *type)
395 {
396     size_t i;
397
398     for (i = 0; i < n_ofproto_classes; i++) {
399         const struct ofproto_class *class = ofproto_classes[i];
400         struct sset types;
401         bool found;
402
403         sset_init(&types);
404         class->enumerate_types(&types);
405         found = sset_contains(&types, type);
406         sset_destroy(&types);
407
408         if (found) {
409             return class;
410         }
411     }
412     VLOG_WARN("unknown datapath type %s", type);
413     return NULL;
414 }
415
416 /* Registers a new ofproto class.  After successful registration, new ofprotos
417  * of that type can be created using ofproto_create(). */
418 int
419 ofproto_class_register(const struct ofproto_class *new_class)
420 {
421     size_t i;
422
423     for (i = 0; i < n_ofproto_classes; i++) {
424         if (ofproto_classes[i] == new_class) {
425             return EEXIST;
426         }
427     }
428
429     if (n_ofproto_classes >= allocated_ofproto_classes) {
430         ofproto_classes = x2nrealloc(ofproto_classes,
431                                      &allocated_ofproto_classes,
432                                      sizeof *ofproto_classes);
433     }
434     ofproto_classes[n_ofproto_classes++] = new_class;
435     return 0;
436 }
437
438 /* Unregisters a datapath provider.  'type' must have been previously
439  * registered and not currently be in use by any ofprotos.  After
440  * unregistration new datapaths of that type cannot be opened using
441  * ofproto_create(). */
442 int
443 ofproto_class_unregister(const struct ofproto_class *class)
444 {
445     size_t i;
446
447     for (i = 0; i < n_ofproto_classes; i++) {
448         if (ofproto_classes[i] == class) {
449             for (i++; i < n_ofproto_classes; i++) {
450                 ofproto_classes[i - 1] = ofproto_classes[i];
451             }
452             n_ofproto_classes--;
453             return 0;
454         }
455     }
456     VLOG_WARN("attempted to unregister an ofproto class that is not "
457               "registered");
458     return EAFNOSUPPORT;
459 }
460
461 /* Clears 'types' and enumerates all registered ofproto types into it.  The
462  * caller must first initialize the sset. */
463 void
464 ofproto_enumerate_types(struct sset *types)
465 {
466     size_t i;
467
468     sset_clear(types);
469     for (i = 0; i < n_ofproto_classes; i++) {
470         ofproto_classes[i]->enumerate_types(types);
471     }
472 }
473
474 /* Returns the fully spelled out name for the given ofproto 'type'.
475  *
476  * Normalized type string can be compared with strcmp().  Unnormalized type
477  * string might be the same even if they have different spellings. */
478 const char *
479 ofproto_normalize_type(const char *type)
480 {
481     return type && type[0] ? type : "system";
482 }
483
484 /* Clears 'names' and enumerates the names of all known created ofprotos with
485  * the given 'type'.  The caller must first initialize the sset.  Returns 0 if
486  * successful, otherwise a positive errno value.
487  *
488  * Some kinds of datapaths might not be practically enumerable.  This is not
489  * considered an error. */
490 int
491 ofproto_enumerate_names(const char *type, struct sset *names)
492 {
493     const struct ofproto_class *class = ofproto_class_find__(type);
494     return class ? class->enumerate_names(type, names) : EAFNOSUPPORT;
495 }
496
497 static void
498 ofproto_bump_tables_version(struct ofproto *ofproto)
499 {
500     ++ofproto->tables_version;
501     ofproto->ofproto_class->set_tables_version(ofproto,
502                                                ofproto->tables_version);
503 }
504
505 int
506 ofproto_create(const char *datapath_name, const char *datapath_type,
507                struct ofproto **ofprotop)
508 {
509     const struct ofproto_class *class;
510     struct ofproto *ofproto;
511     int error;
512     int i;
513
514     *ofprotop = NULL;
515
516     datapath_type = ofproto_normalize_type(datapath_type);
517     class = ofproto_class_find__(datapath_type);
518     if (!class) {
519         VLOG_WARN("could not create datapath %s of unknown type %s",
520                   datapath_name, datapath_type);
521         return EAFNOSUPPORT;
522     }
523
524     ofproto = class->alloc();
525     if (!ofproto) {
526         VLOG_ERR("failed to allocate datapath %s of type %s",
527                  datapath_name, datapath_type);
528         return ENOMEM;
529     }
530
531     /* Initialize. */
532     ovs_mutex_lock(&ofproto_mutex);
533     memset(ofproto, 0, sizeof *ofproto);
534     ofproto->ofproto_class = class;
535     ofproto->name = xstrdup(datapath_name);
536     ofproto->type = xstrdup(datapath_type);
537     hmap_insert(&all_ofprotos, &ofproto->hmap_node,
538                 hash_string(ofproto->name, 0));
539     ofproto->datapath_id = 0;
540     ofproto->forward_bpdu = false;
541     ofproto->fallback_dpid = pick_fallback_dpid();
542     ofproto->mfr_desc = NULL;
543     ofproto->hw_desc = NULL;
544     ofproto->sw_desc = NULL;
545     ofproto->serial_desc = NULL;
546     ofproto->dp_desc = NULL;
547     ofproto->frag_handling = OFPUTIL_FRAG_NORMAL;
548     hmap_init(&ofproto->ports);
549     hmap_init(&ofproto->ofport_usage);
550     shash_init(&ofproto->port_by_name);
551     simap_init(&ofproto->ofp_requests);
552     ofproto->max_ports = ofp_to_u16(OFPP_MAX);
553     ofproto->eviction_group_timer = LLONG_MIN;
554     ofproto->tables = NULL;
555     ofproto->n_tables = 0;
556     ofproto->tables_version = CLS_MIN_VERSION;
557     hindex_init(&ofproto->cookies);
558     hmap_init(&ofproto->learned_cookies);
559     list_init(&ofproto->expirable);
560     ofproto->connmgr = connmgr_create(ofproto, datapath_name, datapath_name);
561     guarded_list_init(&ofproto->rule_executes);
562     ofproto->vlan_bitmap = NULL;
563     ofproto->vlans_changed = false;
564     ofproto->min_mtu = INT_MAX;
565     ovs_rwlock_init(&ofproto->groups_rwlock);
566     hmap_init(&ofproto->groups);
567     ovs_mutex_unlock(&ofproto_mutex);
568     ofproto->ogf.types = 0xf;
569     ofproto->ogf.capabilities = OFPGFC_CHAINING | OFPGFC_SELECT_LIVENESS |
570                                 OFPGFC_SELECT_WEIGHT;
571     for (i = 0; i < 4; i++) {
572         ofproto->ogf.max_groups[i] = OFPG_MAX;
573         ofproto->ogf.ofpacts[i] = (UINT64_C(1) << N_OFPACTS) - 1;
574     }
575     tun_metadata_init();
576
577     error = ofproto->ofproto_class->construct(ofproto);
578     if (error) {
579         VLOG_ERR("failed to open datapath %s: %s",
580                  datapath_name, ovs_strerror(error));
581         connmgr_destroy(ofproto->connmgr);
582         ofproto_destroy__(ofproto);
583         return error;
584     }
585
586     /* Check that hidden tables, if any, are at the end. */
587     ovs_assert(ofproto->n_tables);
588     for (i = 0; i + 1 < ofproto->n_tables; i++) {
589         enum oftable_flags flags = ofproto->tables[i].flags;
590         enum oftable_flags next_flags = ofproto->tables[i + 1].flags;
591
592         ovs_assert(!(flags & OFTABLE_HIDDEN) || next_flags & OFTABLE_HIDDEN);
593     }
594
595     ofproto->datapath_id = pick_datapath_id(ofproto);
596     init_ports(ofproto);
597
598     /* Initialize meters table. */
599     if (ofproto->ofproto_class->meter_get_features) {
600         ofproto->ofproto_class->meter_get_features(ofproto,
601                                                    &ofproto->meter_features);
602     } else {
603         memset(&ofproto->meter_features, 0, sizeof ofproto->meter_features);
604     }
605     ofproto->meters = xzalloc((ofproto->meter_features.max_meters + 1)
606                               * sizeof(struct meter *));
607
608     /* Set the initial tables version. */
609     ofproto_bump_tables_version(ofproto);
610
611     *ofprotop = ofproto;
612     return 0;
613 }
614
615 /* Must be called (only) by an ofproto implementation in its constructor
616  * function.  See the large comment on 'construct' in struct ofproto_class for
617  * details. */
618 void
619 ofproto_init_tables(struct ofproto *ofproto, int n_tables)
620 {
621     struct oftable *table;
622
623     ovs_assert(!ofproto->n_tables);
624     ovs_assert(n_tables >= 1 && n_tables <= 255);
625
626     ofproto->n_tables = n_tables;
627     ofproto->tables = xmalloc(n_tables * sizeof *ofproto->tables);
628     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
629         oftable_init(table);
630     }
631 }
632
633 /* To be optionally called (only) by an ofproto implementation in its
634  * constructor function.  See the large comment on 'construct' in struct
635  * ofproto_class for details.
636  *
637  * Sets the maximum number of ports to 'max_ports'.  The ofproto generic layer
638  * will then ensure that actions passed into the ofproto implementation will
639  * not refer to OpenFlow ports numbered 'max_ports' or higher.  If this
640  * function is not called, there will be no such restriction.
641  *
642  * Reserved ports numbered OFPP_MAX and higher are special and not subject to
643  * the 'max_ports' restriction. */
644 void
645 ofproto_init_max_ports(struct ofproto *ofproto, uint16_t max_ports)
646 {
647     ovs_assert(max_ports <= ofp_to_u16(OFPP_MAX));
648     ofproto->max_ports = max_ports;
649 }
650
651 uint64_t
652 ofproto_get_datapath_id(const struct ofproto *ofproto)
653 {
654     return ofproto->datapath_id;
655 }
656
657 void
658 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
659 {
660     uint64_t old_dpid = p->datapath_id;
661     p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
662     if (p->datapath_id != old_dpid) {
663         /* Force all active connections to reconnect, since there is no way to
664          * notify a controller that the datapath ID has changed. */
665         ofproto_reconnect_controllers(p);
666     }
667 }
668
669 void
670 ofproto_set_controllers(struct ofproto *p,
671                         const struct ofproto_controller *controllers,
672                         size_t n_controllers, uint32_t allowed_versions)
673 {
674     connmgr_set_controllers(p->connmgr, controllers, n_controllers,
675                             allowed_versions);
676 }
677
678 void
679 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
680 {
681     connmgr_set_fail_mode(p->connmgr, fail_mode);
682 }
683
684 /* Drops the connections between 'ofproto' and all of its controllers, forcing
685  * them to reconnect. */
686 void
687 ofproto_reconnect_controllers(struct ofproto *ofproto)
688 {
689     connmgr_reconnect(ofproto->connmgr);
690 }
691
692 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
693  * in-band control should guarantee access, in the same way that in-band
694  * control guarantees access to OpenFlow controllers. */
695 void
696 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
697                                   const struct sockaddr_in *extras, size_t n)
698 {
699     connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
700 }
701
702 /* Sets the OpenFlow queue used by flows set up by in-band control on
703  * 'ofproto' to 'queue_id'.  If 'queue_id' is negative, then in-band control
704  * flows will use the default queue. */
705 void
706 ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
707 {
708     connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
709 }
710
711 /* Sets the number of flows at which eviction from the kernel flow table
712  * will occur. */
713 void
714 ofproto_set_flow_limit(unsigned limit)
715 {
716     ofproto_flow_limit = limit;
717 }
718
719 /* Sets the maximum idle time for flows in the datapath before they are
720  * expired. */
721 void
722 ofproto_set_max_idle(unsigned max_idle)
723 {
724     ofproto_max_idle = max_idle;
725 }
726
727 /* If forward_bpdu is true, the NORMAL action will forward frames with
728  * reserved (e.g. STP) destination Ethernet addresses. if forward_bpdu is false,
729  * the NORMAL action will drop these frames. */
730 void
731 ofproto_set_forward_bpdu(struct ofproto *ofproto, bool forward_bpdu)
732 {
733     bool old_val = ofproto->forward_bpdu;
734     ofproto->forward_bpdu = forward_bpdu;
735     if (old_val != ofproto->forward_bpdu) {
736         if (ofproto->ofproto_class->forward_bpdu_changed) {
737             ofproto->ofproto_class->forward_bpdu_changed(ofproto);
738         }
739     }
740 }
741
742 /* Sets the MAC aging timeout for the OFPP_NORMAL action on 'ofproto' to
743  * 'idle_time', in seconds, and the maximum number of MAC table entries to
744  * 'max_entries'. */
745 void
746 ofproto_set_mac_table_config(struct ofproto *ofproto, unsigned idle_time,
747                              size_t max_entries)
748 {
749     if (ofproto->ofproto_class->set_mac_table_config) {
750         ofproto->ofproto_class->set_mac_table_config(ofproto, idle_time,
751                                                      max_entries);
752     }
753 }
754
755 /* Multicast snooping configuration. */
756
757 /* Configures multicast snooping on 'ofproto' using the settings
758  * defined in 's'.  If 's' is NULL, disables multicast snooping.
759  *
760  * Returns 0 if successful, otherwise a positive errno value. */
761 int
762 ofproto_set_mcast_snooping(struct ofproto *ofproto,
763                            const struct ofproto_mcast_snooping_settings *s)
764 {
765     return (ofproto->ofproto_class->set_mcast_snooping
766             ? ofproto->ofproto_class->set_mcast_snooping(ofproto, s)
767             : EOPNOTSUPP);
768 }
769
770 /* Configures multicast snooping flood settings on 'ofp_port' of 'ofproto'.
771  *
772  * Returns 0 if successful, otherwise a positive errno value.*/
773 int
774 ofproto_port_set_mcast_snooping(struct ofproto *ofproto, void *aux,
775                            const struct ofproto_mcast_snooping_port_settings *s)
776 {
777     return (ofproto->ofproto_class->set_mcast_snooping_port
778             ? ofproto->ofproto_class->set_mcast_snooping_port(ofproto, aux, s)
779             : EOPNOTSUPP);
780 }
781
782 void
783 ofproto_set_cpu_mask(const char *cmask)
784 {
785     free(pmd_cpu_mask);
786
787     pmd_cpu_mask = cmask ? xstrdup(cmask) : NULL;
788 }
789
790 void
791 ofproto_set_threads(int n_handlers_, int n_revalidators_)
792 {
793     int threads = MAX(count_cpu_cores(), 2);
794
795     n_revalidators = MAX(n_revalidators_, 0);
796     n_handlers = MAX(n_handlers_, 0);
797
798     if (!n_revalidators) {
799         n_revalidators = n_handlers
800             ? MAX(threads - (int) n_handlers, 1)
801             : threads / 4 + 1;
802     }
803
804     if (!n_handlers) {
805         n_handlers = MAX(threads - (int) n_revalidators, 1);
806     }
807 }
808
809 void
810 ofproto_set_dp_desc(struct ofproto *p, const char *dp_desc)
811 {
812     free(p->dp_desc);
813     p->dp_desc = dp_desc ? xstrdup(dp_desc) : NULL;
814 }
815
816 int
817 ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
818 {
819     return connmgr_set_snoops(ofproto->connmgr, snoops);
820 }
821
822 int
823 ofproto_set_netflow(struct ofproto *ofproto,
824                     const struct netflow_options *nf_options)
825 {
826     if (nf_options && sset_is_empty(&nf_options->collectors)) {
827         nf_options = NULL;
828     }
829
830     if (ofproto->ofproto_class->set_netflow) {
831         return ofproto->ofproto_class->set_netflow(ofproto, nf_options);
832     } else {
833         return nf_options ? EOPNOTSUPP : 0;
834     }
835 }
836
837 int
838 ofproto_set_sflow(struct ofproto *ofproto,
839                   const struct ofproto_sflow_options *oso)
840 {
841     if (oso && sset_is_empty(&oso->targets)) {
842         oso = NULL;
843     }
844
845     if (ofproto->ofproto_class->set_sflow) {
846         return ofproto->ofproto_class->set_sflow(ofproto, oso);
847     } else {
848         return oso ? EOPNOTSUPP : 0;
849     }
850 }
851
852 int
853 ofproto_set_ipfix(struct ofproto *ofproto,
854                   const struct ofproto_ipfix_bridge_exporter_options *bo,
855                   const struct ofproto_ipfix_flow_exporter_options *fo,
856                   size_t n_fo)
857 {
858     if (ofproto->ofproto_class->set_ipfix) {
859         return ofproto->ofproto_class->set_ipfix(ofproto, bo, fo, n_fo);
860     } else {
861         return (bo || fo) ? EOPNOTSUPP : 0;
862     }
863 }
864
865 void
866 ofproto_set_flow_restore_wait(bool flow_restore_wait_db)
867 {
868     flow_restore_wait = flow_restore_wait_db;
869 }
870
871 bool
872 ofproto_get_flow_restore_wait(void)
873 {
874     return flow_restore_wait;
875 }
876
877 \f
878 /* Spanning Tree Protocol (STP) configuration. */
879
880 /* Configures STP on 'ofproto' using the settings defined in 's'.  If
881  * 's' is NULL, disables STP.
882  *
883  * Returns 0 if successful, otherwise a positive errno value. */
884 int
885 ofproto_set_stp(struct ofproto *ofproto,
886                 const struct ofproto_stp_settings *s)
887 {
888     return (ofproto->ofproto_class->set_stp
889             ? ofproto->ofproto_class->set_stp(ofproto, s)
890             : EOPNOTSUPP);
891 }
892
893 /* Retrieves STP status of 'ofproto' and stores it in 's'.  If the
894  * 'enabled' member of 's' is false, then the other members are not
895  * meaningful.
896  *
897  * Returns 0 if successful, otherwise a positive errno value. */
898 int
899 ofproto_get_stp_status(struct ofproto *ofproto,
900                        struct ofproto_stp_status *s)
901 {
902     return (ofproto->ofproto_class->get_stp_status
903             ? ofproto->ofproto_class->get_stp_status(ofproto, s)
904             : EOPNOTSUPP);
905 }
906
907 /* Configures STP on 'ofp_port' of 'ofproto' using the settings defined
908  * in 's'.  The caller is responsible for assigning STP port numbers
909  * (using the 'port_num' member in the range of 1 through 255, inclusive)
910  * and ensuring there are no duplicates.  If the 's' is NULL, then STP
911  * is disabled on the port.
912  *
913  * Returns 0 if successful, otherwise a positive errno value.*/
914 int
915 ofproto_port_set_stp(struct ofproto *ofproto, ofp_port_t ofp_port,
916                      const struct ofproto_port_stp_settings *s)
917 {
918     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
919     if (!ofport) {
920         VLOG_WARN("%s: cannot configure STP on nonexistent port %"PRIu16,
921                   ofproto->name, ofp_port);
922         return ENODEV;
923     }
924
925     return (ofproto->ofproto_class->set_stp_port
926             ? ofproto->ofproto_class->set_stp_port(ofport, s)
927             : EOPNOTSUPP);
928 }
929
930 /* Retrieves STP port status of 'ofp_port' on 'ofproto' and stores it in
931  * 's'.  If the 'enabled' member in 's' is false, then the other members
932  * are not meaningful.
933  *
934  * Returns 0 if successful, otherwise a positive errno value.*/
935 int
936 ofproto_port_get_stp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
937                             struct ofproto_port_stp_status *s)
938 {
939     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
940     if (!ofport) {
941         VLOG_WARN_RL(&rl, "%s: cannot get STP status on nonexistent "
942                      "port %"PRIu16, ofproto->name, ofp_port);
943         return ENODEV;
944     }
945
946     return (ofproto->ofproto_class->get_stp_port_status
947             ? ofproto->ofproto_class->get_stp_port_status(ofport, s)
948             : EOPNOTSUPP);
949 }
950
951 /* Retrieves STP port statistics of 'ofp_port' on 'ofproto' and stores it in
952  * 's'.  If the 'enabled' member in 's' is false, then the other members
953  * are not meaningful.
954  *
955  * Returns 0 if successful, otherwise a positive errno value.*/
956 int
957 ofproto_port_get_stp_stats(struct ofproto *ofproto, ofp_port_t ofp_port,
958                            struct ofproto_port_stp_stats *s)
959 {
960     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
961     if (!ofport) {
962         VLOG_WARN_RL(&rl, "%s: cannot get STP stats on nonexistent "
963                      "port %"PRIu16, ofproto->name, ofp_port);
964         return ENODEV;
965     }
966
967     return (ofproto->ofproto_class->get_stp_port_stats
968             ? ofproto->ofproto_class->get_stp_port_stats(ofport, s)
969             : EOPNOTSUPP);
970 }
971
972 /* Rapid Spanning Tree Protocol (RSTP) configuration. */
973
974 /* Configures RSTP on 'ofproto' using the settings defined in 's'.  If
975  * 's' is NULL, disables RSTP.
976  *
977  * Returns 0 if successful, otherwise a positive errno value. */
978 int
979 ofproto_set_rstp(struct ofproto *ofproto,
980                  const struct ofproto_rstp_settings *s)
981 {
982     if (!ofproto->ofproto_class->set_rstp) {
983         return EOPNOTSUPP;
984     }
985     ofproto->ofproto_class->set_rstp(ofproto, s);
986     return 0;
987 }
988
989 /* Retrieves RSTP status of 'ofproto' and stores it in 's'.  If the
990  * 'enabled' member of 's' is false, then the other members are not
991  * meaningful.
992  *
993  * Returns 0 if successful, otherwise a positive errno value. */
994 int
995 ofproto_get_rstp_status(struct ofproto *ofproto,
996                         struct ofproto_rstp_status *s)
997 {
998     if (!ofproto->ofproto_class->get_rstp_status) {
999         return EOPNOTSUPP;
1000     }
1001     ofproto->ofproto_class->get_rstp_status(ofproto, s);
1002     return 0;
1003 }
1004
1005 /* Configures RSTP on 'ofp_port' of 'ofproto' using the settings defined
1006  * in 's'.  The caller is responsible for assigning RSTP port numbers
1007  * (using the 'port_num' member in the range of 1 through 255, inclusive)
1008  * and ensuring there are no duplicates.  If the 's' is NULL, then RSTP
1009  * is disabled on the port.
1010  *
1011  * Returns 0 if successful, otherwise a positive errno value.*/
1012 int
1013 ofproto_port_set_rstp(struct ofproto *ofproto, ofp_port_t ofp_port,
1014                       const struct ofproto_port_rstp_settings *s)
1015 {
1016     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1017     if (!ofport) {
1018         VLOG_WARN("%s: cannot configure RSTP on nonexistent port %"PRIu16,
1019                 ofproto->name, ofp_port);
1020         return ENODEV;
1021     }
1022
1023     if (!ofproto->ofproto_class->set_rstp_port) {
1024         return  EOPNOTSUPP;
1025     }
1026     ofproto->ofproto_class->set_rstp_port(ofport, s);
1027     return 0;
1028 }
1029
1030 /* Retrieves RSTP port status of 'ofp_port' on 'ofproto' and stores it in
1031  * 's'.  If the 'enabled' member in 's' is false, then the other members
1032  * are not meaningful.
1033  *
1034  * Returns 0 if successful, otherwise a positive errno value.*/
1035 int
1036 ofproto_port_get_rstp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
1037                              struct ofproto_port_rstp_status *s)
1038 {
1039     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1040     if (!ofport) {
1041         VLOG_WARN_RL(&rl, "%s: cannot get RSTP status on nonexistent "
1042                 "port %"PRIu16, ofproto->name, ofp_port);
1043         return ENODEV;
1044     }
1045
1046     if (!ofproto->ofproto_class->get_rstp_port_status) {
1047         return  EOPNOTSUPP;
1048     }
1049     ofproto->ofproto_class->get_rstp_port_status(ofport, s);
1050     return 0;
1051 }
1052 \f
1053 /* Queue DSCP configuration. */
1054
1055 /* Registers meta-data associated with the 'n_qdscp' Qualities of Service
1056  * 'queues' attached to 'ofport'.  This data is not intended to be sufficient
1057  * to implement QoS.  Instead, it is used to implement features which require
1058  * knowledge of what queues exist on a port, and some basic information about
1059  * them.
1060  *
1061  * Returns 0 if successful, otherwise a positive errno value. */
1062 int
1063 ofproto_port_set_queues(struct ofproto *ofproto, ofp_port_t ofp_port,
1064                         const struct ofproto_port_queue *queues,
1065                         size_t n_queues)
1066 {
1067     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1068
1069     if (!ofport) {
1070         VLOG_WARN("%s: cannot set queues on nonexistent port %"PRIu16,
1071                   ofproto->name, ofp_port);
1072         return ENODEV;
1073     }
1074
1075     return (ofproto->ofproto_class->set_queues
1076             ? ofproto->ofproto_class->set_queues(ofport, queues, n_queues)
1077             : EOPNOTSUPP);
1078 }
1079 \f
1080 /* LLDP configuration. */
1081 void
1082 ofproto_port_set_lldp(struct ofproto *ofproto,
1083                       ofp_port_t ofp_port,
1084                       const struct smap *cfg)
1085 {
1086     struct ofport *ofport;
1087     int error;
1088
1089     ofport = ofproto_get_port(ofproto, ofp_port);
1090     if (!ofport) {
1091         VLOG_WARN("%s: cannot configure LLDP on nonexistent port %"PRIu16,
1092                   ofproto->name, ofp_port);
1093         return;
1094     }
1095     error = (ofproto->ofproto_class->set_lldp
1096              ? ofproto->ofproto_class->set_lldp(ofport, cfg)
1097              : EOPNOTSUPP);
1098     if (error) {
1099         VLOG_WARN("%s: lldp configuration on port %"PRIu16" (%s) failed (%s)",
1100                   ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1101                   ovs_strerror(error));
1102     }
1103 }
1104
1105 int
1106 ofproto_set_aa(struct ofproto *ofproto, void *aux OVS_UNUSED,
1107                const struct aa_settings *s)
1108 {
1109     if (!ofproto->ofproto_class->set_aa) {
1110         return EOPNOTSUPP;
1111     }
1112     ofproto->ofproto_class->set_aa(ofproto, s);
1113     return 0;
1114 }
1115
1116 int
1117 ofproto_aa_mapping_register(struct ofproto *ofproto, void *aux,
1118                             const struct aa_mapping_settings *s)
1119 {
1120     if (!ofproto->ofproto_class->aa_mapping_set) {
1121         return EOPNOTSUPP;
1122     }
1123     ofproto->ofproto_class->aa_mapping_set(ofproto, aux, s);
1124     return 0;
1125 }
1126
1127 int
1128 ofproto_aa_mapping_unregister(struct ofproto *ofproto, void *aux)
1129 {
1130     if (!ofproto->ofproto_class->aa_mapping_unset) {
1131         return EOPNOTSUPP;
1132     }
1133     ofproto->ofproto_class->aa_mapping_unset(ofproto, aux);
1134     return 0;
1135 }
1136
1137 int
1138 ofproto_aa_vlan_get_queued(struct ofproto *ofproto,
1139                            struct ovs_list *list)
1140 {
1141     if (!ofproto->ofproto_class->aa_vlan_get_queued) {
1142         return EOPNOTSUPP;
1143     }
1144     ofproto->ofproto_class->aa_vlan_get_queued(ofproto, list);
1145     return 0;
1146 }
1147
1148 unsigned int
1149 ofproto_aa_vlan_get_queue_size(struct ofproto *ofproto)
1150 {
1151     if (!ofproto->ofproto_class->aa_vlan_get_queue_size) {
1152         return EOPNOTSUPP;
1153     }
1154     return ofproto->ofproto_class->aa_vlan_get_queue_size(ofproto);
1155 }
1156
1157 /* Connectivity Fault Management configuration. */
1158
1159 /* Clears the CFM configuration from 'ofp_port' on 'ofproto'. */
1160 void
1161 ofproto_port_clear_cfm(struct ofproto *ofproto, ofp_port_t ofp_port)
1162 {
1163     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1164     if (ofport && ofproto->ofproto_class->set_cfm) {
1165         ofproto->ofproto_class->set_cfm(ofport, NULL);
1166     }
1167 }
1168
1169 /* Configures connectivity fault management on 'ofp_port' in 'ofproto'.  Takes
1170  * basic configuration from the configuration members in 'cfm', and the remote
1171  * maintenance point ID from  remote_mpid.  Ignores the statistics members of
1172  * 'cfm'.
1173  *
1174  * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
1175 void
1176 ofproto_port_set_cfm(struct ofproto *ofproto, ofp_port_t ofp_port,
1177                      const struct cfm_settings *s)
1178 {
1179     struct ofport *ofport;
1180     int error;
1181
1182     ofport = ofproto_get_port(ofproto, ofp_port);
1183     if (!ofport) {
1184         VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu16,
1185                   ofproto->name, ofp_port);
1186         return;
1187     }
1188
1189     /* XXX: For configuration simplicity, we only support one remote_mpid
1190      * outside of the CFM module.  It's not clear if this is the correct long
1191      * term solution or not. */
1192     error = (ofproto->ofproto_class->set_cfm
1193              ? ofproto->ofproto_class->set_cfm(ofport, s)
1194              : EOPNOTSUPP);
1195     if (error) {
1196         VLOG_WARN("%s: CFM configuration on port %"PRIu16" (%s) failed (%s)",
1197                   ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1198                   ovs_strerror(error));
1199     }
1200 }
1201
1202 /* Configures BFD on 'ofp_port' in 'ofproto'.  This function has no effect if
1203  * 'ofproto' does not have a port 'ofp_port'. */
1204 void
1205 ofproto_port_set_bfd(struct ofproto *ofproto, ofp_port_t ofp_port,
1206                      const struct smap *cfg)
1207 {
1208     struct ofport *ofport;
1209     int error;
1210
1211     ofport = ofproto_get_port(ofproto, ofp_port);
1212     if (!ofport) {
1213         VLOG_WARN("%s: cannot configure bfd on nonexistent port %"PRIu16,
1214                   ofproto->name, ofp_port);
1215         return;
1216     }
1217
1218     error = (ofproto->ofproto_class->set_bfd
1219              ? ofproto->ofproto_class->set_bfd(ofport, cfg)
1220              : EOPNOTSUPP);
1221     if (error) {
1222         VLOG_WARN("%s: bfd configuration on port %"PRIu16" (%s) failed (%s)",
1223                   ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1224                   ovs_strerror(error));
1225     }
1226 }
1227
1228 /* Checks the status change of BFD on 'ofport'.
1229  *
1230  * Returns true if 'ofproto_class' does not support 'bfd_status_changed'. */
1231 bool
1232 ofproto_port_bfd_status_changed(struct ofproto *ofproto, ofp_port_t ofp_port)
1233 {
1234     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1235     return (ofport && ofproto->ofproto_class->bfd_status_changed
1236             ? ofproto->ofproto_class->bfd_status_changed(ofport)
1237             : true);
1238 }
1239
1240 /* Populates 'status' with the status of BFD on 'ofport'.  Returns 0 on
1241  * success.  Returns a positive errno otherwise.  Has no effect if 'ofp_port'
1242  * is not an OpenFlow port in 'ofproto'.
1243  *
1244  * The caller must provide and own '*status'. */
1245 int
1246 ofproto_port_get_bfd_status(struct ofproto *ofproto, ofp_port_t ofp_port,
1247                             struct smap *status)
1248 {
1249     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1250     return (ofport && ofproto->ofproto_class->get_bfd_status
1251             ? ofproto->ofproto_class->get_bfd_status(ofport, status)
1252             : EOPNOTSUPP);
1253 }
1254
1255 /* Checks the status of LACP negotiation for 'ofp_port' within ofproto.
1256  * Returns 1 if LACP partner information for 'ofp_port' is up-to-date,
1257  * 0 if LACP partner information is not current (generally indicating a
1258  * connectivity problem), or -1 if LACP is not enabled on 'ofp_port'. */
1259 int
1260 ofproto_port_is_lacp_current(struct ofproto *ofproto, ofp_port_t ofp_port)
1261 {
1262     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1263     return (ofport && ofproto->ofproto_class->port_is_lacp_current
1264             ? ofproto->ofproto_class->port_is_lacp_current(ofport)
1265             : -1);
1266 }
1267
1268 int
1269 ofproto_port_get_lacp_stats(const struct ofport *port, struct lacp_slave_stats *stats)
1270 {
1271     struct ofproto *ofproto = port->ofproto;
1272     int error;
1273
1274     if (ofproto->ofproto_class->port_get_lacp_stats) {
1275         error = ofproto->ofproto_class->port_get_lacp_stats(port, stats);
1276     } else {
1277         error = EOPNOTSUPP;
1278     }
1279
1280     return error;
1281 }
1282 \f
1283 /* Bundles. */
1284
1285 /* Registers a "bundle" associated with client data pointer 'aux' in 'ofproto'.
1286  * A bundle is the same concept as a Port in OVSDB, that is, it consists of one
1287  * or more "slave" devices (Interfaces, in OVSDB) along with a VLAN
1288  * configuration plus, if there is more than one slave, a bonding
1289  * configuration.
1290  *
1291  * If 'aux' is already registered then this function updates its configuration
1292  * to 's'.  Otherwise, this function registers a new bundle.
1293  *
1294  * Bundles only affect the NXAST_AUTOPATH action and output to the OFPP_NORMAL
1295  * port. */
1296 int
1297 ofproto_bundle_register(struct ofproto *ofproto, void *aux,
1298                         const struct ofproto_bundle_settings *s)
1299 {
1300     return (ofproto->ofproto_class->bundle_set
1301             ? ofproto->ofproto_class->bundle_set(ofproto, aux, s)
1302             : EOPNOTSUPP);
1303 }
1304
1305 /* Unregisters the bundle registered on 'ofproto' with auxiliary data 'aux'.
1306  * If no such bundle has been registered, this has no effect. */
1307 int
1308 ofproto_bundle_unregister(struct ofproto *ofproto, void *aux)
1309 {
1310     return ofproto_bundle_register(ofproto, aux, NULL);
1311 }
1312
1313 \f
1314 /* Registers a mirror associated with client data pointer 'aux' in 'ofproto'.
1315  * If 'aux' is already registered then this function updates its configuration
1316  * to 's'.  Otherwise, this function registers a new mirror. */
1317 int
1318 ofproto_mirror_register(struct ofproto *ofproto, void *aux,
1319                         const struct ofproto_mirror_settings *s)
1320 {
1321     return (ofproto->ofproto_class->mirror_set
1322             ? ofproto->ofproto_class->mirror_set(ofproto, aux, s)
1323             : EOPNOTSUPP);
1324 }
1325
1326 /* Unregisters the mirror registered on 'ofproto' with auxiliary data 'aux'.
1327  * If no mirror has been registered, this has no effect. */
1328 int
1329 ofproto_mirror_unregister(struct ofproto *ofproto, void *aux)
1330 {
1331     return ofproto_mirror_register(ofproto, aux, NULL);
1332 }
1333
1334 /* Retrieves statistics from mirror associated with client data pointer
1335  * 'aux' in 'ofproto'.  Stores packet and byte counts in 'packets' and
1336  * 'bytes', respectively.  If a particular counters is not supported,
1337  * the appropriate argument is set to UINT64_MAX.
1338  */
1339 int
1340 ofproto_mirror_get_stats(struct ofproto *ofproto, void *aux,
1341                          uint64_t *packets, uint64_t *bytes)
1342 {
1343     if (!ofproto->ofproto_class->mirror_get_stats) {
1344         *packets = *bytes = UINT64_MAX;
1345         return EOPNOTSUPP;
1346     }
1347
1348     return ofproto->ofproto_class->mirror_get_stats(ofproto, aux,
1349                                                     packets, bytes);
1350 }
1351
1352 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs on
1353  * which all packets are flooded, instead of using MAC learning.  If
1354  * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
1355  *
1356  * Flood VLANs affect only the treatment of packets output to the OFPP_NORMAL
1357  * port. */
1358 int
1359 ofproto_set_flood_vlans(struct ofproto *ofproto, unsigned long *flood_vlans)
1360 {
1361     return (ofproto->ofproto_class->set_flood_vlans
1362             ? ofproto->ofproto_class->set_flood_vlans(ofproto, flood_vlans)
1363             : EOPNOTSUPP);
1364 }
1365
1366 /* Returns true if 'aux' is a registered bundle that is currently in use as the
1367  * output for a mirror. */
1368 bool
1369 ofproto_is_mirror_output_bundle(const struct ofproto *ofproto, void *aux)
1370 {
1371     return (ofproto->ofproto_class->is_mirror_output_bundle
1372             ? ofproto->ofproto_class->is_mirror_output_bundle(ofproto, aux)
1373             : false);
1374 }
1375 \f
1376 /* Configuration of OpenFlow tables. */
1377
1378 /* Returns the number of OpenFlow tables in 'ofproto'. */
1379 int
1380 ofproto_get_n_tables(const struct ofproto *ofproto)
1381 {
1382     return ofproto->n_tables;
1383 }
1384
1385 /* Returns the number of Controller visible OpenFlow tables
1386  * in 'ofproto'. This number will exclude Hidden tables.
1387  * This funtion's return value should be less or equal to that of
1388  * ofproto_get_n_tables() . */
1389 uint8_t
1390 ofproto_get_n_visible_tables(const struct ofproto *ofproto)
1391 {
1392     uint8_t n = ofproto->n_tables;
1393
1394     /* Count only non-hidden tables in the number of tables.  (Hidden tables,
1395      * if present, are always at the end.) */
1396     while(n && (ofproto->tables[n - 1].flags & OFTABLE_HIDDEN)) {
1397         n--;
1398     }
1399
1400     return n;
1401 }
1402
1403 /* Configures the OpenFlow table in 'ofproto' with id 'table_id' with the
1404  * settings from 's'.  'table_id' must be in the range 0 through the number of
1405  * OpenFlow tables in 'ofproto' minus 1, inclusive.
1406  *
1407  * For read-only tables, only the name may be configured. */
1408 void
1409 ofproto_configure_table(struct ofproto *ofproto, int table_id,
1410                         const struct ofproto_table_settings *s)
1411 {
1412     struct oftable *table;
1413
1414     ovs_assert(table_id >= 0 && table_id < ofproto->n_tables);
1415     table = &ofproto->tables[table_id];
1416
1417     oftable_set_name(table, s->name);
1418
1419     if (table->flags & OFTABLE_READONLY) {
1420         return;
1421     }
1422
1423     if (classifier_set_prefix_fields(&table->cls,
1424                                      s->prefix_fields, s->n_prefix_fields)) {
1425         /* XXX: Trigger revalidation. */
1426     }
1427
1428     ovs_mutex_lock(&ofproto_mutex);
1429     unsigned int new_eviction = (s->enable_eviction
1430                                  ? table->eviction | EVICTION_CLIENT
1431                                  : table->eviction & ~EVICTION_CLIENT);
1432     oftable_configure_eviction(table, new_eviction, s->groups, s->n_groups);
1433     table->max_flows = s->max_flows;
1434     evict_rules_from_table(table);
1435     ovs_mutex_unlock(&ofproto_mutex);
1436 }
1437 \f
1438 bool
1439 ofproto_has_snoops(const struct ofproto *ofproto)
1440 {
1441     return connmgr_has_snoops(ofproto->connmgr);
1442 }
1443
1444 void
1445 ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
1446 {
1447     connmgr_get_snoops(ofproto->connmgr, snoops);
1448 }
1449
1450 /* Deletes 'rule' from 'ofproto'.
1451  *
1452  * Within an ofproto implementation, this function allows an ofproto
1453  * implementation to destroy any rules that remain when its ->destruct()
1454  * function is called.  This function is not suitable for use elsewhere in an
1455  * ofproto implementation.
1456  *
1457  * This function implements steps 4.4 and 4.5 in the section titled "Rule Life
1458  * Cycle" in ofproto-provider.h. */
1459 void
1460 ofproto_rule_delete(struct ofproto *ofproto, struct rule *rule)
1461     OVS_EXCLUDED(ofproto_mutex)
1462 {
1463     /* This skips the ofmonitor and flow-removed notifications because the
1464      * switch is being deleted and any OpenFlow channels have been or soon will
1465      * be killed. */
1466     ovs_mutex_lock(&ofproto_mutex);
1467
1468     if (!rule->removed) {
1469         /* Make sure there is no postponed removal of the rule. */
1470         ovs_assert(cls_rule_visible_in_version(&rule->cr, CLS_MAX_VERSION));
1471
1472         if (!classifier_remove(&rule->ofproto->tables[rule->table_id].cls,
1473                                &rule->cr)) {
1474             OVS_NOT_REACHED();
1475         }
1476         ofproto_rule_remove__(rule->ofproto, rule);
1477         ofproto->ofproto_class->rule_delete(rule);
1478         ofproto_rule_unref(rule);
1479     }
1480     ovs_mutex_unlock(&ofproto_mutex);
1481 }
1482
1483 static void
1484 ofproto_flush__(struct ofproto *ofproto)
1485     OVS_EXCLUDED(ofproto_mutex)
1486 {
1487     struct oftable *table;
1488
1489     /* This will flush all datapath flows. */
1490     if (ofproto->ofproto_class->flush) {
1491         ofproto->ofproto_class->flush(ofproto);
1492     }
1493
1494     /* XXX: There is a small race window here, where new datapath flows can be
1495      * created by upcall handlers based on the existing flow table.  We can not
1496      * call ofproto class flush while holding 'ofproto_mutex' to prevent this,
1497      * as then we could deadlock on syncing with the handler threads waiting on
1498      * the same mutex. */
1499
1500     ovs_mutex_lock(&ofproto_mutex);
1501     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1502         struct rule_collection rules;
1503         struct rule *rule;
1504
1505         if (table->flags & OFTABLE_HIDDEN) {
1506             continue;
1507         }
1508
1509         rule_collection_init(&rules);
1510
1511         CLS_FOR_EACH (rule, cr, &table->cls) {
1512             rule_collection_add(&rules, rule);
1513         }
1514         delete_flows__(&rules, OFPRR_DELETE, NULL);
1515     }
1516     /* XXX: Concurrent handler threads may insert new learned flows based on
1517      * learn actions of the now deleted flows right after we release
1518      * 'ofproto_mutex'. */
1519     ovs_mutex_unlock(&ofproto_mutex);
1520 }
1521
1522 static void delete_group(struct ofproto *ofproto, uint32_t group_id);
1523
1524 static void
1525 ofproto_destroy__(struct ofproto *ofproto)
1526     OVS_EXCLUDED(ofproto_mutex)
1527 {
1528     struct oftable *table;
1529
1530     destroy_rule_executes(ofproto);
1531
1532     guarded_list_destroy(&ofproto->rule_executes);
1533     ovs_rwlock_destroy(&ofproto->groups_rwlock);
1534     hmap_destroy(&ofproto->groups);
1535
1536     hmap_remove(&all_ofprotos, &ofproto->hmap_node);
1537     free(ofproto->name);
1538     free(ofproto->type);
1539     free(ofproto->mfr_desc);
1540     free(ofproto->hw_desc);
1541     free(ofproto->sw_desc);
1542     free(ofproto->serial_desc);
1543     free(ofproto->dp_desc);
1544     hmap_destroy(&ofproto->ports);
1545     hmap_destroy(&ofproto->ofport_usage);
1546     shash_destroy(&ofproto->port_by_name);
1547     simap_destroy(&ofproto->ofp_requests);
1548
1549     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1550         oftable_destroy(table);
1551     }
1552     free(ofproto->tables);
1553
1554     ovs_assert(hindex_is_empty(&ofproto->cookies));
1555     hindex_destroy(&ofproto->cookies);
1556
1557     ovs_assert(hmap_is_empty(&ofproto->learned_cookies));
1558     hmap_destroy(&ofproto->learned_cookies);
1559
1560     free(ofproto->vlan_bitmap);
1561
1562     ofproto->ofproto_class->dealloc(ofproto);
1563 }
1564
1565 /* Destroying rules is doubly deferred, must have 'ofproto' around for them.
1566  * - 1st we defer the removal of the rules from the classifier
1567  * - 2nd we defer the actual destruction of the rules. */
1568 static void
1569 ofproto_destroy_defer__(struct ofproto *ofproto)
1570     OVS_EXCLUDED(ofproto_mutex)
1571 {
1572     ovsrcu_postpone(ofproto_destroy__, ofproto);
1573 }
1574
1575 void
1576 ofproto_destroy(struct ofproto *p, bool del)
1577     OVS_EXCLUDED(ofproto_mutex)
1578 {
1579     struct ofport *ofport, *next_ofport;
1580     struct ofport_usage *usage, *next_usage;
1581
1582     if (!p) {
1583         return;
1584     }
1585
1586     if (p->meters) {
1587         meter_delete(p, 1, p->meter_features.max_meters);
1588         p->meter_features.max_meters = 0;
1589         free(p->meters);
1590         p->meters = NULL;
1591     }
1592
1593     ofproto_flush__(p);
1594     HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
1595         ofport_destroy(ofport, del);
1596     }
1597
1598     HMAP_FOR_EACH_SAFE (usage, next_usage, hmap_node, &p->ofport_usage) {
1599         hmap_remove(&p->ofport_usage, &usage->hmap_node);
1600         free(usage);
1601     }
1602
1603     p->ofproto_class->destruct(p);
1604
1605     /* We should not postpone this because it involves deleting a listening
1606      * socket which we may want to reopen soon. 'connmgr' should not be used
1607      * by other threads */
1608     connmgr_destroy(p->connmgr);
1609
1610     /* Destroying rules is deferred, must have 'ofproto' around for them. */
1611     ovsrcu_postpone(ofproto_destroy_defer__, p);
1612 }
1613
1614 /* Destroys the datapath with the respective 'name' and 'type'.  With the Linux
1615  * kernel datapath, for example, this destroys the datapath in the kernel, and
1616  * with the netdev-based datapath, it tears down the data structures that
1617  * represent the datapath.
1618  *
1619  * The datapath should not be currently open as an ofproto. */
1620 int
1621 ofproto_delete(const char *name, const char *type)
1622 {
1623     const struct ofproto_class *class = ofproto_class_find__(type);
1624     return (!class ? EAFNOSUPPORT
1625             : !class->del ? EACCES
1626             : class->del(type, name));
1627 }
1628
1629 static void
1630 process_port_change(struct ofproto *ofproto, int error, char *devname)
1631 {
1632     if (error == ENOBUFS) {
1633         reinit_ports(ofproto);
1634     } else if (!error) {
1635         update_port(ofproto, devname);
1636         free(devname);
1637     }
1638 }
1639
1640 int
1641 ofproto_type_run(const char *datapath_type)
1642 {
1643     const struct ofproto_class *class;
1644     int error;
1645
1646     datapath_type = ofproto_normalize_type(datapath_type);
1647     class = ofproto_class_find__(datapath_type);
1648
1649     error = class->type_run ? class->type_run(datapath_type) : 0;
1650     if (error && error != EAGAIN) {
1651         VLOG_ERR_RL(&rl, "%s: type_run failed (%s)",
1652                     datapath_type, ovs_strerror(error));
1653     }
1654     return error;
1655 }
1656
1657 void
1658 ofproto_type_wait(const char *datapath_type)
1659 {
1660     const struct ofproto_class *class;
1661
1662     datapath_type = ofproto_normalize_type(datapath_type);
1663     class = ofproto_class_find__(datapath_type);
1664
1665     if (class->type_wait) {
1666         class->type_wait(datapath_type);
1667     }
1668 }
1669
1670 int
1671 ofproto_run(struct ofproto *p)
1672 {
1673     int error;
1674     uint64_t new_seq;
1675
1676     error = p->ofproto_class->run(p);
1677     if (error && error != EAGAIN) {
1678         VLOG_ERR_RL(&rl, "%s: run failed (%s)", p->name, ovs_strerror(error));
1679     }
1680
1681     run_rule_executes(p);
1682
1683     /* Restore the eviction group heap invariant occasionally. */
1684     if (p->eviction_group_timer < time_msec()) {
1685         size_t i;
1686
1687         p->eviction_group_timer = time_msec() + 1000;
1688
1689         for (i = 0; i < p->n_tables; i++) {
1690             struct oftable *table = &p->tables[i];
1691             struct eviction_group *evg;
1692             struct rule *rule;
1693
1694             if (!table->eviction) {
1695                 continue;
1696             }
1697
1698             if (table->n_flows > 100000) {
1699                 static struct vlog_rate_limit count_rl =
1700                     VLOG_RATE_LIMIT_INIT(1, 1);
1701                 VLOG_WARN_RL(&count_rl, "Table %"PRIuSIZE" has an excessive"
1702                              " number of rules: %d", i, table->n_flows);
1703             }
1704
1705             ovs_mutex_lock(&ofproto_mutex);
1706             CLS_FOR_EACH (rule, cr, &table->cls) {
1707                 if (rule->idle_timeout || rule->hard_timeout) {
1708                     if (!rule->eviction_group) {
1709                         eviction_group_add_rule(rule);
1710                     } else {
1711                         heap_raw_change(&rule->evg_node,
1712                                         rule_eviction_priority(p, rule));
1713                     }
1714                 }
1715             }
1716
1717             HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
1718                 heap_rebuild(&evg->rules);
1719             }
1720             ovs_mutex_unlock(&ofproto_mutex);
1721         }
1722     }
1723
1724     if (p->ofproto_class->port_poll) {
1725         char *devname;
1726
1727         while ((error = p->ofproto_class->port_poll(p, &devname)) != EAGAIN) {
1728             process_port_change(p, error, devname);
1729         }
1730     }
1731
1732     new_seq = seq_read(connectivity_seq_get());
1733     if (new_seq != p->change_seq) {
1734         struct sset devnames;
1735         const char *devname;
1736         struct ofport *ofport;
1737
1738         /* Update OpenFlow port status for any port whose netdev has changed.
1739          *
1740          * Refreshing a given 'ofport' can cause an arbitrary ofport to be
1741          * destroyed, so it's not safe to update ports directly from the
1742          * HMAP_FOR_EACH loop, or even to use HMAP_FOR_EACH_SAFE.  Instead, we
1743          * need this two-phase approach. */
1744         sset_init(&devnames);
1745         HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1746             uint64_t port_change_seq;
1747
1748             port_change_seq = netdev_get_change_seq(ofport->netdev);
1749             if (ofport->change_seq != port_change_seq) {
1750                 ofport->change_seq = port_change_seq;
1751                 sset_add(&devnames, netdev_get_name(ofport->netdev));
1752             }
1753         }
1754         SSET_FOR_EACH (devname, &devnames) {
1755             update_port(p, devname);
1756         }
1757         sset_destroy(&devnames);
1758
1759         p->change_seq = new_seq;
1760     }
1761
1762     connmgr_run(p->connmgr, handle_openflow);
1763
1764     return error;
1765 }
1766
1767 void
1768 ofproto_wait(struct ofproto *p)
1769 {
1770     p->ofproto_class->wait(p);
1771     if (p->ofproto_class->port_poll_wait) {
1772         p->ofproto_class->port_poll_wait(p);
1773     }
1774     seq_wait(connectivity_seq_get(), p->change_seq);
1775     connmgr_wait(p->connmgr);
1776 }
1777
1778 bool
1779 ofproto_is_alive(const struct ofproto *p)
1780 {
1781     return connmgr_has_controllers(p->connmgr);
1782 }
1783
1784 /* Adds some memory usage statistics for 'ofproto' into 'usage', for use with
1785  * memory_report(). */
1786 void
1787 ofproto_get_memory_usage(const struct ofproto *ofproto, struct simap *usage)
1788 {
1789     const struct oftable *table;
1790     unsigned int n_rules;
1791
1792     simap_increase(usage, "ports", hmap_count(&ofproto->ports));
1793
1794     n_rules = 0;
1795     OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1796         n_rules += table->n_flows;
1797     }
1798     simap_increase(usage, "rules", n_rules);
1799
1800     if (ofproto->ofproto_class->get_memory_usage) {
1801         ofproto->ofproto_class->get_memory_usage(ofproto, usage);
1802     }
1803
1804     connmgr_get_memory_usage(ofproto->connmgr, usage);
1805 }
1806
1807 void
1808 ofproto_type_get_memory_usage(const char *datapath_type, struct simap *usage)
1809 {
1810     const struct ofproto_class *class;
1811
1812     datapath_type = ofproto_normalize_type(datapath_type);
1813     class = ofproto_class_find__(datapath_type);
1814
1815     if (class && class->type_get_memory_usage) {
1816         class->type_get_memory_usage(datapath_type, usage);
1817     }
1818 }
1819
1820 void
1821 ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
1822                                     struct shash *info)
1823 {
1824     connmgr_get_controller_info(ofproto->connmgr, info);
1825 }
1826
1827 void
1828 ofproto_free_ofproto_controller_info(struct shash *info)
1829 {
1830     connmgr_free_controller_info(info);
1831 }
1832
1833 /* Makes a deep copy of 'old' into 'port'. */
1834 void
1835 ofproto_port_clone(struct ofproto_port *port, const struct ofproto_port *old)
1836 {
1837     port->name = xstrdup(old->name);
1838     port->type = xstrdup(old->type);
1839     port->ofp_port = old->ofp_port;
1840 }
1841
1842 /* Frees memory allocated to members of 'ofproto_port'.
1843  *
1844  * Do not call this function on an ofproto_port obtained from
1845  * ofproto_port_dump_next(): that function retains ownership of the data in the
1846  * ofproto_port. */
1847 void
1848 ofproto_port_destroy(struct ofproto_port *ofproto_port)
1849 {
1850     free(ofproto_port->name);
1851     free(ofproto_port->type);
1852 }
1853
1854 /* Initializes 'dump' to begin dumping the ports in an ofproto.
1855  *
1856  * This function provides no status indication.  An error status for the entire
1857  * dump operation is provided when it is completed by calling
1858  * ofproto_port_dump_done().
1859  */
1860 void
1861 ofproto_port_dump_start(struct ofproto_port_dump *dump,
1862                         const struct ofproto *ofproto)
1863 {
1864     dump->ofproto = ofproto;
1865     dump->error = ofproto->ofproto_class->port_dump_start(ofproto,
1866                                                           &dump->state);
1867 }
1868
1869 /* Attempts to retrieve another port from 'dump', which must have been created
1870  * with ofproto_port_dump_start().  On success, stores a new ofproto_port into
1871  * 'port' and returns true.  On failure, returns false.
1872  *
1873  * Failure might indicate an actual error or merely that the last port has been
1874  * dumped.  An error status for the entire dump operation is provided when it
1875  * is completed by calling ofproto_port_dump_done().
1876  *
1877  * The ofproto owns the data stored in 'port'.  It will remain valid until at
1878  * least the next time 'dump' is passed to ofproto_port_dump_next() or
1879  * ofproto_port_dump_done(). */
1880 bool
1881 ofproto_port_dump_next(struct ofproto_port_dump *dump,
1882                        struct ofproto_port *port)
1883 {
1884     const struct ofproto *ofproto = dump->ofproto;
1885
1886     if (dump->error) {
1887         return false;
1888     }
1889
1890     dump->error = ofproto->ofproto_class->port_dump_next(ofproto, dump->state,
1891                                                          port);
1892     if (dump->error) {
1893         ofproto->ofproto_class->port_dump_done(ofproto, dump->state);
1894         return false;
1895     }
1896     return true;
1897 }
1898
1899 /* Completes port table dump operation 'dump', which must have been created
1900  * with ofproto_port_dump_start().  Returns 0 if the dump operation was
1901  * error-free, otherwise a positive errno value describing the problem. */
1902 int
1903 ofproto_port_dump_done(struct ofproto_port_dump *dump)
1904 {
1905     const struct ofproto *ofproto = dump->ofproto;
1906     if (!dump->error) {
1907         dump->error = ofproto->ofproto_class->port_dump_done(ofproto,
1908                                                              dump->state);
1909     }
1910     return dump->error == EOF ? 0 : dump->error;
1911 }
1912
1913 /* Returns the type to pass to netdev_open() when a datapath of type
1914  * 'datapath_type' has a port of type 'port_type', for a few special
1915  * cases when a netdev type differs from a port type.  For example, when
1916  * using the userspace datapath, a port of type "internal" needs to be
1917  * opened as "tap".
1918  *
1919  * Returns either 'type' itself or a string literal, which must not be
1920  * freed. */
1921 const char *
1922 ofproto_port_open_type(const char *datapath_type, const char *port_type)
1923 {
1924     const struct ofproto_class *class;
1925
1926     datapath_type = ofproto_normalize_type(datapath_type);
1927     class = ofproto_class_find__(datapath_type);
1928     if (!class) {
1929         return port_type;
1930     }
1931
1932     return (class->port_open_type
1933             ? class->port_open_type(datapath_type, port_type)
1934             : port_type);
1935 }
1936
1937 /* Attempts to add 'netdev' as a port on 'ofproto'.  If 'ofp_portp' is
1938  * non-null and '*ofp_portp' is not OFPP_NONE, attempts to use that as
1939  * the port's OpenFlow port number.
1940  *
1941  * If successful, returns 0 and sets '*ofp_portp' to the new port's
1942  * OpenFlow port number (if 'ofp_portp' is non-null).  On failure,
1943  * returns a positive errno value and sets '*ofp_portp' to OFPP_NONE (if
1944  * 'ofp_portp' is non-null). */
1945 int
1946 ofproto_port_add(struct ofproto *ofproto, struct netdev *netdev,
1947                  ofp_port_t *ofp_portp)
1948 {
1949     ofp_port_t ofp_port = ofp_portp ? *ofp_portp : OFPP_NONE;
1950     int error;
1951
1952     error = ofproto->ofproto_class->port_add(ofproto, netdev);
1953     if (!error) {
1954         const char *netdev_name = netdev_get_name(netdev);
1955
1956         simap_put(&ofproto->ofp_requests, netdev_name,
1957                   ofp_to_u16(ofp_port));
1958         error = update_port(ofproto, netdev_name);
1959     }
1960     if (ofp_portp) {
1961         *ofp_portp = OFPP_NONE;
1962         if (!error) {
1963             struct ofproto_port ofproto_port;
1964
1965             error = ofproto_port_query_by_name(ofproto,
1966                                                netdev_get_name(netdev),
1967                                                &ofproto_port);
1968             if (!error) {
1969                 *ofp_portp = ofproto_port.ofp_port;
1970                 ofproto_port_destroy(&ofproto_port);
1971             }
1972         }
1973     }
1974     return error;
1975 }
1976
1977 /* Looks up a port named 'devname' in 'ofproto'.  On success, returns 0 and
1978  * initializes '*port' appropriately; on failure, returns a positive errno
1979  * value.
1980  *
1981  * The caller owns the data in 'ofproto_port' and must free it with
1982  * ofproto_port_destroy() when it is no longer needed. */
1983 int
1984 ofproto_port_query_by_name(const struct ofproto *ofproto, const char *devname,
1985                            struct ofproto_port *port)
1986 {
1987     int error;
1988
1989     error = ofproto->ofproto_class->port_query_by_name(ofproto, devname, port);
1990     if (error) {
1991         memset(port, 0, sizeof *port);
1992     }
1993     return error;
1994 }
1995
1996 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'.
1997  * Returns 0 if successful, otherwise a positive errno. */
1998 int
1999 ofproto_port_del(struct ofproto *ofproto, ofp_port_t ofp_port)
2000 {
2001     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
2002     const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
2003     struct simap_node *ofp_request_node;
2004     int error;
2005
2006     ofp_request_node = simap_find(&ofproto->ofp_requests, name);
2007     if (ofp_request_node) {
2008         simap_delete(&ofproto->ofp_requests, ofp_request_node);
2009     }
2010
2011     error = ofproto->ofproto_class->port_del(ofproto, ofp_port);
2012     if (!error && ofport) {
2013         /* 'name' is the netdev's name and update_port() is going to close the
2014          * netdev.  Just in case update_port() refers to 'name' after it
2015          * destroys 'ofport', make a copy of it around the update_port()
2016          * call. */
2017         char *devname = xstrdup(name);
2018         update_port(ofproto, devname);
2019         free(devname);
2020     }
2021     return error;
2022 }
2023
2024 static void
2025 flow_mod_init(struct ofputil_flow_mod *fm,
2026               const struct match *match, int priority,
2027               const struct ofpact *ofpacts, size_t ofpacts_len,
2028               enum ofp_flow_mod_command command)
2029 {
2030     *fm = (struct ofputil_flow_mod) {
2031         .match = *match,
2032         .priority = priority,
2033         .table_id = 0,
2034         .command = command,
2035         .buffer_id = UINT32_MAX,
2036         .out_port = OFPP_ANY,
2037         .out_group = OFPG_ANY,
2038         .ofpacts = CONST_CAST(struct ofpact *, ofpacts),
2039         .ofpacts_len = ofpacts_len,
2040         .delete_reason = OFPRR_DELETE,
2041     };
2042 }
2043
2044 static int
2045 simple_flow_mod(struct ofproto *ofproto,
2046                 const struct match *match, int priority,
2047                 const struct ofpact *ofpacts, size_t ofpacts_len,
2048                 enum ofp_flow_mod_command command)
2049 {
2050     struct ofproto_flow_mod ofm;
2051
2052     flow_mod_init(&ofm.fm, match, priority, ofpacts, ofpacts_len, command);
2053
2054     return handle_flow_mod__(ofproto, &ofm, NULL);
2055 }
2056
2057 /* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
2058  * performs the 'n_actions' actions in 'actions'.  The new flow will not
2059  * timeout.
2060  *
2061  * If cls_rule->priority is in the range of priorities supported by OpenFlow
2062  * (0...65535, inclusive) then the flow will be visible to OpenFlow
2063  * controllers; otherwise, it will be hidden.
2064  *
2065  * The caller retains ownership of 'cls_rule' and 'ofpacts'.
2066  *
2067  * This is a helper function for in-band control and fail-open. */
2068 void
2069 ofproto_add_flow(struct ofproto *ofproto, const struct match *match,
2070                  int priority,
2071                  const struct ofpact *ofpacts, size_t ofpacts_len)
2072     OVS_EXCLUDED(ofproto_mutex)
2073 {
2074     const struct rule *rule;
2075     bool must_add;
2076
2077     /* First do a cheap check whether the rule we're looking for already exists
2078      * with the actions that we want.  If it does, then we're done. */
2079     rule = rule_from_cls_rule(classifier_find_match_exactly(
2080                                   &ofproto->tables[0].cls, match, priority,
2081                                   CLS_MAX_VERSION));
2082     if (rule) {
2083         const struct rule_actions *actions = rule_get_actions(rule);
2084         must_add = !ofpacts_equal(actions->ofpacts, actions->ofpacts_len,
2085                                   ofpacts, ofpacts_len);
2086     } else {
2087         must_add = true;
2088     }
2089
2090     /* If there's no such rule or the rule doesn't have the actions we want,
2091      * fall back to a executing a full flow mod.  We can't optimize this at
2092      * all because we didn't take enough locks above to ensure that the flow
2093      * table didn't already change beneath us.  */
2094     if (must_add) {
2095         simple_flow_mod(ofproto, match, priority, ofpacts, ofpacts_len,
2096                         OFPFC_MODIFY_STRICT);
2097     }
2098 }
2099
2100 /* Executes the flow modification specified in 'fm'.  Returns 0 on success, or
2101  * an OFPERR_* OpenFlow error code on failure.
2102  *
2103  * This is a helper function for in-band control and fail-open and the "learn"
2104  * action. */
2105 enum ofperr
2106 ofproto_flow_mod(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
2107     OVS_EXCLUDED(ofproto_mutex)
2108 {
2109     struct ofputil_flow_mod *fm = &ofm->fm;
2110
2111     /* Optimize for the most common case of a repeated learn action.
2112      * If an identical flow already exists we only need to update its
2113      * 'modified' time. */
2114     if (fm->command == OFPFC_MODIFY_STRICT && fm->table_id != OFPTT_ALL
2115         && !(fm->flags & OFPUTIL_FF_RESET_COUNTS)) {
2116         struct oftable *table = &ofproto->tables[fm->table_id];
2117         struct rule *rule;
2118         bool done = false;
2119
2120         rule = rule_from_cls_rule(classifier_find_match_exactly(
2121                                       &table->cls, &fm->match, fm->priority,
2122                                       CLS_MAX_VERSION));
2123         if (rule) {
2124             /* Reading many of the rule fields and writing on 'modified'
2125              * requires the rule->mutex.  Also, rule->actions may change
2126              * if rule->mutex is not held. */
2127             const struct rule_actions *actions;
2128
2129             ovs_mutex_lock(&rule->mutex);
2130             actions = rule_get_actions(rule);
2131             if (rule->idle_timeout == fm->idle_timeout
2132                 && rule->hard_timeout == fm->hard_timeout
2133                 && rule->importance == fm->importance
2134                 && rule->flags == (fm->flags & OFPUTIL_FF_STATE)
2135                 && (!fm->modify_cookie || (fm->new_cookie == rule->flow_cookie))
2136                 && ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
2137                                  actions->ofpacts, actions->ofpacts_len)) {
2138                 /* Rule already exists and need not change, only update the
2139                    modified timestamp. */
2140                 rule->modified = time_msec();
2141                 done = true;
2142             }
2143             ovs_mutex_unlock(&rule->mutex);
2144         }
2145
2146         if (done) {
2147             return 0;
2148         }
2149     }
2150
2151     return handle_flow_mod__(ofproto, ofm, NULL);
2152 }
2153
2154 /* Searches for a rule with matching criteria exactly equal to 'target' in
2155  * ofproto's table 0 and, if it finds one, deletes it.
2156  *
2157  * This is a helper function for in-band control and fail-open. */
2158 void
2159 ofproto_delete_flow(struct ofproto *ofproto,
2160                     const struct match *target, int priority)
2161     OVS_EXCLUDED(ofproto_mutex)
2162 {
2163     struct classifier *cls = &ofproto->tables[0].cls;
2164     struct rule *rule;
2165
2166     /* First do a cheap check whether the rule we're looking for has already
2167      * been deleted.  If so, then we're done. */
2168     rule = rule_from_cls_rule(classifier_find_match_exactly(
2169                                   cls, target, priority, CLS_MAX_VERSION));
2170     if (!rule) {
2171         return;
2172     }
2173
2174     /* Execute a flow mod.  We can't optimize this at all because we didn't
2175      * take enough locks above to ensure that the flow table didn't already
2176      * change beneath us. */
2177     simple_flow_mod(ofproto, target, priority, NULL, 0, OFPFC_DELETE_STRICT);
2178 }
2179
2180 /* Delete all of the flows from all of ofproto's flow tables, then reintroduce
2181  * the flows required by in-band control and fail-open.  */
2182 void
2183 ofproto_flush_flows(struct ofproto *ofproto)
2184 {
2185     COVERAGE_INC(ofproto_flush);
2186     ofproto_flush__(ofproto);
2187     connmgr_flushed(ofproto->connmgr);
2188 }
2189 \f
2190 static void
2191 reinit_ports(struct ofproto *p)
2192 {
2193     struct ofproto_port_dump dump;
2194     struct sset devnames;
2195     struct ofport *ofport;
2196     struct ofproto_port ofproto_port;
2197     const char *devname;
2198
2199     COVERAGE_INC(ofproto_reinit_ports);
2200
2201     sset_init(&devnames);
2202     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2203         sset_add(&devnames, netdev_get_name(ofport->netdev));
2204     }
2205     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2206         sset_add(&devnames, ofproto_port.name);
2207     }
2208
2209     SSET_FOR_EACH (devname, &devnames) {
2210         update_port(p, devname);
2211     }
2212     sset_destroy(&devnames);
2213 }
2214
2215 static ofp_port_t
2216 alloc_ofp_port(struct ofproto *ofproto, const char *netdev_name)
2217 {
2218     uint16_t port_idx;
2219
2220     port_idx = simap_get(&ofproto->ofp_requests, netdev_name);
2221     port_idx = port_idx ? port_idx : UINT16_MAX;
2222
2223     if (port_idx >= ofproto->max_ports
2224         || ofport_get_usage(ofproto, u16_to_ofp(port_idx)) == LLONG_MAX) {
2225         uint16_t lru_ofport = 0, end_port_no = ofproto->alloc_port_no;
2226         long long int last_used_at, lru = LLONG_MAX;
2227
2228         /* Search for a free OpenFlow port number.  We try not to
2229          * immediately reuse them to prevent problems due to old
2230          * flows.
2231          *
2232          * We limit the automatically assigned port numbers to the lower half
2233          * of the port range, to reserve the upper half for assignment by
2234          * controllers. */
2235         for (;;) {
2236             if (++ofproto->alloc_port_no >= MIN(ofproto->max_ports, 32768)) {
2237                 ofproto->alloc_port_no = 1;
2238             }
2239             last_used_at = ofport_get_usage(ofproto,
2240                                          u16_to_ofp(ofproto->alloc_port_no));
2241             if (!last_used_at) {
2242                 port_idx = ofproto->alloc_port_no;
2243                 break;
2244             } else if ( last_used_at < time_msec() - 60*60*1000) {
2245                 /* If the port with ofport 'ofproto->alloc_port_no' was deleted
2246                  * more than an hour ago, consider it usable. */
2247                 ofport_remove_usage(ofproto,
2248                     u16_to_ofp(ofproto->alloc_port_no));
2249                 port_idx = ofproto->alloc_port_no;
2250                 break;
2251             } else if (last_used_at < lru) {
2252                 lru = last_used_at;
2253                 lru_ofport = ofproto->alloc_port_no;
2254             }
2255
2256             if (ofproto->alloc_port_no == end_port_no) {
2257                 if (lru_ofport) {
2258                     port_idx = lru_ofport;
2259                     break;
2260                 }
2261                 return OFPP_NONE;
2262             }
2263         }
2264     }
2265     ofport_set_usage(ofproto, u16_to_ofp(port_idx), LLONG_MAX);
2266     return u16_to_ofp(port_idx);
2267 }
2268
2269 static void
2270 dealloc_ofp_port(struct ofproto *ofproto, ofp_port_t ofp_port)
2271 {
2272     if (ofp_to_u16(ofp_port) < ofproto->max_ports) {
2273         ofport_set_usage(ofproto, ofp_port, time_msec());
2274     }
2275 }
2276
2277 /* Opens and returns a netdev for 'ofproto_port' in 'ofproto', or a null
2278  * pointer if the netdev cannot be opened.  On success, also fills in
2279  * '*pp'.  */
2280 static struct netdev *
2281 ofport_open(struct ofproto *ofproto,
2282             struct ofproto_port *ofproto_port,
2283             struct ofputil_phy_port *pp)
2284 {
2285     enum netdev_flags flags;
2286     struct netdev *netdev;
2287     int error;
2288
2289     error = netdev_open(ofproto_port->name, ofproto_port->type, &netdev);
2290     if (error) {
2291         VLOG_WARN_RL(&rl, "%s: ignoring port %s (%"PRIu16") because netdev %s "
2292                      "cannot be opened (%s)",
2293                      ofproto->name,
2294                      ofproto_port->name, ofproto_port->ofp_port,
2295                      ofproto_port->name, ovs_strerror(error));
2296         return NULL;
2297     }
2298
2299     if (ofproto_port->ofp_port == OFPP_NONE) {
2300         if (!strcmp(ofproto->name, ofproto_port->name)) {
2301             ofproto_port->ofp_port = OFPP_LOCAL;
2302         } else {
2303             ofproto_port->ofp_port = alloc_ofp_port(ofproto,
2304                                                     ofproto_port->name);
2305         }
2306     }
2307     pp->port_no = ofproto_port->ofp_port;
2308     netdev_get_etheraddr(netdev, &pp->hw_addr);
2309     ovs_strlcpy(pp->name, ofproto_port->name, sizeof pp->name);
2310     netdev_get_flags(netdev, &flags);
2311     pp->config = flags & NETDEV_UP ? 0 : OFPUTIL_PC_PORT_DOWN;
2312     pp->state = netdev_get_carrier(netdev) ? 0 : OFPUTIL_PS_LINK_DOWN;
2313     netdev_get_features(netdev, &pp->curr, &pp->advertised,
2314                         &pp->supported, &pp->peer);
2315     pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
2316     pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
2317
2318     return netdev;
2319 }
2320
2321 /* Returns true if most fields of 'a' and 'b' are equal.  Differences in name,
2322  * port number, and 'config' bits other than OFPUTIL_PC_PORT_DOWN are
2323  * disregarded. */
2324 static bool
2325 ofport_equal(const struct ofputil_phy_port *a,
2326              const struct ofputil_phy_port *b)
2327 {
2328     return (eth_addr_equals(a->hw_addr, b->hw_addr)
2329             && a->state == b->state
2330             && !((a->config ^ b->config) & OFPUTIL_PC_PORT_DOWN)
2331             && a->curr == b->curr
2332             && a->advertised == b->advertised
2333             && a->supported == b->supported
2334             && a->peer == b->peer
2335             && a->curr_speed == b->curr_speed
2336             && a->max_speed == b->max_speed);
2337 }
2338
2339 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
2340  * The caller must ensure that 'p' does not have a conflicting ofport (that is,
2341  * one with the same name or port number). */
2342 static int
2343 ofport_install(struct ofproto *p,
2344                struct netdev *netdev, const struct ofputil_phy_port *pp)
2345 {
2346     const char *netdev_name = netdev_get_name(netdev);
2347     struct ofport *ofport;
2348     int error;
2349
2350     /* Create ofport. */
2351     ofport = p->ofproto_class->port_alloc();
2352     if (!ofport) {
2353         error = ENOMEM;
2354         goto error;
2355     }
2356     ofport->ofproto = p;
2357     ofport->netdev = netdev;
2358     ofport->change_seq = netdev_get_change_seq(netdev);
2359     ofport->pp = *pp;
2360     ofport->ofp_port = pp->port_no;
2361     ofport->created = time_msec();
2362
2363     /* Add port to 'p'. */
2364     hmap_insert(&p->ports, &ofport->hmap_node,
2365                 hash_ofp_port(ofport->ofp_port));
2366     shash_add(&p->port_by_name, netdev_name, ofport);
2367
2368     update_mtu(p, ofport);
2369
2370     /* Let the ofproto_class initialize its private data. */
2371     error = p->ofproto_class->port_construct(ofport);
2372     if (error) {
2373         goto error;
2374     }
2375     connmgr_send_port_status(p->connmgr, NULL, pp, OFPPR_ADD);
2376     return 0;
2377
2378 error:
2379     VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
2380                  p->name, netdev_name, ovs_strerror(error));
2381     if (ofport) {
2382         ofport_destroy__(ofport);
2383     } else {
2384         netdev_close(netdev);
2385     }
2386     return error;
2387 }
2388
2389 /* Removes 'ofport' from 'p' and destroys it. */
2390 static void
2391 ofport_remove(struct ofport *ofport)
2392 {
2393     connmgr_send_port_status(ofport->ofproto->connmgr, NULL, &ofport->pp,
2394                              OFPPR_DELETE);
2395     ofport_destroy(ofport, true);
2396 }
2397
2398 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
2399  * destroys it. */
2400 static void
2401 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
2402 {
2403     struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
2404     if (port) {
2405         ofport_remove(port);
2406     }
2407 }
2408
2409 /* Updates 'port' with new 'pp' description.
2410  *
2411  * Does not handle a name or port number change.  The caller must implement
2412  * such a change as a delete followed by an add.  */
2413 static void
2414 ofport_modified(struct ofport *port, struct ofputil_phy_port *pp)
2415 {
2416     port->pp.hw_addr = pp->hw_addr;
2417     port->pp.config = ((port->pp.config & ~OFPUTIL_PC_PORT_DOWN)
2418                         | (pp->config & OFPUTIL_PC_PORT_DOWN));
2419     port->pp.state = ((port->pp.state & ~OFPUTIL_PS_LINK_DOWN)
2420                       | (pp->state & OFPUTIL_PS_LINK_DOWN));
2421     port->pp.curr = pp->curr;
2422     port->pp.advertised = pp->advertised;
2423     port->pp.supported = pp->supported;
2424     port->pp.peer = pp->peer;
2425     port->pp.curr_speed = pp->curr_speed;
2426     port->pp.max_speed = pp->max_speed;
2427
2428     connmgr_send_port_status(port->ofproto->connmgr, NULL,
2429                              &port->pp, OFPPR_MODIFY);
2430 }
2431
2432 /* Update OpenFlow 'state' in 'port' and notify controller. */
2433 void
2434 ofproto_port_set_state(struct ofport *port, enum ofputil_port_state state)
2435 {
2436     if (port->pp.state != state) {
2437         port->pp.state = state;
2438         connmgr_send_port_status(port->ofproto->connmgr, NULL,
2439                                  &port->pp, OFPPR_MODIFY);
2440     }
2441 }
2442
2443 void
2444 ofproto_port_unregister(struct ofproto *ofproto, ofp_port_t ofp_port)
2445 {
2446     struct ofport *port = ofproto_get_port(ofproto, ofp_port);
2447     if (port) {
2448         if (port->ofproto->ofproto_class->set_realdev) {
2449             port->ofproto->ofproto_class->set_realdev(port, 0, 0);
2450         }
2451         if (port->ofproto->ofproto_class->set_stp_port) {
2452             port->ofproto->ofproto_class->set_stp_port(port, NULL);
2453         }
2454         if (port->ofproto->ofproto_class->set_rstp_port) {
2455             port->ofproto->ofproto_class->set_rstp_port(port, NULL);
2456         }
2457         if (port->ofproto->ofproto_class->set_cfm) {
2458             port->ofproto->ofproto_class->set_cfm(port, NULL);
2459         }
2460         if (port->ofproto->ofproto_class->bundle_remove) {
2461             port->ofproto->ofproto_class->bundle_remove(port);
2462         }
2463     }
2464 }
2465
2466 static void
2467 ofport_destroy__(struct ofport *port)
2468 {
2469     struct ofproto *ofproto = port->ofproto;
2470     const char *name = netdev_get_name(port->netdev);
2471
2472     hmap_remove(&ofproto->ports, &port->hmap_node);
2473     shash_delete(&ofproto->port_by_name,
2474                  shash_find(&ofproto->port_by_name, name));
2475
2476     netdev_close(port->netdev);
2477     ofproto->ofproto_class->port_dealloc(port);
2478 }
2479
2480 static void
2481 ofport_destroy(struct ofport *port, bool del)
2482 {
2483     if (port) {
2484         dealloc_ofp_port(port->ofproto, port->ofp_port);
2485         port->ofproto->ofproto_class->port_destruct(port, del);
2486         ofport_destroy__(port);
2487      }
2488 }
2489
2490 struct ofport *
2491 ofproto_get_port(const struct ofproto *ofproto, ofp_port_t ofp_port)
2492 {
2493     struct ofport *port;
2494
2495     HMAP_FOR_EACH_IN_BUCKET (port, hmap_node, hash_ofp_port(ofp_port),
2496                              &ofproto->ports) {
2497         if (port->ofp_port == ofp_port) {
2498             return port;
2499         }
2500     }
2501     return NULL;
2502 }
2503
2504 static long long int
2505 ofport_get_usage(const struct ofproto *ofproto, ofp_port_t ofp_port)
2506 {
2507     struct ofport_usage *usage;
2508
2509     HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2510                              &ofproto->ofport_usage) {
2511         if (usage->ofp_port == ofp_port) {
2512             return usage->last_used;
2513         }
2514     }
2515     return 0;
2516 }
2517
2518 static void
2519 ofport_set_usage(struct ofproto *ofproto, ofp_port_t ofp_port,
2520                  long long int last_used)
2521 {
2522     struct ofport_usage *usage;
2523     HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2524                              &ofproto->ofport_usage) {
2525         if (usage->ofp_port == ofp_port) {
2526             usage->last_used = last_used;
2527             return;
2528         }
2529     }
2530     ovs_assert(last_used == LLONG_MAX);
2531
2532     usage = xmalloc(sizeof *usage);
2533     usage->ofp_port = ofp_port;
2534     usage->last_used = last_used;
2535     hmap_insert(&ofproto->ofport_usage, &usage->hmap_node,
2536                 hash_ofp_port(ofp_port));
2537 }
2538
2539 static void
2540 ofport_remove_usage(struct ofproto *ofproto, ofp_port_t ofp_port)
2541 {
2542     struct ofport_usage *usage;
2543     HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2544                              &ofproto->ofport_usage) {
2545         if (usage->ofp_port == ofp_port) {
2546             hmap_remove(&ofproto->ofport_usage, &usage->hmap_node);
2547             free(usage);
2548             break;
2549         }
2550     }
2551 }
2552
2553 int
2554 ofproto_port_get_stats(const struct ofport *port, struct netdev_stats *stats)
2555 {
2556     struct ofproto *ofproto = port->ofproto;
2557     int error;
2558
2559     if (ofproto->ofproto_class->port_get_stats) {
2560         error = ofproto->ofproto_class->port_get_stats(port, stats);
2561     } else {
2562         error = EOPNOTSUPP;
2563     }
2564
2565     return error;
2566 }
2567
2568 static int
2569 update_port(struct ofproto *ofproto, const char *name)
2570 {
2571     struct ofproto_port ofproto_port;
2572     struct ofputil_phy_port pp;
2573     struct netdev *netdev;
2574     struct ofport *port;
2575     int error = 0;
2576
2577     COVERAGE_INC(ofproto_update_port);
2578
2579     /* Fetch 'name''s location and properties from the datapath. */
2580     netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
2581               ? ofport_open(ofproto, &ofproto_port, &pp)
2582               : NULL);
2583
2584     if (netdev) {
2585         port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
2586         if (port && !strcmp(netdev_get_name(port->netdev), name)) {
2587             struct netdev *old_netdev = port->netdev;
2588
2589             /* 'name' hasn't changed location.  Any properties changed? */
2590             if (!ofport_equal(&port->pp, &pp)) {
2591                 ofport_modified(port, &pp);
2592             }
2593
2594             update_mtu(ofproto, port);
2595
2596             /* Install the newly opened netdev in case it has changed.
2597              * Don't close the old netdev yet in case port_modified has to
2598              * remove a retained reference to it.*/
2599             port->netdev = netdev;
2600             port->change_seq = netdev_get_change_seq(netdev);
2601
2602             if (port->ofproto->ofproto_class->port_modified) {
2603                 port->ofproto->ofproto_class->port_modified(port);
2604             }
2605
2606             netdev_close(old_netdev);
2607         } else {
2608             /* If 'port' is nonnull then its name differs from 'name' and thus
2609              * we should delete it.  If we think there's a port named 'name'
2610              * then its port number must be wrong now so delete it too. */
2611             if (port) {
2612                 ofport_remove(port);
2613             }
2614             ofport_remove_with_name(ofproto, name);
2615             error = ofport_install(ofproto, netdev, &pp);
2616         }
2617     } else {
2618         /* Any port named 'name' is gone now. */
2619         ofport_remove_with_name(ofproto, name);
2620     }
2621     ofproto_port_destroy(&ofproto_port);
2622
2623     return error;
2624 }
2625
2626 static int
2627 init_ports(struct ofproto *p)
2628 {
2629     struct ofproto_port_dump dump;
2630     struct ofproto_port ofproto_port;
2631     struct shash_node *node, *next;
2632
2633     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2634         const char *name = ofproto_port.name;
2635
2636         if (shash_find(&p->port_by_name, name)) {
2637             VLOG_WARN_RL(&rl, "%s: ignoring duplicate device %s in datapath",
2638                          p->name, name);
2639         } else {
2640             struct ofputil_phy_port pp;
2641             struct netdev *netdev;
2642
2643             /* Check if an OpenFlow port number had been requested. */
2644             node = shash_find(&init_ofp_ports, name);
2645             if (node) {
2646                 const struct iface_hint *iface_hint = node->data;
2647                 simap_put(&p->ofp_requests, name,
2648                           ofp_to_u16(iface_hint->ofp_port));
2649             }
2650
2651             netdev = ofport_open(p, &ofproto_port, &pp);
2652             if (netdev) {
2653                 ofport_install(p, netdev, &pp);
2654                 if (ofp_to_u16(ofproto_port.ofp_port) < p->max_ports) {
2655                     p->alloc_port_no = MAX(p->alloc_port_no,
2656                                            ofp_to_u16(ofproto_port.ofp_port));
2657                 }
2658             }
2659         }
2660     }
2661
2662     SHASH_FOR_EACH_SAFE(node, next, &init_ofp_ports) {
2663         struct iface_hint *iface_hint = node->data;
2664
2665         if (!strcmp(iface_hint->br_name, p->name)) {
2666             free(iface_hint->br_name);
2667             free(iface_hint->br_type);
2668             free(iface_hint);
2669             shash_delete(&init_ofp_ports, node);
2670         }
2671     }
2672
2673     return 0;
2674 }
2675
2676 /* Find the minimum MTU of all non-datapath devices attached to 'p'.
2677  * Returns ETH_PAYLOAD_MAX or the minimum of the ports. */
2678 static int
2679 find_min_mtu(struct ofproto *p)
2680 {
2681     struct ofport *ofport;
2682     int mtu = 0;
2683
2684     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2685         struct netdev *netdev = ofport->netdev;
2686         int dev_mtu;
2687
2688         /* Skip any internal ports, since that's what we're trying to
2689          * set. */
2690         if (!strcmp(netdev_get_type(netdev), "internal")) {
2691             continue;
2692         }
2693
2694         if (netdev_get_mtu(netdev, &dev_mtu)) {
2695             continue;
2696         }
2697         if (!mtu || dev_mtu < mtu) {
2698             mtu = dev_mtu;
2699         }
2700     }
2701
2702     return mtu ? mtu: ETH_PAYLOAD_MAX;
2703 }
2704
2705 /* Update MTU of all datapath devices on 'p' to the minimum of the
2706  * non-datapath ports in event of 'port' added or changed. */
2707 static void
2708 update_mtu(struct ofproto *p, struct ofport *port)
2709 {
2710     struct ofport *ofport;
2711     struct netdev *netdev = port->netdev;
2712     int dev_mtu, old_min;
2713
2714     if (netdev_get_mtu(netdev, &dev_mtu)) {
2715         port->mtu = 0;
2716         return;
2717     }
2718     if (!strcmp(netdev_get_type(port->netdev), "internal")) {
2719         if (dev_mtu > p->min_mtu) {
2720            if (!netdev_set_mtu(port->netdev, p->min_mtu)) {
2721                dev_mtu = p->min_mtu;
2722            }
2723         }
2724         port->mtu = dev_mtu;
2725         return;
2726     }
2727
2728     /* For non-internal port find new min mtu. */
2729     old_min = p->min_mtu;
2730     port->mtu = dev_mtu;
2731     p->min_mtu = find_min_mtu(p);
2732     if (p->min_mtu == old_min) {
2733         return;
2734     }
2735
2736     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2737         struct netdev *netdev = ofport->netdev;
2738
2739         if (!strcmp(netdev_get_type(netdev), "internal")) {
2740             if (!netdev_set_mtu(netdev, p->min_mtu)) {
2741                 ofport->mtu = p->min_mtu;
2742             }
2743         }
2744     }
2745 }
2746 \f
2747 static void
2748 ofproto_rule_destroy__(struct rule *rule)
2749     OVS_NO_THREAD_SAFETY_ANALYSIS
2750 {
2751     cls_rule_destroy(CONST_CAST(struct cls_rule *, &rule->cr));
2752     rule_actions_destroy(rule_get_actions(rule));
2753     ovs_mutex_destroy(&rule->mutex);
2754     rule->ofproto->ofproto_class->rule_dealloc(rule);
2755 }
2756
2757 static void
2758 rule_destroy_cb(struct rule *rule)
2759     OVS_NO_THREAD_SAFETY_ANALYSIS
2760 {
2761     /* Send rule removed if needed. */
2762     if (rule->flags & OFPUTIL_FF_SEND_FLOW_REM
2763         && rule->removed_reason != OVS_OFPRR_NONE
2764         && !rule_is_hidden(rule)) {
2765         ofproto_rule_send_removed(rule);
2766     }
2767     rule->ofproto->ofproto_class->rule_destruct(rule);
2768     ofproto_rule_destroy__(rule);
2769 }
2770
2771 void
2772 ofproto_rule_ref(struct rule *rule)
2773 {
2774     if (rule) {
2775         ovs_refcount_ref(&rule->ref_count);
2776     }
2777 }
2778
2779 bool
2780 ofproto_rule_try_ref(struct rule *rule)
2781 {
2782     if (rule) {
2783         return ovs_refcount_try_ref_rcu(&rule->ref_count);
2784     }
2785     return false;
2786 }
2787
2788 /* Decrements 'rule''s ref_count and schedules 'rule' to be destroyed if the
2789  * ref_count reaches 0.
2790  *
2791  * Use of RCU allows short term use (between RCU quiescent periods) without
2792  * keeping a reference.  A reference must be taken if the rule needs to
2793  * stay around accross the RCU quiescent periods. */
2794 void
2795 ofproto_rule_unref(struct rule *rule)
2796 {
2797     if (rule && ovs_refcount_unref_relaxed(&rule->ref_count) == 1) {
2798         ovsrcu_postpone(rule_destroy_cb, rule);
2799     }
2800 }
2801
2802 static void
2803 remove_rule_rcu__(struct rule *rule)
2804     OVS_REQUIRES(ofproto_mutex)
2805 {
2806     struct ofproto *ofproto = rule->ofproto;
2807     struct oftable *table = &ofproto->tables[rule->table_id];
2808
2809     ovs_assert(!cls_rule_visible_in_version(&rule->cr, CLS_MAX_VERSION));
2810     if (!classifier_remove(&table->cls, &rule->cr)) {
2811         OVS_NOT_REACHED();
2812     }
2813     ofproto->ofproto_class->rule_delete(rule);
2814     ofproto_rule_unref(rule);
2815 }
2816
2817 static void
2818 remove_rule_rcu(struct rule *rule)
2819     OVS_EXCLUDED(ofproto_mutex)
2820 {
2821     ovs_mutex_lock(&ofproto_mutex);
2822     remove_rule_rcu__(rule);
2823     ovs_mutex_unlock(&ofproto_mutex);
2824 }
2825
2826 /* Removes and deletes rules from a NULL-terminated array of rule pointers. */
2827 static void
2828 remove_rules_rcu(struct rule **rules)
2829     OVS_EXCLUDED(ofproto_mutex)
2830 {
2831     struct rule **orig_rules = rules;
2832
2833     if (*rules) {
2834         struct ofproto *ofproto = rules[0]->ofproto;
2835         unsigned long tables[BITMAP_N_LONGS(256)];
2836         struct rule *rule;
2837         size_t table_id;
2838
2839         memset(tables, 0, sizeof tables);
2840
2841         ovs_mutex_lock(&ofproto_mutex);
2842         while ((rule = *rules++)) {
2843             /* Defer once for each new table.  This defers the subtable cleanup
2844              * until later, so that when removing large number of flows the
2845              * operation is faster. */
2846             if (!bitmap_is_set(tables, rule->table_id)) {
2847                 struct classifier *cls = &ofproto->tables[rule->table_id].cls;
2848
2849                 bitmap_set1(tables, rule->table_id);
2850                 classifier_defer(cls);
2851             }
2852             remove_rule_rcu__(rule);
2853         }
2854
2855         BITMAP_FOR_EACH_1(table_id, 256, tables) {
2856             struct classifier *cls = &ofproto->tables[table_id].cls;
2857
2858             classifier_publish(cls);
2859         }
2860         ovs_mutex_unlock(&ofproto_mutex);
2861     }
2862
2863     free(orig_rules);
2864 }
2865
2866 void
2867 ofproto_group_ref(struct ofgroup *group)
2868 {
2869     if (group) {
2870         ovs_refcount_ref(&group->ref_count);
2871     }
2872 }
2873
2874 void
2875 ofproto_group_unref(struct ofgroup *group)
2876 {
2877     if (group && ovs_refcount_unref(&group->ref_count) == 1) {
2878         group->ofproto->ofproto_class->group_destruct(group);
2879         ofputil_bucket_list_destroy(&group->buckets);
2880         group->ofproto->ofproto_class->group_dealloc(group);
2881     }
2882 }
2883
2884 static uint32_t get_provider_meter_id(const struct ofproto *,
2885                                       uint32_t of_meter_id);
2886
2887 /* Creates and returns a new 'struct rule_actions', whose actions are a copy
2888  * of from the 'ofpacts_len' bytes of 'ofpacts'. */
2889 const struct rule_actions *
2890 rule_actions_create(const struct ofpact *ofpacts, size_t ofpacts_len)
2891 {
2892     struct rule_actions *actions;
2893
2894     actions = xmalloc(sizeof *actions + ofpacts_len);
2895     actions->ofpacts_len = ofpacts_len;
2896     actions->has_meter = ofpacts_get_meter(ofpacts, ofpacts_len) != 0;
2897     memcpy(actions->ofpacts, ofpacts, ofpacts_len);
2898
2899     actions->has_learn_with_delete = (next_learn_with_delete(actions, NULL)
2900                                       != NULL);
2901
2902     return actions;
2903 }
2904
2905 /* Free the actions after the RCU quiescent period is reached. */
2906 void
2907 rule_actions_destroy(const struct rule_actions *actions)
2908 {
2909     if (actions) {
2910         ovsrcu_postpone(free, CONST_CAST(struct rule_actions *, actions));
2911     }
2912 }
2913
2914 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
2915  * that outputs to 'port' (output to OFPP_FLOOD and OFPP_ALL doesn't count). */
2916 bool
2917 ofproto_rule_has_out_port(const struct rule *rule, ofp_port_t port)
2918     OVS_REQUIRES(ofproto_mutex)
2919 {
2920     if (port == OFPP_ANY) {
2921         return true;
2922     } else {
2923         const struct rule_actions *actions = rule_get_actions(rule);
2924         return ofpacts_output_to_port(actions->ofpacts,
2925                                       actions->ofpacts_len, port);
2926     }
2927 }
2928
2929 /* Returns true if 'rule' has group and equals group_id. */
2930 static bool
2931 ofproto_rule_has_out_group(const struct rule *rule, uint32_t group_id)
2932     OVS_REQUIRES(ofproto_mutex)
2933 {
2934     if (group_id == OFPG_ANY) {
2935         return true;
2936     } else {
2937         const struct rule_actions *actions = rule_get_actions(rule);
2938         return ofpacts_output_to_group(actions->ofpacts,
2939                                        actions->ofpacts_len, group_id);
2940     }
2941 }
2942
2943 static void
2944 rule_execute_destroy(struct rule_execute *e)
2945 {
2946     ofproto_rule_unref(e->rule);
2947     list_remove(&e->list_node);
2948     free(e);
2949 }
2950
2951 /* Executes all "rule_execute" operations queued up in ofproto->rule_executes,
2952  * by passing them to the ofproto provider. */
2953 static void
2954 run_rule_executes(struct ofproto *ofproto)
2955     OVS_EXCLUDED(ofproto_mutex)
2956 {
2957     struct rule_execute *e, *next;
2958     struct ovs_list executes;
2959
2960     guarded_list_pop_all(&ofproto->rule_executes, &executes);
2961     LIST_FOR_EACH_SAFE (e, next, list_node, &executes) {
2962         struct flow flow;
2963
2964         flow_extract(e->packet, &flow);
2965         flow.in_port.ofp_port = e->in_port;
2966         ofproto->ofproto_class->rule_execute(e->rule, &flow, e->packet);
2967
2968         rule_execute_destroy(e);
2969     }
2970 }
2971
2972 /* Destroys and discards all "rule_execute" operations queued up in
2973  * ofproto->rule_executes. */
2974 static void
2975 destroy_rule_executes(struct ofproto *ofproto)
2976 {
2977     struct rule_execute *e, *next;
2978     struct ovs_list executes;
2979
2980     guarded_list_pop_all(&ofproto->rule_executes, &executes);
2981     LIST_FOR_EACH_SAFE (e, next, list_node, &executes) {
2982         dp_packet_delete(e->packet);
2983         rule_execute_destroy(e);
2984     }
2985 }
2986
2987 static bool
2988 rule_is_readonly(const struct rule *rule)
2989 {
2990     const struct oftable *table = &rule->ofproto->tables[rule->table_id];
2991     return (table->flags & OFTABLE_READONLY) != 0;
2992 }
2993 \f
2994 static uint32_t
2995 hash_learned_cookie(ovs_be64 cookie_, uint8_t table_id)
2996 {
2997     uint64_t cookie = (OVS_FORCE uint64_t) cookie_;
2998     return hash_3words(cookie, cookie >> 32, table_id);
2999 }
3000
3001 static void
3002 learned_cookies_update_one__(struct ofproto *ofproto,
3003                              const struct ofpact_learn *learn,
3004                              int delta, struct ovs_list *dead_cookies)
3005     OVS_REQUIRES(ofproto_mutex)
3006 {
3007     uint32_t hash = hash_learned_cookie(learn->cookie, learn->table_id);
3008     struct learned_cookie *c;
3009
3010     HMAP_FOR_EACH_WITH_HASH (c, u.hmap_node, hash, &ofproto->learned_cookies) {
3011         if (c->cookie == learn->cookie && c->table_id == learn->table_id) {
3012             c->n += delta;
3013             ovs_assert(c->n >= 0);
3014
3015             if (!c->n) {
3016                 hmap_remove(&ofproto->learned_cookies, &c->u.hmap_node);
3017                 list_push_back(dead_cookies, &c->u.list_node);
3018             }
3019
3020             return;
3021         }
3022     }
3023
3024     ovs_assert(delta > 0);
3025     c = xmalloc(sizeof *c);
3026     hmap_insert(&ofproto->learned_cookies, &c->u.hmap_node, hash);
3027     c->cookie = learn->cookie;
3028     c->table_id = learn->table_id;
3029     c->n = delta;
3030 }
3031
3032 static const struct ofpact_learn *
3033 next_learn_with_delete(const struct rule_actions *actions,
3034                        const struct ofpact_learn *start)
3035 {
3036     const struct ofpact *pos;
3037
3038     for (pos = start ? ofpact_next(&start->ofpact) : actions->ofpacts;
3039          pos < ofpact_end(actions->ofpacts, actions->ofpacts_len);
3040          pos = ofpact_next(pos)) {
3041         if (pos->type == OFPACT_LEARN) {
3042             const struct ofpact_learn *learn = ofpact_get_LEARN(pos);
3043             if (learn->flags & NX_LEARN_F_DELETE_LEARNED) {
3044                 return learn;
3045             }
3046         }
3047     }
3048
3049     return NULL;
3050 }
3051
3052 static void
3053 learned_cookies_update__(struct ofproto *ofproto,
3054                          const struct rule_actions *actions,
3055                          int delta, struct ovs_list *dead_cookies)
3056     OVS_REQUIRES(ofproto_mutex)
3057 {
3058     if (actions->has_learn_with_delete) {
3059         const struct ofpact_learn *learn;
3060
3061         for (learn = next_learn_with_delete(actions, NULL); learn;
3062              learn = next_learn_with_delete(actions, learn)) {
3063             learned_cookies_update_one__(ofproto, learn, delta, dead_cookies);
3064         }
3065     }
3066 }
3067
3068 static void
3069 learned_cookies_inc(struct ofproto *ofproto,
3070                     const struct rule_actions *actions)
3071     OVS_REQUIRES(ofproto_mutex)
3072 {
3073     learned_cookies_update__(ofproto, actions, +1, NULL);
3074 }
3075
3076 static void
3077 learned_cookies_dec(struct ofproto *ofproto,
3078                     const struct rule_actions *actions,
3079                     struct ovs_list *dead_cookies)
3080     OVS_REQUIRES(ofproto_mutex)
3081 {
3082     learned_cookies_update__(ofproto, actions, -1, dead_cookies);
3083 }
3084
3085 static void
3086 learned_cookies_flush(struct ofproto *ofproto, struct ovs_list *dead_cookies)
3087     OVS_REQUIRES(ofproto_mutex)
3088 {
3089     struct learned_cookie *c;
3090
3091     LIST_FOR_EACH_POP (c, u.list_node, dead_cookies) {
3092         struct rule_criteria criteria;
3093         struct rule_collection rules;
3094         struct match match;
3095
3096         match_init_catchall(&match);
3097         rule_criteria_init(&criteria, c->table_id, &match, 0, CLS_MAX_VERSION,
3098                            c->cookie, OVS_BE64_MAX, OFPP_ANY, OFPG_ANY);
3099         rule_criteria_require_rw(&criteria, false);
3100         collect_rules_loose(ofproto, &criteria, &rules);
3101         rule_criteria_destroy(&criteria);
3102         delete_flows__(&rules, OFPRR_DELETE, NULL);
3103
3104         free(c);
3105     }
3106 }
3107 \f
3108 static enum ofperr
3109 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
3110 {
3111     ofconn_send_reply(ofconn, make_echo_reply(oh));
3112     return 0;
3113 }
3114
3115 static void
3116 query_tables(struct ofproto *ofproto,
3117              struct ofputil_table_features **featuresp,
3118              struct ofputil_table_stats **statsp)
3119 {
3120     struct mf_bitmap rw_fields = oxm_writable_fields();
3121     struct mf_bitmap match = oxm_matchable_fields();
3122     struct mf_bitmap mask = oxm_maskable_fields();
3123
3124     struct ofputil_table_features *features;
3125     struct ofputil_table_stats *stats;
3126     int i;
3127
3128     features = *featuresp = xcalloc(ofproto->n_tables, sizeof *features);
3129     for (i = 0; i < ofproto->n_tables; i++) {
3130         struct ofputil_table_features *f = &features[i];
3131
3132         f->table_id = i;
3133         sprintf(f->name, "table%d", i);
3134         f->metadata_match = OVS_BE64_MAX;
3135         f->metadata_write = OVS_BE64_MAX;
3136         atomic_read_relaxed(&ofproto->tables[i].miss_config, &f->miss_config);
3137         f->max_entries = 1000000;
3138
3139         bool more_tables = false;
3140         for (int j = i + 1; j < ofproto->n_tables; j++) {
3141             if (!(ofproto->tables[j].flags & OFTABLE_HIDDEN)) {
3142                 bitmap_set1(f->nonmiss.next, j);
3143                 more_tables = true;
3144             }
3145         }
3146         f->nonmiss.instructions = (1u << N_OVS_INSTRUCTIONS) - 1;
3147         if (!more_tables) {
3148             f->nonmiss.instructions &= ~(1u << OVSINST_OFPIT11_GOTO_TABLE);
3149         }
3150         f->nonmiss.write.ofpacts = (UINT64_C(1) << N_OFPACTS) - 1;
3151         f->nonmiss.write.set_fields = rw_fields;
3152         f->nonmiss.apply = f->nonmiss.write;
3153         f->miss = f->nonmiss;
3154
3155         f->match = match;
3156         f->mask = mask;
3157         f->wildcard = match;
3158     }
3159
3160     if (statsp) {
3161         stats = *statsp = xcalloc(ofproto->n_tables, sizeof *stats);
3162         for (i = 0; i < ofproto->n_tables; i++) {
3163             struct ofputil_table_stats *s = &stats[i];
3164
3165             s->table_id = i;
3166             s->active_count = ofproto->tables[i].n_flows;
3167             if (i == 0) {
3168                 s->active_count -= connmgr_count_hidden_rules(
3169                     ofproto->connmgr);
3170             }
3171         }
3172     } else {
3173         stats = NULL;
3174     }
3175
3176     ofproto->ofproto_class->query_tables(ofproto, features, stats);
3177
3178     for (i = 0; i < ofproto->n_tables; i++) {
3179         const struct oftable *table = &ofproto->tables[i];
3180         struct ofputil_table_features *f = &features[i];
3181
3182         if (table->name) {
3183             ovs_strzcpy(f->name, table->name, sizeof f->name);
3184         }
3185
3186         if (table->max_flows < f->max_entries) {
3187             f->max_entries = table->max_flows;
3188         }
3189     }
3190 }
3191
3192 static void
3193 query_switch_features(struct ofproto *ofproto,
3194                       bool *arp_match_ip, uint64_t *ofpacts)
3195 {
3196     struct ofputil_table_features *features, *f;
3197
3198     *arp_match_ip = false;
3199     *ofpacts = 0;
3200
3201     query_tables(ofproto, &features, NULL);
3202     for (f = features; f < &features[ofproto->n_tables]; f++) {
3203         *ofpacts |= f->nonmiss.apply.ofpacts | f->miss.apply.ofpacts;
3204         if (bitmap_is_set(f->match.bm, MFF_ARP_SPA) ||
3205             bitmap_is_set(f->match.bm, MFF_ARP_TPA)) {
3206             *arp_match_ip = true;
3207         }
3208     }
3209     free(features);
3210
3211     /* Sanity check. */
3212     ovs_assert(*ofpacts & (UINT64_C(1) << OFPACT_OUTPUT));
3213 }
3214
3215 static enum ofperr
3216 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
3217 {
3218     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3219     struct ofputil_switch_features features;
3220     struct ofport *port;
3221     bool arp_match_ip;
3222     struct ofpbuf *b;
3223
3224     query_switch_features(ofproto, &arp_match_ip, &features.ofpacts);
3225
3226     features.datapath_id = ofproto->datapath_id;
3227     features.n_buffers = pktbuf_capacity();
3228     features.n_tables = ofproto_get_n_visible_tables(ofproto);
3229     features.capabilities = (OFPUTIL_C_FLOW_STATS | OFPUTIL_C_TABLE_STATS |
3230                              OFPUTIL_C_PORT_STATS | OFPUTIL_C_QUEUE_STATS |
3231                              OFPUTIL_C_GROUP_STATS);
3232     if (arp_match_ip) {
3233         features.capabilities |= OFPUTIL_C_ARP_MATCH_IP;
3234     }
3235     /* FIXME: Fill in proper features.auxiliary_id for auxiliary connections */
3236     features.auxiliary_id = 0;
3237     b = ofputil_encode_switch_features(&features, ofconn_get_protocol(ofconn),
3238                                        oh->xid);
3239     HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3240         ofputil_put_switch_features_port(&port->pp, b);
3241     }
3242
3243     ofconn_send_reply(ofconn, b);
3244     return 0;
3245 }
3246
3247 static enum ofperr
3248 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
3249 {
3250     struct ofputil_switch_config config;
3251     config.frag = ofconn_get_ofproto(ofconn)->frag_handling;
3252     config.invalid_ttl_to_controller
3253         = ofconn_get_invalid_ttl_to_controller(ofconn);
3254     config.miss_send_len = ofconn_get_miss_send_len(ofconn);
3255
3256     ofconn_send_reply(ofconn, ofputil_encode_get_config_reply(oh, &config));
3257
3258     return 0;
3259 }
3260
3261 static enum ofperr
3262 handle_set_config(struct ofconn *ofconn, const struct ofp_header *oh)
3263 {
3264     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3265     struct ofputil_switch_config config;
3266     enum ofperr error;
3267
3268     error = ofputil_decode_set_config(oh, &config);
3269     if (error) {
3270         return error;
3271     }
3272
3273     if (ofconn_get_type(ofconn) != OFCONN_PRIMARY
3274         || ofconn_get_role(ofconn) != OFPCR12_ROLE_SLAVE) {
3275         enum ofputil_frag_handling cur = ofproto->frag_handling;
3276         enum ofputil_frag_handling next = config.frag;
3277
3278         if (cur != next) {
3279             if (ofproto->ofproto_class->set_frag_handling(ofproto, next)) {
3280                 ofproto->frag_handling = next;
3281             } else {
3282                 VLOG_WARN_RL(&rl, "%s: unsupported fragment handling mode %s",
3283                              ofproto->name,
3284                              ofputil_frag_handling_to_string(next));
3285             }
3286         }
3287     }
3288
3289     if (config.invalid_ttl_to_controller >= 0) {
3290         ofconn_set_invalid_ttl_to_controller(ofconn,
3291                                              config.invalid_ttl_to_controller);
3292     }
3293
3294     ofconn_set_miss_send_len(ofconn, config.miss_send_len);
3295
3296     return 0;
3297 }
3298
3299 /* Checks whether 'ofconn' is a slave controller.  If so, returns an OpenFlow
3300  * error message code for the caller to propagate upward.  Otherwise, returns
3301  * 0.
3302  *
3303  * The log message mentions 'msg_type'. */
3304 static enum ofperr
3305 reject_slave_controller(struct ofconn *ofconn)
3306 {
3307     if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
3308         && ofconn_get_role(ofconn) == OFPCR12_ROLE_SLAVE) {
3309         return OFPERR_OFPBRC_IS_SLAVE;
3310     } else {
3311         return 0;
3312     }
3313 }
3314
3315 /* Checks that the 'ofpacts_len' bytes of action in 'ofpacts' are appropriate
3316  * for 'ofproto':
3317  *
3318  *    - If they use a meter, then 'ofproto' has that meter configured.
3319  *
3320  *    - If they use any groups, then 'ofproto' has that group configured.
3321  *
3322  * Returns 0 if successful, otherwise an OpenFlow error. */
3323 enum ofperr
3324 ofproto_check_ofpacts(struct ofproto *ofproto,
3325                       const struct ofpact ofpacts[], size_t ofpacts_len)
3326 {
3327     const struct ofpact *a;
3328     uint32_t mid;
3329
3330     mid = ofpacts_get_meter(ofpacts, ofpacts_len);
3331     if (mid && get_provider_meter_id(ofproto, mid) == UINT32_MAX) {
3332         return OFPERR_OFPMMFC_INVALID_METER;
3333     }
3334
3335     OFPACT_FOR_EACH_FLATTENED (a, ofpacts, ofpacts_len) {
3336         if (a->type == OFPACT_GROUP
3337             && !ofproto_group_exists(ofproto, ofpact_get_GROUP(a)->group_id)) {
3338             return OFPERR_OFPBAC_BAD_OUT_GROUP;
3339         }
3340     }
3341
3342     return 0;
3343 }
3344
3345 static enum ofperr
3346 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
3347 {
3348     struct ofproto *p = ofconn_get_ofproto(ofconn);
3349     struct ofputil_packet_out po;
3350     struct dp_packet *payload;
3351     uint64_t ofpacts_stub[1024 / 8];
3352     struct ofpbuf ofpacts;
3353     struct flow flow;
3354     enum ofperr error;
3355
3356     COVERAGE_INC(ofproto_packet_out);
3357
3358     error = reject_slave_controller(ofconn);
3359     if (error) {
3360         goto exit;
3361     }
3362
3363     /* Decode message. */
3364     ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
3365     error = ofputil_decode_packet_out(&po, oh, &ofpacts);
3366     if (error) {
3367         goto exit_free_ofpacts;
3368     }
3369     if (ofp_to_u16(po.in_port) >= p->max_ports
3370         && ofp_to_u16(po.in_port) < ofp_to_u16(OFPP_MAX)) {
3371         error = OFPERR_OFPBRC_BAD_PORT;
3372         goto exit_free_ofpacts;
3373     }
3374
3375     /* Get payload. */
3376     if (po.buffer_id != UINT32_MAX) {
3377         error = ofconn_pktbuf_retrieve(ofconn, po.buffer_id, &payload, NULL);
3378         if (error) {
3379             goto exit_free_ofpacts;
3380         }
3381     } else {
3382         /* Ensure that the L3 header is 32-bit aligned. */
3383         payload = dp_packet_clone_data_with_headroom(po.packet, po.packet_len, 2);
3384     }
3385
3386     /* Verify actions against packet, then send packet if successful. */
3387     flow_extract(payload, &flow);
3388     flow.in_port.ofp_port = po.in_port;
3389
3390     /* Check actions like for flow mods.  We pass a 'table_id' of 0 to
3391      * ofproto_check_consistency(), which isn't strictly correct because these
3392      * actions aren't in any table.  This is OK as 'table_id' is only used to
3393      * check instructions (e.g., goto-table), which can't appear on the action
3394      * list of a packet-out. */
3395     error = ofpacts_check_consistency(po.ofpacts, po.ofpacts_len,
3396                                       &flow, u16_to_ofp(p->max_ports),
3397                                       0, p->n_tables,
3398                                       ofconn_get_protocol(ofconn));
3399     if (!error) {
3400         error = ofproto_check_ofpacts(p, po.ofpacts, po.ofpacts_len);
3401         if (!error) {
3402             error = p->ofproto_class->packet_out(p, payload, &flow,
3403                                                  po.ofpacts, po.ofpacts_len);
3404         }
3405     }
3406     dp_packet_delete(payload);
3407
3408 exit_free_ofpacts:
3409     ofpbuf_uninit(&ofpacts);
3410 exit:
3411     return error;
3412 }
3413
3414 static enum ofperr
3415 handle_nxt_resume(struct ofconn *ofconn, const struct ofp_header *oh)
3416 {
3417     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3418     struct ofputil_packet_in_private pin;
3419     enum ofperr error;
3420
3421     error = ofputil_decode_packet_in_private(oh, false, &pin, NULL, NULL);
3422     if (error) {
3423         return error;
3424     }
3425
3426     error = (ofproto->ofproto_class->nxt_resume
3427              ? ofproto->ofproto_class->nxt_resume(ofproto, &pin)
3428              : OFPERR_NXR_NOT_SUPPORTED);
3429
3430     ofputil_packet_in_private_destroy(&pin);
3431
3432     return error;
3433 }
3434
3435 static void
3436 update_port_config(struct ofconn *ofconn, struct ofport *port,
3437                    enum ofputil_port_config config,
3438                    enum ofputil_port_config mask)
3439 {
3440     enum ofputil_port_config toggle = (config ^ port->pp.config) & mask;
3441
3442     if (toggle & OFPUTIL_PC_PORT_DOWN
3443         && (config & OFPUTIL_PC_PORT_DOWN
3444             ? netdev_turn_flags_off(port->netdev, NETDEV_UP, NULL)
3445             : netdev_turn_flags_on(port->netdev, NETDEV_UP, NULL))) {
3446         /* We tried to bring the port up or down, but it failed, so don't
3447          * update the "down" bit. */
3448         toggle &= ~OFPUTIL_PC_PORT_DOWN;
3449     }
3450
3451     if (toggle) {
3452         enum ofputil_port_config old_config = port->pp.config;
3453         port->pp.config ^= toggle;
3454         port->ofproto->ofproto_class->port_reconfigured(port, old_config);
3455         connmgr_send_port_status(port->ofproto->connmgr, ofconn, &port->pp,
3456                                  OFPPR_MODIFY);
3457     }
3458 }
3459
3460 static enum ofperr
3461 port_mod_start(struct ofconn *ofconn, struct ofputil_port_mod *pm,
3462                struct ofport **port)
3463 {
3464     struct ofproto *p = ofconn_get_ofproto(ofconn);
3465
3466     *port = ofproto_get_port(p, pm->port_no);
3467     if (!*port) {
3468         return OFPERR_OFPPMFC_BAD_PORT;
3469     }
3470     if (!eth_addr_equals((*port)->pp.hw_addr, pm->hw_addr)) {
3471         return OFPERR_OFPPMFC_BAD_HW_ADDR;
3472     }
3473     return 0;
3474 }
3475
3476 static void
3477 port_mod_finish(struct ofconn *ofconn, struct ofputil_port_mod *pm,
3478                 struct ofport *port)
3479 {
3480     update_port_config(ofconn, port, pm->config, pm->mask);
3481     if (pm->advertise) {
3482         netdev_set_advertisements(port->netdev, pm->advertise);
3483     }
3484 }
3485
3486 static enum ofperr
3487 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3488 {
3489     struct ofputil_port_mod pm;
3490     struct ofport *port;
3491     enum ofperr error;
3492
3493     error = reject_slave_controller(ofconn);
3494     if (error) {
3495         return error;
3496     }
3497
3498     error = ofputil_decode_port_mod(oh, &pm, false);
3499     if (error) {
3500         return error;
3501     }
3502
3503     error = port_mod_start(ofconn, &pm, &port);
3504     if (!error) {
3505         port_mod_finish(ofconn, &pm, port);
3506     }
3507     return error;
3508 }
3509
3510 static enum ofperr
3511 handle_desc_stats_request(struct ofconn *ofconn,
3512                           const struct ofp_header *request)
3513 {
3514     static const char *default_mfr_desc = "Nicira, Inc.";
3515     static const char *default_hw_desc = "Open vSwitch";
3516     static const char *default_sw_desc = VERSION;
3517     static const char *default_serial_desc = "None";
3518     static const char *default_dp_desc = "None";
3519
3520     struct ofproto *p = ofconn_get_ofproto(ofconn);
3521     struct ofp_desc_stats *ods;
3522     struct ofpbuf *msg;
3523
3524     msg = ofpraw_alloc_stats_reply(request, 0);
3525     ods = ofpbuf_put_zeros(msg, sizeof *ods);
3526     ovs_strlcpy(ods->mfr_desc, p->mfr_desc ? p->mfr_desc : default_mfr_desc,
3527                 sizeof ods->mfr_desc);
3528     ovs_strlcpy(ods->hw_desc, p->hw_desc ? p->hw_desc : default_hw_desc,
3529                 sizeof ods->hw_desc);
3530     ovs_strlcpy(ods->sw_desc, p->sw_desc ? p->sw_desc : default_sw_desc,
3531                 sizeof ods->sw_desc);
3532     ovs_strlcpy(ods->serial_num,
3533                 p->serial_desc ? p->serial_desc : default_serial_desc,
3534                 sizeof ods->serial_num);
3535     ovs_strlcpy(ods->dp_desc, p->dp_desc ? p->dp_desc : default_dp_desc,
3536                 sizeof ods->dp_desc);
3537     ofconn_send_reply(ofconn, msg);
3538
3539     return 0;
3540 }
3541
3542 static enum ofperr
3543 handle_table_stats_request(struct ofconn *ofconn,
3544                            const struct ofp_header *request)
3545 {
3546     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3547     struct ofputil_table_features *features;
3548     struct ofputil_table_stats *stats;
3549     struct ofpbuf *reply;
3550     size_t i;
3551
3552     query_tables(ofproto, &features, &stats);
3553
3554     reply = ofputil_encode_table_stats_reply(request);
3555     for (i = 0; i < ofproto->n_tables; i++) {
3556         if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3557             ofputil_append_table_stats_reply(reply, &stats[i], &features[i]);
3558         }
3559     }
3560     ofconn_send_reply(ofconn, reply);
3561
3562     free(features);
3563     free(stats);
3564
3565     return 0;
3566 }
3567
3568 static enum ofperr
3569 handle_table_features_request(struct ofconn *ofconn,
3570                               const struct ofp_header *request)
3571 {
3572     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3573     struct ofpbuf msg = ofpbuf_const_initializer(request,
3574                                                  ntohs(request->length));
3575     ofpraw_pull_assert(&msg);
3576     if (msg.size || ofpmp_more(request)) {
3577         return OFPERR_OFPTFFC_EPERM;
3578     }
3579
3580     struct ofputil_table_features *features;
3581     query_tables(ofproto, &features, NULL);
3582
3583     struct ovs_list replies;
3584     ofpmp_init(&replies, request);
3585     for (size_t i = 0; i < ofproto->n_tables; i++) {
3586         if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3587             ofputil_append_table_features_reply(&features[i], &replies);
3588         }
3589     }
3590     ofconn_send_replies(ofconn, &replies);
3591
3592     free(features);
3593
3594     return 0;
3595 }
3596
3597 static void
3598 query_table_desc__(struct ofputil_table_desc *td,
3599                    struct ofproto *ofproto, uint8_t table_id)
3600 {
3601     unsigned int count = ofproto->tables[table_id].n_flows;
3602     unsigned int max_flows = ofproto->tables[table_id].max_flows;
3603
3604     td->table_id = table_id;
3605     td->eviction = (ofproto->tables[table_id].eviction & EVICTION_OPENFLOW
3606                     ? OFPUTIL_TABLE_EVICTION_ON
3607                     : OFPUTIL_TABLE_EVICTION_OFF);
3608     td->eviction_flags = OFPROTO_EVICTION_FLAGS;
3609     td->vacancy = (ofproto->tables[table_id].vacancy_enabled
3610                    ? OFPUTIL_TABLE_VACANCY_ON
3611                    : OFPUTIL_TABLE_VACANCY_OFF);
3612     td->table_vacancy.vacancy_down = ofproto->tables[table_id].vacancy_down;
3613     td->table_vacancy.vacancy_up = ofproto->tables[table_id].vacancy_up;
3614     td->table_vacancy.vacancy = max_flows ? (count * 100) / max_flows : 0;
3615 }
3616
3617 /* This function queries the database for dumping table-desc. */
3618 static void
3619 query_tables_desc(struct ofproto *ofproto, struct ofputil_table_desc **descp)
3620 {
3621     struct ofputil_table_desc *table_desc;
3622     size_t i;
3623
3624     table_desc = *descp = xcalloc(ofproto->n_tables, sizeof *table_desc);
3625     for (i = 0; i < ofproto->n_tables; i++) {
3626         struct ofputil_table_desc *td = &table_desc[i];
3627         query_table_desc__(td, ofproto, i);
3628     }
3629 }
3630
3631 /* Function to handle dump-table-desc request. */
3632 static enum ofperr
3633 handle_table_desc_request(struct ofconn *ofconn,
3634                           const struct ofp_header *request)
3635 {
3636     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3637     struct ofputil_table_desc *table_desc;
3638     struct ovs_list replies;
3639     size_t i;
3640
3641     query_tables_desc(ofproto, &table_desc);
3642     ofpmp_init(&replies, request);
3643     for (i = 0; i < ofproto->n_tables; i++) {
3644         if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3645             ofputil_append_table_desc_reply(&table_desc[i], &replies,
3646                                             request->version);
3647         }
3648     }
3649     ofconn_send_replies(ofconn, &replies);
3650     free(table_desc);
3651     return 0;
3652 }
3653
3654 static void
3655 append_port_stat(struct ofport *port, struct ovs_list *replies)
3656 {
3657     struct ofputil_port_stats ops = { .port_no = port->pp.port_no };
3658
3659     calc_duration(port->created, time_msec(),
3660                   &ops.duration_sec, &ops.duration_nsec);
3661
3662     /* Intentionally ignore return value, since errors will set
3663      * 'stats' to all-1s, which is correct for OpenFlow, and
3664      * netdev_get_stats() will log errors. */
3665     ofproto_port_get_stats(port, &ops.stats);
3666
3667     ofputil_append_port_stat(replies, &ops);
3668 }
3669
3670 static void
3671 handle_port_request(struct ofconn *ofconn,
3672                     const struct ofp_header *request, ofp_port_t port_no,
3673                     void (*cb)(struct ofport *, struct ovs_list *replies))
3674 {
3675     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3676     struct ofport *port;
3677     struct ovs_list replies;
3678
3679     ofpmp_init(&replies, request);
3680     if (port_no != OFPP_ANY) {
3681         port = ofproto_get_port(ofproto, port_no);
3682         if (port) {
3683             cb(port, &replies);
3684         }
3685     } else {
3686         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3687             cb(port, &replies);
3688         }
3689     }
3690
3691     ofconn_send_replies(ofconn, &replies);
3692 }
3693
3694 static enum ofperr
3695 handle_port_stats_request(struct ofconn *ofconn,
3696                           const struct ofp_header *request)
3697 {
3698     ofp_port_t port_no;
3699     enum ofperr error;
3700
3701     error = ofputil_decode_port_stats_request(request, &port_no);
3702     if (!error) {
3703         handle_port_request(ofconn, request, port_no, append_port_stat);
3704     }
3705     return error;
3706 }
3707
3708 static void
3709 append_port_desc(struct ofport *port, struct ovs_list *replies)
3710 {
3711     ofputil_append_port_desc_stats_reply(&port->pp, replies);
3712 }
3713
3714 static enum ofperr
3715 handle_port_desc_stats_request(struct ofconn *ofconn,
3716                                const struct ofp_header *request)
3717 {
3718     ofp_port_t port_no;
3719     enum ofperr error;
3720
3721     error = ofputil_decode_port_desc_stats_request(request, &port_no);
3722     if (!error) {
3723         handle_port_request(ofconn, request, port_no, append_port_desc);
3724     }
3725     return error;
3726 }
3727
3728 static uint32_t
3729 hash_cookie(ovs_be64 cookie)
3730 {
3731     return hash_uint64((OVS_FORCE uint64_t)cookie);
3732 }
3733
3734 static void
3735 cookies_insert(struct ofproto *ofproto, struct rule *rule)
3736     OVS_REQUIRES(ofproto_mutex)
3737 {
3738     hindex_insert(&ofproto->cookies, &rule->cookie_node,
3739                   hash_cookie(rule->flow_cookie));
3740 }
3741
3742 static void
3743 cookies_remove(struct ofproto *ofproto, struct rule *rule)
3744     OVS_REQUIRES(ofproto_mutex)
3745 {
3746     hindex_remove(&ofproto->cookies, &rule->cookie_node);
3747 }
3748
3749 static void
3750 calc_duration(long long int start, long long int now,
3751               uint32_t *sec, uint32_t *nsec)
3752 {
3753     long long int msecs = now - start;
3754     *sec = msecs / 1000;
3755     *nsec = (msecs % 1000) * (1000 * 1000);
3756 }
3757
3758 /* Checks whether 'table_id' is 0xff or a valid table ID in 'ofproto'.  Returns
3759  * true if 'table_id' is OK, false otherwise.  */
3760 static bool
3761 check_table_id(const struct ofproto *ofproto, uint8_t table_id)
3762 {
3763     return table_id == OFPTT_ALL || table_id < ofproto->n_tables;
3764 }
3765
3766 static struct oftable *
3767 next_visible_table(const struct ofproto *ofproto, uint8_t table_id)
3768 {
3769     struct oftable *table;
3770
3771     for (table = &ofproto->tables[table_id];
3772          table < &ofproto->tables[ofproto->n_tables];
3773          table++) {
3774         if (!(table->flags & OFTABLE_HIDDEN)) {
3775             return table;
3776         }
3777     }
3778
3779     return NULL;
3780 }
3781
3782 static struct oftable *
3783 first_matching_table(const struct ofproto *ofproto, uint8_t table_id)
3784 {
3785     if (table_id == 0xff) {
3786         return next_visible_table(ofproto, 0);
3787     } else if (table_id < ofproto->n_tables) {
3788         return &ofproto->tables[table_id];
3789     } else {
3790         return NULL;
3791     }
3792 }
3793
3794 static struct oftable *
3795 next_matching_table(const struct ofproto *ofproto,
3796                     const struct oftable *table, uint8_t table_id)
3797 {
3798     return (table_id == 0xff
3799             ? next_visible_table(ofproto, (table - ofproto->tables) + 1)
3800             : NULL);
3801 }
3802
3803 /* Assigns TABLE to each oftable, in turn, that matches TABLE_ID in OFPROTO:
3804  *
3805  *   - If TABLE_ID is 0xff, this iterates over every classifier table in
3806  *     OFPROTO, skipping tables marked OFTABLE_HIDDEN.
3807  *
3808  *   - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
3809  *     only once, for that table.  (This can be used to access tables marked
3810  *     OFTABLE_HIDDEN.)
3811  *
3812  *   - Otherwise, TABLE_ID isn't valid for OFPROTO, so the loop won't be
3813  *     entered at all.  (Perhaps you should have validated TABLE_ID with
3814  *     check_table_id().)
3815  *
3816  * All parameters are evaluated multiple times.
3817  */
3818 #define FOR_EACH_MATCHING_TABLE(TABLE, TABLE_ID, OFPROTO)         \
3819     for ((TABLE) = first_matching_table(OFPROTO, TABLE_ID);       \
3820          (TABLE) != NULL;                                         \
3821          (TABLE) = next_matching_table(OFPROTO, TABLE, TABLE_ID))
3822
3823 /* Initializes 'criteria' in a straightforward way based on the other
3824  * parameters.
3825  *
3826  * By default, the criteria include flows that are read-only, on the assumption
3827  * that the collected flows won't be modified.  Call rule_criteria_require_rw()
3828  * if flows will be modified.
3829  *
3830  * For "loose" matching, the 'priority' parameter is unimportant and may be
3831  * supplied as 0. */
3832 static void
3833 rule_criteria_init(struct rule_criteria *criteria, uint8_t table_id,
3834                    const struct match *match, int priority,
3835                    cls_version_t version, ovs_be64 cookie,
3836                    ovs_be64 cookie_mask, ofp_port_t out_port,
3837                    uint32_t out_group)
3838 {
3839     criteria->table_id = table_id;
3840     cls_rule_init(&criteria->cr, match, priority);
3841     criteria->version = version;
3842     criteria->cookie = cookie;
3843     criteria->cookie_mask = cookie_mask;
3844     criteria->out_port = out_port;
3845     criteria->out_group = out_group;
3846
3847     /* We ordinarily want to skip hidden rules, but there has to be a way for
3848      * code internal to OVS to modify and delete them, so if the criteria
3849      * specify a priority that can only be for a hidden flow, then allow hidden
3850      * rules to be selected.  (This doesn't allow OpenFlow clients to meddle
3851      * with hidden flows because OpenFlow uses only a 16-bit field to specify
3852      * priority.) */
3853     criteria->include_hidden = priority > UINT16_MAX;
3854
3855     /* We assume that the criteria are being used to collect flows for reading
3856      * but not modification.  Thus, we should collect read-only flows. */
3857     criteria->include_readonly = true;
3858 }
3859
3860 /* By default, criteria initialized by rule_criteria_init() will match flows
3861  * that are read-only, on the assumption that the collected flows won't be
3862  * modified.  Call this function to match only flows that are be modifiable.
3863  *
3864  * Specify 'can_write_readonly' as false in ordinary circumstances, true if the
3865  * caller has special privileges that allow it to modify even "read-only"
3866  * flows. */
3867 static void
3868 rule_criteria_require_rw(struct rule_criteria *criteria,
3869                          bool can_write_readonly)
3870 {
3871     criteria->include_readonly = can_write_readonly;
3872 }
3873
3874 static void
3875 rule_criteria_destroy(struct rule_criteria *criteria)
3876 {
3877     cls_rule_destroy(&criteria->cr);
3878 }
3879
3880 void
3881 rule_collection_init(struct rule_collection *rules)
3882 {
3883     rules->rules = rules->stub;
3884     rules->n = 0;
3885     rules->capacity = ARRAY_SIZE(rules->stub);
3886 }
3887
3888 void
3889 rule_collection_add(struct rule_collection *rules, struct rule *rule)
3890 {
3891     if (rules->n >= rules->capacity) {
3892         size_t old_size, new_size;
3893
3894         old_size = rules->capacity * sizeof *rules->rules;
3895         rules->capacity *= 2;
3896         new_size = rules->capacity * sizeof *rules->rules;
3897
3898         if (rules->rules == rules->stub) {
3899             rules->rules = xmalloc(new_size);
3900             memcpy(rules->rules, rules->stub, old_size);
3901         } else {
3902             rules->rules = xrealloc(rules->rules, new_size);
3903         }
3904     }
3905
3906     rules->rules[rules->n++] = rule;
3907 }
3908
3909 void
3910 rule_collection_ref(struct rule_collection *rules)
3911     OVS_REQUIRES(ofproto_mutex)
3912 {
3913     size_t i;
3914
3915     for (i = 0; i < rules->n; i++) {
3916         ofproto_rule_ref(rules->rules[i]);
3917     }
3918 }
3919
3920 void
3921 rule_collection_unref(struct rule_collection *rules)
3922 {
3923     size_t i;
3924
3925     for (i = 0; i < rules->n; i++) {
3926         ofproto_rule_unref(rules->rules[i]);
3927     }
3928 }
3929
3930 /* Returns a NULL-terminated array of rule pointers,
3931  * destroys 'rules'. */
3932 static struct rule **
3933 rule_collection_detach(struct rule_collection *rules)
3934 {
3935     struct rule **rule_array;
3936
3937     rule_collection_add(rules, NULL);
3938
3939     if (rules->rules == rules->stub) {
3940         rules->rules = xmemdup(rules->rules, rules->n * sizeof *rules->rules);
3941     }
3942
3943     rule_array = rules->rules;
3944     rule_collection_init(rules);
3945
3946     return rule_array;
3947 }
3948
3949 void
3950 rule_collection_destroy(struct rule_collection *rules)
3951 {
3952     if (rules->rules != rules->stub) {
3953         free(rules->rules);
3954     }
3955
3956     /* Make repeated destruction harmless. */
3957     rule_collection_init(rules);
3958 }
3959
3960 /* Schedules postponed removal of rules, destroys 'rules'. */
3961 static void
3962 rule_collection_remove_postponed(struct rule_collection *rules)
3963     OVS_REQUIRES(ofproto_mutex)
3964 {
3965     if (rules->n > 0) {
3966         if (rules->n == 1) {
3967             ovsrcu_postpone(remove_rule_rcu, rules->rules[0]);
3968         } else {
3969             ovsrcu_postpone(remove_rules_rcu, rule_collection_detach(rules));
3970         }
3971     }
3972 }
3973
3974 /* Checks whether 'rule' matches 'c' and, if so, adds it to 'rules'.  This
3975  * function verifies most of the criteria in 'c' itself, but the caller must
3976  * check 'c->cr' itself.
3977  *
3978  * Rules that have already been marked for removal are not collected.
3979  *
3980  * Increments '*n_readonly' if 'rule' wasn't added because it's read-only (and
3981  * 'c' only includes modifiable rules). */
3982 static void
3983 collect_rule(struct rule *rule, const struct rule_criteria *c,
3984              struct rule_collection *rules, size_t *n_readonly)
3985     OVS_REQUIRES(ofproto_mutex)
3986 {
3987     if ((c->table_id == rule->table_id || c->table_id == 0xff)
3988         && ofproto_rule_has_out_port(rule, c->out_port)
3989         && ofproto_rule_has_out_group(rule, c->out_group)
3990         && !((rule->flow_cookie ^ c->cookie) & c->cookie_mask)
3991         && (!rule_is_hidden(rule) || c->include_hidden)
3992         && cls_rule_visible_in_version(&rule->cr, c->version)) {
3993         /* Rule matches all the criteria... */
3994         if (!rule_is_readonly(rule) || c->include_readonly) {
3995             /* ...add it. */
3996             rule_collection_add(rules, rule);
3997         } else {
3998             /* ...except it's read-only. */
3999             ++*n_readonly;
4000         }
4001     }
4002 }
4003
4004 /* Searches 'ofproto' for rules that match the criteria in 'criteria'.  Matches
4005  * on classifiers rules are done in the "loose" way required for OpenFlow
4006  * OFPFC_MODIFY and OFPFC_DELETE requests.  Puts the selected rules on list
4007  * 'rules'.
4008  *
4009  * Returns 0 on success, otherwise an OpenFlow error code. */
4010 static enum ofperr
4011 collect_rules_loose(struct ofproto *ofproto,
4012                     const struct rule_criteria *criteria,
4013                     struct rule_collection *rules)
4014     OVS_REQUIRES(ofproto_mutex)
4015 {
4016     struct oftable *table;
4017     enum ofperr error = 0;
4018     size_t n_readonly = 0;
4019
4020     rule_collection_init(rules);
4021
4022     if (!check_table_id(ofproto, criteria->table_id)) {
4023         error = OFPERR_OFPBRC_BAD_TABLE_ID;
4024         goto exit;
4025     }
4026
4027     if (criteria->cookie_mask == OVS_BE64_MAX) {
4028         struct rule *rule;
4029
4030         HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
4031                                    hash_cookie(criteria->cookie),
4032                                    &ofproto->cookies) {
4033             if (cls_rule_is_loose_match(&rule->cr, &criteria->cr.match)) {
4034                 collect_rule(rule, criteria, rules, &n_readonly);
4035             }
4036         }
4037     } else {
4038         FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
4039             struct rule *rule;
4040
4041             CLS_FOR_EACH_TARGET (rule, cr, &table->cls, &criteria->cr,
4042                                  criteria->version) {
4043                 collect_rule(rule, criteria, rules, &n_readonly);
4044             }
4045         }
4046     }
4047
4048 exit:
4049     if (!error && !rules->n && n_readonly) {
4050         /* We didn't find any rules to modify.  We did find some read-only
4051          * rules that we're not allowed to modify, so report that. */
4052         error = OFPERR_OFPBRC_EPERM;
4053     }
4054     if (error) {
4055         rule_collection_destroy(rules);
4056     }
4057     return error;
4058 }
4059
4060 /* Searches 'ofproto' for rules that match the criteria in 'criteria'.  Matches
4061  * on classifiers rules are done in the "strict" way required for OpenFlow
4062  * OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests.  Puts the selected
4063  * rules on list 'rules'.
4064  *
4065  * Returns 0 on success, otherwise an OpenFlow error code. */
4066 static enum ofperr
4067 collect_rules_strict(struct ofproto *ofproto,
4068                      const struct rule_criteria *criteria,
4069                      struct rule_collection *rules)
4070     OVS_REQUIRES(ofproto_mutex)
4071 {
4072     struct oftable *table;
4073     size_t n_readonly = 0;
4074     enum ofperr error = 0;
4075
4076     rule_collection_init(rules);
4077
4078     if (!check_table_id(ofproto, criteria->table_id)) {
4079         error = OFPERR_OFPBRC_BAD_TABLE_ID;
4080         goto exit;
4081     }
4082
4083     if (criteria->cookie_mask == OVS_BE64_MAX) {
4084         struct rule *rule;
4085
4086         HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
4087                                    hash_cookie(criteria->cookie),
4088                                    &ofproto->cookies) {
4089             if (cls_rule_equal(&rule->cr, &criteria->cr)) {
4090                 collect_rule(rule, criteria, rules, &n_readonly);
4091             }
4092         }
4093     } else {
4094         FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
4095             struct rule *rule;
4096
4097             rule = rule_from_cls_rule(classifier_find_rule_exactly(
4098                                           &table->cls, &criteria->cr,
4099                                           criteria->version));
4100             if (rule) {
4101                 collect_rule(rule, criteria, rules, &n_readonly);
4102             }
4103         }
4104     }
4105
4106 exit:
4107     if (!error && !rules->n && n_readonly) {
4108         /* We didn't find any rules to modify.  We did find some read-only
4109          * rules that we're not allowed to modify, so report that. */
4110         error = OFPERR_OFPBRC_EPERM;
4111     }
4112     if (error) {
4113         rule_collection_destroy(rules);
4114     }
4115     return error;
4116 }
4117
4118 /* Returns 'age_ms' (a duration in milliseconds), converted to seconds and
4119  * forced into the range of a uint16_t. */
4120 static int
4121 age_secs(long long int age_ms)
4122 {
4123     return (age_ms < 0 ? 0
4124             : age_ms >= UINT16_MAX * 1000 ? UINT16_MAX
4125             : (unsigned int) age_ms / 1000);
4126 }
4127
4128 static enum ofperr
4129 handle_flow_stats_request(struct ofconn *ofconn,
4130                           const struct ofp_header *request)
4131     OVS_EXCLUDED(ofproto_mutex)
4132 {
4133     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4134     struct ofputil_flow_stats_request fsr;
4135     struct rule_criteria criteria;
4136     struct rule_collection rules;
4137     struct ovs_list replies;
4138     enum ofperr error;
4139     size_t i;
4140
4141     error = ofputil_decode_flow_stats_request(&fsr, request);
4142     if (error) {
4143         return error;
4144     }
4145
4146     rule_criteria_init(&criteria, fsr.table_id, &fsr.match, 0, CLS_MAX_VERSION,
4147                        fsr.cookie, fsr.cookie_mask, fsr.out_port,
4148                        fsr.out_group);
4149
4150     ovs_mutex_lock(&ofproto_mutex);
4151     error = collect_rules_loose(ofproto, &criteria, &rules);
4152     rule_criteria_destroy(&criteria);
4153     if (!error) {
4154         rule_collection_ref(&rules);
4155     }
4156     ovs_mutex_unlock(&ofproto_mutex);
4157
4158     if (error) {
4159         return error;
4160     }
4161
4162     ofpmp_init(&replies, request);
4163     for (i = 0; i < rules.n; i++) {
4164         struct rule *rule = rules.rules[i];
4165         long long int now = time_msec();
4166         struct ofputil_flow_stats fs;
4167         long long int created, used, modified;
4168         const struct rule_actions *actions;
4169         enum ofputil_flow_mod_flags flags;
4170
4171         ovs_mutex_lock(&rule->mutex);
4172         fs.cookie = rule->flow_cookie;
4173         fs.idle_timeout = rule->idle_timeout;
4174         fs.hard_timeout = rule->hard_timeout;
4175         fs.importance = rule->importance;
4176         created = rule->created;
4177         modified = rule->modified;
4178         actions = rule_get_actions(rule);
4179         flags = rule->flags;
4180         ovs_mutex_unlock(&rule->mutex);
4181
4182         ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
4183                                                &fs.byte_count, &used);
4184
4185         minimatch_expand(&rule->cr.match, &fs.match);
4186         fs.table_id = rule->table_id;
4187         calc_duration(created, now, &fs.duration_sec, &fs.duration_nsec);
4188         fs.priority = rule->cr.priority;
4189         fs.idle_age = age_secs(now - used);
4190         fs.hard_age = age_secs(now - modified);
4191         fs.ofpacts = actions->ofpacts;
4192         fs.ofpacts_len = actions->ofpacts_len;
4193
4194         fs.flags = flags;
4195         ofputil_append_flow_stats_reply(&fs, &replies);
4196     }
4197
4198     rule_collection_unref(&rules);
4199     rule_collection_destroy(&rules);
4200
4201     ofconn_send_replies(ofconn, &replies);
4202
4203     return 0;
4204 }
4205
4206 static void
4207 flow_stats_ds(struct rule *rule, struct ds *results)
4208 {
4209     uint64_t packet_count, byte_count;
4210     const struct rule_actions *actions;
4211     long long int created, used;
4212
4213     rule->ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
4214                                                  &byte_count, &used);
4215
4216     ovs_mutex_lock(&rule->mutex);
4217     actions = rule_get_actions(rule);
4218     created = rule->created;
4219     ovs_mutex_unlock(&rule->mutex);
4220
4221     if (rule->table_id != 0) {
4222         ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
4223     }
4224     ds_put_format(results, "duration=%llds, ", (time_msec() - created) / 1000);
4225     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
4226     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
4227     cls_rule_format(&rule->cr, results);
4228     ds_put_char(results, ',');
4229
4230     ds_put_cstr(results, "actions=");
4231     ofpacts_format(actions->ofpacts, actions->ofpacts_len, results);
4232
4233     ds_put_cstr(results, "\n");
4234 }
4235
4236 /* Adds a pretty-printed description of all flows to 'results', including
4237  * hidden flows (e.g., set up by in-band control). */
4238 void
4239 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
4240 {
4241     struct oftable *table;
4242
4243     OFPROTO_FOR_EACH_TABLE (table, p) {
4244         struct rule *rule;
4245
4246         CLS_FOR_EACH (rule, cr, &table->cls) {
4247             flow_stats_ds(rule, results);
4248         }
4249     }
4250 }
4251
4252 /* Obtains the NetFlow engine type and engine ID for 'ofproto' into
4253  * '*engine_type' and '*engine_id', respectively. */
4254 void
4255 ofproto_get_netflow_ids(const struct ofproto *ofproto,
4256                         uint8_t *engine_type, uint8_t *engine_id)
4257 {
4258     ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
4259 }
4260
4261 /* Checks the status change of CFM on 'ofport'.
4262  *
4263  * Returns true if 'ofproto_class' does not support 'cfm_status_changed'. */
4264 bool
4265 ofproto_port_cfm_status_changed(struct ofproto *ofproto, ofp_port_t ofp_port)
4266 {
4267     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
4268     return (ofport && ofproto->ofproto_class->cfm_status_changed
4269             ? ofproto->ofproto_class->cfm_status_changed(ofport)
4270             : true);
4271 }
4272
4273 /* Checks the status of CFM configured on 'ofp_port' within 'ofproto'.
4274  * Returns 0 if the port's CFM status was successfully stored into
4275  * '*status'.  Returns positive errno if the port did not have CFM
4276  * configured.
4277  *
4278  * The caller must provide and own '*status', and must free 'status->rmps'.
4279  * '*status' is indeterminate if the return value is non-zero. */
4280 int
4281 ofproto_port_get_cfm_status(const struct ofproto *ofproto, ofp_port_t ofp_port,
4282                             struct cfm_status *status)
4283 {
4284     struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
4285     return (ofport && ofproto->ofproto_class->get_cfm_status
4286             ? ofproto->ofproto_class->get_cfm_status(ofport, status)
4287             : EOPNOTSUPP);
4288 }
4289
4290 static enum ofperr
4291 handle_aggregate_stats_request(struct ofconn *ofconn,
4292                                const struct ofp_header *oh)
4293     OVS_EXCLUDED(ofproto_mutex)
4294 {
4295     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4296     struct ofputil_flow_stats_request request;
4297     struct ofputil_aggregate_stats stats;
4298     bool unknown_packets, unknown_bytes;
4299     struct rule_criteria criteria;
4300     struct rule_collection rules;
4301     struct ofpbuf *reply;
4302     enum ofperr error;
4303     size_t i;
4304
4305     error = ofputil_decode_flow_stats_request(&request, oh);
4306     if (error) {
4307         return error;
4308     }
4309
4310     rule_criteria_init(&criteria, request.table_id, &request.match, 0,
4311                        CLS_MAX_VERSION, request.cookie, request.cookie_mask,
4312                        request.out_port, request.out_group);
4313
4314     ovs_mutex_lock(&ofproto_mutex);
4315     error = collect_rules_loose(ofproto, &criteria, &rules);
4316     rule_criteria_destroy(&criteria);
4317     if (!error) {
4318         rule_collection_ref(&rules);
4319     }
4320     ovs_mutex_unlock(&ofproto_mutex);
4321
4322     if (error) {
4323         return error;
4324     }
4325
4326     memset(&stats, 0, sizeof stats);
4327     unknown_packets = unknown_bytes = false;
4328     for (i = 0; i < rules.n; i++) {
4329         struct rule *rule = rules.rules[i];
4330         uint64_t packet_count;
4331         uint64_t byte_count;
4332         long long int used;
4333
4334         ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
4335                                                &byte_count, &used);
4336
4337         if (packet_count == UINT64_MAX) {
4338             unknown_packets = true;
4339         } else {
4340             stats.packet_count += packet_count;
4341         }
4342
4343         if (byte_count == UINT64_MAX) {
4344             unknown_bytes = true;
4345         } else {
4346             stats.byte_count += byte_count;
4347         }
4348
4349         stats.flow_count++;
4350     }
4351     if (unknown_packets) {
4352         stats.packet_count = UINT64_MAX;
4353     }
4354     if (unknown_bytes) {
4355         stats.byte_count = UINT64_MAX;
4356     }
4357
4358     rule_collection_unref(&rules);
4359     rule_collection_destroy(&rules);
4360
4361     reply = ofputil_encode_aggregate_stats_reply(&stats, oh);
4362     ofconn_send_reply(ofconn, reply);
4363
4364     return 0;
4365 }
4366
4367 struct queue_stats_cbdata {
4368     struct ofport *ofport;
4369     struct ovs_list replies;
4370     long long int now;
4371 };
4372
4373 static void
4374 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
4375                 const struct netdev_queue_stats *stats)
4376 {
4377     struct ofputil_queue_stats oqs;
4378
4379     oqs.port_no = cbdata->ofport->pp.port_no;
4380     oqs.queue_id = queue_id;
4381     oqs.tx_bytes = stats->tx_bytes;
4382     oqs.tx_packets = stats->tx_packets;
4383     oqs.tx_errors = stats->tx_errors;
4384     if (stats->created != LLONG_MIN) {
4385         calc_duration(stats->created, cbdata->now,
4386                       &oqs.duration_sec, &oqs.duration_nsec);
4387     } else {
4388         oqs.duration_sec = oqs.duration_nsec = UINT32_MAX;
4389     }
4390     ofputil_append_queue_stat(&cbdata->replies, &oqs);
4391 }
4392
4393 static void
4394 handle_queue_stats_dump_cb(uint32_t queue_id,
4395                            struct netdev_queue_stats *stats,
4396                            void *cbdata_)
4397 {
4398     struct queue_stats_cbdata *cbdata = cbdata_;
4399
4400     put_queue_stats(cbdata, queue_id, stats);
4401 }
4402
4403 static enum ofperr
4404 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
4405                             struct queue_stats_cbdata *cbdata)
4406 {
4407     cbdata->ofport = port;
4408     if (queue_id == OFPQ_ALL) {
4409         netdev_dump_queue_stats(port->netdev,
4410                                 handle_queue_stats_dump_cb, cbdata);
4411     } else {
4412         struct netdev_queue_stats stats;
4413
4414         if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
4415             put_queue_stats(cbdata, queue_id, &stats);
4416         } else {
4417             return OFPERR_OFPQOFC_BAD_QUEUE;
4418         }
4419     }
4420     return 0;
4421 }
4422
4423 static enum ofperr
4424 handle_queue_stats_request(struct ofconn *ofconn,
4425                            const struct ofp_header *rq)
4426 {
4427     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4428     struct queue_stats_cbdata cbdata;
4429     struct ofport *port;
4430     enum ofperr error;
4431     struct ofputil_queue_stats_request oqsr;
4432
4433     COVERAGE_INC(ofproto_queue_req);
4434
4435     ofpmp_init(&cbdata.replies, rq);
4436     cbdata.now = time_msec();
4437
4438     error = ofputil_decode_queue_stats_request(rq, &oqsr);
4439     if (error) {
4440         return error;
4441     }
4442
4443     if (oqsr.port_no == OFPP_ANY) {
4444         error = OFPERR_OFPQOFC_BAD_QUEUE;
4445         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
4446             if (!handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)) {
4447                 error = 0;
4448             }
4449         }
4450     } else {
4451         port = ofproto_get_port(ofproto, oqsr.port_no);
4452         error = (port
4453                  ? handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)
4454                  : OFPERR_OFPQOFC_BAD_PORT);
4455     }
4456     if (!error) {
4457         ofconn_send_replies(ofconn, &cbdata.replies);
4458     } else {
4459         ofpbuf_list_delete(&cbdata.replies);
4460     }
4461
4462     return error;
4463 }
4464
4465 static enum ofperr
4466 evict_rules_from_table(struct oftable *table)
4467     OVS_REQUIRES(ofproto_mutex)
4468 {
4469     enum ofperr error = 0;
4470     struct rule_collection rules;
4471     unsigned int count = table->n_flows;
4472     unsigned int max_flows = table->max_flows;
4473
4474     rule_collection_init(&rules);
4475
4476     while (count-- > max_flows) {
4477         struct rule *rule;
4478
4479         if (!choose_rule_to_evict(table, &rule)) {
4480             error = OFPERR_OFPFMFC_TABLE_FULL;
4481             break;
4482         } else {
4483             eviction_group_remove_rule(rule);
4484             rule_collection_add(&rules, rule);
4485         }
4486     }
4487     delete_flows__(&rules, OFPRR_EVICTION, NULL);
4488
4489     return error;
4490 }
4491
4492 static void
4493 get_conjunctions(const struct ofputil_flow_mod *fm,
4494                  struct cls_conjunction **conjsp, size_t *n_conjsp)
4495     OVS_REQUIRES(ofproto_mutex)
4496 {
4497     struct cls_conjunction *conjs = NULL;
4498     int n_conjs = 0;
4499
4500     const struct ofpact *ofpact;
4501     OFPACT_FOR_EACH (ofpact, fm->ofpacts, fm->ofpacts_len) {
4502         if (ofpact->type == OFPACT_CONJUNCTION) {
4503             n_conjs++;
4504         } else if (ofpact->type != OFPACT_NOTE) {
4505             /* "conjunction" may appear with "note" actions but not with any
4506              * other type of actions. */
4507             ovs_assert(!n_conjs);
4508             break;
4509         }
4510     }
4511     if (n_conjs) {
4512         int i = 0;
4513
4514         conjs = xzalloc(n_conjs * sizeof *conjs);
4515         OFPACT_FOR_EACH (ofpact, fm->ofpacts, fm->ofpacts_len) {
4516             if (ofpact->type == OFPACT_CONJUNCTION) {
4517                 struct ofpact_conjunction *oc = ofpact_get_CONJUNCTION(ofpact);
4518                 conjs[i].clause = oc->clause;
4519                 conjs[i].n_clauses = oc->n_clauses;
4520                 conjs[i].id = oc->id;
4521                 i++;
4522             }
4523         }
4524     }
4525
4526     *conjsp = conjs;
4527     *n_conjsp = n_conjs;
4528 }
4529
4530 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
4531  * in which no matching flow already exists in the flow table.
4532  *
4533  * Adds the flow specified by 'fm', to the ofproto's flow table.  Returns 0 on
4534  * success, or an OpenFlow error code on failure.
4535  *
4536  * On successful return the caller must complete the operation either by
4537  * calling add_flow_finish(), or add_flow_revert() if the operation needs to
4538  * be reverted.
4539  *
4540  * The caller retains ownership of 'fm->ofpacts'. */
4541 static enum ofperr
4542 add_flow_start(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
4543     OVS_REQUIRES(ofproto_mutex)
4544 {
4545     struct ofputil_flow_mod *fm = &ofm->fm;
4546     struct rule **old_rule = &ofm->old_rules.stub[0];
4547     struct rule **new_rule = &ofm->new_rules.stub[0];
4548     struct oftable *table;
4549     struct cls_rule cr;
4550     struct rule *rule;
4551     uint8_t table_id;
4552     struct cls_conjunction *conjs;
4553     size_t n_conjs;
4554     enum ofperr error;
4555
4556     if (!check_table_id(ofproto, fm->table_id)) {
4557         error = OFPERR_OFPBRC_BAD_TABLE_ID;
4558         return error;
4559     }
4560
4561     /* Pick table. */
4562     if (fm->table_id == 0xff) {
4563         if (ofproto->ofproto_class->rule_choose_table) {
4564             error = ofproto->ofproto_class->rule_choose_table(ofproto,
4565                                                               &fm->match,
4566                                                               &table_id);
4567             if (error) {
4568                 return error;
4569             }
4570             ovs_assert(table_id < ofproto->n_tables);
4571         } else {
4572             table_id = 0;
4573         }
4574     } else if (fm->table_id < ofproto->n_tables) {
4575         table_id = fm->table_id;
4576     } else {
4577         return OFPERR_OFPBRC_BAD_TABLE_ID;
4578     }
4579
4580     table = &ofproto->tables[table_id];
4581     if (table->flags & OFTABLE_READONLY
4582         && !(fm->flags & OFPUTIL_FF_NO_READONLY)) {
4583         return OFPERR_OFPBRC_EPERM;
4584     }
4585
4586     if (!(fm->flags & OFPUTIL_FF_HIDDEN_FIELDS)
4587         && !match_has_default_hidden_fields(&fm->match)) {
4588         VLOG_WARN_RL(&rl, "%s: (add_flow) only internal flows can set "
4589                      "non-default values to hidden fields", ofproto->name);
4590         return OFPERR_OFPBRC_EPERM;
4591     }
4592
4593     cls_rule_init(&cr, &fm->match, fm->priority);
4594
4595     /* Check for the existence of an identical rule.
4596      * This will not return rules earlier marked for removal. */
4597     rule = rule_from_cls_rule(classifier_find_rule_exactly(&table->cls, &cr,
4598                                                            ofm->version));
4599     *old_rule = rule;
4600     if (!rule) {
4601         /* Check for overlap, if requested. */
4602         if (fm->flags & OFPUTIL_FF_CHECK_OVERLAP
4603             && classifier_rule_overlaps(&table->cls, &cr, ofm->version)) {
4604             cls_rule_destroy(&cr);
4605             return OFPERR_OFPFMFC_OVERLAP;
4606         }
4607
4608         /* If necessary, evict an existing rule to clear out space. */
4609         if (table->n_flows >= table->max_flows) {
4610             if (!choose_rule_to_evict(table, &rule)) {
4611                 error = OFPERR_OFPFMFC_TABLE_FULL;
4612                 cls_rule_destroy(&cr);
4613                 return error;
4614             }
4615             eviction_group_remove_rule(rule);
4616             /* Marks '*old_rule' as an evicted rule rather than replaced rule.
4617              */
4618             fm->delete_reason = OFPRR_EVICTION;
4619             *old_rule = rule;
4620         }
4621     } else {
4622         fm->modify_cookie = true;
4623     }
4624
4625     /* Allocate new rule. */
4626     error = replace_rule_create(ofproto, fm, &cr, table - ofproto->tables,
4627                                 rule, new_rule);
4628     if (error) {
4629         return error;
4630     }
4631
4632     get_conjunctions(fm, &conjs, &n_conjs);
4633     replace_rule_start(ofproto, ofm->version, rule, *new_rule, conjs, n_conjs);
4634     free(conjs);
4635
4636     return 0;
4637 }
4638
4639 /* Revert the effects of add_flow_start(). */
4640 static void
4641 add_flow_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
4642     OVS_REQUIRES(ofproto_mutex)
4643 {
4644     struct ofputil_flow_mod *fm = &ofm->fm;
4645     struct rule *old_rule = ofm->old_rules.stub[0];
4646     struct rule *new_rule = ofm->new_rules.stub[0];
4647
4648     if (old_rule && fm->delete_reason == OFPRR_EVICTION) {
4649         /* Revert the eviction. */
4650         eviction_group_add_rule(old_rule);
4651     }
4652
4653     replace_rule_revert(ofproto, old_rule, new_rule);
4654 }
4655
4656 /* To be called after version bump. */
4657 static void
4658 add_flow_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
4659                 const struct flow_mod_requester *req)
4660     OVS_REQUIRES(ofproto_mutex)
4661 {
4662     struct ofputil_flow_mod *fm = &ofm->fm;
4663     struct rule *old_rule = ofm->old_rules.stub[0];
4664     struct rule *new_rule = ofm->new_rules.stub[0];
4665     struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
4666
4667     replace_rule_finish(ofproto, fm, req, old_rule, new_rule, &dead_cookies);
4668     learned_cookies_flush(ofproto, &dead_cookies);
4669
4670     if (old_rule) {
4671         ovsrcu_postpone(remove_rule_rcu, old_rule);
4672     } else {
4673         if (minimask_get_vid_mask(new_rule->cr.match.mask) == VLAN_VID_MASK) {
4674             if (ofproto->vlan_bitmap) {
4675                 uint16_t vid = miniflow_get_vid(new_rule->cr.match.flow);
4676
4677                 if (!bitmap_is_set(ofproto->vlan_bitmap, vid)) {
4678                     bitmap_set1(ofproto->vlan_bitmap, vid);
4679                     ofproto->vlans_changed = true;
4680                 }
4681             } else {
4682                 ofproto->vlans_changed = true;
4683             }
4684         }
4685
4686         ofmonitor_report(ofproto->connmgr, new_rule, NXFME_ADDED, 0,
4687                          req ? req->ofconn : NULL,
4688                          req ? req->request->xid : 0, NULL);
4689     }
4690
4691     send_buffered_packet(req, fm->buffer_id, new_rule);
4692 }
4693 \f
4694 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
4695
4696 /* Create a new rule based on attributes in 'fm', match in 'cr', 'table_id',
4697  * and 'old_rule'.  Note that the rule is NOT inserted into a any data
4698  * structures yet.  Takes ownership of 'cr'. */
4699 static enum ofperr
4700 replace_rule_create(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4701                     struct cls_rule *cr, uint8_t table_id,
4702                     struct rule *old_rule, struct rule **new_rule)
4703 {
4704     struct rule *rule;
4705     enum ofperr error;
4706
4707     /* Allocate new rule. */
4708     rule = ofproto->ofproto_class->rule_alloc();
4709     if (!rule) {
4710         cls_rule_destroy(cr);
4711         VLOG_WARN_RL(&rl, "%s: failed to allocate a rule.", ofproto->name);
4712         return OFPERR_OFPFMFC_UNKNOWN;
4713     }
4714
4715     /* Initialize base state. */
4716     *CONST_CAST(struct ofproto **, &rule->ofproto) = ofproto;
4717     cls_rule_move(CONST_CAST(struct cls_rule *, &rule->cr), cr);
4718     ovs_refcount_init(&rule->ref_count);
4719     rule->flow_cookie = fm->new_cookie;
4720     rule->created = rule->modified = time_msec();
4721
4722     ovs_mutex_init(&rule->mutex);
4723     ovs_mutex_lock(&rule->mutex);
4724     rule->idle_timeout = fm->idle_timeout;
4725     rule->hard_timeout = fm->hard_timeout;
4726     *CONST_CAST(uint16_t *, &rule->importance) = fm->importance;
4727     rule->removed_reason = OVS_OFPRR_NONE;
4728
4729     *CONST_CAST(uint8_t *, &rule->table_id) = table_id;
4730     rule->flags = fm->flags & OFPUTIL_FF_STATE;
4731     *CONST_CAST(const struct rule_actions **, &rule->actions)
4732         = rule_actions_create(fm->ofpacts, fm->ofpacts_len);
4733     list_init(&rule->meter_list_node);
4734     rule->eviction_group = NULL;
4735     list_init(&rule->expirable);
4736     rule->monitor_flags = 0;
4737     rule->add_seqno = 0;
4738     rule->modify_seqno = 0;
4739
4740     /* Copy values from old rule for modify semantics. */
4741     if (old_rule && fm->delete_reason != OFPRR_EVICTION) {
4742         bool change_cookie = (fm->modify_cookie
4743                               && fm->new_cookie != OVS_BE64_MAX
4744                               && fm->new_cookie != old_rule->flow_cookie);
4745
4746         ovs_mutex_lock(&old_rule->mutex);
4747         if (fm->command != OFPFC_ADD) {
4748             rule->idle_timeout = old_rule->idle_timeout;
4749             rule->hard_timeout = old_rule->hard_timeout;
4750             *CONST_CAST(uint16_t *, &rule->importance) = old_rule->importance;
4751             rule->flags = old_rule->flags;
4752             rule->created = old_rule->created;
4753         }
4754         if (!change_cookie) {
4755             rule->flow_cookie = old_rule->flow_cookie;
4756         }
4757         ovs_mutex_unlock(&old_rule->mutex);
4758     }
4759     ovs_mutex_unlock(&rule->mutex);
4760
4761     /* Construct rule, initializing derived state. */
4762     error = ofproto->ofproto_class->rule_construct(rule);
4763     if (error) {
4764         ofproto_rule_destroy__(rule);
4765         return error;
4766     }
4767
4768     rule->removed = true;   /* Not yet in ofproto data structures. */
4769
4770     *new_rule = rule;
4771     return 0;
4772 }
4773
4774 static void
4775 replace_rule_start(struct ofproto *ofproto, cls_version_t version,
4776                    struct rule *old_rule, struct rule *new_rule,
4777                    struct cls_conjunction *conjs, size_t n_conjs)
4778 {
4779     struct oftable *table = &ofproto->tables[new_rule->table_id];
4780
4781     /* 'old_rule' may be either an evicted rule or replaced rule. */
4782     if (old_rule) {
4783         /* Mark the old rule for removal in the next version. */
4784         cls_rule_make_invisible_in_version(&old_rule->cr, version);
4785     } else {
4786         table->n_flows++;
4787     }
4788     /* Insert flow to the classifier, so that later flow_mods may relate
4789      * to it.  This is reversible, in case later errors require this to
4790      * be reverted. */
4791     ofproto_rule_insert__(ofproto, new_rule);
4792     /* Make the new rule visible for classifier lookups only from the next
4793      * version. */
4794     classifier_insert(&table->cls, &new_rule->cr, version, conjs, n_conjs);
4795 }
4796
4797 static void replace_rule_revert(struct ofproto *ofproto,
4798                                 struct rule *old_rule, struct rule *new_rule)
4799 {
4800     struct oftable *table = &ofproto->tables[new_rule->table_id];
4801
4802     if (old_rule) {
4803         /* Restore the original visibility of the old rule. */
4804         cls_rule_restore_visibility(&old_rule->cr);
4805     } else {
4806         /* Restore table's rule count. */
4807         table->n_flows--;
4808     }
4809
4810     /* Remove the new rule immediately.  It was never visible to lookups. */
4811     if (!classifier_remove(&table->cls, &new_rule->cr)) {
4812         OVS_NOT_REACHED();
4813     }
4814     ofproto_rule_remove__(ofproto, new_rule);
4815     /* The rule was not inserted to the ofproto provider, so we can
4816      * release it without deleting it from the ofproto provider. */
4817     ofproto_rule_unref(new_rule);
4818 }
4819
4820 /* Adds the 'new_rule', replacing the 'old_rule'. */
4821 static void
4822 replace_rule_finish(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4823                     const struct flow_mod_requester *req,
4824                     struct rule *old_rule, struct rule *new_rule,
4825                     struct ovs_list *dead_cookies)
4826     OVS_REQUIRES(ofproto_mutex)
4827 {
4828     bool forward_stats = !(fm->flags & OFPUTIL_FF_RESET_COUNTS);
4829     struct rule *replaced_rule;
4830
4831     replaced_rule = fm->delete_reason != OFPRR_EVICTION ? old_rule : NULL;
4832
4833     /* Insert the new flow to the ofproto provider.  A non-NULL 'replaced_rule'
4834      * is a duplicate rule the 'new_rule' is replacing.  The provider should
4835      * link the stats from the old rule to the new one if 'forward_stats' is
4836      * 'true'.  The 'replaced_rule' will be deleted right after this call. */
4837     ofproto->ofproto_class->rule_insert(new_rule, replaced_rule,
4838                                         forward_stats);
4839     learned_cookies_inc(ofproto, rule_get_actions(new_rule));
4840
4841     if (old_rule) {
4842         const struct rule_actions *old_actions = rule_get_actions(old_rule);
4843
4844         /* Remove the old rule from data structures.  Removal from the
4845          * classifier and the deletion of the rule is RCU postponed by the
4846          * caller. */
4847         ofproto_rule_remove__(ofproto, old_rule);
4848         learned_cookies_dec(ofproto, old_actions, dead_cookies);
4849
4850         if (replaced_rule) {
4851             enum nx_flow_update_event event = fm->command == OFPFC_ADD
4852                 ? NXFME_ADDED : NXFME_MODIFIED;
4853
4854             bool change_cookie = (fm->modify_cookie
4855                                   && fm->new_cookie != OVS_BE64_MAX
4856                                   && fm->new_cookie != old_rule->flow_cookie);
4857
4858             bool change_actions = !ofpacts_equal(fm->ofpacts,
4859                                                  fm->ofpacts_len,
4860                                                  old_actions->ofpacts,
4861                                                  old_actions->ofpacts_len);
4862
4863             if (event != NXFME_MODIFIED || change_actions || change_cookie) {
4864                 ofmonitor_report(ofproto->connmgr, new_rule, event, 0,
4865                                  req ? req->ofconn : NULL,
4866                                  req ? req->request->xid : 0,
4867                                  change_actions ? old_actions : NULL);
4868             }
4869         } else {
4870             /* XXX: This is slight duplication with delete_flows_finish__() */
4871
4872             old_rule->removed_reason = OFPRR_EVICTION;
4873
4874             ofmonitor_report(ofproto->connmgr, old_rule, NXFME_DELETED,
4875                              OFPRR_EVICTION,
4876                              req ? req->ofconn : NULL,
4877                              req ? req->request->xid : 0, NULL);
4878         }
4879     }
4880 }
4881
4882 static enum ofperr
4883 modify_flows_start__(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
4884     OVS_REQUIRES(ofproto_mutex)
4885 {
4886     struct ofputil_flow_mod *fm = &ofm->fm;
4887     struct rule_collection *old_rules = &ofm->old_rules;
4888     struct rule_collection *new_rules = &ofm->new_rules;
4889     enum ofperr error;
4890
4891     rule_collection_init(new_rules);
4892
4893     if (old_rules->n > 0) {
4894         struct cls_conjunction *conjs;
4895         size_t n_conjs;
4896         size_t i;
4897
4898         /* Create a new 'modified' rule for each old rule. */
4899         for (i = 0; i < old_rules->n; i++) {
4900             struct rule *old_rule = old_rules->rules[i];
4901             struct rule *new_rule;
4902             struct cls_rule cr;
4903
4904             cls_rule_clone(&cr, &old_rule->cr);
4905             error = replace_rule_create(ofproto, fm, &cr, old_rule->table_id,
4906                                         old_rule, &new_rule);
4907             if (!error) {
4908                 rule_collection_add(new_rules, new_rule);
4909             } else {
4910                 rule_collection_unref(new_rules);
4911                 rule_collection_destroy(new_rules);
4912                 return error;
4913             }
4914         }
4915         ovs_assert(new_rules->n == old_rules->n);
4916
4917         get_conjunctions(fm, &conjs, &n_conjs);
4918         for (i = 0; i < old_rules->n; i++) {
4919             replace_rule_start(ofproto, ofm->version, old_rules->rules[i],
4920                                new_rules->rules[i], conjs, n_conjs);
4921         }
4922         free(conjs);
4923     } else if (!(fm->cookie_mask != htonll(0)
4924                  || fm->new_cookie == OVS_BE64_MAX)) {
4925         /* No match, add a new flow. */
4926         error = add_flow_start(ofproto, ofm);
4927         if (!error) {
4928             ovs_assert(fm->delete_reason == OFPRR_EVICTION
4929                        || !old_rules->rules[0]);
4930         }
4931         new_rules->n = 1;
4932     } else {
4933         error = 0;
4934     }
4935
4936     return error;
4937 }
4938
4939 /* Implements OFPFC_MODIFY.  Returns 0 on success or an OpenFlow error code on
4940  * failure.
4941  *
4942  * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
4943  * if any. */
4944 static enum ofperr
4945 modify_flows_start_loose(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
4946     OVS_REQUIRES(ofproto_mutex)
4947 {
4948     struct ofputil_flow_mod *fm = &ofm->fm;
4949     struct rule_collection *old_rules = &ofm->old_rules;
4950     struct rule_criteria criteria;
4951     enum ofperr error;
4952
4953     rule_criteria_init(&criteria, fm->table_id, &fm->match, 0, CLS_MAX_VERSION,
4954                        fm->cookie, fm->cookie_mask, OFPP_ANY, OFPG_ANY);
4955     rule_criteria_require_rw(&criteria,
4956                              (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
4957     error = collect_rules_loose(ofproto, &criteria, old_rules);
4958     rule_criteria_destroy(&criteria);
4959
4960     if (!error) {
4961         error = modify_flows_start__(ofproto, ofm);
4962     }
4963
4964     if (error) {
4965         rule_collection_destroy(old_rules);
4966     }
4967     return error;
4968 }
4969
4970 static void
4971 modify_flows_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
4972     OVS_REQUIRES(ofproto_mutex)
4973 {
4974     struct rule_collection *old_rules = &ofm->old_rules;
4975     struct rule_collection *new_rules = &ofm->new_rules;
4976
4977     /* Old rules were not changed yet, only need to revert new rules. */
4978     if (old_rules->n == 0 && new_rules->n == 1) {
4979         add_flow_revert(ofproto, ofm);
4980     } else if (old_rules->n > 0) {
4981         for (size_t i = 0; i < old_rules->n; i++) {
4982             replace_rule_revert(ofproto, old_rules->rules[i],
4983                                 new_rules->rules[i]);
4984         }
4985         rule_collection_destroy(new_rules);
4986         rule_collection_destroy(old_rules);
4987     }
4988 }
4989
4990 static void
4991 modify_flows_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
4992                     const struct flow_mod_requester *req)
4993     OVS_REQUIRES(ofproto_mutex)
4994 {
4995     struct ofputil_flow_mod *fm = &ofm->fm;
4996     struct rule_collection *old_rules = &ofm->old_rules;
4997     struct rule_collection *new_rules = &ofm->new_rules;
4998
4999     if (old_rules->n == 0 && new_rules->n == 1) {
5000         add_flow_finish(ofproto, ofm, req);
5001     } else if (old_rules->n > 0) {
5002         struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
5003
5004         ovs_assert(new_rules->n == old_rules->n);
5005
5006         for (size_t i = 0; i < old_rules->n; i++) {
5007             replace_rule_finish(ofproto, fm, req, old_rules->rules[i],
5008                                 new_rules->rules[i], &dead_cookies);
5009         }
5010         learned_cookies_flush(ofproto, &dead_cookies);
5011         rule_collection_remove_postponed(old_rules);
5012
5013         send_buffered_packet(req, fm->buffer_id, new_rules->rules[0]);
5014         rule_collection_destroy(new_rules);
5015     }
5016 }
5017
5018 /* Implements OFPFC_MODIFY_STRICT.  Returns 0 on success or an OpenFlow error
5019  * code on failure. */
5020 static enum ofperr
5021 modify_flow_start_strict(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
5022     OVS_REQUIRES(ofproto_mutex)
5023 {
5024     struct ofputil_flow_mod *fm = &ofm->fm;
5025     struct rule_collection *old_rules = &ofm->old_rules;
5026     struct rule_criteria criteria;
5027     enum ofperr error;
5028
5029     rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
5030                        CLS_MAX_VERSION, fm->cookie, fm->cookie_mask, OFPP_ANY,
5031                        OFPG_ANY);
5032     rule_criteria_require_rw(&criteria,
5033                              (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5034     error = collect_rules_strict(ofproto, &criteria, old_rules);
5035     rule_criteria_destroy(&criteria);
5036
5037     if (!error) {
5038         /* collect_rules_strict() can return max 1 rule. */
5039         error = modify_flows_start__(ofproto, ofm);
5040     }
5041
5042     if (error) {
5043         rule_collection_destroy(old_rules);
5044     }
5045     return error;
5046 }
5047 \f
5048 /* OFPFC_DELETE implementation. */
5049
5050 static void
5051 delete_flows_start__(struct ofproto *ofproto, cls_version_t version,
5052                      const struct rule_collection *rules)
5053     OVS_REQUIRES(ofproto_mutex)
5054 {
5055     for (size_t i = 0; i < rules->n; i++) {
5056         struct rule *rule = rules->rules[i];
5057         struct oftable *table = &ofproto->tables[rule->table_id];
5058
5059         table->n_flows--;
5060         cls_rule_make_invisible_in_version(&rule->cr, version);
5061     }
5062 }
5063
5064 static void
5065 delete_flows_finish__(struct ofproto *ofproto,
5066                       struct rule_collection *rules,
5067                       enum ofp_flow_removed_reason reason,
5068                       const struct flow_mod_requester *req)
5069     OVS_REQUIRES(ofproto_mutex)
5070 {
5071     if (rules->n) {
5072         struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
5073
5074         for (size_t i = 0; i < rules->n; i++) {
5075             struct rule *rule = rules->rules[i];
5076
5077             /* This value will be used to send the flow removed message right
5078              * before the rule is actually destroyed. */
5079             rule->removed_reason = reason;
5080
5081             ofmonitor_report(ofproto->connmgr, rule, NXFME_DELETED, reason,
5082                              req ? req->ofconn : NULL,
5083                              req ? req->request->xid : 0, NULL);
5084             ofproto_rule_remove__(ofproto, rule);
5085             learned_cookies_dec(ofproto, rule_get_actions(rule),
5086                                 &dead_cookies);
5087         }
5088         rule_collection_remove_postponed(rules);
5089
5090         learned_cookies_flush(ofproto, &dead_cookies);
5091     }
5092 }
5093
5094 /* Deletes the rules listed in 'rules'.
5095  * The deleted rules will become invisible to the lookups in the next version.
5096  * Destroys 'rules'. */
5097 static void
5098 delete_flows__(struct rule_collection *rules,
5099                enum ofp_flow_removed_reason reason,
5100                const struct flow_mod_requester *req)
5101     OVS_REQUIRES(ofproto_mutex)
5102 {
5103     if (rules->n) {
5104         struct ofproto *ofproto = rules->rules[0]->ofproto;
5105
5106         delete_flows_start__(ofproto, ofproto->tables_version + 1, rules);
5107         ofproto_bump_tables_version(ofproto);
5108         delete_flows_finish__(ofproto, rules, reason, req);
5109         ofmonitor_flush(ofproto->connmgr);
5110     }
5111 }
5112
5113 /* Implements OFPFC_DELETE. */
5114 static enum ofperr
5115 delete_flows_start_loose(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
5116     OVS_REQUIRES(ofproto_mutex)
5117 {
5118     const struct ofputil_flow_mod *fm = &ofm->fm;
5119     struct rule_collection *rules = &ofm->old_rules;
5120     struct rule_criteria criteria;
5121     enum ofperr error;
5122
5123     rule_criteria_init(&criteria, fm->table_id, &fm->match, 0, CLS_MAX_VERSION,
5124                        fm->cookie, fm->cookie_mask, fm->out_port,
5125                        fm->out_group);
5126     rule_criteria_require_rw(&criteria,
5127                              (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5128     error = collect_rules_loose(ofproto, &criteria, rules);
5129     rule_criteria_destroy(&criteria);
5130
5131     if (!error) {
5132         delete_flows_start__(ofproto, ofm->version, rules);
5133     }
5134
5135     return error;
5136 }
5137
5138 static void
5139 delete_flows_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
5140     OVS_REQUIRES(ofproto_mutex)
5141 {
5142     struct rule_collection *rules = &ofm->old_rules;
5143
5144     for (size_t i = 0; i < rules->n; i++) {
5145         struct rule *rule = rules->rules[i];
5146         struct oftable *table = &ofproto->tables[rule->table_id];
5147
5148         /* Restore table's rule count. */
5149         table->n_flows++;
5150
5151         /* Restore the original visibility of the rule. */
5152         cls_rule_restore_visibility(&rule->cr);
5153     }
5154     rule_collection_destroy(rules);
5155 }
5156
5157 static void
5158 delete_flows_finish(struct ofproto *ofproto,
5159                     struct ofproto_flow_mod *ofm,
5160                     const struct flow_mod_requester *req)
5161     OVS_REQUIRES(ofproto_mutex)
5162 {
5163     delete_flows_finish__(ofproto, &ofm->old_rules, ofm->fm.delete_reason,
5164                           req);
5165 }
5166
5167 /* Implements OFPFC_DELETE_STRICT. */
5168 static enum ofperr
5169 delete_flow_start_strict(struct ofproto *ofproto,
5170                          struct ofproto_flow_mod *ofm)
5171     OVS_REQUIRES(ofproto_mutex)
5172 {
5173     const struct ofputil_flow_mod *fm = &ofm->fm;
5174     struct rule_collection *rules = &ofm->old_rules;
5175     struct rule_criteria criteria;
5176     enum ofperr error;
5177
5178     rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
5179                        CLS_MAX_VERSION, fm->cookie, fm->cookie_mask,
5180                        fm->out_port, fm->out_group);
5181     rule_criteria_require_rw(&criteria,
5182                              (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5183     error = collect_rules_strict(ofproto, &criteria, rules);
5184     rule_criteria_destroy(&criteria);
5185
5186     if (!error) {
5187         delete_flows_start__(ofproto, ofm->version, rules);
5188     }
5189
5190     return error;
5191 }
5192
5193 /* This may only be called by rule_destroy_cb()! */
5194 static void
5195 ofproto_rule_send_removed(struct rule *rule)
5196     OVS_EXCLUDED(ofproto_mutex)
5197 {
5198     struct ofputil_flow_removed fr;
5199     long long int used;
5200
5201     minimatch_expand(&rule->cr.match, &fr.match);
5202     fr.priority = rule->cr.priority;
5203
5204     ovs_mutex_lock(&ofproto_mutex);
5205     fr.cookie = rule->flow_cookie;
5206     fr.reason = rule->removed_reason;
5207     fr.table_id = rule->table_id;
5208     calc_duration(rule->created, time_msec(),
5209                   &fr.duration_sec, &fr.duration_nsec);
5210     ovs_mutex_lock(&rule->mutex);
5211     fr.idle_timeout = rule->idle_timeout;
5212     fr.hard_timeout = rule->hard_timeout;
5213     ovs_mutex_unlock(&rule->mutex);
5214     rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
5215                                                  &fr.byte_count, &used);
5216     connmgr_send_flow_removed(rule->ofproto->connmgr, &fr);
5217     ovs_mutex_unlock(&ofproto_mutex);
5218 }
5219
5220 /* Sends an OpenFlow "flow removed" message with the given 'reason' (either
5221  * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
5222  * ofproto.
5223  *
5224  * ofproto implementation ->run() functions should use this function to expire
5225  * OpenFlow flows. */
5226 void
5227 ofproto_rule_expire(struct rule *rule, uint8_t reason)
5228     OVS_REQUIRES(ofproto_mutex)
5229 {
5230     struct rule_collection rules;
5231
5232     rules.rules = rules.stub;
5233     rules.n = 1;
5234     rules.stub[0] = rule;
5235     delete_flows__(&rules, reason, NULL);
5236 }
5237
5238 /* Reduces '*timeout' to no more than 'max'.  A value of zero in either case
5239  * means "infinite". */
5240 static void
5241 reduce_timeout(uint16_t max, uint16_t *timeout)
5242 {
5243     if (max && (!*timeout || *timeout > max)) {
5244         *timeout = max;
5245     }
5246 }
5247
5248 /* If 'idle_timeout' is nonzero, and 'rule' has no idle timeout or an idle
5249  * timeout greater than 'idle_timeout', lowers 'rule''s idle timeout to
5250  * 'idle_timeout' seconds.  Similarly for 'hard_timeout'.
5251  *
5252  * Suitable for implementing OFPACT_FIN_TIMEOUT. */
5253 void
5254 ofproto_rule_reduce_timeouts(struct rule *rule,
5255                              uint16_t idle_timeout, uint16_t hard_timeout)
5256     OVS_EXCLUDED(ofproto_mutex, rule->mutex)
5257 {
5258     if (!idle_timeout && !hard_timeout) {
5259         return;
5260     }
5261
5262     ovs_mutex_lock(&ofproto_mutex);
5263     if (list_is_empty(&rule->expirable)) {
5264         list_insert(&rule->ofproto->expirable, &rule->expirable);
5265     }
5266     ovs_mutex_unlock(&ofproto_mutex);
5267
5268     ovs_mutex_lock(&rule->mutex);
5269     reduce_timeout(idle_timeout, &rule->idle_timeout);
5270     reduce_timeout(hard_timeout, &rule->hard_timeout);
5271     ovs_mutex_unlock(&rule->mutex);
5272 }
5273 \f
5274 static enum ofperr
5275 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
5276     OVS_EXCLUDED(ofproto_mutex)
5277 {
5278     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5279     struct ofproto_flow_mod ofm;
5280     uint64_t ofpacts_stub[1024 / 8];
5281     struct ofpbuf ofpacts;
5282     enum ofperr error;
5283
5284     error = reject_slave_controller(ofconn);
5285     if (error) {
5286         goto exit;
5287     }
5288
5289     ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
5290     error = ofputil_decode_flow_mod(&ofm.fm, oh, ofconn_get_protocol(ofconn),
5291                                     &ofpacts,
5292                                     u16_to_ofp(ofproto->max_ports),
5293                                     ofproto->n_tables);
5294     if (!error) {
5295         error = ofproto_check_ofpacts(ofproto, ofm.fm.ofpacts,
5296                                       ofm.fm.ofpacts_len);
5297     }
5298     if (!error) {
5299         struct flow_mod_requester req;
5300
5301         req.ofconn = ofconn;
5302         req.request = oh;
5303         error = handle_flow_mod__(ofproto, &ofm, &req);
5304     }
5305     if (error) {
5306         goto exit_free_ofpacts;
5307     }
5308
5309     ofconn_report_flow_mod(ofconn, ofm.fm.command);
5310
5311 exit_free_ofpacts:
5312     ofpbuf_uninit(&ofpacts);
5313 exit:
5314     return error;
5315 }
5316
5317 static enum ofperr
5318 handle_flow_mod__(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
5319                   const struct flow_mod_requester *req)
5320     OVS_EXCLUDED(ofproto_mutex)
5321 {
5322     enum ofperr error;
5323
5324     ovs_mutex_lock(&ofproto_mutex);
5325     ofm->version = ofproto->tables_version + 1;
5326     error = ofproto_flow_mod_start(ofproto, ofm);
5327     if (!error) {
5328         ofproto_bump_tables_version(ofproto);
5329         ofproto_flow_mod_finish(ofproto, ofm, req);
5330     }
5331     ofmonitor_flush(ofproto->connmgr);
5332     ovs_mutex_unlock(&ofproto_mutex);
5333
5334     run_rule_executes(ofproto);
5335     return error;
5336 }
5337
5338 static enum ofperr
5339 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
5340 {
5341     struct ofputil_role_request request;
5342     struct ofputil_role_request reply;
5343     struct ofpbuf *buf;
5344     enum ofperr error;
5345
5346     error = ofputil_decode_role_message(oh, &request);
5347     if (error) {
5348         return error;
5349     }
5350
5351     if (request.role != OFPCR12_ROLE_NOCHANGE) {
5352         if (request.role != OFPCR12_ROLE_EQUAL
5353             && request.have_generation_id
5354             && !ofconn_set_master_election_id(ofconn, request.generation_id)) {
5355                 return OFPERR_OFPRRFC_STALE;
5356         }
5357
5358         ofconn_set_role(ofconn, request.role);
5359     }
5360
5361     reply.role = ofconn_get_role(ofconn);
5362     reply.have_generation_id = ofconn_get_master_election_id(
5363         ofconn, &reply.generation_id);
5364     buf = ofputil_encode_role_reply(oh, &reply);
5365     ofconn_send_reply(ofconn, buf);
5366
5367     return 0;
5368 }
5369
5370 static enum ofperr
5371 handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
5372                              const struct ofp_header *oh)
5373 {
5374     const struct nx_flow_mod_table_id *msg = ofpmsg_body(oh);
5375     enum ofputil_protocol cur, next;
5376
5377     cur = ofconn_get_protocol(ofconn);
5378     next = ofputil_protocol_set_tid(cur, msg->set != 0);
5379     ofconn_set_protocol(ofconn, next);
5380
5381     return 0;
5382 }
5383
5384 static enum ofperr
5385 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
5386 {
5387     const struct nx_set_flow_format *msg = ofpmsg_body(oh);
5388     enum ofputil_protocol cur, next;
5389     enum ofputil_protocol next_base;
5390
5391     next_base = ofputil_nx_flow_format_to_protocol(ntohl(msg->format));
5392     if (!next_base) {
5393         return OFPERR_OFPBRC_EPERM;
5394     }
5395
5396     cur = ofconn_get_protocol(ofconn);
5397     next = ofputil_protocol_set_base(cur, next_base);
5398     ofconn_set_protocol(ofconn, next);
5399
5400     return 0;
5401 }
5402
5403 static enum ofperr
5404 handle_nxt_set_packet_in_format(struct ofconn *ofconn,
5405                                 const struct ofp_header *oh)
5406 {
5407     const struct nx_set_packet_in_format *msg = ofpmsg_body(oh);
5408     uint32_t format;
5409
5410     format = ntohl(msg->format);
5411     if (!ofputil_packet_in_format_is_valid(format)) {
5412         return OFPERR_OFPBRC_EPERM;
5413     }
5414
5415     ofconn_set_packet_in_format(ofconn, format);
5416     return 0;
5417 }
5418
5419 static enum ofperr
5420 handle_nxt_set_async_config(struct ofconn *ofconn, const struct ofp_header *oh)
5421 {
5422     struct ofputil_async_cfg basis = ofconn_get_async_config(ofconn);
5423     struct ofputil_async_cfg ac;
5424     enum ofperr error;
5425
5426     error = ofputil_decode_set_async_config(oh, false, &basis, &ac);
5427     if (error) {
5428         return error;
5429     }
5430
5431     ofconn_set_async_config(ofconn, &ac);
5432     if (ofconn_get_type(ofconn) == OFCONN_SERVICE &&
5433         !ofconn_get_miss_send_len(ofconn)) {
5434         ofconn_set_miss_send_len(ofconn, OFP_DEFAULT_MISS_SEND_LEN);
5435     }
5436
5437     return 0;
5438 }
5439
5440 static enum ofperr
5441 handle_nxt_get_async_request(struct ofconn *ofconn, const struct ofp_header *oh)
5442 {
5443     struct ofputil_async_cfg ac = ofconn_get_async_config(ofconn);
5444     ofconn_send_reply(ofconn, ofputil_encode_get_async_reply(oh, &ac));
5445
5446     return 0;
5447 }
5448
5449 static enum ofperr
5450 handle_nxt_set_controller_id(struct ofconn *ofconn,
5451                              const struct ofp_header *oh)
5452 {
5453     const struct nx_controller_id *nci = ofpmsg_body(oh);
5454
5455     if (!is_all_zeros(nci->zero, sizeof nci->zero)) {
5456         return OFPERR_NXBRC_MUST_BE_ZERO;
5457     }
5458
5459     ofconn_set_controller_id(ofconn, ntohs(nci->controller_id));
5460     return 0;
5461 }
5462
5463 static enum ofperr
5464 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
5465 {
5466     struct ofpbuf *buf;
5467
5468     buf = ofpraw_alloc_reply((oh->version == OFP10_VERSION
5469                               ? OFPRAW_OFPT10_BARRIER_REPLY
5470                               : OFPRAW_OFPT11_BARRIER_REPLY), oh, 0);
5471     ofconn_send_reply(ofconn, buf);
5472     return 0;
5473 }
5474
5475 static void
5476 ofproto_compose_flow_refresh_update(const struct rule *rule,
5477                                     enum nx_flow_monitor_flags flags,
5478                                     struct ovs_list *msgs)
5479     OVS_REQUIRES(ofproto_mutex)
5480 {
5481     const struct rule_actions *actions;
5482     struct ofputil_flow_update fu;
5483     struct match match;
5484
5485     fu.event = (flags & (NXFMF_INITIAL | NXFMF_ADD)
5486                 ? NXFME_ADDED : NXFME_MODIFIED);
5487     fu.reason = 0;
5488     ovs_mutex_lock(&rule->mutex);
5489     fu.idle_timeout = rule->idle_timeout;
5490     fu.hard_timeout = rule->hard_timeout;
5491     ovs_mutex_unlock(&rule->mutex);
5492     fu.table_id = rule->table_id;
5493     fu.cookie = rule->flow_cookie;
5494     minimatch_expand(&rule->cr.match, &match);
5495     fu.match = &match;
5496     fu.priority = rule->cr.priority;
5497
5498     actions = flags & NXFMF_ACTIONS ? rule_get_actions(rule) : NULL;
5499     fu.ofpacts = actions ? actions->ofpacts : NULL;
5500     fu.ofpacts_len = actions ? actions->ofpacts_len : 0;
5501
5502     if (list_is_empty(msgs)) {
5503         ofputil_start_flow_update(msgs);
5504     }
5505     ofputil_append_flow_update(&fu, msgs);
5506 }
5507
5508 void
5509 ofmonitor_compose_refresh_updates(struct rule_collection *rules,
5510                                   struct ovs_list *msgs)
5511     OVS_REQUIRES(ofproto_mutex)
5512 {
5513     size_t i;
5514
5515     for (i = 0; i < rules->n; i++) {
5516         struct rule *rule = rules->rules[i];
5517         enum nx_flow_monitor_flags flags = rule->monitor_flags;
5518         rule->monitor_flags = 0;
5519
5520         ofproto_compose_flow_refresh_update(rule, flags, msgs);
5521     }
5522 }
5523
5524 static void
5525 ofproto_collect_ofmonitor_refresh_rule(const struct ofmonitor *m,
5526                                        struct rule *rule, uint64_t seqno,
5527                                        struct rule_collection *rules)
5528     OVS_REQUIRES(ofproto_mutex)
5529 {
5530     enum nx_flow_monitor_flags update;
5531
5532     if (rule_is_hidden(rule)) {
5533         return;
5534     }
5535
5536     if (!ofproto_rule_has_out_port(rule, m->out_port)) {
5537         return;
5538     }
5539
5540     if (seqno) {
5541         if (rule->add_seqno > seqno) {
5542             update = NXFMF_ADD | NXFMF_MODIFY;
5543         } else if (rule->modify_seqno > seqno) {
5544             update = NXFMF_MODIFY;
5545         } else {
5546             return;
5547         }
5548
5549         if (!(m->flags & update)) {
5550             return;
5551         }
5552     } else {
5553         update = NXFMF_INITIAL;
5554     }
5555
5556     if (!rule->monitor_flags) {
5557         rule_collection_add(rules, rule);
5558     }
5559     rule->monitor_flags |= update | (m->flags & NXFMF_ACTIONS);
5560 }
5561
5562 static void
5563 ofproto_collect_ofmonitor_refresh_rules(const struct ofmonitor *m,
5564                                         uint64_t seqno,
5565                                         struct rule_collection *rules)
5566     OVS_REQUIRES(ofproto_mutex)
5567 {
5568     const struct ofproto *ofproto = ofconn_get_ofproto(m->ofconn);
5569     const struct oftable *table;
5570     struct cls_rule target;
5571
5572     cls_rule_init_from_minimatch(&target, &m->match, 0);
5573     FOR_EACH_MATCHING_TABLE (table, m->table_id, ofproto) {
5574         struct rule *rule;
5575
5576         CLS_FOR_EACH_TARGET (rule, cr, &table->cls, &target, CLS_MAX_VERSION) {
5577             ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
5578         }
5579     }
5580     cls_rule_destroy(&target);
5581 }
5582
5583 static void
5584 ofproto_collect_ofmonitor_initial_rules(struct ofmonitor *m,
5585                                         struct rule_collection *rules)
5586     OVS_REQUIRES(ofproto_mutex)
5587 {
5588     if (m->flags & NXFMF_INITIAL) {
5589         ofproto_collect_ofmonitor_refresh_rules(m, 0, rules);
5590     }
5591 }
5592
5593 void
5594 ofmonitor_collect_resume_rules(struct ofmonitor *m,
5595                                uint64_t seqno, struct rule_collection *rules)
5596     OVS_REQUIRES(ofproto_mutex)
5597 {
5598     ofproto_collect_ofmonitor_refresh_rules(m, seqno, rules);
5599 }
5600
5601 static enum ofperr
5602 flow_monitor_delete(struct ofconn *ofconn, uint32_t id)
5603     OVS_REQUIRES(ofproto_mutex)
5604 {
5605     struct ofmonitor *m;
5606     enum ofperr error;
5607
5608     m = ofmonitor_lookup(ofconn, id);
5609     if (m) {
5610         ofmonitor_destroy(m);
5611         error = 0;
5612     } else {
5613         error = OFPERR_OFPMOFC_UNKNOWN_MONITOR;
5614     }
5615
5616     return error;
5617 }
5618
5619 static enum ofperr
5620 handle_flow_monitor_request(struct ofconn *ofconn, const struct ofp_header *oh)
5621     OVS_EXCLUDED(ofproto_mutex)
5622 {
5623     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5624
5625     struct ofpbuf b = ofpbuf_const_initializer(oh, ntohs(oh->length));
5626
5627     struct ofmonitor **monitors = NULL;
5628     size_t allocated_monitors = 0;
5629     size_t n_monitors = 0;
5630
5631     enum ofperr error;
5632
5633     ovs_mutex_lock(&ofproto_mutex);
5634     for (;;) {
5635         struct ofputil_flow_monitor_request request;
5636         struct ofmonitor *m;
5637         int retval;
5638
5639         retval = ofputil_decode_flow_monitor_request(&request, &b);
5640         if (retval == EOF) {
5641             break;
5642         } else if (retval) {
5643             error = retval;
5644             goto error;
5645         }
5646
5647         if (request.table_id != 0xff
5648             && request.table_id >= ofproto->n_tables) {
5649             error = OFPERR_OFPBRC_BAD_TABLE_ID;
5650             goto error;
5651         }
5652
5653         error = ofmonitor_create(&request, ofconn, &m);
5654         if (error) {
5655             goto error;
5656         }
5657
5658         if (n_monitors >= allocated_monitors) {
5659             monitors = x2nrealloc(monitors, &allocated_monitors,
5660                                   sizeof *monitors);
5661         }
5662         monitors[n_monitors++] = m;
5663     }
5664
5665     struct rule_collection rules;
5666     rule_collection_init(&rules);
5667     for (size_t i = 0; i < n_monitors; i++) {
5668         ofproto_collect_ofmonitor_initial_rules(monitors[i], &rules);
5669     }
5670
5671     struct ovs_list replies;
5672     ofpmp_init(&replies, oh);
5673     ofmonitor_compose_refresh_updates(&rules, &replies);
5674     ovs_mutex_unlock(&ofproto_mutex);
5675
5676     rule_collection_destroy(&rules);
5677
5678     ofconn_send_replies(ofconn, &replies);
5679     free(monitors);
5680
5681     return 0;
5682
5683 error:
5684     for (size_t i = 0; i < n_monitors; i++) {
5685         ofmonitor_destroy(monitors[i]);
5686     }
5687     free(monitors);
5688     ovs_mutex_unlock(&ofproto_mutex);
5689
5690     return error;
5691 }
5692
5693 static enum ofperr
5694 handle_flow_monitor_cancel(struct ofconn *ofconn, const struct ofp_header *oh)
5695     OVS_EXCLUDED(ofproto_mutex)
5696 {
5697     enum ofperr error;
5698     uint32_t id;
5699
5700     id = ofputil_decode_flow_monitor_cancel(oh);
5701
5702     ovs_mutex_lock(&ofproto_mutex);
5703     error = flow_monitor_delete(ofconn, id);
5704     ovs_mutex_unlock(&ofproto_mutex);
5705
5706     return error;
5707 }
5708
5709 /* Meters implementation.
5710  *
5711  * Meter table entry, indexed by the OpenFlow meter_id.
5712  * 'created' is used to compute the duration for meter stats.
5713  * 'list rules' is needed so that we can delete the dependent rules when the
5714  * meter table entry is deleted.
5715  * 'provider_meter_id' is for the provider's private use.
5716  */
5717 struct meter {
5718     long long int created;      /* Time created. */
5719     struct ovs_list rules;      /* List of "struct rule_dpif"s. */
5720     ofproto_meter_id provider_meter_id;
5721     uint16_t flags;             /* Meter flags. */
5722     uint16_t n_bands;           /* Number of meter bands. */
5723     struct ofputil_meter_band *bands;
5724 };
5725
5726 /*
5727  * This is used in instruction validation at flow set-up time,
5728  * as flows may not use non-existing meters.
5729  * Return value of UINT32_MAX signifies an invalid meter.
5730  */
5731 static uint32_t
5732 get_provider_meter_id(const struct ofproto *ofproto, uint32_t of_meter_id)
5733 {
5734     if (of_meter_id && of_meter_id <= ofproto->meter_features.max_meters) {
5735         const struct meter *meter = ofproto->meters[of_meter_id];
5736         if (meter) {
5737             return meter->provider_meter_id.uint32;
5738         }
5739     }
5740     return UINT32_MAX;
5741 }
5742
5743 /* Finds the meter invoked by 'rule''s actions and adds 'rule' to the meter's
5744  * list of rules. */
5745 static void
5746 meter_insert_rule(struct rule *rule)
5747 {
5748     const struct rule_actions *a = rule_get_actions(rule);
5749     uint32_t meter_id = ofpacts_get_meter(a->ofpacts, a->ofpacts_len);
5750     struct meter *meter = rule->ofproto->meters[meter_id];
5751
5752     list_insert(&meter->rules, &rule->meter_list_node);
5753 }
5754
5755 static void
5756 meter_update(struct meter *meter, const struct ofputil_meter_config *config)
5757 {
5758     free(meter->bands);
5759
5760     meter->flags = config->flags;
5761     meter->n_bands = config->n_bands;
5762     meter->bands = xmemdup(config->bands,
5763                            config->n_bands * sizeof *meter->bands);
5764 }
5765
5766 static struct meter *
5767 meter_create(const struct ofputil_meter_config *config,
5768              ofproto_meter_id provider_meter_id)
5769 {
5770     struct meter *meter;
5771
5772     meter = xzalloc(sizeof *meter);
5773     meter->provider_meter_id = provider_meter_id;
5774     meter->created = time_msec();
5775     list_init(&meter->rules);
5776
5777     meter_update(meter, config);
5778
5779     return meter;
5780 }
5781
5782 static void
5783 meter_delete(struct ofproto *ofproto, uint32_t first, uint32_t last)
5784     OVS_REQUIRES(ofproto_mutex)
5785 {
5786     uint32_t mid;
5787     for (mid = first; mid <= last; ++mid) {
5788         struct meter *meter = ofproto->meters[mid];
5789         if (meter) {
5790             ofproto->meters[mid] = NULL;
5791             ofproto->ofproto_class->meter_del(ofproto,
5792                                               meter->provider_meter_id);
5793             free(meter->bands);
5794             free(meter);
5795         }
5796     }
5797 }
5798
5799 static enum ofperr
5800 handle_add_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
5801 {
5802     ofproto_meter_id provider_meter_id = { UINT32_MAX };
5803     struct meter **meterp = &ofproto->meters[mm->meter.meter_id];
5804     enum ofperr error;
5805
5806     if (*meterp) {
5807         return OFPERR_OFPMMFC_METER_EXISTS;
5808     }
5809
5810     error = ofproto->ofproto_class->meter_set(ofproto, &provider_meter_id,
5811                                               &mm->meter);
5812     if (!error) {
5813         ovs_assert(provider_meter_id.uint32 != UINT32_MAX);
5814         *meterp = meter_create(&mm->meter, provider_meter_id);
5815     }
5816     return error;
5817 }
5818
5819 static enum ofperr
5820 handle_modify_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
5821 {
5822     struct meter *meter = ofproto->meters[mm->meter.meter_id];
5823     enum ofperr error;
5824     uint32_t provider_meter_id;
5825
5826     if (!meter) {
5827         return OFPERR_OFPMMFC_UNKNOWN_METER;
5828     }
5829
5830     provider_meter_id = meter->provider_meter_id.uint32;
5831     error = ofproto->ofproto_class->meter_set(ofproto,
5832                                               &meter->provider_meter_id,
5833                                               &mm->meter);
5834     ovs_assert(meter->provider_meter_id.uint32 == provider_meter_id);
5835     if (!error) {
5836         meter_update(meter, &mm->meter);
5837     }
5838     return error;
5839 }
5840
5841 static enum ofperr
5842 handle_delete_meter(struct ofconn *ofconn, struct ofputil_meter_mod *mm)
5843     OVS_EXCLUDED(ofproto_mutex)
5844 {
5845     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5846     uint32_t meter_id = mm->meter.meter_id;
5847     struct rule_collection rules;
5848     enum ofperr error = 0;
5849     uint32_t first, last;
5850
5851     if (meter_id == OFPM13_ALL) {
5852         first = 1;
5853         last = ofproto->meter_features.max_meters;
5854     } else {
5855         if (!meter_id || meter_id > ofproto->meter_features.max_meters) {
5856             return 0;
5857         }
5858         first = last = meter_id;
5859     }
5860
5861     /* First delete the rules that use this meter.  If any of those rules are
5862      * currently being modified, postpone the whole operation until later. */
5863     rule_collection_init(&rules);
5864     ovs_mutex_lock(&ofproto_mutex);
5865     for (meter_id = first; meter_id <= last; ++meter_id) {
5866         struct meter *meter = ofproto->meters[meter_id];
5867         if (meter && !list_is_empty(&meter->rules)) {
5868             struct rule *rule;
5869
5870             LIST_FOR_EACH (rule, meter_list_node, &meter->rules) {
5871                 rule_collection_add(&rules, rule);
5872             }
5873         }
5874     }
5875     delete_flows__(&rules, OFPRR_METER_DELETE, NULL);
5876
5877     /* Delete the meters. */
5878     meter_delete(ofproto, first, last);
5879
5880     ovs_mutex_unlock(&ofproto_mutex);
5881
5882     return error;
5883 }
5884
5885 static enum ofperr
5886 handle_meter_mod(struct ofconn *ofconn, const struct ofp_header *oh)
5887 {
5888     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5889     struct ofputil_meter_mod mm;
5890     uint64_t bands_stub[256 / 8];
5891     struct ofpbuf bands;
5892     uint32_t meter_id;
5893     enum ofperr error;
5894
5895     error = reject_slave_controller(ofconn);
5896     if (error) {
5897         return error;
5898     }
5899
5900     ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
5901
5902     error = ofputil_decode_meter_mod(oh, &mm, &bands);
5903     if (error) {
5904         goto exit_free_bands;
5905     }
5906
5907     meter_id = mm.meter.meter_id;
5908
5909     if (mm.command != OFPMC13_DELETE) {
5910         /* Fails also when meters are not implemented by the provider. */
5911         if (meter_id == 0 || meter_id > OFPM13_MAX) {
5912             error = OFPERR_OFPMMFC_INVALID_METER;
5913             goto exit_free_bands;
5914         } else if (meter_id > ofproto->meter_features.max_meters) {
5915             error = OFPERR_OFPMMFC_OUT_OF_METERS;
5916             goto exit_free_bands;
5917         }
5918         if (mm.meter.n_bands > ofproto->meter_features.max_bands) {
5919             error = OFPERR_OFPMMFC_OUT_OF_BANDS;
5920             goto exit_free_bands;
5921         }
5922     }
5923
5924     switch (mm.command) {
5925     case OFPMC13_ADD:
5926         error = handle_add_meter(ofproto, &mm);
5927         break;
5928
5929     case OFPMC13_MODIFY:
5930         error = handle_modify_meter(ofproto, &mm);
5931         break;
5932
5933     case OFPMC13_DELETE:
5934         error = handle_delete_meter(ofconn, &mm);
5935         break;
5936
5937     default:
5938         error = OFPERR_OFPMMFC_BAD_COMMAND;
5939         break;
5940     }
5941
5942     if (!error) {
5943         struct ofputil_requestforward rf;
5944         rf.xid = oh->xid;
5945         rf.reason = OFPRFR_METER_MOD;
5946         rf.meter_mod = &mm;
5947         connmgr_send_requestforward(ofproto->connmgr, ofconn, &rf);
5948     }
5949
5950 exit_free_bands:
5951     ofpbuf_uninit(&bands);
5952     return error;
5953 }
5954
5955 static enum ofperr
5956 handle_meter_features_request(struct ofconn *ofconn,
5957                               const struct ofp_header *request)
5958 {
5959     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5960     struct ofputil_meter_features features;
5961     struct ofpbuf *b;
5962
5963     if (ofproto->ofproto_class->meter_get_features) {
5964         ofproto->ofproto_class->meter_get_features(ofproto, &features);
5965     } else {
5966         memset(&features, 0, sizeof features);
5967     }
5968     b = ofputil_encode_meter_features_reply(&features, request);
5969
5970     ofconn_send_reply(ofconn, b);
5971     return 0;
5972 }
5973
5974 static enum ofperr
5975 handle_meter_request(struct ofconn *ofconn, const struct ofp_header *request,
5976                      enum ofptype type)
5977 {
5978     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5979     struct ovs_list replies;
5980     uint64_t bands_stub[256 / 8];
5981     struct ofpbuf bands;
5982     uint32_t meter_id, first, last;
5983
5984     ofputil_decode_meter_request(request, &meter_id);
5985
5986     if (meter_id == OFPM13_ALL) {
5987         first = 1;
5988         last = ofproto->meter_features.max_meters;
5989     } else {
5990         if (!meter_id || meter_id > ofproto->meter_features.max_meters ||
5991             !ofproto->meters[meter_id]) {
5992             return OFPERR_OFPMMFC_UNKNOWN_METER;
5993         }
5994         first = last = meter_id;
5995     }
5996
5997     ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
5998     ofpmp_init(&replies, request);
5999
6000     for (meter_id = first; meter_id <= last; ++meter_id) {
6001         struct meter *meter = ofproto->meters[meter_id];
6002         if (!meter) {
6003             continue; /* Skip non-existing meters. */
6004         }
6005         if (type == OFPTYPE_METER_STATS_REQUEST) {
6006             struct ofputil_meter_stats stats;
6007
6008             stats.meter_id = meter_id;
6009
6010             /* Provider sets the packet and byte counts, we do the rest. */
6011             stats.flow_count = list_size(&meter->rules);
6012             calc_duration(meter->created, time_msec(),
6013                           &stats.duration_sec, &stats.duration_nsec);
6014             stats.n_bands = meter->n_bands;
6015             ofpbuf_clear(&bands);
6016             stats.bands
6017                 = ofpbuf_put_uninit(&bands,
6018                                     meter->n_bands * sizeof *stats.bands);
6019
6020             if (!ofproto->ofproto_class->meter_get(ofproto,
6021                                                    meter->provider_meter_id,
6022                                                    &stats)) {
6023                 ofputil_append_meter_stats(&replies, &stats);
6024             }
6025         } else { /* type == OFPTYPE_METER_CONFIG_REQUEST */
6026             struct ofputil_meter_config config;
6027
6028             config.meter_id = meter_id;
6029             config.flags = meter->flags;
6030             config.n_bands = meter->n_bands;
6031             config.bands = meter->bands;
6032             ofputil_append_meter_config(&replies, &config);
6033         }
6034     }
6035
6036     ofconn_send_replies(ofconn, &replies);
6037     ofpbuf_uninit(&bands);
6038     return 0;
6039 }
6040
6041 static bool
6042 ofproto_group_lookup__(const struct ofproto *ofproto, uint32_t group_id,
6043                        struct ofgroup **group)
6044     OVS_REQ_RDLOCK(ofproto->groups_rwlock)
6045 {
6046     HMAP_FOR_EACH_IN_BUCKET (*group, hmap_node,
6047                              hash_int(group_id, 0), &ofproto->groups) {
6048         if ((*group)->group_id == group_id) {
6049             return true;
6050         }
6051     }
6052
6053     return false;
6054 }
6055
6056 /* If the group exists, this function increments the groups's reference count.
6057  *
6058  * Make sure to call ofproto_group_unref() after no longer needing to maintain
6059  * a reference to the group. */
6060 bool
6061 ofproto_group_lookup(const struct ofproto *ofproto, uint32_t group_id,
6062                      struct ofgroup **group)
6063 {
6064     bool found;
6065
6066     ovs_rwlock_rdlock(&ofproto->groups_rwlock);
6067     found = ofproto_group_lookup__(ofproto, group_id, group);
6068     if (found) {
6069         ofproto_group_ref(*group);
6070     }
6071     ovs_rwlock_unlock(&ofproto->groups_rwlock);
6072     return found;
6073 }
6074
6075 static bool
6076 ofproto_group_exists__(const struct ofproto *ofproto, uint32_t group_id)
6077     OVS_REQ_RDLOCK(ofproto->groups_rwlock)
6078 {
6079     struct ofgroup *grp;
6080
6081     HMAP_FOR_EACH_IN_BUCKET (grp, hmap_node,
6082                              hash_int(group_id, 0), &ofproto->groups) {
6083         if (grp->group_id == group_id) {
6084             return true;
6085         }
6086     }
6087     return false;
6088 }
6089
6090 static bool
6091 ofproto_group_exists(const struct ofproto *ofproto, uint32_t group_id)
6092     OVS_EXCLUDED(ofproto->groups_rwlock)
6093 {
6094     bool exists;
6095
6096     ovs_rwlock_rdlock(&ofproto->groups_rwlock);
6097     exists = ofproto_group_exists__(ofproto, group_id);
6098     ovs_rwlock_unlock(&ofproto->groups_rwlock);
6099
6100     return exists;
6101 }
6102
6103 static uint32_t
6104 group_get_ref_count(struct ofgroup *group)
6105     OVS_EXCLUDED(ofproto_mutex)
6106 {
6107     struct ofproto *ofproto = CONST_CAST(struct ofproto *, group->ofproto);
6108     struct rule_criteria criteria;
6109     struct rule_collection rules;
6110     struct match match;
6111     enum ofperr error;
6112     uint32_t count;
6113
6114     match_init_catchall(&match);
6115     rule_criteria_init(&criteria, 0xff, &match, 0, CLS_MAX_VERSION, htonll(0),
6116                        htonll(0), OFPP_ANY, group->group_id);
6117     ovs_mutex_lock(&ofproto_mutex);
6118     error = collect_rules_loose(ofproto, &criteria, &rules);
6119     ovs_mutex_unlock(&ofproto_mutex);
6120     rule_criteria_destroy(&criteria);
6121
6122     count = !error && rules.n < UINT32_MAX ? rules.n : UINT32_MAX;
6123
6124     rule_collection_destroy(&rules);
6125     return count;
6126 }
6127
6128 static void
6129 append_group_stats(struct ofgroup *group, struct ovs_list *replies)
6130 {
6131     struct ofputil_group_stats ogs;
6132     const struct ofproto *ofproto = group->ofproto;
6133     long long int now = time_msec();
6134     int error;
6135
6136     ogs.bucket_stats = xmalloc(group->n_buckets * sizeof *ogs.bucket_stats);
6137
6138     /* Provider sets the packet and byte counts, we do the rest. */
6139     ogs.ref_count = group_get_ref_count(group);
6140     ogs.n_buckets = group->n_buckets;
6141
6142     error = (ofproto->ofproto_class->group_get_stats
6143              ? ofproto->ofproto_class->group_get_stats(group, &ogs)
6144              : EOPNOTSUPP);
6145     if (error) {
6146         ogs.packet_count = UINT64_MAX;
6147         ogs.byte_count = UINT64_MAX;
6148         memset(ogs.bucket_stats, 0xff,
6149                ogs.n_buckets * sizeof *ogs.bucket_stats);
6150     }
6151
6152     ogs.group_id = group->group_id;
6153     calc_duration(group->created, now, &ogs.duration_sec, &ogs.duration_nsec);
6154
6155     ofputil_append_group_stats(replies, &ogs);
6156
6157     free(ogs.bucket_stats);
6158 }
6159
6160 static void
6161 handle_group_request(struct ofconn *ofconn,
6162                      const struct ofp_header *request, uint32_t group_id,
6163                      void (*cb)(struct ofgroup *, struct ovs_list *replies))
6164 {
6165     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6166     struct ofgroup *group;
6167     struct ovs_list replies;
6168
6169     ofpmp_init(&replies, request);
6170     if (group_id == OFPG_ALL) {
6171         ovs_rwlock_rdlock(&ofproto->groups_rwlock);
6172         HMAP_FOR_EACH (group, hmap_node, &ofproto->groups) {
6173             cb(group, &replies);
6174         }
6175         ovs_rwlock_unlock(&ofproto->groups_rwlock);
6176     } else {
6177         if (ofproto_group_lookup(ofproto, group_id, &group)) {
6178             cb(group, &replies);
6179             ofproto_group_unref(group);
6180         }
6181     }
6182     ofconn_send_replies(ofconn, &replies);
6183 }
6184
6185 static enum ofperr
6186 handle_group_stats_request(struct ofconn *ofconn,
6187                            const struct ofp_header *request)
6188 {
6189     uint32_t group_id;
6190     enum ofperr error;
6191
6192     error = ofputil_decode_group_stats_request(request, &group_id);
6193     if (error) {
6194         return error;
6195     }
6196
6197     handle_group_request(ofconn, request, group_id, append_group_stats);
6198     return 0;
6199 }
6200
6201 static void
6202 append_group_desc(struct ofgroup *group, struct ovs_list *replies)
6203 {
6204     struct ofputil_group_desc gds;
6205
6206     gds.group_id = group->group_id;
6207     gds.type = group->type;
6208     gds.props = group->props;
6209
6210     ofputil_append_group_desc_reply(&gds, &group->buckets, replies);
6211 }
6212
6213 static enum ofperr
6214 handle_group_desc_stats_request(struct ofconn *ofconn,
6215                                 const struct ofp_header *request)
6216 {
6217     handle_group_request(ofconn, request,
6218                          ofputil_decode_group_desc_request(request),
6219                          append_group_desc);
6220     return 0;
6221 }
6222
6223 static enum ofperr
6224 handle_group_features_stats_request(struct ofconn *ofconn,
6225                                     const struct ofp_header *request)
6226 {
6227     struct ofproto *p = ofconn_get_ofproto(ofconn);
6228     struct ofpbuf *msg;
6229
6230     msg = ofputil_encode_group_features_reply(&p->ogf, request);
6231     if (msg) {
6232         ofconn_send_reply(ofconn, msg);
6233     }
6234
6235     return 0;
6236 }
6237
6238 static void
6239 put_queue_get_config_reply(struct ofport *port, uint32_t queue,
6240                            struct ovs_list *replies)
6241 {
6242     struct ofputil_queue_config qc;
6243
6244     /* None of the existing queues have compatible properties, so we hard-code
6245      * omitting min_rate and max_rate. */
6246     qc.port = port->ofp_port;
6247     qc.queue = queue;
6248     qc.min_rate = UINT16_MAX;
6249     qc.max_rate = UINT16_MAX;
6250     ofputil_append_queue_get_config_reply(&qc, replies);
6251 }
6252
6253 static int
6254 handle_queue_get_config_request_for_port(struct ofport *port, uint32_t queue,
6255                                          struct ovs_list *replies)
6256 {
6257     struct smap details = SMAP_INITIALIZER(&details);
6258     if (queue != OFPQ_ALL) {
6259         int error = netdev_get_queue(port->netdev, queue, &details);
6260         switch (error) {
6261         case 0:
6262             put_queue_get_config_reply(port, queue, replies);
6263             break;
6264         case EOPNOTSUPP:
6265         case EINVAL:
6266             return OFPERR_OFPQOFC_BAD_QUEUE;
6267         default:
6268             return OFPERR_NXQOFC_QUEUE_ERROR;
6269         }
6270     } else {
6271         struct netdev_queue_dump queue_dump;
6272         uint32_t queue_id;
6273
6274         NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &queue_dump,
6275                                port->netdev) {
6276             put_queue_get_config_reply(port, queue_id, replies);
6277         }
6278     }
6279     smap_destroy(&details);
6280     return 0;
6281 }
6282
6283 static enum ofperr
6284 handle_queue_get_config_request(struct ofconn *ofconn,
6285                                 const struct ofp_header *oh)
6286 {
6287     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6288     struct ovs_list replies;
6289     struct ofport *port;
6290     ofp_port_t req_port;
6291     uint32_t req_queue;
6292     enum ofperr error;
6293
6294     error = ofputil_decode_queue_get_config_request(oh, &req_port, &req_queue);
6295     if (error) {
6296         return error;
6297     }
6298
6299     ofputil_start_queue_get_config_reply(oh, &replies);
6300     if (req_port == OFPP_ANY) {
6301         error = OFPERR_OFPQOFC_BAD_QUEUE;
6302         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
6303             if (!handle_queue_get_config_request_for_port(port, req_queue,
6304                                                           &replies)) {
6305                 error = 0;
6306             }
6307         }
6308     } else {
6309         port = ofproto_get_port(ofproto, req_port);
6310         error = (port
6311                  ? handle_queue_get_config_request_for_port(port, req_queue,
6312                                                             &replies)
6313                  : OFPERR_OFPQOFC_BAD_PORT);
6314     }
6315     if (!error) {
6316         ofconn_send_replies(ofconn, &replies);
6317     } else {
6318         ofpbuf_list_delete(&replies);
6319     }
6320
6321     return error;
6322 }
6323
6324 static enum ofperr
6325 init_group(struct ofproto *ofproto, const struct ofputil_group_mod *gm,
6326            struct ofgroup **ofgroup)
6327 {
6328     enum ofperr error;
6329     const long long int now = time_msec();
6330
6331     if (gm->group_id > OFPG_MAX) {
6332         return OFPERR_OFPGMFC_INVALID_GROUP;
6333     }
6334     if (gm->type > OFPGT11_FF) {
6335         return OFPERR_OFPGMFC_BAD_TYPE;
6336     }
6337
6338     *ofgroup = ofproto->ofproto_class->group_alloc();
6339     if (!*ofgroup) {
6340         VLOG_WARN_RL(&rl, "%s: failed to allocate group", ofproto->name);
6341         return OFPERR_OFPGMFC_OUT_OF_GROUPS;
6342     }
6343
6344     (*ofgroup)->ofproto = ofproto;
6345     *CONST_CAST(uint32_t *, &((*ofgroup)->group_id)) = gm->group_id;
6346     *CONST_CAST(enum ofp11_group_type *, &(*ofgroup)->type) = gm->type;
6347     *CONST_CAST(long long int *, &((*ofgroup)->created)) = now;
6348     *CONST_CAST(long long int *, &((*ofgroup)->modified)) = now;
6349     ovs_refcount_init(&(*ofgroup)->ref_count);
6350
6351     list_init(&(*ofgroup)->buckets);
6352     ofputil_bucket_clone_list(&(*ofgroup)->buckets, &gm->buckets, NULL);
6353
6354     *CONST_CAST(uint32_t *, &(*ofgroup)->n_buckets) =
6355         list_size(&(*ofgroup)->buckets);
6356
6357     memcpy(CONST_CAST(struct ofputil_group_props *, &(*ofgroup)->props),
6358            &gm->props, sizeof (struct ofputil_group_props));
6359
6360     /* Construct called BEFORE any locks are held. */
6361     error = ofproto->ofproto_class->group_construct(*ofgroup);
6362     if (error) {
6363         ofputil_bucket_list_destroy(&(*ofgroup)->buckets);
6364         ofproto->ofproto_class->group_dealloc(*ofgroup);
6365     }
6366     return error;
6367 }
6368
6369 /* Implements the OFPGC11_ADD operation specified by 'gm', adding a group to
6370  * 'ofproto''s group table.  Returns 0 on success or an OpenFlow error code on
6371  * failure. */
6372 static enum ofperr
6373 add_group(struct ofproto *ofproto, const struct ofputil_group_mod *gm)
6374 {
6375     struct ofgroup *ofgroup;
6376     enum ofperr error;
6377
6378     /* Allocate new group and initialize it. */
6379     error = init_group(ofproto, gm, &ofgroup);
6380     if (error) {
6381         return error;
6382     }
6383
6384     /* We wrlock as late as possible to minimize the time we jam any other
6385      * threads: No visible state changes before acquiring the lock. */
6386     ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6387
6388     if (ofproto->n_groups[gm->type] >= ofproto->ogf.max_groups[gm->type]) {
6389         error = OFPERR_OFPGMFC_OUT_OF_GROUPS;
6390         goto unlock_out;
6391     }
6392
6393     if (ofproto_group_exists__(ofproto, gm->group_id)) {
6394         error = OFPERR_OFPGMFC_GROUP_EXISTS;
6395         goto unlock_out;
6396     }
6397
6398     if (!error) {
6399         /* Insert new group. */
6400         hmap_insert(&ofproto->groups, &ofgroup->hmap_node,
6401                     hash_int(ofgroup->group_id, 0));
6402         ofproto->n_groups[ofgroup->type]++;
6403
6404         ovs_rwlock_unlock(&ofproto->groups_rwlock);
6405         return error;
6406     }
6407
6408  unlock_out:
6409     ovs_rwlock_unlock(&ofproto->groups_rwlock);
6410     ofproto->ofproto_class->group_destruct(ofgroup);
6411     ofputil_bucket_list_destroy(&ofgroup->buckets);
6412     ofproto->ofproto_class->group_dealloc(ofgroup);
6413
6414     return error;
6415 }
6416
6417 /* Adds all of the buckets from 'ofgroup' to 'new_ofgroup'.  The buckets
6418  * already in 'new_ofgroup' will be placed just after the (copy of the) bucket
6419  * in 'ofgroup' with bucket ID 'command_bucket_id'.  Special
6420  * 'command_bucket_id' values OFPG15_BUCKET_FIRST and OFPG15_BUCKET_LAST are
6421  * also honored. */
6422 static enum ofperr
6423 copy_buckets_for_insert_bucket(const struct ofgroup *ofgroup,
6424                                struct ofgroup *new_ofgroup,
6425                                uint32_t command_bucket_id)
6426 {
6427     struct ofputil_bucket *last = NULL;
6428
6429     if (command_bucket_id <= OFPG15_BUCKET_MAX) {
6430         /* Check here to ensure that a bucket corresponding to
6431          * command_bucket_id exists in the old bucket list.
6432          *
6433          * The subsequent search of below of new_ofgroup covers
6434          * both buckets in the old bucket list and buckets added
6435          * by the insert buckets group mod message this function processes. */
6436         if (!ofputil_bucket_find(&ofgroup->buckets, command_bucket_id)) {
6437             return OFPERR_OFPGMFC_UNKNOWN_BUCKET;
6438         }
6439
6440         if (!list_is_empty(&new_ofgroup->buckets)) {
6441             last = ofputil_bucket_list_back(&new_ofgroup->buckets);
6442         }
6443     }
6444
6445     ofputil_bucket_clone_list(&new_ofgroup->buckets, &ofgroup->buckets, NULL);
6446
6447     if (ofputil_bucket_check_duplicate_id(&new_ofgroup->buckets)) {
6448             VLOG_INFO_RL(&rl, "Duplicate bucket id");
6449             return OFPERR_OFPGMFC_BUCKET_EXISTS;
6450     }
6451
6452     /* Rearrange list according to command_bucket_id */
6453     if (command_bucket_id == OFPG15_BUCKET_LAST) {
6454         if (!list_is_empty(&ofgroup->buckets)) {
6455             struct ofputil_bucket *new_first;
6456             const struct ofputil_bucket *first;
6457
6458             first = ofputil_bucket_list_front(&ofgroup->buckets);
6459             new_first = ofputil_bucket_find(&new_ofgroup->buckets,
6460                                             first->bucket_id);
6461
6462             list_splice(new_ofgroup->buckets.next, &new_first->list_node,
6463                         &new_ofgroup->buckets);
6464         }
6465     } else if (command_bucket_id <= OFPG15_BUCKET_MAX && last) {
6466         struct ofputil_bucket *after;
6467
6468         /* Presence of bucket is checked above so after should never be NULL */
6469         after = ofputil_bucket_find(&new_ofgroup->buckets, command_bucket_id);
6470
6471         list_splice(after->list_node.next, new_ofgroup->buckets.next,
6472                     last->list_node.next);
6473     }
6474
6475     return 0;
6476 }
6477
6478 /* Appends all of the a copy of all the buckets from 'ofgroup' to 'new_ofgroup'
6479  * with the exception of the bucket whose bucket id is 'command_bucket_id'.
6480  * Special 'command_bucket_id' values OFPG15_BUCKET_FIRST, OFPG15_BUCKET_LAST
6481  * and OFPG15_BUCKET_ALL are also honored. */
6482 static enum ofperr
6483 copy_buckets_for_remove_bucket(const struct ofgroup *ofgroup,
6484                                struct ofgroup *new_ofgroup,
6485                                uint32_t command_bucket_id)
6486 {
6487     const struct ofputil_bucket *skip = NULL;
6488
6489     if (command_bucket_id == OFPG15_BUCKET_ALL) {
6490         return 0;
6491     }
6492
6493     if (command_bucket_id == OFPG15_BUCKET_FIRST) {
6494         if (!list_is_empty(&ofgroup->buckets)) {
6495             skip = ofputil_bucket_list_front(&ofgroup->buckets);
6496         }
6497     } else if (command_bucket_id == OFPG15_BUCKET_LAST) {
6498         if (!list_is_empty(&ofgroup->buckets)) {
6499             skip = ofputil_bucket_list_back(&ofgroup->buckets);
6500         }
6501     } else {
6502         skip = ofputil_bucket_find(&ofgroup->buckets, command_bucket_id);
6503         if (!skip) {
6504             return OFPERR_OFPGMFC_UNKNOWN_BUCKET;
6505         }
6506     }
6507
6508     ofputil_bucket_clone_list(&new_ofgroup->buckets, &ofgroup->buckets, skip);
6509
6510     return 0;
6511 }
6512
6513 /* Implements OFPGC11_MODIFY, OFPGC15_INSERT_BUCKET and
6514  * OFPGC15_REMOVE_BUCKET.  Returns 0 on success or an OpenFlow error code
6515  * on failure.
6516  *
6517  * Note that the group is re-created and then replaces the old group in
6518  * ofproto's ofgroup hash map. Thus, the group is never altered while users of
6519  * the xlate module hold a pointer to the group. */
6520 static enum ofperr
6521 modify_group(struct ofproto *ofproto, const struct ofputil_group_mod *gm)
6522 {
6523     struct ofgroup *ofgroup, *new_ofgroup, *retiring;
6524     enum ofperr error;
6525
6526     error = init_group(ofproto, gm, &new_ofgroup);
6527     if (error) {
6528         return error;
6529     }
6530
6531     retiring = new_ofgroup;
6532
6533     ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6534     if (!ofproto_group_lookup__(ofproto, gm->group_id, &ofgroup)) {
6535         error = OFPERR_OFPGMFC_UNKNOWN_GROUP;
6536         goto out;
6537     }
6538
6539     /* Ofproto's group write lock is held now. */
6540     if (ofgroup->type != gm->type
6541         && ofproto->n_groups[gm->type] >= ofproto->ogf.max_groups[gm->type]) {
6542         error = OFPERR_OFPGMFC_OUT_OF_GROUPS;
6543         goto out;
6544     }
6545
6546     /* Manipulate bucket list for bucket commands */
6547     if (gm->command == OFPGC15_INSERT_BUCKET) {
6548         error = copy_buckets_for_insert_bucket(ofgroup, new_ofgroup,
6549                                                gm->command_bucket_id);
6550     } else if (gm->command == OFPGC15_REMOVE_BUCKET) {
6551         error = copy_buckets_for_remove_bucket(ofgroup, new_ofgroup,
6552                                                gm->command_bucket_id);
6553     }
6554     if (error) {
6555         goto out;
6556     }
6557
6558     /* The group creation time does not change during modification. */
6559     *CONST_CAST(long long int *, &(new_ofgroup->created)) = ofgroup->created;
6560     *CONST_CAST(long long int *, &(new_ofgroup->modified)) = time_msec();
6561
6562     error = ofproto->ofproto_class->group_modify(new_ofgroup);
6563     if (error) {
6564         goto out;
6565     }
6566
6567     retiring = ofgroup;
6568     /* Replace ofgroup in ofproto's groups hash map with new_ofgroup. */
6569     hmap_remove(&ofproto->groups, &ofgroup->hmap_node);
6570     hmap_insert(&ofproto->groups, &new_ofgroup->hmap_node,
6571                 hash_int(new_ofgroup->group_id, 0));
6572     if (ofgroup->type != new_ofgroup->type) {
6573         ofproto->n_groups[ofgroup->type]--;
6574         ofproto->n_groups[new_ofgroup->type]++;
6575     }
6576
6577 out:
6578     ofproto_group_unref(retiring);
6579     ovs_rwlock_unlock(&ofproto->groups_rwlock);
6580     return error;
6581 }
6582
6583 static void
6584 delete_group__(struct ofproto *ofproto, struct ofgroup *ofgroup)
6585     OVS_RELEASES(ofproto->groups_rwlock)
6586 {
6587     struct match match;
6588     struct ofproto_flow_mod ofm;
6589
6590     /* Delete all flow entries containing this group in a group action */
6591     match_init_catchall(&match);
6592     flow_mod_init(&ofm.fm, &match, 0, NULL, 0, OFPFC_DELETE);
6593     ofm.fm.delete_reason = OFPRR_GROUP_DELETE;
6594     ofm.fm.out_group = ofgroup->group_id;
6595     ofm.fm.table_id = OFPTT_ALL;
6596     handle_flow_mod__(ofproto, &ofm, NULL);
6597
6598     hmap_remove(&ofproto->groups, &ofgroup->hmap_node);
6599     /* No-one can find this group any more. */
6600     ofproto->n_groups[ofgroup->type]--;
6601     ovs_rwlock_unlock(&ofproto->groups_rwlock);
6602     ofproto_group_unref(ofgroup);
6603 }
6604
6605 /* Implements OFPGC11_DELETE. */
6606 static void
6607 delete_group(struct ofproto *ofproto, uint32_t group_id)
6608 {
6609     struct ofgroup *ofgroup;
6610
6611     ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6612     if (group_id == OFPG_ALL) {
6613         for (;;) {
6614             struct hmap_node *node = hmap_first(&ofproto->groups);
6615             if (!node) {
6616                 break;
6617             }
6618             ofgroup = CONTAINER_OF(node, struct ofgroup, hmap_node);
6619             delete_group__(ofproto, ofgroup);
6620             /* Lock for each node separately, so that we will not jam the
6621              * other threads for too long time. */
6622             ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6623         }
6624     } else {
6625         HMAP_FOR_EACH_IN_BUCKET (ofgroup, hmap_node,
6626                                  hash_int(group_id, 0), &ofproto->groups) {
6627             if (ofgroup->group_id == group_id) {
6628                 delete_group__(ofproto, ofgroup);
6629                 return;
6630             }
6631         }
6632     }
6633     ovs_rwlock_unlock(&ofproto->groups_rwlock);
6634 }
6635
6636 /* Delete all groups from 'ofproto'.
6637  *
6638  * This is intended for use within an ofproto provider's 'destruct'
6639  * function. */
6640 void
6641 ofproto_group_delete_all(struct ofproto *ofproto)
6642 {
6643     delete_group(ofproto, OFPG_ALL);
6644 }
6645
6646 static enum ofperr
6647 handle_group_mod(struct ofconn *ofconn, const struct ofp_header *oh)
6648 {
6649     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6650     struct ofputil_group_mod gm;
6651     enum ofperr error;
6652
6653     error = reject_slave_controller(ofconn);
6654     if (error) {
6655         return error;
6656     }
6657
6658     error = ofputil_decode_group_mod(oh, &gm);
6659     if (error) {
6660         return error;
6661     }
6662
6663     switch (gm.command) {
6664     case OFPGC11_ADD:
6665         error = add_group(ofproto, &gm);
6666         break;
6667
6668     case OFPGC11_MODIFY:
6669         error = modify_group(ofproto, &gm);
6670         break;
6671
6672     case OFPGC11_DELETE:
6673         delete_group(ofproto, gm.group_id);
6674         error = 0;
6675         break;
6676
6677     case OFPGC15_INSERT_BUCKET:
6678         error = modify_group(ofproto, &gm);
6679         break;
6680
6681     case OFPGC15_REMOVE_BUCKET:
6682         error = modify_group(ofproto, &gm);
6683         break;
6684
6685     default:
6686         if (gm.command > OFPGC11_DELETE) {
6687             VLOG_INFO_RL(&rl, "%s: Invalid group_mod command type %d",
6688                          ofproto->name, gm.command);
6689         }
6690         error = OFPERR_OFPGMFC_BAD_COMMAND;
6691     }
6692
6693     if (!error) {
6694         struct ofputil_requestforward rf;
6695         rf.xid = oh->xid;
6696         rf.reason = OFPRFR_GROUP_MOD;
6697         rf.group_mod = &gm;
6698         connmgr_send_requestforward(ofproto->connmgr, ofconn, &rf);
6699     }
6700     ofputil_bucket_list_destroy(&gm.buckets);
6701
6702     return error;
6703 }
6704
6705 enum ofputil_table_miss
6706 ofproto_table_get_miss_config(const struct ofproto *ofproto, uint8_t table_id)
6707 {
6708     enum ofputil_table_miss miss;
6709
6710     atomic_read_relaxed(&ofproto->tables[table_id].miss_config, &miss);
6711     return miss;
6712 }
6713
6714 static void
6715 table_mod__(struct oftable *oftable,
6716             const struct ofputil_table_mod *tm)
6717 {
6718     if (tm->miss == OFPUTIL_TABLE_MISS_DEFAULT) {
6719         /* This is how an OFPT_TABLE_MOD decodes if it doesn't specify any
6720          * table-miss configuration (because the protocol used doesn't have
6721          * such a concept), so there's nothing to do. */
6722     } else {
6723         atomic_store_relaxed(&oftable->miss_config, tm->miss);
6724     }
6725
6726     unsigned int new_eviction = oftable->eviction;
6727     if (tm->eviction == OFPUTIL_TABLE_EVICTION_ON) {
6728         new_eviction |= EVICTION_OPENFLOW;
6729     } else if (tm->eviction == OFPUTIL_TABLE_EVICTION_OFF) {
6730         new_eviction &= ~EVICTION_OPENFLOW;
6731     }
6732
6733     if (new_eviction != oftable->eviction) {
6734         ovs_mutex_lock(&ofproto_mutex);
6735         oftable_configure_eviction(oftable, new_eviction,
6736                                    oftable->eviction_fields,
6737                                    oftable->n_eviction_fields);
6738         ovs_mutex_unlock(&ofproto_mutex);
6739     }
6740
6741     if (tm->vacancy != OFPUTIL_TABLE_VACANCY_DEFAULT) {
6742         ovs_mutex_lock(&ofproto_mutex);
6743         oftable->vacancy_enabled = (tm->vacancy == OFPUTIL_TABLE_VACANCY_ON
6744                                     ? OFPTC14_VACANCY_EVENTS
6745                                     : 0);
6746         oftable->vacancy_down = tm->table_vacancy.vacancy_down;
6747         oftable->vacancy_up = tm->table_vacancy.vacancy_up;
6748         ovs_mutex_unlock(&ofproto_mutex);
6749     }
6750 }
6751
6752 static enum ofperr
6753 table_mod(struct ofproto *ofproto, const struct ofputil_table_mod *tm)
6754 {
6755     if (!check_table_id(ofproto, tm->table_id)) {
6756         return OFPERR_OFPTMFC_BAD_TABLE;
6757     }
6758
6759     /* Don't allow the eviction flags to be changed (except to the only fixed
6760      * value that OVS supports).  OF1.4 says this is normal: "The
6761      * OFPTMPT_EVICTION property usually cannot be modified using a
6762      * OFP_TABLE_MOD request, because the eviction mechanism is switch
6763      * defined". */
6764     if (tm->eviction_flags != UINT32_MAX
6765         && tm->eviction_flags != OFPROTO_EVICTION_FLAGS) {
6766         return OFPERR_OFPTMFC_BAD_CONFIG;
6767     }
6768
6769     if (tm->table_id == OFPTT_ALL) {
6770         struct oftable *oftable;
6771         OFPROTO_FOR_EACH_TABLE (oftable, ofproto) {
6772             if (!(oftable->flags & (OFTABLE_HIDDEN | OFTABLE_READONLY))) {
6773                 table_mod__(oftable, tm);
6774             }
6775         }
6776     } else {
6777         struct oftable *oftable = &ofproto->tables[tm->table_id];
6778         if (oftable->flags & OFTABLE_READONLY) {
6779             return OFPERR_OFPTMFC_EPERM;
6780         }
6781         table_mod__(oftable, tm);
6782     }
6783
6784     return 0;
6785 }
6786
6787 static enum ofperr
6788 handle_table_mod(struct ofconn *ofconn, const struct ofp_header *oh)
6789 {
6790     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6791     struct ofputil_table_mod tm;
6792     enum ofperr error;
6793
6794     error = reject_slave_controller(ofconn);
6795     if (error) {
6796         return error;
6797     }
6798
6799     error = ofputil_decode_table_mod(oh, &tm);
6800     if (error) {
6801         return error;
6802     }
6803
6804     return table_mod(ofproto, &tm);
6805 }
6806
6807 static enum ofperr
6808 ofproto_flow_mod_start(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
6809     OVS_REQUIRES(ofproto_mutex)
6810 {
6811     switch (ofm->fm.command) {
6812     case OFPFC_ADD:
6813         return add_flow_start(ofproto, ofm);
6814         /* , &be->old_rules.stub[0],
6815            &be->new_rules.stub[0]); */
6816     case OFPFC_MODIFY:
6817         return modify_flows_start_loose(ofproto, ofm);
6818     case OFPFC_MODIFY_STRICT:
6819         return modify_flow_start_strict(ofproto, ofm);
6820     case OFPFC_DELETE:
6821         return delete_flows_start_loose(ofproto, ofm);
6822
6823     case OFPFC_DELETE_STRICT:
6824         return delete_flow_start_strict(ofproto, ofm);
6825     }
6826
6827     return OFPERR_OFPFMFC_BAD_COMMAND;
6828 }
6829
6830 static void
6831 ofproto_flow_mod_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
6832     OVS_REQUIRES(ofproto_mutex)
6833 {
6834     switch (ofm->fm.command) {
6835     case OFPFC_ADD:
6836         add_flow_revert(ofproto, ofm);
6837         break;
6838
6839     case OFPFC_MODIFY:
6840     case OFPFC_MODIFY_STRICT:
6841         modify_flows_revert(ofproto, ofm);
6842         break;
6843
6844     case OFPFC_DELETE:
6845     case OFPFC_DELETE_STRICT:
6846         delete_flows_revert(ofproto, ofm);
6847         break;
6848
6849     default:
6850         break;
6851     }
6852 }
6853
6854 static void
6855 ofproto_flow_mod_finish(struct ofproto *ofproto,
6856                         struct ofproto_flow_mod *ofm,
6857                         const struct flow_mod_requester *req)
6858     OVS_REQUIRES(ofproto_mutex)
6859 {
6860     switch (ofm->fm.command) {
6861     case OFPFC_ADD:
6862         add_flow_finish(ofproto, ofm, req);
6863         break;
6864
6865     case OFPFC_MODIFY:
6866     case OFPFC_MODIFY_STRICT:
6867         modify_flows_finish(ofproto, ofm, req);
6868         break;
6869
6870     case OFPFC_DELETE:
6871     case OFPFC_DELETE_STRICT:
6872         delete_flows_finish(ofproto, ofm, req);
6873         break;
6874
6875     default:
6876         break;
6877     }
6878 }
6879
6880 /* Commit phases (all while locking ofproto_mutex):
6881  *
6882  * 1. Begin: Gather resources and make changes visible in the next version.
6883  *           - Mark affected rules for removal in the next version.
6884  *           - Create new replacement rules, make visible in the next
6885  *             version.
6886  *           - Do not send any events or notifications.
6887  *
6888  * 2. Revert: Fail if any errors are found.  After this point no errors are
6889  * possible.  No visible changes were made, so rollback is minimal (remove
6890  * added invisible rules, restore visibility of rules marked for removal).
6891  *
6892  * 3. Finish: Make the changes visible for lookups. Insert replacement rules to
6893  * the ofproto provider. Remove replaced and deleted rules from ofproto data
6894  * structures, and Schedule postponed removal of deleted rules from the
6895  * classifier.  Send notifications, buffered packets, etc.
6896  */
6897 static enum ofperr
6898 do_bundle_commit(struct ofconn *ofconn, uint32_t id, uint16_t flags)
6899 {
6900     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6901     cls_version_t version = ofproto->tables_version + 1;
6902     struct ofp_bundle *bundle;
6903     struct ofp_bundle_entry *be;
6904     enum ofperr error;
6905
6906     bundle = ofconn_get_bundle(ofconn, id);
6907
6908     if (!bundle) {
6909         return OFPERR_OFPBFC_BAD_ID;
6910     }
6911     if (bundle->flags != flags) {
6912         error = OFPERR_OFPBFC_BAD_FLAGS;
6913     } else {
6914         bool prev_is_port_mod = false;
6915
6916         error = 0;
6917         ovs_mutex_lock(&ofproto_mutex);
6918
6919         /* 1. Begin. */
6920         LIST_FOR_EACH (be, node, &bundle->msg_list) {
6921             if (be->type == OFPTYPE_PORT_MOD) {
6922                 /* Our port mods are not atomic. */
6923                 if (flags & OFPBF_ATOMIC) {
6924                     error = OFPERR_OFPBFC_MSG_FAILED;
6925                 } else {
6926                     prev_is_port_mod = true;
6927                     error = port_mod_start(ofconn, &be->opm.pm, &be->opm.port);
6928                 }
6929             } else if (be->type == OFPTYPE_FLOW_MOD) {
6930                 /* Flow mods between port mods are applied as a single
6931                  * version, but the versions are published only after
6932                  * we know the commit is successful. */
6933                 if (prev_is_port_mod) {
6934                     ++version;
6935                 }
6936                 prev_is_port_mod = false;
6937                 /* Store the version in which the changes should take
6938                  * effect. */
6939                 be->ofm.version = version;
6940                 error = ofproto_flow_mod_start(ofproto, &be->ofm);
6941             } else {
6942                 OVS_NOT_REACHED();
6943             }
6944             if (error) {
6945                 break;
6946             }
6947         }
6948
6949         if (error) {
6950             /* Send error referring to the original message. */
6951             if (error) {
6952                 ofconn_send_error(ofconn, be->ofp_msg, error);
6953                 error = OFPERR_OFPBFC_MSG_FAILED;
6954             }
6955
6956             /* 2. Revert.  Undo all the changes made above. */
6957             LIST_FOR_EACH_REVERSE_CONTINUE(be, node, &bundle->msg_list) {
6958                 if (be->type == OFPTYPE_FLOW_MOD) {
6959                     ofproto_flow_mod_revert(ofproto, &be->ofm);
6960                 }
6961                 /* Nothing needs to be reverted for a port mod. */
6962             }
6963         } else {
6964             /* 4. Finish. */
6965             LIST_FOR_EACH (be, node, &bundle->msg_list) {
6966                 if (be->type == OFPTYPE_FLOW_MOD) {
6967                     struct flow_mod_requester req = { ofconn, be->ofp_msg };
6968
6969                     /* Bump the lookup version to the one of the current
6970                      * message.  This makes all the changes in the bundle at
6971                      * this version visible to lookups at once. */
6972                     if (ofproto->tables_version < be->ofm.version) {
6973                         ofproto->tables_version = be->ofm.version;
6974                         ofproto->ofproto_class->set_tables_version(
6975                             ofproto, ofproto->tables_version);
6976                     }
6977
6978                     ofproto_flow_mod_finish(ofproto, &be->ofm, &req);
6979                 } else if (be->type == OFPTYPE_PORT_MOD) {
6980                     /* Perform the actual port mod. This is not atomic, i.e.,
6981                      * the effects will be immediately seen by upcall
6982                      * processing regardless of the lookup version.  It should
6983                      * be noted that port configuration changes can originate
6984                      * also from OVSDB changes asynchronously to all upcall
6985                      * processing. */
6986                     port_mod_finish(ofconn, &be->opm.pm, be->opm.port);
6987                 }
6988             }
6989         }
6990
6991         ofmonitor_flush(ofproto->connmgr);
6992         ovs_mutex_unlock(&ofproto_mutex);
6993
6994         run_rule_executes(ofproto);
6995     }
6996
6997     /* The bundle is discarded regardless the outcome. */
6998     ofp_bundle_remove__(ofconn, bundle, !error);
6999     return error;
7000 }
7001
7002 static enum ofperr
7003 handle_bundle_control(struct ofconn *ofconn, const struct ofp_header *oh)
7004 {
7005     struct ofputil_bundle_ctrl_msg bctrl;
7006     struct ofputil_bundle_ctrl_msg reply;
7007     struct ofpbuf *buf;
7008     enum ofperr error;
7009
7010     error = reject_slave_controller(ofconn);
7011     if (error) {
7012         return error;
7013     }
7014
7015     error = ofputil_decode_bundle_ctrl(oh, &bctrl);
7016     if (error) {
7017         return error;
7018     }
7019     reply.flags = 0;
7020     reply.bundle_id = bctrl.bundle_id;
7021
7022     switch (bctrl.type) {
7023         case OFPBCT_OPEN_REQUEST:
7024         error = ofp_bundle_open(ofconn, bctrl.bundle_id, bctrl.flags);
7025         reply.type = OFPBCT_OPEN_REPLY;
7026         break;
7027     case OFPBCT_CLOSE_REQUEST:
7028         error = ofp_bundle_close(ofconn, bctrl.bundle_id, bctrl.flags);
7029         reply.type = OFPBCT_CLOSE_REPLY;
7030         break;
7031     case OFPBCT_COMMIT_REQUEST:
7032         error = do_bundle_commit(ofconn, bctrl.bundle_id, bctrl.flags);
7033         reply.type = OFPBCT_COMMIT_REPLY;
7034         break;
7035     case OFPBCT_DISCARD_REQUEST:
7036         error = ofp_bundle_discard(ofconn, bctrl.bundle_id);
7037         reply.type = OFPBCT_DISCARD_REPLY;
7038         break;
7039
7040     case OFPBCT_OPEN_REPLY:
7041     case OFPBCT_CLOSE_REPLY:
7042     case OFPBCT_COMMIT_REPLY:
7043     case OFPBCT_DISCARD_REPLY:
7044         return OFPERR_OFPBFC_BAD_TYPE;
7045         break;
7046     }
7047
7048     if (!error) {
7049         buf = ofputil_encode_bundle_ctrl_reply(oh, &reply);
7050         ofconn_send_reply(ofconn, buf);
7051     }
7052     return error;
7053 }
7054
7055 static enum ofperr
7056 handle_bundle_add(struct ofconn *ofconn, const struct ofp_header *oh)
7057 {
7058     struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
7059     enum ofperr error;
7060     struct ofputil_bundle_add_msg badd;
7061     struct ofp_bundle_entry *bmsg;
7062     enum ofptype type;
7063
7064     error = reject_slave_controller(ofconn);
7065     if (error) {
7066         return error;
7067     }
7068
7069     error = ofputil_decode_bundle_add(oh, &badd, &type);
7070     if (error) {
7071         return error;
7072     }
7073
7074     bmsg = ofp_bundle_entry_alloc(type, badd.msg);
7075
7076     if (type == OFPTYPE_PORT_MOD) {
7077         error = ofputil_decode_port_mod(badd.msg, &bmsg->opm.pm, false);
7078     } else if (type == OFPTYPE_FLOW_MOD) {
7079         struct ofpbuf ofpacts;
7080         uint64_t ofpacts_stub[1024 / 8];
7081
7082         ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
7083         error = ofputil_decode_flow_mod(&bmsg->ofm.fm, badd.msg,
7084                                         ofconn_get_protocol(ofconn),
7085                                         &ofpacts,
7086                                         u16_to_ofp(ofproto->max_ports),
7087                                         ofproto->n_tables);
7088         /* Move actions to heap. */
7089         bmsg->ofm.fm.ofpacts = ofpbuf_steal_data(&ofpacts);
7090
7091         if (!error && bmsg->ofm.fm.ofpacts_len) {
7092             error = ofproto_check_ofpacts(ofproto, bmsg->ofm.fm.ofpacts,
7093                                           bmsg->ofm.fm.ofpacts_len);
7094         }
7095     } else {
7096         OVS_NOT_REACHED();
7097     }
7098
7099     if (!error) {
7100         error = ofp_bundle_add_message(ofconn, badd.bundle_id, badd.flags,
7101                                        bmsg);
7102     }
7103
7104     if (error) {
7105         ofp_bundle_entry_free(bmsg);
7106     }
7107
7108     return error;
7109 }
7110
7111 static enum ofperr
7112 handle_tlv_table_mod(struct ofconn *ofconn, const struct ofp_header *oh)
7113 {
7114     struct ofputil_tlv_table_mod ttm;
7115     enum ofperr error;
7116
7117     error = reject_slave_controller(ofconn);
7118     if (error) {
7119         return error;
7120     }
7121
7122     error = ofputil_decode_tlv_table_mod(oh, &ttm);
7123     if (error) {
7124         return error;
7125     }
7126
7127     error = tun_metadata_table_mod(&ttm);
7128
7129     ofputil_uninit_tlv_table(&ttm.mappings);
7130     return error;
7131 }
7132
7133 static enum ofperr
7134 handle_tlv_table_request(struct ofconn *ofconn, const struct ofp_header *oh)
7135 {
7136     struct ofputil_tlv_table_reply ttr;
7137     struct ofpbuf *b;
7138
7139     tun_metadata_table_request(&ttr);
7140     b = ofputil_encode_tlv_table_reply(oh, &ttr);
7141     ofputil_uninit_tlv_table(&ttr.mappings);
7142
7143     ofconn_send_reply(ofconn, b);
7144     return 0;
7145 }
7146
7147 static enum ofperr
7148 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
7149     OVS_EXCLUDED(ofproto_mutex)
7150 {
7151     const struct ofp_header *oh = msg->data;
7152     enum ofptype type;
7153     enum ofperr error;
7154
7155     error = ofptype_decode(&type, oh);
7156     if (error) {
7157         return error;
7158     }
7159     if (oh->version >= OFP13_VERSION && ofpmsg_is_stat_request(oh)
7160         && ofpmp_more(oh)) {
7161         /* We have no buffer implementation for multipart requests.
7162          * Report overflow for requests which consists of multiple
7163          * messages. */
7164         return OFPERR_OFPBRC_MULTIPART_BUFFER_OVERFLOW;
7165     }
7166
7167     switch (type) {
7168         /* OpenFlow requests. */
7169     case OFPTYPE_ECHO_REQUEST:
7170         return handle_echo_request(ofconn, oh);
7171
7172     case OFPTYPE_FEATURES_REQUEST:
7173         return handle_features_request(ofconn, oh);
7174
7175     case OFPTYPE_GET_CONFIG_REQUEST:
7176         return handle_get_config_request(ofconn, oh);
7177
7178     case OFPTYPE_SET_CONFIG:
7179         return handle_set_config(ofconn, oh);
7180
7181     case OFPTYPE_PACKET_OUT:
7182         return handle_packet_out(ofconn, oh);
7183
7184     case OFPTYPE_PORT_MOD:
7185         return handle_port_mod(ofconn, oh);
7186
7187     case OFPTYPE_FLOW_MOD:
7188         return handle_flow_mod(ofconn, oh);
7189
7190     case OFPTYPE_GROUP_MOD:
7191         return handle_group_mod(ofconn, oh);
7192
7193     case OFPTYPE_TABLE_MOD:
7194         return handle_table_mod(ofconn, oh);
7195
7196     case OFPTYPE_METER_MOD:
7197         return handle_meter_mod(ofconn, oh);
7198
7199     case OFPTYPE_BARRIER_REQUEST:
7200         return handle_barrier_request(ofconn, oh);
7201
7202     case OFPTYPE_ROLE_REQUEST:
7203         return handle_role_request(ofconn, oh);
7204
7205         /* OpenFlow replies. */
7206     case OFPTYPE_ECHO_REPLY:
7207         return 0;
7208
7209         /* Nicira extension requests. */
7210     case OFPTYPE_FLOW_MOD_TABLE_ID:
7211         return handle_nxt_flow_mod_table_id(ofconn, oh);
7212
7213     case OFPTYPE_SET_FLOW_FORMAT:
7214         return handle_nxt_set_flow_format(ofconn, oh);
7215
7216     case OFPTYPE_SET_PACKET_IN_FORMAT:
7217         return handle_nxt_set_packet_in_format(ofconn, oh);
7218
7219     case OFPTYPE_SET_CONTROLLER_ID:
7220         return handle_nxt_set_controller_id(ofconn, oh);
7221
7222     case OFPTYPE_FLOW_AGE:
7223         /* Nothing to do. */
7224         return 0;
7225
7226     case OFPTYPE_FLOW_MONITOR_CANCEL:
7227         return handle_flow_monitor_cancel(ofconn, oh);
7228
7229     case OFPTYPE_SET_ASYNC_CONFIG:
7230         return handle_nxt_set_async_config(ofconn, oh);
7231
7232     case OFPTYPE_GET_ASYNC_REQUEST:
7233         return handle_nxt_get_async_request(ofconn, oh);
7234
7235     case OFPTYPE_NXT_RESUME:
7236         return handle_nxt_resume(ofconn, oh);
7237
7238         /* Statistics requests. */
7239     case OFPTYPE_DESC_STATS_REQUEST:
7240         return handle_desc_stats_request(ofconn, oh);
7241
7242     case OFPTYPE_FLOW_STATS_REQUEST:
7243         return handle_flow_stats_request(ofconn, oh);
7244
7245     case OFPTYPE_AGGREGATE_STATS_REQUEST:
7246         return handle_aggregate_stats_request(ofconn, oh);
7247
7248     case OFPTYPE_TABLE_STATS_REQUEST:
7249         return handle_table_stats_request(ofconn, oh);
7250
7251     case OFPTYPE_TABLE_FEATURES_STATS_REQUEST:
7252         return handle_table_features_request(ofconn, oh);
7253
7254     case OFPTYPE_TABLE_DESC_REQUEST:
7255         return handle_table_desc_request(ofconn, oh);
7256
7257     case OFPTYPE_PORT_STATS_REQUEST:
7258         return handle_port_stats_request(ofconn, oh);
7259
7260     case OFPTYPE_QUEUE_STATS_REQUEST:
7261         return handle_queue_stats_request(ofconn, oh);
7262
7263     case OFPTYPE_PORT_DESC_STATS_REQUEST:
7264         return handle_port_desc_stats_request(ofconn, oh);
7265
7266     case OFPTYPE_FLOW_MONITOR_STATS_REQUEST:
7267         return handle_flow_monitor_request(ofconn, oh);
7268
7269     case OFPTYPE_METER_STATS_REQUEST:
7270     case OFPTYPE_METER_CONFIG_STATS_REQUEST:
7271         return handle_meter_request(ofconn, oh, type);
7272
7273     case OFPTYPE_METER_FEATURES_STATS_REQUEST:
7274         return handle_meter_features_request(ofconn, oh);
7275
7276     case OFPTYPE_GROUP_STATS_REQUEST:
7277         return handle_group_stats_request(ofconn, oh);
7278
7279     case OFPTYPE_GROUP_DESC_STATS_REQUEST:
7280         return handle_group_desc_stats_request(ofconn, oh);
7281
7282     case OFPTYPE_GROUP_FEATURES_STATS_REQUEST:
7283         return handle_group_features_stats_request(ofconn, oh);
7284
7285     case OFPTYPE_QUEUE_GET_CONFIG_REQUEST:
7286         return handle_queue_get_config_request(ofconn, oh);
7287
7288     case OFPTYPE_BUNDLE_CONTROL:
7289         return handle_bundle_control(ofconn, oh);
7290
7291     case OFPTYPE_BUNDLE_ADD_MESSAGE:
7292         return handle_bundle_add(ofconn, oh);
7293
7294     case OFPTYPE_NXT_TLV_TABLE_MOD:
7295         return handle_tlv_table_mod(ofconn, oh);
7296
7297     case OFPTYPE_NXT_TLV_TABLE_REQUEST:
7298         return handle_tlv_table_request(ofconn, oh);
7299
7300     case OFPTYPE_HELLO:
7301     case OFPTYPE_ERROR:
7302     case OFPTYPE_FEATURES_REPLY:
7303     case OFPTYPE_GET_CONFIG_REPLY:
7304     case OFPTYPE_PACKET_IN:
7305     case OFPTYPE_FLOW_REMOVED:
7306     case OFPTYPE_PORT_STATUS:
7307     case OFPTYPE_BARRIER_REPLY:
7308     case OFPTYPE_QUEUE_GET_CONFIG_REPLY:
7309     case OFPTYPE_DESC_STATS_REPLY:
7310     case OFPTYPE_FLOW_STATS_REPLY:
7311     case OFPTYPE_QUEUE_STATS_REPLY:
7312     case OFPTYPE_PORT_STATS_REPLY:
7313     case OFPTYPE_TABLE_STATS_REPLY:
7314     case OFPTYPE_AGGREGATE_STATS_REPLY:
7315     case OFPTYPE_PORT_DESC_STATS_REPLY:
7316     case OFPTYPE_ROLE_REPLY:
7317     case OFPTYPE_FLOW_MONITOR_PAUSED:
7318     case OFPTYPE_FLOW_MONITOR_RESUMED:
7319     case OFPTYPE_FLOW_MONITOR_STATS_REPLY:
7320     case OFPTYPE_GET_ASYNC_REPLY:
7321     case OFPTYPE_GROUP_STATS_REPLY:
7322     case OFPTYPE_GROUP_DESC_STATS_REPLY:
7323     case OFPTYPE_GROUP_FEATURES_STATS_REPLY:
7324     case OFPTYPE_METER_STATS_REPLY:
7325     case OFPTYPE_METER_CONFIG_STATS_REPLY:
7326     case OFPTYPE_METER_FEATURES_STATS_REPLY:
7327     case OFPTYPE_TABLE_FEATURES_STATS_REPLY:
7328     case OFPTYPE_TABLE_DESC_REPLY:
7329     case OFPTYPE_ROLE_STATUS:
7330     case OFPTYPE_REQUESTFORWARD:
7331     case OFPTYPE_NXT_TLV_TABLE_REPLY:
7332     default:
7333         if (ofpmsg_is_stat_request(oh)) {
7334             return OFPERR_OFPBRC_BAD_STAT;
7335         } else {
7336             return OFPERR_OFPBRC_BAD_TYPE;
7337         }
7338     }
7339 }
7340
7341 static void
7342 handle_openflow(struct ofconn *ofconn, const struct ofpbuf *ofp_msg)
7343     OVS_EXCLUDED(ofproto_mutex)
7344 {
7345     enum ofperr error = handle_openflow__(ofconn, ofp_msg);
7346
7347     if (error) {
7348         ofconn_send_error(ofconn, ofp_msg->data, error);
7349     }
7350     COVERAGE_INC(ofproto_recv_openflow);
7351 }
7352 \f
7353 /* Asynchronous operations. */
7354
7355 static void
7356 send_buffered_packet(const struct flow_mod_requester *req, uint32_t buffer_id,
7357                      struct rule *rule)
7358     OVS_REQUIRES(ofproto_mutex)
7359 {
7360     if (req && req->ofconn && buffer_id != UINT32_MAX) {
7361         struct ofproto *ofproto = ofconn_get_ofproto(req->ofconn);
7362         struct dp_packet *packet;
7363         ofp_port_t in_port;
7364         enum ofperr error;
7365
7366         error = ofconn_pktbuf_retrieve(req->ofconn, buffer_id, &packet,
7367                                        &in_port);
7368         if (packet) {
7369             struct rule_execute *re;
7370
7371             ofproto_rule_ref(rule);
7372
7373             re = xmalloc(sizeof *re);
7374             re->rule = rule;
7375             re->in_port = in_port;
7376             re->packet = packet;
7377
7378             if (!guarded_list_push_back(&ofproto->rule_executes,
7379                                         &re->list_node, 1024)) {
7380                 ofproto_rule_unref(rule);
7381                 dp_packet_delete(re->packet);
7382                 free(re);
7383             }
7384         } else {
7385             ofconn_send_error(req->ofconn, req->request, error);
7386         }
7387     }
7388 }
7389 \f
7390 static uint64_t
7391 pick_datapath_id(const struct ofproto *ofproto)
7392 {
7393     const struct ofport *port;
7394
7395     port = ofproto_get_port(ofproto, OFPP_LOCAL);
7396     if (port) {
7397         struct eth_addr ea;
7398         int error;
7399
7400         error = netdev_get_etheraddr(port->netdev, &ea);
7401         if (!error) {
7402             return eth_addr_to_uint64(ea);
7403         }
7404         VLOG_WARN("%s: could not get MAC address for %s (%s)",
7405                   ofproto->name, netdev_get_name(port->netdev),
7406                   ovs_strerror(error));
7407     }
7408     return ofproto->fallback_dpid;
7409 }
7410
7411 static uint64_t
7412 pick_fallback_dpid(void)
7413 {
7414     struct eth_addr ea;
7415     eth_addr_nicira_random(&ea);
7416     return eth_addr_to_uint64(ea);
7417 }
7418 \f
7419 /* Table overflow policy. */
7420
7421 /* Chooses and updates 'rulep' with a rule to evict from 'table'.  Sets 'rulep'
7422  * to NULL if the table is not configured to evict rules or if the table
7423  * contains no evictable rules.  (Rules with a readlock on their evict rwlock,
7424  * or with no timeouts are not evictable.) */
7425 static bool
7426 choose_rule_to_evict(struct oftable *table, struct rule **rulep)
7427     OVS_REQUIRES(ofproto_mutex)
7428 {
7429     struct eviction_group *evg;
7430
7431     *rulep = NULL;
7432     if (!table->eviction) {
7433         return false;
7434     }
7435
7436     /* In the common case, the outer and inner loops here will each be entered
7437      * exactly once:
7438      *
7439      *   - The inner loop normally "return"s in its first iteration.  If the
7440      *     eviction group has any evictable rules, then it always returns in
7441      *     some iteration.
7442      *
7443      *   - The outer loop only iterates more than once if the largest eviction
7444      *     group has no evictable rules.
7445      *
7446      *   - The outer loop can exit only if table's 'max_flows' is all filled up
7447      *     by unevictable rules. */
7448     HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
7449         struct rule *rule;
7450
7451         HEAP_FOR_EACH (rule, evg_node, &evg->rules) {
7452             *rulep = rule;
7453             return true;
7454         }
7455     }
7456
7457     return false;
7458 }
7459 \f
7460 /* Eviction groups. */
7461
7462 /* Returns the priority to use for an eviction_group that contains 'n_rules'
7463  * rules.  The priority contains low-order random bits to ensure that eviction
7464  * groups with the same number of rules are prioritized randomly. */
7465 static uint32_t
7466 eviction_group_priority(size_t n_rules)
7467 {
7468     uint16_t size = MIN(UINT16_MAX, n_rules);
7469     return (size << 16) | random_uint16();
7470 }
7471
7472 /* Updates 'evg', an eviction_group within 'table', following a change that
7473  * adds or removes rules in 'evg'. */
7474 static void
7475 eviction_group_resized(struct oftable *table, struct eviction_group *evg)
7476     OVS_REQUIRES(ofproto_mutex)
7477 {
7478     heap_change(&table->eviction_groups_by_size, &evg->size_node,
7479                 eviction_group_priority(heap_count(&evg->rules)));
7480 }
7481
7482 /* Destroys 'evg', an eviction_group within 'table':
7483  *
7484  *   - Removes all the rules, if any, from 'evg'.  (It doesn't destroy the
7485  *     rules themselves, just removes them from the eviction group.)
7486  *
7487  *   - Removes 'evg' from 'table'.
7488  *
7489  *   - Frees 'evg'. */
7490 static void
7491 eviction_group_destroy(struct oftable *table, struct eviction_group *evg)
7492     OVS_REQUIRES(ofproto_mutex)
7493 {
7494     while (!heap_is_empty(&evg->rules)) {
7495         struct rule *rule;
7496
7497         rule = CONTAINER_OF(heap_pop(&evg->rules), struct rule, evg_node);
7498         rule->eviction_group = NULL;
7499     }
7500     hmap_remove(&table->eviction_groups_by_id, &evg->id_node);
7501     heap_remove(&table->eviction_groups_by_size, &evg->size_node);
7502     heap_destroy(&evg->rules);
7503     free(evg);
7504 }
7505
7506 /* Removes 'rule' from its eviction group, if any. */
7507 static void
7508 eviction_group_remove_rule(struct rule *rule)
7509     OVS_REQUIRES(ofproto_mutex)
7510 {
7511     if (rule->eviction_group) {
7512         struct oftable *table = &rule->ofproto->tables[rule->table_id];
7513         struct eviction_group *evg = rule->eviction_group;
7514
7515         rule->eviction_group = NULL;
7516         heap_remove(&evg->rules, &rule->evg_node);
7517         if (heap_is_empty(&evg->rules)) {
7518             eviction_group_destroy(table, evg);
7519         } else {
7520             eviction_group_resized(table, evg);
7521         }
7522     }
7523 }
7524
7525 /* Hashes the 'rule''s values for the eviction_fields of 'rule''s table, and
7526  * returns the hash value. */
7527 static uint32_t
7528 eviction_group_hash_rule(struct rule *rule)
7529     OVS_REQUIRES(ofproto_mutex)
7530 {
7531     struct oftable *table = &rule->ofproto->tables[rule->table_id];
7532     const struct mf_subfield *sf;
7533     struct flow flow;
7534     uint32_t hash;
7535
7536     hash = table->eviction_group_id_basis;
7537     miniflow_expand(rule->cr.match.flow, &flow);
7538     for (sf = table->eviction_fields;
7539          sf < &table->eviction_fields[table->n_eviction_fields];
7540          sf++)
7541     {
7542         if (mf_are_prereqs_ok(sf->field, &flow)) {
7543             union mf_value value;
7544
7545             mf_get_value(sf->field, &flow, &value);
7546             if (sf->ofs) {
7547                 bitwise_zero(&value, sf->field->n_bytes, 0, sf->ofs);
7548             }
7549             if (sf->ofs + sf->n_bits < sf->field->n_bytes * 8) {
7550                 unsigned int start = sf->ofs + sf->n_bits;
7551                 bitwise_zero(&value, sf->field->n_bytes, start,
7552                              sf->field->n_bytes * 8 - start);
7553             }
7554             hash = hash_bytes(&value, sf->field->n_bytes, hash);
7555         } else {
7556             hash = hash_int(hash, 0);
7557         }
7558     }
7559
7560     return hash;
7561 }
7562
7563 /* Returns an eviction group within 'table' with the given 'id', creating one
7564  * if necessary. */
7565 static struct eviction_group *
7566 eviction_group_find(struct oftable *table, uint32_t id)
7567     OVS_REQUIRES(ofproto_mutex)
7568 {
7569     struct eviction_group *evg;
7570
7571     HMAP_FOR_EACH_WITH_HASH (evg, id_node, id, &table->eviction_groups_by_id) {
7572         return evg;
7573     }
7574
7575     evg = xmalloc(sizeof *evg);
7576     hmap_insert(&table->eviction_groups_by_id, &evg->id_node, id);
7577     heap_insert(&table->eviction_groups_by_size, &evg->size_node,
7578                 eviction_group_priority(0));
7579     heap_init(&evg->rules);
7580
7581     return evg;
7582 }
7583
7584 /* Returns an eviction priority for 'rule'.  The return value should be
7585  * interpreted so that higher priorities make a rule a more attractive
7586  * candidate for eviction. */
7587 static uint64_t
7588 rule_eviction_priority(struct ofproto *ofproto, struct rule *rule)
7589     OVS_REQUIRES(ofproto_mutex)
7590 {
7591     /* Calculate absolute time when this flow will expire.  If it will never
7592      * expire, then return 0 to make it unevictable.  */
7593     long long int expiration = LLONG_MAX;
7594     if (rule->hard_timeout) {
7595         /* 'modified' needs protection even when we hold 'ofproto_mutex'. */
7596         ovs_mutex_lock(&rule->mutex);
7597         long long int modified = rule->modified;
7598         ovs_mutex_unlock(&rule->mutex);
7599
7600         expiration = modified + rule->hard_timeout * 1000;
7601     }
7602     if (rule->idle_timeout) {
7603         uint64_t packets, bytes;
7604         long long int used;
7605         long long int idle_expiration;
7606
7607         ofproto->ofproto_class->rule_get_stats(rule, &packets, &bytes, &used);
7608         idle_expiration = used + rule->idle_timeout * 1000;
7609         expiration = MIN(expiration, idle_expiration);
7610     }
7611     if (expiration == LLONG_MAX) {
7612         return 0;
7613     }
7614
7615     /* Calculate the time of expiration as a number of (approximate) seconds
7616      * after program startup.
7617      *
7618      * This should work OK for program runs that last UINT32_MAX seconds or
7619      * less.  Therefore, please restart OVS at least once every 136 years. */
7620     uint32_t expiration_ofs = (expiration >> 10) - (time_boot_msec() >> 10);
7621
7622     /* Combine expiration time with OpenFlow "importance" to form a single
7623      * priority value.  We want flows with relatively low "importance" to be
7624      * evicted before even considering expiration time, so put "importance" in
7625      * the most significant bits and expiration time in the least significant
7626      * bits.
7627      *
7628      * Small 'priority' should be evicted before those with large 'priority'.
7629      * The caller expects the opposite convention (a large return value being
7630      * more attractive for eviction) so we invert it before returning. */
7631     uint64_t priority = ((uint64_t) rule->importance << 32) + expiration_ofs;
7632     return UINT64_MAX - priority;
7633 }
7634
7635 /* Adds 'rule' to an appropriate eviction group for its oftable's
7636  * configuration.  Does nothing if 'rule''s oftable doesn't have eviction
7637  * enabled, or if 'rule' is a permanent rule (one that will never expire on its
7638  * own).
7639  *
7640  * The caller must ensure that 'rule' is not already in an eviction group. */
7641 static void
7642 eviction_group_add_rule(struct rule *rule)
7643     OVS_REQUIRES(ofproto_mutex)
7644 {
7645     struct ofproto *ofproto = rule->ofproto;
7646     struct oftable *table = &ofproto->tables[rule->table_id];
7647     bool has_timeout;
7648
7649     /* Timeouts may be modified only when holding 'ofproto_mutex'.  We have it
7650      * so no additional protection is needed. */
7651     has_timeout = rule->hard_timeout || rule->idle_timeout;
7652
7653     if (table->eviction && has_timeout) {
7654         struct eviction_group *evg;
7655
7656         evg = eviction_group_find(table, eviction_group_hash_rule(rule));
7657
7658         rule->eviction_group = evg;
7659         heap_insert(&evg->rules, &rule->evg_node,
7660                     rule_eviction_priority(ofproto, rule));
7661         eviction_group_resized(table, evg);
7662     }
7663 }
7664 \f
7665 /* oftables. */
7666
7667 /* Initializes 'table'. */
7668 static void
7669 oftable_init(struct oftable *table)
7670 {
7671     memset(table, 0, sizeof *table);
7672     classifier_init(&table->cls, flow_segment_u64s);
7673     table->max_flows = UINT_MAX;
7674     table->n_flows = 0;
7675     hmap_init(&table->eviction_groups_by_id);
7676     heap_init(&table->eviction_groups_by_size);
7677     atomic_init(&table->miss_config, OFPUTIL_TABLE_MISS_DEFAULT);
7678
7679     classifier_set_prefix_fields(&table->cls, default_prefix_fields,
7680                                  ARRAY_SIZE(default_prefix_fields));
7681
7682     atomic_init(&table->n_matched, 0);
7683     atomic_init(&table->n_missed, 0);
7684 }
7685
7686 /* Destroys 'table', including its classifier and eviction groups.
7687  *
7688  * The caller is responsible for freeing 'table' itself. */
7689 static void
7690 oftable_destroy(struct oftable *table)
7691 {
7692     ovs_assert(classifier_is_empty(&table->cls));
7693
7694     ovs_mutex_lock(&ofproto_mutex);
7695     oftable_configure_eviction(table, 0, NULL, 0);
7696     ovs_mutex_unlock(&ofproto_mutex);
7697
7698     hmap_destroy(&table->eviction_groups_by_id);
7699     heap_destroy(&table->eviction_groups_by_size);
7700     classifier_destroy(&table->cls);
7701     free(table->name);
7702 }
7703
7704 /* Changes the name of 'table' to 'name'.  If 'name' is NULL or the empty
7705  * string, then 'table' will use its default name.
7706  *
7707  * This only affects the name exposed for a table exposed through the OpenFlow
7708  * OFPST_TABLE (as printed by "ovs-ofctl dump-tables"). */
7709 static void
7710 oftable_set_name(struct oftable *table, const char *name)
7711 {
7712     if (name && name[0]) {
7713         int len = strnlen(name, OFP_MAX_TABLE_NAME_LEN);
7714         if (!table->name || strncmp(name, table->name, len)) {
7715             free(table->name);
7716             table->name = xmemdup0(name, len);
7717         }
7718     } else {
7719         free(table->name);
7720         table->name = NULL;
7721     }
7722 }
7723
7724 /* oftables support a choice of two policies when adding a rule would cause the
7725  * number of flows in the table to exceed the configured maximum number: either
7726  * they can refuse to add the new flow or they can evict some existing flow.
7727  * This function configures the latter policy on 'table', with fairness based
7728  * on the values of the 'n_fields' fields specified in 'fields'.  (Specifying
7729  * 'n_fields' as 0 disables fairness.) */
7730 static void
7731 oftable_configure_eviction(struct oftable *table, unsigned int eviction,
7732                            const struct mf_subfield *fields, size_t n_fields)
7733     OVS_REQUIRES(ofproto_mutex)
7734 {
7735     struct rule *rule;
7736
7737     if ((table->eviction != 0) == (eviction != 0)
7738         && n_fields == table->n_eviction_fields
7739         && (!n_fields
7740             || !memcmp(fields, table->eviction_fields,
7741                        n_fields * sizeof *fields))) {
7742         /* The set of eviction fields did not change.  If 'eviction' changed,
7743          * it remains nonzero, so that we can just update table->eviction
7744          * without fussing with the eviction groups. */
7745         table->eviction = eviction;
7746         return;
7747     }
7748
7749     /* Destroy existing eviction groups, then destroy and recreate data
7750      * structures to recover memory. */
7751     struct eviction_group *evg, *next;
7752     HMAP_FOR_EACH_SAFE (evg, next, id_node, &table->eviction_groups_by_id) {
7753         eviction_group_destroy(table, evg);
7754     }
7755     hmap_destroy(&table->eviction_groups_by_id);
7756     hmap_init(&table->eviction_groups_by_id);
7757     heap_destroy(&table->eviction_groups_by_size);
7758     heap_init(&table->eviction_groups_by_size);
7759
7760     /* Replace eviction groups by the new ones, if there is a change.  Free the
7761      * old fields only after allocating the new ones, because 'fields ==
7762      * table->eviction_fields' is possible. */
7763     struct mf_subfield *old_fields = table->eviction_fields;
7764     table->n_eviction_fields = n_fields;
7765     table->eviction_fields = (fields
7766                               ? xmemdup(fields, n_fields * sizeof *fields)
7767                               : NULL);
7768     free(old_fields);
7769
7770     /* Add the new eviction groups, if enabled. */
7771     table->eviction = eviction;
7772     if (table->eviction) {
7773         table->eviction_group_id_basis = random_uint32();
7774         CLS_FOR_EACH (rule, cr, &table->cls) {
7775             eviction_group_add_rule(rule);
7776         }
7777     }
7778 }
7779
7780 /* Inserts 'rule' from the ofproto data structures BEFORE caller has inserted
7781  * it to the classifier. */
7782 static void
7783 ofproto_rule_insert__(struct ofproto *ofproto, struct rule *rule)
7784     OVS_REQUIRES(ofproto_mutex)
7785 {
7786     const struct rule_actions *actions = rule_get_actions(rule);
7787
7788     ovs_assert(rule->removed);
7789
7790     if (rule->hard_timeout || rule->idle_timeout) {
7791         list_insert(&ofproto->expirable, &rule->expirable);
7792     }
7793     cookies_insert(ofproto, rule);
7794     eviction_group_add_rule(rule);
7795     if (actions->has_meter) {
7796         meter_insert_rule(rule);
7797     }
7798     rule->removed = false;
7799 }
7800
7801 /* Removes 'rule' from the ofproto data structures.  Caller may have deferred
7802  * the removal from the classifier. */
7803 static void
7804 ofproto_rule_remove__(struct ofproto *ofproto, struct rule *rule)
7805     OVS_REQUIRES(ofproto_mutex)
7806 {
7807     ovs_assert(!rule->removed);
7808
7809     cookies_remove(ofproto, rule);
7810
7811     eviction_group_remove_rule(rule);
7812     if (!list_is_empty(&rule->expirable)) {
7813         list_remove(&rule->expirable);
7814     }
7815     if (!list_is_empty(&rule->meter_list_node)) {
7816         list_remove(&rule->meter_list_node);
7817         list_init(&rule->meter_list_node);
7818     }
7819
7820     rule->removed = true;
7821 }
7822 \f
7823 /* unixctl commands. */
7824
7825 struct ofproto *
7826 ofproto_lookup(const char *name)
7827 {
7828     struct ofproto *ofproto;
7829
7830     HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
7831                              &all_ofprotos) {
7832         if (!strcmp(ofproto->name, name)) {
7833             return ofproto;
7834         }
7835     }
7836     return NULL;
7837 }
7838
7839 static void
7840 ofproto_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED,
7841                      const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7842 {
7843     struct ofproto *ofproto;
7844     struct ds results;
7845
7846     ds_init(&results);
7847     HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
7848         ds_put_format(&results, "%s\n", ofproto->name);
7849     }
7850     unixctl_command_reply(conn, ds_cstr(&results));
7851     ds_destroy(&results);
7852 }
7853
7854 static void
7855 ofproto_unixctl_init(void)
7856 {
7857     static bool registered;
7858     if (registered) {
7859         return;
7860     }
7861     registered = true;
7862
7863     unixctl_command_register("ofproto/list", "", 0, 0,
7864                              ofproto_unixctl_list, NULL);
7865 }
7866 \f
7867 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
7868  *
7869  * This is deprecated.  It is only for compatibility with broken device drivers
7870  * in old versions of Linux that do not properly support VLANs when VLAN
7871  * devices are not used.  When broken device drivers are no longer in
7872  * widespread use, we will delete these interfaces. */
7873
7874 /* Sets a 1-bit in the 4096-bit 'vlan_bitmap' for each VLAN ID that is matched
7875  * (exactly) by an OpenFlow rule in 'ofproto'. */
7876 void
7877 ofproto_get_vlan_usage(struct ofproto *ofproto, unsigned long int *vlan_bitmap)
7878 {
7879     struct match match;
7880     struct cls_rule target;
7881     const struct oftable *oftable;
7882
7883     match_init_catchall(&match);
7884     match_set_vlan_vid_masked(&match, htons(VLAN_CFI), htons(VLAN_CFI));
7885     cls_rule_init(&target, &match, 0);
7886
7887     free(ofproto->vlan_bitmap);
7888     ofproto->vlan_bitmap = bitmap_allocate(4096);
7889     ofproto->vlans_changed = false;
7890
7891     OFPROTO_FOR_EACH_TABLE (oftable, ofproto) {
7892         struct rule *rule;
7893
7894         CLS_FOR_EACH_TARGET (rule, cr, &oftable->cls, &target,
7895                              CLS_MAX_VERSION) {
7896             if (minimask_get_vid_mask(rule->cr.match.mask) == VLAN_VID_MASK) {
7897                 uint16_t vid = miniflow_get_vid(rule->cr.match.flow);
7898
7899                 bitmap_set1(vlan_bitmap, vid);
7900                 bitmap_set1(ofproto->vlan_bitmap, vid);
7901             }
7902         }
7903     }
7904
7905     cls_rule_destroy(&target);
7906 }
7907
7908 /* Returns true if new VLANs have come into use by the flow table since the
7909  * last call to ofproto_get_vlan_usage().
7910  *
7911  * We don't track when old VLANs stop being used. */
7912 bool
7913 ofproto_has_vlan_usage_changed(const struct ofproto *ofproto)
7914 {
7915     return ofproto->vlans_changed;
7916 }
7917
7918 /* Configures a VLAN splinter binding between the ports identified by OpenFlow
7919  * port numbers 'vlandev_ofp_port' and 'realdev_ofp_port'.  If
7920  * 'realdev_ofp_port' is nonzero, then the VLAN device is enslaved to the real
7921  * device as a VLAN splinter for VLAN ID 'vid'.  If 'realdev_ofp_port' is zero,
7922  * then the VLAN device is un-enslaved. */
7923 int
7924 ofproto_port_set_realdev(struct ofproto *ofproto, ofp_port_t vlandev_ofp_port,
7925                          ofp_port_t realdev_ofp_port, int vid)
7926 {
7927     struct ofport *ofport;
7928     int error;
7929
7930     ovs_assert(vlandev_ofp_port != realdev_ofp_port);
7931
7932     ofport = ofproto_get_port(ofproto, vlandev_ofp_port);
7933     if (!ofport) {
7934         VLOG_WARN("%s: cannot set realdev on nonexistent port %"PRIu16,
7935                   ofproto->name, vlandev_ofp_port);
7936         return EINVAL;
7937     }
7938
7939     if (!ofproto->ofproto_class->set_realdev) {
7940         if (!vlandev_ofp_port) {
7941             return 0;
7942         }
7943         VLOG_WARN("%s: vlan splinters not supported", ofproto->name);
7944         return EOPNOTSUPP;
7945     }
7946
7947     error = ofproto->ofproto_class->set_realdev(ofport, realdev_ofp_port, vid);
7948     if (error) {
7949         VLOG_WARN("%s: setting realdev on port %"PRIu16" (%s) failed (%s)",
7950                   ofproto->name, vlandev_ofp_port,
7951                   netdev_get_name(ofport->netdev), ovs_strerror(error));
7952     }
7953     return error;
7954 }