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