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