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