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