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