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