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