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