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