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