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