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