]> git.proxmox.com Git - ovs.git/blame - ofproto/ofproto.c
dpif-netdev: Change polled_queue to use dp_netdev_rxq.
[ovs.git] / ofproto / ofproto.c
CommitLineData
064af421 1/*
04f48a68 2 * Copyright (c) 2009-2017 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>
064af421
BP
19#include <errno.h>
20#include <inttypes.h>
064af421
BP
21#include <stdbool.h>
22#include <stdlib.h>
448a4b2f 23#include <unistd.h>
b598f214 24
52a90c29 25#include "bitmap.h"
b598f214 26#include "bundles.h"
10a24935 27#include "byte-order.h"
064af421 28#include "classifier.h"
da4a6191 29#include "connectivity.h"
19a87e36 30#include "connmgr.h"
064af421 31#include "coverage.h"
b598f214 32#include "dp-packet.h"
ca0f572c 33#include "hash.h"
ee89ea7b 34#include "openvswitch/hmap.h"
064af421 35#include "netdev.h"
09246b99 36#include "nx-match.h"
b598f214 37#include "ofproto.h"
5bee6e26 38#include "ofproto-provider.h"
064af421
BP
39#include "openflow/nicira-ext.h"
40#include "openflow/openflow.h"
d271907f
BW
41#include "openvswitch/dynamic-string.h"
42#include "openvswitch/meta-flow.h"
b598f214 43#include "openvswitch/ofp-actions.h"
d271907f
BW
44#include "openvswitch/ofp-errors.h"
45#include "openvswitch/ofp-msgs.h"
25d436fb 46#include "openvswitch/ofp-print.h"
d271907f
BW
47#include "openvswitch/ofp-util.h"
48#include "openvswitch/ofpbuf.h"
49#include "openvswitch/vlog.h"
06a0f3e2 50#include "ovs-rcu.h"
064af421
BP
51#include "packets.h"
52#include "pinsched.h"
064af421 53#include "poll-loop.h"
254750ce 54#include "random.h"
da4a6191 55#include "seq.h"
ee89ea7b 56#include "openvswitch/shash.h"
0d085684 57#include "simap.h"
e8f9a7bb 58#include "smap.h"
b3c01ed3 59#include "sset.h"
064af421 60#include "timeval.h"
9558d2a5 61#include "tun-metadata.h"
c4617b3c 62#include "unaligned.h"
4f2cad2c 63#include "unixctl.h"
ee89ea7b 64#include "util.h"
064af421 65
d98e6007 66VLOG_DEFINE_THIS_MODULE(ofproto);
064af421 67
d76f09ea 68COVERAGE_DEFINE(ofproto_flush);
d76f09ea
BP
69COVERAGE_DEFINE(ofproto_packet_out);
70COVERAGE_DEFINE(ofproto_queue_req);
71COVERAGE_DEFINE(ofproto_recv_openflow);
72COVERAGE_DEFINE(ofproto_reinit_ports);
d76f09ea
BP
73COVERAGE_DEFINE(ofproto_update_port);
74
f017d986
JR
75/* Default fields to use for prefix tries in each flow table, unless something
76 * else is configured. */
77const enum mf_field_id default_prefix_fields[2] =
78 { MFF_IPV4_DST, MFF_IPV4_SRC };
79
d0918789
BP
80/* oftable. */
81static void oftable_init(struct oftable *);
82static void oftable_destroy(struct oftable *);
878ae780 83
254750ce
BP
84static void oftable_set_name(struct oftable *, const char *name);
85
6787a49f 86static enum ofperr evict_rules_from_table(struct oftable *)
834fe5cb 87 OVS_REQUIRES(ofproto_mutex);
82c22d34
BP
88static void oftable_configure_eviction(struct oftable *,
89 unsigned int eviction,
90 const struct mf_subfield *fields,
91 size_t n_fields)
7394b8fb 92 OVS_REQUIRES(ofproto_mutex);
254750ce 93
82c22d34
BP
94/* This is the only combination of OpenFlow eviction flags that OVS supports: a
95 * combination of OF1.4+ importance, the remaining lifetime of the flow, and
96 * fairness based on user-specified fields. */
97#define OFPROTO_EVICTION_FLAGS \
98 (OFPTMPEF14_OTHER | OFPTMPEF14_IMPORTANCE | OFPTMPEF14_LIFETIME)
99
254750ce
BP
100/* A set of rules within a single OpenFlow table (oftable) that have the same
101 * values for the oftable's eviction_fields. A rule to be evicted, when one is
102 * needed, is taken from the eviction group that contains the greatest number
103 * of rules.
104 *
105 * An oftable owns any number of eviction groups, each of which contains any
106 * number of rules.
107 *
108 * Membership in an eviction group is imprecise, based on the hash of the
109 * oftable's eviction_fields (in the eviction_group's id_node.hash member).
110 * That is, if two rules have different eviction_fields, but those
111 * eviction_fields hash to the same value, then they will belong to the same
112 * eviction_group anyway.
113 *
114 * (When eviction is not enabled on an oftable, we don't track any eviction
115 * groups, to save time and space.) */
116struct eviction_group {
117 struct hmap_node id_node; /* In oftable's "eviction_groups_by_id". */
118 struct heap_node size_node; /* In oftable's "eviction_groups_by_size". */
119 struct heap rules; /* Contains "struct rule"s. */
120};
121
3d900aa7
BP
122static bool choose_rule_to_evict(struct oftable *table, struct rule **rulep)
123 OVS_REQUIRES(ofproto_mutex);
f70b94de
BP
124static uint64_t rule_eviction_priority(struct ofproto *ofproto, struct rule *)
125 OVS_REQUIRES(ofproto_mutex);
3d900aa7
BP
126static void eviction_group_add_rule(struct rule *)
127 OVS_REQUIRES(ofproto_mutex);
128static void eviction_group_remove_rule(struct rule *)
129 OVS_REQUIRES(ofproto_mutex);
f29152ca 130
a9b22b7f 131static void rule_criteria_init(struct rule_criteria *, uint8_t table_id,
eb391b76 132 const struct match *match, int priority,
44e0c35d 133 ovs_version_t version,
a9b22b7f
BP
134 ovs_be64 cookie, ovs_be64 cookie_mask,
135 ofp_port_t out_port, uint32_t out_group);
dd51dae2
BP
136static void rule_criteria_require_rw(struct rule_criteria *,
137 bool can_write_readonly);
a9b22b7f
BP
138static void rule_criteria_destroy(struct rule_criteria *);
139
35f48b8b
BP
140static enum ofperr collect_rules_loose(struct ofproto *,
141 const struct rule_criteria *,
142 struct rule_collection *);
143
35f48b8b
BP
144struct learned_cookie {
145 union {
146 /* In struct ofproto's 'learned_cookies' hmap. */
147 struct hmap_node hmap_node OVS_GUARDED_BY(ofproto_mutex);
148
149 /* In 'dead_cookies' list when removed from hmap. */
ca6ba700 150 struct ovs_list list_node;
35f48b8b
BP
151 } u;
152
153 /* Key. */
154 ovs_be64 cookie OVS_GUARDED_BY(ofproto_mutex);
155 uint8_t table_id OVS_GUARDED_BY(ofproto_mutex);
156
157 /* Number of references from "learn" actions.
158 *
159 * When this drops to 0, all of the flows in 'table_id' with the specified
160 * 'cookie' are deleted. */
161 int n OVS_GUARDED_BY(ofproto_mutex);
162};
163
164static const struct ofpact_learn *next_learn_with_delete(
165 const struct rule_actions *, const struct ofpact_learn *start);
166
167static void learned_cookies_inc(struct ofproto *, const struct rule_actions *)
168 OVS_REQUIRES(ofproto_mutex);
169static void learned_cookies_dec(struct ofproto *, const struct rule_actions *,
ca6ba700 170 struct ovs_list *dead_cookies)
35f48b8b 171 OVS_REQUIRES(ofproto_mutex);
ca6ba700 172static void learned_cookies_flush(struct ofproto *, struct ovs_list *dead_cookies)
35f48b8b
BP
173 OVS_REQUIRES(ofproto_mutex);
174
d0918789 175/* ofport. */
15aaf599 176static void ofport_destroy__(struct ofport *) OVS_EXCLUDED(ofproto_mutex);
9aad5a5a 177static void ofport_destroy(struct ofport *, bool del);
3a414a0a
DDP
178static bool ofport_is_mtu_overridden(const struct ofproto *,
179 const struct ofport *);
d0918789 180
01c77073 181static int update_port(struct ofproto *, const char *devname);
d0918789
BP
182static int init_ports(struct ofproto *);
183static void reinit_ports(struct ofproto *);
7ee20df1 184
fdcea803
GS
185static long long int ofport_get_usage(const struct ofproto *,
186 ofp_port_t ofp_port);
187static void ofport_set_usage(struct ofproto *, ofp_port_t ofp_port,
188 long long int last_used);
865b26a4 189static void ofport_remove_usage(struct ofproto *, ofp_port_t ofp_port);
fdcea803
GS
190
191/* Ofport usage.
192 *
193 * Keeps track of the currently used and recently used ofport values and is
194 * used to prevent immediate recycling of ofport values. */
195struct ofport_usage {
196 struct hmap_node hmap_node; /* In struct ofproto's "ofport_usage" hmap. */
197 ofp_port_t ofp_port; /* OpenFlow port number. */
198 long long int last_used; /* Last time the 'ofp_port' was used. LLONG_MAX
199 represents in-use ofports. */
200};
201
254750ce 202/* rule. */
f695ebfa
JR
203static void ofproto_rule_send_removed(struct rule *)
204 OVS_EXCLUDED(ofproto_mutex);
834fe5cb 205static bool rule_is_readonly(const struct rule *);
bc5e6a91
JR
206static void ofproto_rule_insert__(struct ofproto *, struct rule *)
207 OVS_REQUIRES(ofproto_mutex);
802f84ff
JR
208static void ofproto_rule_remove__(struct ofproto *, struct rule *)
209 OVS_REQUIRES(ofproto_mutex);
254750ce 210
0a0d9385 211/* The source of an OpenFlow request.
baae3d02 212 *
0a0d9385
JR
213 * A table modification request can be generated externally, via OpenFlow, or
214 * internally through a function call. This structure indicates the source of
215 * an OpenFlow-generated table modification. For an internal flow_mod, it
216 * isn't meaningful and thus supplied as NULL. */
217struct openflow_mod_requester {
baae3d02 218 struct ofconn *ofconn; /* Connection on which flow_mod arrived. */
c84d8691 219 const struct ofp_header *request;
baae3d02
BP
220};
221
d0918789 222/* OpenFlow. */
5bacd5cd
JR
223static enum ofperr ofproto_rule_create(struct ofproto *, struct cls_rule *,
224 uint8_t table_id, ovs_be64 new_cookie,
225 uint16_t idle_timeout,
226 uint16_t hard_timeout,
227 enum ofputil_flow_mod_flags flags,
228 uint16_t importance,
229 const struct ofpact *ofpacts,
230 size_t ofpacts_len,
5c7c16d8
YHW
231 uint64_t match_tlv_bitmap,
232 uint64_t ofpacts_tlv_bitmap,
39c94593 233 struct rule **new_rule)
5bacd5cd 234 OVS_NO_THREAD_SAFETY_ANALYSIS;
39c94593 235
5bacd5cd
JR
236static void replace_rule_start(struct ofproto *, struct ofproto_flow_mod *,
237 struct rule *old_rule, struct rule *new_rule)
dd27be82 238 OVS_REQUIRES(ofproto_mutex);
39c94593 239
6787a49f
JR
240static void replace_rule_revert(struct ofproto *, struct rule *old_rule,
241 struct rule *new_rule)
39c94593
JR
242 OVS_REQUIRES(ofproto_mutex);
243
81dee635 244static void replace_rule_finish(struct ofproto *, struct ofproto_flow_mod *,
0a0d9385 245 const struct openflow_mod_requester *,
39c94593
JR
246 struct rule *old_rule, struct rule *new_rule,
247 struct ovs_list *dead_cookies)
dd27be82 248 OVS_REQUIRES(ofproto_mutex);
39c94593 249static void delete_flows__(struct rule_collection *,
9ca4a86f 250 enum ofp_flow_removed_reason,
0a0d9385 251 const struct openflow_mod_requester *)
15aaf599 252 OVS_REQUIRES(ofproto_mutex);
834fe5cb 253
db88b35c 254static bool ofproto_group_exists(const struct ofproto *, uint32_t group_id);
b20f4073 255static void handle_openflow(struct ofconn *, const struct ofpbuf *);
5bacd5cd
JR
256static enum ofperr ofproto_flow_mod_init(struct ofproto *,
257 struct ofproto_flow_mod *,
2c7ee524
JR
258 const struct ofputil_flow_mod *fm,
259 struct rule *)
5bacd5cd 260 OVS_EXCLUDED(ofproto_mutex);
8be00367
JR
261static enum ofperr ofproto_flow_mod_start(struct ofproto *,
262 struct ofproto_flow_mod *)
1f42be1c 263 OVS_REQUIRES(ofproto_mutex);
6dd3c787
JR
264static void ofproto_flow_mod_revert(struct ofproto *,
265 struct ofproto_flow_mod *)
266 OVS_REQUIRES(ofproto_mutex);
8be00367
JR
267static void ofproto_flow_mod_finish(struct ofproto *,
268 struct ofproto_flow_mod *,
0a0d9385 269 const struct openflow_mod_requester *)
1f42be1c 270 OVS_REQUIRES(ofproto_mutex);
baae3d02 271static enum ofperr handle_flow_mod__(struct ofproto *,
7338102b 272 const struct ofputil_flow_mod *,
0a0d9385 273 const struct openflow_mod_requester *)
15aaf599 274 OVS_EXCLUDED(ofproto_mutex);
65e0be10
BP
275static void calc_duration(long long int start, long long int now,
276 uint32_t *sec, uint32_t *nsec);
f29152ca 277
d0918789
BP
278/* ofproto. */
279static uint64_t pick_datapath_id(const struct ofproto *);
280static uint64_t pick_fallback_dpid(void);
281static void ofproto_destroy__(struct ofproto *);
ada3428f 282static void update_mtu(struct ofproto *, struct ofport *);
0670b5d0 283static void update_mtu_ofproto(struct ofproto *);
ba8cff36
AZ
284static void meter_delete(struct ofproto *, uint32_t);
285static void meter_delete_all(struct ofproto *);
062fea06 286static void meter_insert_rule(struct rule *);
f29152ca 287
d0918789 288/* unixctl. */
abe529af 289static void ofproto_unixctl_init(void);
f29152ca 290
abe529af
BP
291/* All registered ofproto classes, in probe order. */
292static const struct ofproto_class **ofproto_classes;
293static size_t n_ofproto_classes;
294static size_t allocated_ofproto_classes;
7aa697dd 295
15aaf599
BP
296/* Global lock that protects all flow table operations. */
297struct ovs_mutex ofproto_mutex = OVS_MUTEX_INITIALIZER;
abe7b10f 298
e79a6c83 299unsigned ofproto_flow_limit = OFPROTO_FLOW_LIMIT_DEFAULT;
72310b04 300unsigned ofproto_max_idle = OFPROTO_MAX_IDLE_DEFAULT;
380f49c4 301
e79a6c83 302size_t n_handlers, n_revalidators;
6567010f 303
f797957a 304/* Map from datapath name to struct ofproto, for use by unixctl commands. */
abe529af 305static struct hmap all_ofprotos = HMAP_INITIALIZER(&all_ofprotos);
ebe482fd 306
e1b1d06a
JP
307/* Initial mappings of port to OpenFlow number mappings. */
308static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
309
abe529af 310static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
f29152ca 311
40358701
GS
312/* The default value of true waits for flow restore. */
313static bool flow_restore_wait = true;
314
b0408fca
JP
315/* Must be called to initialize the ofproto library.
316 *
317 * The caller may pass in 'iface_hints', which contains an shash of
318 * "iface_hint" elements indexed by the interface's name. The provider
319 * may use these hints to describe the startup configuration in order to
320 * reinitialize its state. The caller owns the provided data, so a
321 * provider will make copies of anything required. An ofproto provider
322 * will remove any existing state that is not described by the hint, and
323 * may choose to remove it all. */
324void
325ofproto_init(const struct shash *iface_hints)
abe529af 326{
e1b1d06a 327 struct shash_node *node;
b0408fca 328 size_t i;
f29152ca 329
b0408fca
JP
330 ofproto_class_register(&ofproto_dpif_class);
331
e1b1d06a
JP
332 /* Make a local copy, since we don't own 'iface_hints' elements. */
333 SHASH_FOR_EACH(node, iface_hints) {
334 const struct iface_hint *orig_hint = node->data;
335 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
336 const char *br_type = ofproto_normalize_type(orig_hint->br_type);
337
338 new_hint->br_name = xstrdup(orig_hint->br_name);
339 new_hint->br_type = xstrdup(br_type);
340 new_hint->ofp_port = orig_hint->ofp_port;
341
342 shash_add(&init_ofp_ports, node->name, new_hint);
343 }
344
b0408fca 345 for (i = 0; i < n_ofproto_classes; i++) {
e1b1d06a 346 ofproto_classes[i]->init(&init_ofp_ports);
abe529af 347 }
0fc1f5c0
HH
348
349 ofproto_unixctl_init();
abe529af 350}
f29152ca 351
abe529af
BP
352/* 'type' should be a normalized datapath type, as returned by
353 * ofproto_normalize_type(). Returns the corresponding ofproto_class
354 * structure, or a null pointer if there is none registered for 'type'. */
355static const struct ofproto_class *
356ofproto_class_find__(const char *type)
357{
358 size_t i;
f29152ca 359
abe529af
BP
360 for (i = 0; i < n_ofproto_classes; i++) {
361 const struct ofproto_class *class = ofproto_classes[i];
362 struct sset types;
363 bool found;
064af421 364
abe529af
BP
365 sset_init(&types);
366 class->enumerate_types(&types);
367 found = sset_contains(&types, type);
368 sset_destroy(&types);
bcf84111 369
abe529af
BP
370 if (found) {
371 return class;
372 }
373 }
374 VLOG_WARN("unknown datapath type %s", type);
375 return NULL;
376}
064af421 377
abe529af
BP
378/* Registers a new ofproto class. After successful registration, new ofprotos
379 * of that type can be created using ofproto_create(). */
380int
381ofproto_class_register(const struct ofproto_class *new_class)
382{
383 size_t i;
7aa697dd 384
abe529af
BP
385 for (i = 0; i < n_ofproto_classes; i++) {
386 if (ofproto_classes[i] == new_class) {
387 return EEXIST;
388 }
389 }
064af421 390
abe529af
BP
391 if (n_ofproto_classes >= allocated_ofproto_classes) {
392 ofproto_classes = x2nrealloc(ofproto_classes,
393 &allocated_ofproto_classes,
394 sizeof *ofproto_classes);
395 }
396 ofproto_classes[n_ofproto_classes++] = new_class;
397 return 0;
398}
064af421 399
abe529af
BP
400/* Unregisters a datapath provider. 'type' must have been previously
401 * registered and not currently be in use by any ofprotos. After
402 * unregistration new datapaths of that type cannot be opened using
403 * ofproto_create(). */
404int
405ofproto_class_unregister(const struct ofproto_class *class)
406{
407 size_t i;
76ce9432 408
abe529af
BP
409 for (i = 0; i < n_ofproto_classes; i++) {
410 if (ofproto_classes[i] == class) {
411 for (i++; i < n_ofproto_classes; i++) {
412 ofproto_classes[i - 1] = ofproto_classes[i];
413 }
414 n_ofproto_classes--;
415 return 0;
416 }
417 }
418 VLOG_WARN("attempted to unregister an ofproto class that is not "
419 "registered");
420 return EAFNOSUPPORT;
421}
4a4cdb3b 422
f79e673f
BP
423/* Clears 'types' and enumerates all registered ofproto types into it. The
424 * caller must first initialize the sset. */
425void
426ofproto_enumerate_types(struct sset *types)
427{
abe529af 428 size_t i;
064af421 429
c799c306 430 sset_clear(types);
abe529af
BP
431 for (i = 0; i < n_ofproto_classes; i++) {
432 ofproto_classes[i]->enumerate_types(types);
433 }
f79e673f 434}
064af421 435
f79e673f
BP
436/* Returns the fully spelled out name for the given ofproto 'type'.
437 *
438 * Normalized type string can be compared with strcmp(). Unnormalized type
439 * string might be the same even if they have different spellings. */
440const char *
441ofproto_normalize_type(const char *type)
442{
abe529af 443 return type && type[0] ? type : "system";
f79e673f 444}
064af421 445
f79e673f
BP
446/* Clears 'names' and enumerates the names of all known created ofprotos with
447 * the given 'type'. The caller must first initialize the sset. Returns 0 if
448 * successful, otherwise a positive errno value.
449 *
450 * Some kinds of datapaths might not be practically enumerable. This is not
451 * considered an error. */
452int
453ofproto_enumerate_names(const char *type, struct sset *names)
454{
abe529af
BP
455 const struct ofproto_class *class = ofproto_class_find__(type);
456 return class ? class->enumerate_names(type, names) : EAFNOSUPPORT;
239ad7d1 457}
7aa697dd 458
39c94593
JR
459static void
460ofproto_bump_tables_version(struct ofproto *ofproto)
461{
462 ++ofproto->tables_version;
463 ofproto->ofproto_class->set_tables_version(ofproto,
464 ofproto->tables_version);
465}
466
064af421 467int
abe529af 468ofproto_create(const char *datapath_name, const char *datapath_type,
064af421 469 struct ofproto **ofprotop)
25010c68 470 OVS_EXCLUDED(ofproto_mutex)
064af421 471{
abe529af
BP
472 const struct ofproto_class *class;
473 struct ofproto *ofproto;
064af421 474 int error;
c2f0373a 475 int i;
064af421
BP
476
477 *ofprotop = NULL;
478
abe529af
BP
479 datapath_type = ofproto_normalize_type(datapath_type);
480 class = ofproto_class_find__(datapath_type);
481 if (!class) {
482 VLOG_WARN("could not create datapath %s of unknown type %s",
483 datapath_name, datapath_type);
484 return EAFNOSUPPORT;
064af421
BP
485 }
486
abe529af
BP
487 ofproto = class->alloc();
488 if (!ofproto) {
489 VLOG_ERR("failed to allocate datapath %s of type %s",
490 datapath_name, datapath_type);
491 return ENOMEM;
492 }
493
494 /* Initialize. */
abe7b10f 495 ovs_mutex_lock(&ofproto_mutex);
abe529af
BP
496 memset(ofproto, 0, sizeof *ofproto);
497 ofproto->ofproto_class = class;
498 ofproto->name = xstrdup(datapath_name);
499 ofproto->type = xstrdup(datapath_type);
500 hmap_insert(&all_ofprotos, &ofproto->hmap_node,
501 hash_string(ofproto->name, 0));
502 ofproto->datapath_id = 0;
8402c74b 503 ofproto->forward_bpdu = false;
abe529af 504 ofproto->fallback_dpid = pick_fallback_dpid();
061bfea4
BP
505 ofproto->mfr_desc = NULL;
506 ofproto->hw_desc = NULL;
507 ofproto->sw_desc = NULL;
508 ofproto->serial_desc = NULL;
509 ofproto->dp_desc = NULL;
ad99e2ed 510 ofproto->frag_handling = OFPUTIL_FRAG_NORMAL;
abe529af 511 hmap_init(&ofproto->ports);
fdcea803 512 hmap_init(&ofproto->ofport_usage);
abe529af 513 shash_init(&ofproto->port_by_name);
e1b1d06a 514 simap_init(&ofproto->ofp_requests);
430dbb14 515 ofproto->max_ports = ofp_to_u16(OFPP_MAX);
448c2fa8 516 ofproto->eviction_group_timer = LLONG_MIN;
6c1491fb
BP
517 ofproto->tables = NULL;
518 ofproto->n_tables = 0;
44e0c35d 519 ofproto->tables_version = OVS_VERSION_MIN;
98eaac36 520 hindex_init(&ofproto->cookies);
35f48b8b 521 hmap_init(&ofproto->learned_cookies);
417e7e66 522 ovs_list_init(&ofproto->expirable);
abe529af 523 ofproto->connmgr = connmgr_create(ofproto, datapath_name, datapath_name);
7478b5a2 524 ofproto->min_mtu = INT_MAX;
db88b35c 525 cmap_init(&ofproto->groups);
abe7b10f 526 ovs_mutex_unlock(&ofproto_mutex);
0ae01c64 527 ofproto->ogf.types = 0xf;
7cb279c2
SH
528 ofproto->ogf.capabilities = OFPGFC_CHAINING | OFPGFC_SELECT_LIVENESS |
529 OFPGFC_SELECT_WEIGHT;
08d1e234
BP
530 for (i = 0; i < 4; i++) {
531 ofproto->ogf.max_groups[i] = OFPG_MAX;
532 ofproto->ogf.ofpacts[i] = (UINT64_C(1) << N_OFPACTS) - 1;
533 }
8d8ab6c2 534 ovsrcu_set(&ofproto->metadata_tab, tun_metadata_alloc(NULL));
abe529af 535
04f48a68
YHW
536 ovs_mutex_init(&ofproto->vl_mff_map.mutex);
537 cmap_init(&ofproto->vl_mff_map.cmap);
538
0f5f95a9 539 error = ofproto->ofproto_class->construct(ofproto);
19a87e36 540 if (error) {
abe529af 541 VLOG_ERR("failed to open datapath %s: %s",
10a89ef0 542 datapath_name, ovs_strerror(error));
25010c68 543 ovs_mutex_lock(&ofproto_mutex);
58f19539 544 connmgr_destroy(ofproto->connmgr);
25010c68
JR
545 ofproto->connmgr = NULL;
546 ovs_mutex_unlock(&ofproto_mutex);
abe529af 547 ofproto_destroy__(ofproto);
19a87e36
BP
548 return error;
549 }
073e2a6f 550
c2f0373a 551 /* Check that hidden tables, if any, are at the end. */
cb22974d 552 ovs_assert(ofproto->n_tables);
c2f0373a
BP
553 for (i = 0; i + 1 < ofproto->n_tables; i++) {
554 enum oftable_flags flags = ofproto->tables[i].flags;
555 enum oftable_flags next_flags = ofproto->tables[i + 1].flags;
556
cb22974d 557 ovs_assert(!(flags & OFTABLE_HIDDEN) || next_flags & OFTABLE_HIDDEN);
c2f0373a 558 }
19a87e36 559
abe529af 560 ofproto->datapath_id = pick_datapath_id(ofproto);
abe529af 561 init_ports(ofproto);
7aa697dd 562
9cae45dc
JR
563 /* Initialize meters table. */
564 if (ofproto->ofproto_class->meter_get_features) {
565 ofproto->ofproto_class->meter_get_features(ofproto,
566 &ofproto->meter_features);
567 } else {
568 memset(&ofproto->meter_features, 0, sizeof ofproto->meter_features);
569 }
ba8cff36 570 hmap_init(&ofproto->meters);
9e638f22
AZ
571 ofproto->slowpath_meter_id = UINT32_MAX;
572 ofproto->controller_meter_id = UINT32_MAX;
9cae45dc 573
621b8064 574 /* Set the initial tables version. */
39c94593 575 ofproto_bump_tables_version(ofproto);
621b8064 576
abe529af 577 *ofprotop = ofproto;
064af421
BP
578 return 0;
579}
580
91858960
BP
581/* Must be called (only) by an ofproto implementation in its constructor
582 * function. See the large comment on 'construct' in struct ofproto_class for
583 * details. */
0f5f95a9
BP
584void
585ofproto_init_tables(struct ofproto *ofproto, int n_tables)
586{
587 struct oftable *table;
588
cb22974d
BP
589 ovs_assert(!ofproto->n_tables);
590 ovs_assert(n_tables >= 1 && n_tables <= 255);
0f5f95a9
BP
591
592 ofproto->n_tables = n_tables;
593 ofproto->tables = xmalloc(n_tables * sizeof *ofproto->tables);
594 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
595 oftable_init(table);
596 }
597}
598
91858960
BP
599/* To be optionally called (only) by an ofproto implementation in its
600 * constructor function. See the large comment on 'construct' in struct
601 * ofproto_class for details.
602 *
603 * Sets the maximum number of ports to 'max_ports'. The ofproto generic layer
604 * will then ensure that actions passed into the ofproto implementation will
605 * not refer to OpenFlow ports numbered 'max_ports' or higher. If this
606 * function is not called, there will be no such restriction.
607 *
608 * Reserved ports numbered OFPP_MAX and higher are special and not subject to
609 * the 'max_ports' restriction. */
610void
430dbb14 611ofproto_init_max_ports(struct ofproto *ofproto, uint16_t max_ports)
91858960 612{
430dbb14 613 ovs_assert(max_ports <= ofp_to_u16(OFPP_MAX));
91858960
BP
614 ofproto->max_ports = max_ports;
615}
616
e825ace2
BP
617uint64_t
618ofproto_get_datapath_id(const struct ofproto *ofproto)
619{
620 return ofproto->datapath_id;
621}
622
064af421
BP
623void
624ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
625{
626 uint64_t old_dpid = p->datapath_id;
fa60c019 627 p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
064af421 628 if (p->datapath_id != old_dpid) {
76ce9432
BP
629 /* Force all active connections to reconnect, since there is no way to
630 * notify a controller that the datapath ID has changed. */
fa05809b 631 ofproto_reconnect_controllers(p);
064af421
BP
632 }
633}
634
76ce9432
BP
635void
636ofproto_set_controllers(struct ofproto *p,
637 const struct ofproto_controller *controllers,
1d9ffc17 638 size_t n_controllers, uint32_t allowed_versions)
76ce9432 639{
1d9ffc17
SH
640 connmgr_set_controllers(p->connmgr, controllers, n_controllers,
641 allowed_versions);
064af421
BP
642}
643
31681a5d
JP
644void
645ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
646{
19a87e36 647 connmgr_set_fail_mode(p->connmgr, fail_mode);
31681a5d
JP
648}
649
fa05809b
BP
650/* Drops the connections between 'ofproto' and all of its controllers, forcing
651 * them to reconnect. */
652void
653ofproto_reconnect_controllers(struct ofproto *ofproto)
654{
19a87e36 655 connmgr_reconnect(ofproto->connmgr);
917e50e1
BP
656}
657
658/* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
659 * in-band control should guarantee access, in the same way that in-band
660 * control guarantees access to OpenFlow controllers. */
661void
662ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
663 const struct sockaddr_in *extras, size_t n)
664{
19a87e36 665 connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
917e50e1
BP
666}
667
b1da6250
BP
668/* Sets the OpenFlow queue used by flows set up by in-band control on
669 * 'ofproto' to 'queue_id'. If 'queue_id' is negative, then in-band control
670 * flows will use the default queue. */
671void
672ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
673{
19a87e36 674 connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
b1da6250
BP
675}
676
084f5290
SH
677/* Sets the number of flows at which eviction from the kernel flow table
678 * will occur. */
679void
e79a6c83 680ofproto_set_flow_limit(unsigned limit)
084f5290 681{
e79a6c83 682 ofproto_flow_limit = limit;
084f5290
SH
683}
684
72310b04
JS
685/* Sets the maximum idle time for flows in the datapath before they are
686 * expired. */
687void
688ofproto_set_max_idle(unsigned max_idle)
689{
690 ofproto_max_idle = max_idle;
691}
692
b53055f4 693/* If forward_bpdu is true, the NORMAL action will forward frames with
8402c74b
SS
694 * reserved (e.g. STP) destination Ethernet addresses. if forward_bpdu is false,
695 * the NORMAL action will drop these frames. */
696void
697ofproto_set_forward_bpdu(struct ofproto *ofproto, bool forward_bpdu)
698{
699 bool old_val = ofproto->forward_bpdu;
700 ofproto->forward_bpdu = forward_bpdu;
701 if (old_val != ofproto->forward_bpdu) {
702 if (ofproto->ofproto_class->forward_bpdu_changed) {
703 ofproto->ofproto_class->forward_bpdu_changed(ofproto);
704 }
b53055f4 705 }
8402c74b
SS
706}
707
e764773c 708/* Sets the MAC aging timeout for the OFPP_NORMAL action on 'ofproto' to
c4069512
BP
709 * 'idle_time', in seconds, and the maximum number of MAC table entries to
710 * 'max_entries'. */
e764773c 711void
c4069512
BP
712ofproto_set_mac_table_config(struct ofproto *ofproto, unsigned idle_time,
713 size_t max_entries)
e764773c 714{
c4069512
BP
715 if (ofproto->ofproto_class->set_mac_table_config) {
716 ofproto->ofproto_class->set_mac_table_config(ofproto, idle_time,
717 max_entries);
e764773c
BP
718 }
719}
720
7c38d0a5
FL
721/* Multicast snooping configuration. */
722
723/* Configures multicast snooping on 'ofproto' using the settings
724 * defined in 's'. If 's' is NULL, disables multicast snooping.
725 *
726 * Returns 0 if successful, otherwise a positive errno value. */
727int
728ofproto_set_mcast_snooping(struct ofproto *ofproto,
729 const struct ofproto_mcast_snooping_settings *s)
730{
731 return (ofproto->ofproto_class->set_mcast_snooping
732 ? ofproto->ofproto_class->set_mcast_snooping(ofproto, s)
733 : EOPNOTSUPP);
734}
735
8e04a33f 736/* Configures multicast snooping flood settings on 'ofp_port' of 'ofproto'.
7c38d0a5
FL
737 *
738 * Returns 0 if successful, otherwise a positive errno value.*/
739int
8e04a33f
FL
740ofproto_port_set_mcast_snooping(struct ofproto *ofproto, void *aux,
741 const struct ofproto_mcast_snooping_port_settings *s)
7c38d0a5
FL
742{
743 return (ofproto->ofproto_class->set_mcast_snooping_port
8e04a33f 744 ? ofproto->ofproto_class->set_mcast_snooping_port(ofproto, aux, s)
7c38d0a5
FL
745 : EOPNOTSUPP);
746}
747
f2eee189 748void
d4f6865c 749ofproto_type_set_config(const char *datapath_type, const struct smap *cfg)
f2eee189 750{
d4f6865c
DDP
751 const struct ofproto_class *class;
752
753 datapath_type = ofproto_normalize_type(datapath_type);
754 class = ofproto_class_find__(datapath_type);
755
756 if (class->type_set_config) {
757 class->type_set_config(datapath_type, cfg);
758 }
f2eee189
AW
759}
760
448a4b2f 761void
30ea0da7 762ofproto_set_threads(int n_handlers_, int n_revalidators_)
448a4b2f 763{
e79a6c83
EJ
764 int threads = MAX(count_cpu_cores(), 2);
765
30ea0da7
GS
766 n_revalidators = MAX(n_revalidators_, 0);
767 n_handlers = MAX(n_handlers_, 0);
e79a6c83
EJ
768
769 if (!n_revalidators) {
770 n_revalidators = n_handlers
771 ? MAX(threads - (int) n_handlers, 1)
772 : threads / 4 + 1;
773 }
774
775 if (!n_handlers) {
776 n_handlers = MAX(threads - (int) n_revalidators, 1);
777 }
448a4b2f
AW
778}
779
8b6ff729
BP
780void
781ofproto_set_dp_desc(struct ofproto *p, const char *dp_desc)
782{
783 free(p->dp_desc);
2225c0b9 784 p->dp_desc = nullable_xstrdup(dp_desc);
8b6ff729
BP
785}
786
064af421 787int
81e2083f 788ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
064af421 789{
19a87e36 790 return connmgr_set_snoops(ofproto->connmgr, snoops);
064af421
BP
791}
792
793int
0193b2af
JG
794ofproto_set_netflow(struct ofproto *ofproto,
795 const struct netflow_options *nf_options)
064af421 796{
abe529af
BP
797 if (nf_options && sset_is_empty(&nf_options->collectors)) {
798 nf_options = NULL;
799 }
800
801 if (ofproto->ofproto_class->set_netflow) {
802 return ofproto->ofproto_class->set_netflow(ofproto, nf_options);
064af421 803 } else {
abe529af 804 return nf_options ? EOPNOTSUPP : 0;
064af421
BP
805 }
806}
807
abe529af 808int
72b06300
BP
809ofproto_set_sflow(struct ofproto *ofproto,
810 const struct ofproto_sflow_options *oso)
811{
abe529af
BP
812 if (oso && sset_is_empty(&oso->targets)) {
813 oso = NULL;
814 }
72b06300 815
abe529af
BP
816 if (ofproto->ofproto_class->set_sflow) {
817 return ofproto->ofproto_class->set_sflow(ofproto, oso);
72b06300 818 } else {
abe529af 819 return oso ? EOPNOTSUPP : 0;
72b06300
BP
820 }
821}
29089a54
RL
822
823int
824ofproto_set_ipfix(struct ofproto *ofproto,
825 const struct ofproto_ipfix_bridge_exporter_options *bo,
826 const struct ofproto_ipfix_flow_exporter_options *fo,
827 size_t n_fo)
828{
829 if (ofproto->ofproto_class->set_ipfix) {
830 return ofproto->ofproto_class->set_ipfix(ofproto, bo, fo, n_fo);
831 } else {
832 return (bo || fo) ? EOPNOTSUPP : 0;
833 }
834}
40358701 835
fb8f22c1
BY
836static int
837ofproto_get_ipfix_stats(struct ofproto *ofproto,
838 bool bridge_ipfix,
839 struct ovs_list *replies)
840{
841 int error;
842
843 if (ofproto->ofproto_class->get_ipfix_stats) {
844 error = ofproto->ofproto_class->get_ipfix_stats(ofproto,
845 bridge_ipfix,
846 replies);
847 } else {
848 error = EOPNOTSUPP;
849 }
850
851 return error;
852}
853
854static enum ofperr
855handle_ipfix_bridge_stats_request(struct ofconn *ofconn,
856 const struct ofp_header *request)
857{
858 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
859 struct ovs_list replies;
860 enum ofperr error;
861
862 ofpmp_init(&replies, request);
863 error = ofproto_get_ipfix_stats(ofproto, true, &replies);
864
865 if (!error) {
866 ofconn_send_replies(ofconn, &replies);
867 } else {
868 ofpbuf_list_delete(&replies);
869 }
870
871 return error;
872}
873
874static enum ofperr
875handle_ipfix_flow_stats_request(struct ofconn *ofconn,
876 const struct ofp_header *request)
877{
878 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
879 struct ovs_list replies;
880 enum ofperr error;
881
882 ofpmp_init(&replies, request);
883 error = ofproto_get_ipfix_stats(ofproto, false, &replies);
884
885 if (!error) {
886 ofconn_send_replies(ofconn, &replies);
887 } else {
888 ofpbuf_list_delete(&replies);
889 }
890
891 return error;
892}
893
2a7c4805
JP
894static enum ofperr
895handle_nxt_ct_flush_zone(struct ofconn *ofconn, const struct ofp_header *oh)
896{
897 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
898 const struct nx_zone_id *nzi = ofpmsg_body(oh);
899
900 if (!is_all_zeros(nzi->zero, sizeof nzi->zero)) {
901 return OFPERR_NXBRC_MUST_BE_ZERO;
902 }
903
904 uint16_t zone = ntohs(nzi->zone_id);
905 if (ofproto->ofproto_class->ct_flush) {
906 ofproto->ofproto_class->ct_flush(ofproto, &zone);
907 } else {
908 return EOPNOTSUPP;
909 }
910
911 return 0;
912}
913
40358701
GS
914void
915ofproto_set_flow_restore_wait(bool flow_restore_wait_db)
916{
917 flow_restore_wait = flow_restore_wait_db;
918}
919
920bool
921ofproto_get_flow_restore_wait(void)
922{
923 return flow_restore_wait;
924}
925
e7934396 926\f
21f7563c
JP
927/* Spanning Tree Protocol (STP) configuration. */
928
929/* Configures STP on 'ofproto' using the settings defined in 's'. If
930 * 's' is NULL, disables STP.
931 *
932 * Returns 0 if successful, otherwise a positive errno value. */
933int
934ofproto_set_stp(struct ofproto *ofproto,
935 const struct ofproto_stp_settings *s)
936{
937 return (ofproto->ofproto_class->set_stp
938 ? ofproto->ofproto_class->set_stp(ofproto, s)
939 : EOPNOTSUPP);
940}
941
942/* Retrieves STP status of 'ofproto' and stores it in 's'. If the
943 * 'enabled' member of 's' is false, then the other members are not
944 * meaningful.
945 *
946 * Returns 0 if successful, otherwise a positive errno value. */
947int
948ofproto_get_stp_status(struct ofproto *ofproto,
949 struct ofproto_stp_status *s)
950{
951 return (ofproto->ofproto_class->get_stp_status
952 ? ofproto->ofproto_class->get_stp_status(ofproto, s)
953 : EOPNOTSUPP);
954}
955
956/* Configures STP on 'ofp_port' of 'ofproto' using the settings defined
957 * in 's'. The caller is responsible for assigning STP port numbers
958 * (using the 'port_num' member in the range of 1 through 255, inclusive)
959 * and ensuring there are no duplicates. If the 's' is NULL, then STP
960 * is disabled on the port.
961 *
962 * Returns 0 if successful, otherwise a positive errno value.*/
963int
4e022ec0 964ofproto_port_set_stp(struct ofproto *ofproto, ofp_port_t ofp_port,
21f7563c
JP
965 const struct ofproto_port_stp_settings *s)
966{
967 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
968 if (!ofport) {
94783c7c 969 VLOG_WARN("%s: cannot configure STP on nonexistent port %"PRIu32,
21f7563c
JP
970 ofproto->name, ofp_port);
971 return ENODEV;
972 }
973
974 return (ofproto->ofproto_class->set_stp_port
975 ? ofproto->ofproto_class->set_stp_port(ofport, s)
976 : EOPNOTSUPP);
977}
978
979/* Retrieves STP port status of 'ofp_port' on 'ofproto' and stores it in
980 * 's'. If the 'enabled' member in 's' is false, then the other members
981 * are not meaningful.
982 *
983 * Returns 0 if successful, otherwise a positive errno value.*/
984int
4e022ec0 985ofproto_port_get_stp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
21f7563c
JP
986 struct ofproto_port_stp_status *s)
987{
988 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
989 if (!ofport) {
b0a5c43b 990 VLOG_WARN_RL(&rl, "%s: cannot get STP status on nonexistent "
94783c7c 991 "port %"PRIu32, ofproto->name, ofp_port);
21f7563c
JP
992 return ENODEV;
993 }
994
995 return (ofproto->ofproto_class->get_stp_port_status
996 ? ofproto->ofproto_class->get_stp_port_status(ofport, s)
997 : EOPNOTSUPP);
998}
fd28ce3a
JS
999
1000/* Retrieves STP port statistics of 'ofp_port' on 'ofproto' and stores it in
1001 * 's'. If the 'enabled' member in 's' is false, then the other members
1002 * are not meaningful.
1003 *
1004 * Returns 0 if successful, otherwise a positive errno value.*/
1005int
1006ofproto_port_get_stp_stats(struct ofproto *ofproto, ofp_port_t ofp_port,
1007 struct ofproto_port_stp_stats *s)
1008{
1009 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1010 if (!ofport) {
1011 VLOG_WARN_RL(&rl, "%s: cannot get STP stats on nonexistent "
94783c7c 1012 "port %"PRIu32, ofproto->name, ofp_port);
fd28ce3a
JS
1013 return ENODEV;
1014 }
1015
1016 return (ofproto->ofproto_class->get_stp_port_stats
1017 ? ofproto->ofproto_class->get_stp_port_stats(ofport, s)
1018 : EOPNOTSUPP);
1019}
9efd308e
DV
1020
1021/* Rapid Spanning Tree Protocol (RSTP) configuration. */
1022
1023/* Configures RSTP on 'ofproto' using the settings defined in 's'. If
1024 * 's' is NULL, disables RSTP.
1025 *
1026 * Returns 0 if successful, otherwise a positive errno value. */
1027int
1028ofproto_set_rstp(struct ofproto *ofproto,
1029 const struct ofproto_rstp_settings *s)
1030{
1031 if (!ofproto->ofproto_class->set_rstp) {
1032 return EOPNOTSUPP;
1033 }
1034 ofproto->ofproto_class->set_rstp(ofproto, s);
1035 return 0;
1036}
1037
1038/* Retrieves RSTP status of 'ofproto' and stores it in 's'. If the
1039 * 'enabled' member of 's' is false, then the other members are not
1040 * meaningful.
1041 *
1042 * Returns 0 if successful, otherwise a positive errno value. */
1043int
1044ofproto_get_rstp_status(struct ofproto *ofproto,
1045 struct ofproto_rstp_status *s)
1046{
1047 if (!ofproto->ofproto_class->get_rstp_status) {
1048 return EOPNOTSUPP;
1049 }
1050 ofproto->ofproto_class->get_rstp_status(ofproto, s);
1051 return 0;
1052}
1053
1054/* Configures RSTP on 'ofp_port' of 'ofproto' using the settings defined
1055 * in 's'. The caller is responsible for assigning RSTP port numbers
1056 * (using the 'port_num' member in the range of 1 through 255, inclusive)
1057 * and ensuring there are no duplicates. If the 's' is NULL, then RSTP
1058 * is disabled on the port.
1059 *
1060 * Returns 0 if successful, otherwise a positive errno value.*/
1061int
1062ofproto_port_set_rstp(struct ofproto *ofproto, ofp_port_t ofp_port,
1063 const struct ofproto_port_rstp_settings *s)
1064{
1065 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1066 if (!ofport) {
94783c7c 1067 VLOG_WARN("%s: cannot configure RSTP on nonexistent port %"PRIu32,
9efd308e
DV
1068 ofproto->name, ofp_port);
1069 return ENODEV;
1070 }
1071
1072 if (!ofproto->ofproto_class->set_rstp_port) {
1073 return EOPNOTSUPP;
1074 }
1075 ofproto->ofproto_class->set_rstp_port(ofport, s);
1076 return 0;
1077}
1078
1079/* Retrieves RSTP port status of 'ofp_port' on 'ofproto' and stores it in
1080 * 's'. If the 'enabled' member in 's' is false, then the other members
1081 * are not meaningful.
1082 *
1083 * Returns 0 if successful, otherwise a positive errno value.*/
1084int
1085ofproto_port_get_rstp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
1086 struct ofproto_port_rstp_status *s)
1087{
1088 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1089 if (!ofport) {
1090 VLOG_WARN_RL(&rl, "%s: cannot get RSTP status on nonexistent "
94783c7c 1091 "port %"PRIu32, ofproto->name, ofp_port);
9efd308e
DV
1092 return ENODEV;
1093 }
1094
1095 if (!ofproto->ofproto_class->get_rstp_port_status) {
1096 return EOPNOTSUPP;
1097 }
1098 ofproto->ofproto_class->get_rstp_port_status(ofport, s);
1099 return 0;
1100}
21f7563c 1101\f
8b36f51e
EJ
1102/* Queue DSCP configuration. */
1103
1104/* Registers meta-data associated with the 'n_qdscp' Qualities of Service
1105 * 'queues' attached to 'ofport'. This data is not intended to be sufficient
1106 * to implement QoS. Instead, it is used to implement features which require
1107 * knowledge of what queues exist on a port, and some basic information about
1108 * them.
1109 *
1110 * Returns 0 if successful, otherwise a positive errno value. */
1111int
4e022ec0 1112ofproto_port_set_queues(struct ofproto *ofproto, ofp_port_t ofp_port,
8b36f51e
EJ
1113 const struct ofproto_port_queue *queues,
1114 size_t n_queues)
1115{
1116 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1117
1118 if (!ofport) {
94783c7c 1119 VLOG_WARN("%s: cannot set queues on nonexistent port %"PRIu32,
8b36f51e
EJ
1120 ofproto->name, ofp_port);
1121 return ENODEV;
1122 }
1123
1124 return (ofproto->ofproto_class->set_queues
1125 ? ofproto->ofproto_class->set_queues(ofport, queues, n_queues)
1126 : EOPNOTSUPP);
1127}
1128\f
0477baa9
DF
1129/* LLDP configuration. */
1130void
1131ofproto_port_set_lldp(struct ofproto *ofproto,
1132 ofp_port_t ofp_port,
1133 const struct smap *cfg)
1134{
1135 struct ofport *ofport;
1136 int error;
1137
1138 ofport = ofproto_get_port(ofproto, ofp_port);
1139 if (!ofport) {
94783c7c 1140 VLOG_WARN("%s: cannot configure LLDP on nonexistent port %"PRIu32,
0477baa9
DF
1141 ofproto->name, ofp_port);
1142 return;
1143 }
1144 error = (ofproto->ofproto_class->set_lldp
1145 ? ofproto->ofproto_class->set_lldp(ofport, cfg)
1146 : EOPNOTSUPP);
1147 if (error) {
94783c7c 1148 VLOG_WARN("%s: lldp configuration on port %"PRIu32" (%s) failed (%s)",
0477baa9
DF
1149 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1150 ovs_strerror(error));
1151 }
1152}
1153
1154int
1155ofproto_set_aa(struct ofproto *ofproto, void *aux OVS_UNUSED,
1156 const struct aa_settings *s)
1157{
1158 if (!ofproto->ofproto_class->set_aa) {
1159 return EOPNOTSUPP;
1160 }
1161 ofproto->ofproto_class->set_aa(ofproto, s);
1162 return 0;
1163}
1164
1165int
1166ofproto_aa_mapping_register(struct ofproto *ofproto, void *aux,
1167 const struct aa_mapping_settings *s)
1168{
1169 if (!ofproto->ofproto_class->aa_mapping_set) {
1170 return EOPNOTSUPP;
1171 }
1172 ofproto->ofproto_class->aa_mapping_set(ofproto, aux, s);
1173 return 0;
1174}
1175
1176int
1177ofproto_aa_mapping_unregister(struct ofproto *ofproto, void *aux)
1178{
1179 if (!ofproto->ofproto_class->aa_mapping_unset) {
1180 return EOPNOTSUPP;
1181 }
1182 ofproto->ofproto_class->aa_mapping_unset(ofproto, aux);
1183 return 0;
1184}
1185
1186int
1187ofproto_aa_vlan_get_queued(struct ofproto *ofproto,
1188 struct ovs_list *list)
1189{
1190 if (!ofproto->ofproto_class->aa_vlan_get_queued) {
1191 return EOPNOTSUPP;
1192 }
1193 ofproto->ofproto_class->aa_vlan_get_queued(ofproto, list);
1194 return 0;
1195}
1196
1197unsigned int
1198ofproto_aa_vlan_get_queue_size(struct ofproto *ofproto)
1199{
1200 if (!ofproto->ofproto_class->aa_vlan_get_queue_size) {
1201 return EOPNOTSUPP;
1202 }
1203 return ofproto->ofproto_class->aa_vlan_get_queue_size(ofproto);
1204}
1205
e7934396
BP
1206/* Connectivity Fault Management configuration. */
1207
892815f5 1208/* Clears the CFM configuration from 'ofp_port' on 'ofproto'. */
e7934396 1209void
4e022ec0 1210ofproto_port_clear_cfm(struct ofproto *ofproto, ofp_port_t ofp_port)
e7934396 1211{
abe529af
BP
1212 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1213 if (ofport && ofproto->ofproto_class->set_cfm) {
a5610457 1214 ofproto->ofproto_class->set_cfm(ofport, NULL);
e7934396
BP
1215 }
1216}
72b06300 1217
892815f5 1218/* Configures connectivity fault management on 'ofp_port' in 'ofproto'. Takes
93b8df38
EJ
1219 * basic configuration from the configuration members in 'cfm', and the remote
1220 * maintenance point ID from remote_mpid. Ignores the statistics members of
1221 * 'cfm'.
e7934396 1222 *
892815f5 1223 * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
e7934396 1224void
4e022ec0 1225ofproto_port_set_cfm(struct ofproto *ofproto, ofp_port_t ofp_port,
a5610457 1226 const struct cfm_settings *s)
e7934396
BP
1227{
1228 struct ofport *ofport;
abe529af 1229 int error;
e7934396 1230
abe529af 1231 ofport = ofproto_get_port(ofproto, ofp_port);
e7934396 1232 if (!ofport) {
94783c7c 1233 VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu32,
892815f5 1234 ofproto->name, ofp_port);
e7934396
BP
1235 return;
1236 }
1237
93b8df38
EJ
1238 /* XXX: For configuration simplicity, we only support one remote_mpid
1239 * outside of the CFM module. It's not clear if this is the correct long
1240 * term solution or not. */
abe529af 1241 error = (ofproto->ofproto_class->set_cfm
a5610457 1242 ? ofproto->ofproto_class->set_cfm(ofport, s)
abe529af
BP
1243 : EOPNOTSUPP);
1244 if (error) {
94783c7c 1245 VLOG_WARN("%s: CFM configuration on port %"PRIu32" (%s) failed (%s)",
abe529af 1246 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
10a89ef0 1247 ovs_strerror(error));
e7934396 1248 }
e7934396 1249}
e7934396 1250
ccc09689
EJ
1251/* Configures BFD on 'ofp_port' in 'ofproto'. This function has no effect if
1252 * 'ofproto' does not have a port 'ofp_port'. */
1253void
4e022ec0 1254ofproto_port_set_bfd(struct ofproto *ofproto, ofp_port_t ofp_port,
ccc09689
EJ
1255 const struct smap *cfg)
1256{
1257 struct ofport *ofport;
1258 int error;
1259
1260 ofport = ofproto_get_port(ofproto, ofp_port);
1261 if (!ofport) {
94783c7c 1262 VLOG_WARN("%s: cannot configure bfd on nonexistent port %"PRIu32,
ccc09689 1263 ofproto->name, ofp_port);
e8999bdc 1264 return;
ccc09689
EJ
1265 }
1266
1267 error = (ofproto->ofproto_class->set_bfd
1268 ? ofproto->ofproto_class->set_bfd(ofport, cfg)
1269 : EOPNOTSUPP);
1270 if (error) {
94783c7c 1271 VLOG_WARN("%s: bfd configuration on port %"PRIu32" (%s) failed (%s)",
ccc09689 1272 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
10a89ef0 1273 ovs_strerror(error));
ccc09689
EJ
1274 }
1275}
1276
8f5514fe
AW
1277/* Checks the status change of BFD on 'ofport'.
1278 *
1279 * Returns true if 'ofproto_class' does not support 'bfd_status_changed'. */
1280bool
1281ofproto_port_bfd_status_changed(struct ofproto *ofproto, ofp_port_t ofp_port)
1282{
1283 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1284 return (ofport && ofproto->ofproto_class->bfd_status_changed
1285 ? ofproto->ofproto_class->bfd_status_changed(ofport)
1286 : true);
1287}
1288
88bf179a 1289/* Populates 'status' with the status of BFD on 'ofport'. Returns 0 on
8f5514fe
AW
1290 * success. Returns a positive errno otherwise. Has no effect if 'ofp_port'
1291 * is not an OpenFlow port in 'ofproto'.
88bf179a
AW
1292 *
1293 * The caller must provide and own '*status'. */
ccc09689 1294int
4e022ec0 1295ofproto_port_get_bfd_status(struct ofproto *ofproto, ofp_port_t ofp_port,
ccc09689
EJ
1296 struct smap *status)
1297{
1298 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1299 return (ofport && ofproto->ofproto_class->get_bfd_status
1300 ? ofproto->ofproto_class->get_bfd_status(ofport, status)
1301 : EOPNOTSUPP);
1302}
1303
fa066f01
BP
1304/* Checks the status of LACP negotiation for 'ofp_port' within ofproto.
1305 * Returns 1 if LACP partner information for 'ofp_port' is up-to-date,
1306 * 0 if LACP partner information is not current (generally indicating a
1307 * connectivity problem), or -1 if LACP is not enabled on 'ofp_port'. */
1308int
4e022ec0 1309ofproto_port_is_lacp_current(struct ofproto *ofproto, ofp_port_t ofp_port)
fa066f01 1310{
abe529af
BP
1311 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1312 return (ofport && ofproto->ofproto_class->port_is_lacp_current
1313 ? ofproto->ofproto_class->port_is_lacp_current(ofport)
fa066f01 1314 : -1);
e7934396 1315}
50b9699f
NM
1316
1317int
1318ofproto_port_get_lacp_stats(const struct ofport *port, struct lacp_slave_stats *stats)
1319{
1320 struct ofproto *ofproto = port->ofproto;
1321 int error;
1322
1323 if (ofproto->ofproto_class->port_get_lacp_stats) {
1324 error = ofproto->ofproto_class->port_get_lacp_stats(port, stats);
1325 } else {
1326 error = EOPNOTSUPP;
1327 }
1328
1329 return error;
1330}
e7934396 1331\f
fa066f01 1332/* Bundles. */
e7934396 1333
abe529af
BP
1334/* Registers a "bundle" associated with client data pointer 'aux' in 'ofproto'.
1335 * A bundle is the same concept as a Port in OVSDB, that is, it consists of one
1336 * or more "slave" devices (Interfaces, in OVSDB) along with a VLAN
1337 * configuration plus, if there is more than one slave, a bonding
1338 * configuration.
1339 *
1340 * If 'aux' is already registered then this function updates its configuration
1341 * to 's'. Otherwise, this function registers a new bundle.
1342 *
1343 * Bundles only affect the NXAST_AUTOPATH action and output to the OFPP_NORMAL
1344 * port. */
1345int
1346ofproto_bundle_register(struct ofproto *ofproto, void *aux,
1347 const struct ofproto_bundle_settings *s)
fa066f01 1348{
abe529af
BP
1349 return (ofproto->ofproto_class->bundle_set
1350 ? ofproto->ofproto_class->bundle_set(ofproto, aux, s)
1351 : EOPNOTSUPP);
fa066f01
BP
1352}
1353
abe529af
BP
1354/* Unregisters the bundle registered on 'ofproto' with auxiliary data 'aux'.
1355 * If no such bundle has been registered, this has no effect. */
1356int
1357ofproto_bundle_unregister(struct ofproto *ofproto, void *aux)
e7934396 1358{
abe529af 1359 return ofproto_bundle_register(ofproto, aux, NULL);
e7934396 1360}
fa066f01 1361
e7934396 1362\f
abe529af
BP
1363/* Registers a mirror associated with client data pointer 'aux' in 'ofproto'.
1364 * If 'aux' is already registered then this function updates its configuration
c06bba01 1365 * to 's'. Otherwise, this function registers a new mirror. */
abe529af
BP
1366int
1367ofproto_mirror_register(struct ofproto *ofproto, void *aux,
1368 const struct ofproto_mirror_settings *s)
064af421 1369{
abe529af
BP
1370 return (ofproto->ofproto_class->mirror_set
1371 ? ofproto->ofproto_class->mirror_set(ofproto, aux, s)
1372 : EOPNOTSUPP);
064af421
BP
1373}
1374
abe529af
BP
1375/* Unregisters the mirror registered on 'ofproto' with auxiliary data 'aux'.
1376 * If no mirror has been registered, this has no effect. */
1377int
1378ofproto_mirror_unregister(struct ofproto *ofproto, void *aux)
064af421 1379{
abe529af 1380 return ofproto_mirror_register(ofproto, aux, NULL);
064af421
BP
1381}
1382
9d24de3b
JP
1383/* Retrieves statistics from mirror associated with client data pointer
1384 * 'aux' in 'ofproto'. Stores packet and byte counts in 'packets' and
1385 * 'bytes', respectively. If a particular counters is not supported,
0477baa9
DF
1386 * the appropriate argument is set to UINT64_MAX.
1387 */
9d24de3b
JP
1388int
1389ofproto_mirror_get_stats(struct ofproto *ofproto, void *aux,
1390 uint64_t *packets, uint64_t *bytes)
1391{
1392 if (!ofproto->ofproto_class->mirror_get_stats) {
1393 *packets = *bytes = UINT64_MAX;
1394 return EOPNOTSUPP;
1395 }
1396
1397 return ofproto->ofproto_class->mirror_get_stats(ofproto, aux,
1398 packets, bytes);
1399}
1400
abe529af
BP
1401/* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs on
1402 * which all packets are flooded, instead of using MAC learning. If
1403 * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
1404 *
1405 * Flood VLANs affect only the treatment of packets output to the OFPP_NORMAL
1406 * port. */
1407int
1408ofproto_set_flood_vlans(struct ofproto *ofproto, unsigned long *flood_vlans)
abdfe474 1409{
abe529af
BP
1410 return (ofproto->ofproto_class->set_flood_vlans
1411 ? ofproto->ofproto_class->set_flood_vlans(ofproto, flood_vlans)
1412 : EOPNOTSUPP);
abdfe474
JP
1413}
1414
abe529af
BP
1415/* Returns true if 'aux' is a registered bundle that is currently in use as the
1416 * output for a mirror. */
1417bool
b4affc74 1418ofproto_is_mirror_output_bundle(const struct ofproto *ofproto, void *aux)
abe529af
BP
1419{
1420 return (ofproto->ofproto_class->is_mirror_output_bundle
1421 ? ofproto->ofproto_class->is_mirror_output_bundle(ofproto, aux)
1422 : false);
1423}
1424\f
254750ce
BP
1425/* Configuration of OpenFlow tables. */
1426
1427/* Returns the number of OpenFlow tables in 'ofproto'. */
1428int
1429ofproto_get_n_tables(const struct ofproto *ofproto)
1430{
1431 return ofproto->n_tables;
1432}
1433
adcf00ba
AZ
1434/* Returns the number of Controller visible OpenFlow tables
1435 * in 'ofproto'. This number will exclude Hidden tables.
1436 * This funtion's return value should be less or equal to that of
1437 * ofproto_get_n_tables() . */
1438uint8_t
1439ofproto_get_n_visible_tables(const struct ofproto *ofproto)
1440{
1441 uint8_t n = ofproto->n_tables;
1442
1443 /* Count only non-hidden tables in the number of tables. (Hidden tables,
1444 * if present, are always at the end.) */
1445 while(n && (ofproto->tables[n - 1].flags & OFTABLE_HIDDEN)) {
1446 n--;
1447 }
1448
1449 return n;
1450}
1451
254750ce
BP
1452/* Configures the OpenFlow table in 'ofproto' with id 'table_id' with the
1453 * settings from 's'. 'table_id' must be in the range 0 through the number of
1454 * OpenFlow tables in 'ofproto' minus 1, inclusive.
1455 *
1456 * For read-only tables, only the name may be configured. */
1457void
1458ofproto_configure_table(struct ofproto *ofproto, int table_id,
1459 const struct ofproto_table_settings *s)
1460{
1461 struct oftable *table;
1462
cb22974d 1463 ovs_assert(table_id >= 0 && table_id < ofproto->n_tables);
254750ce
BP
1464 table = &ofproto->tables[table_id];
1465
1466 oftable_set_name(table, s->name);
1467
1468 if (table->flags & OFTABLE_READONLY) {
1469 return;
1470 }
1471
f358a2cb
JR
1472 if (classifier_set_prefix_fields(&table->cls,
1473 s->prefix_fields, s->n_prefix_fields)) {
1474 /* XXX: Trigger revalidation. */
1475 }
834fe5cb
BP
1476
1477 ovs_mutex_lock(&ofproto_mutex);
82c22d34
BP
1478 unsigned int new_eviction = (s->enable_eviction
1479 ? table->eviction | EVICTION_CLIENT
1480 : table->eviction & ~EVICTION_CLIENT);
1481 oftable_configure_eviction(table, new_eviction, s->groups, s->n_groups);
7394b8fb 1482 table->max_flows = s->max_flows;
6787a49f 1483 evict_rules_from_table(table);
834fe5cb 1484 ovs_mutex_unlock(&ofproto_mutex);
254750ce
BP
1485}
1486\f
81e2083f
BP
1487bool
1488ofproto_has_snoops(const struct ofproto *ofproto)
1489{
1490 return connmgr_has_snoops(ofproto->connmgr);
1491}
1492
064af421 1493void
81e2083f 1494ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
064af421 1495{
19a87e36 1496 connmgr_get_snoops(ofproto->connmgr, snoops);
064af421
BP
1497}
1498
a73fcd71 1499/* Deletes 'rule' from 'ofproto'.
8037acb4 1500 *
b74cb5d8
BP
1501 * Within an ofproto implementation, this function allows an ofproto
1502 * implementation to destroy any rules that remain when its ->destruct()
1503 * function is called. This function is not suitable for use elsewhere in an
1504 * ofproto implementation.
1505 *
b74cb5d8 1506 * This function implements steps 4.4 and 4.5 in the section titled "Rule Life
8b81d1ef 1507 * Cycle" in ofproto-provider.h. */
b74cb5d8 1508void
8b81d1ef 1509ofproto_rule_delete(struct ofproto *ofproto, struct rule *rule)
15aaf599 1510 OVS_EXCLUDED(ofproto_mutex)
7ee20df1 1511{
834fe5cb
BP
1512 /* This skips the ofmonitor and flow-removed notifications because the
1513 * switch is being deleted and any OpenFlow channels have been or soon will
1514 * be killed. */
15aaf599 1515 ovs_mutex_lock(&ofproto_mutex);
39c94593 1516
30d0452c 1517 if (rule->state == RULE_INSERTED) {
39c94593 1518 /* Make sure there is no postponed removal of the rule. */
44e0c35d 1519 ovs_assert(cls_rule_visible_in_version(&rule->cr, OVS_VERSION_MAX));
39c94593
JR
1520
1521 if (!classifier_remove(&rule->ofproto->tables[rule->table_id].cls,
1522 &rule->cr)) {
1523 OVS_NOT_REACHED();
1524 }
1525 ofproto_rule_remove__(rule->ofproto, rule);
1fc71871
JR
1526 if (ofproto->ofproto_class->rule_delete) {
1527 ofproto->ofproto_class->rule_delete(rule);
1528 }
25010c68
JR
1529
1530 /* This may not be the last reference to the rule. */
39c94593
JR
1531 ofproto_rule_unref(rule);
1532 }
15aaf599 1533 ovs_mutex_unlock(&ofproto_mutex);
8037acb4
BP
1534}
1535
1536static void
1537ofproto_flush__(struct ofproto *ofproto)
15aaf599 1538 OVS_EXCLUDED(ofproto_mutex)
8037acb4 1539{
d0918789 1540 struct oftable *table;
7ee20df1 1541
3948503a 1542 /* This will flush all datapath flows. */
7ee20df1
BP
1543 if (ofproto->ofproto_class->flush) {
1544 ofproto->ofproto_class->flush(ofproto);
1545 }
1546
3948503a
JR
1547 /* XXX: There is a small race window here, where new datapath flows can be
1548 * created by upcall handlers based on the existing flow table. We can not
1549 * call ofproto class flush while holding 'ofproto_mutex' to prevent this,
1550 * as then we could deadlock on syncing with the handler threads waiting on
1551 * the same mutex. */
1552
15aaf599 1553 ovs_mutex_lock(&ofproto_mutex);
b772ded8 1554 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
802f84ff 1555 struct rule_collection rules;
78c8df12 1556 struct rule *rule;
7ee20df1 1557
5c67e4af
BP
1558 if (table->flags & OFTABLE_HIDDEN) {
1559 continue;
1560 }
1561
802f84ff
JR
1562 rule_collection_init(&rules);
1563
de4ad4a2 1564 CLS_FOR_EACH (rule, cr, &table->cls) {
802f84ff 1565 rule_collection_add(&rules, rule);
7ee20df1 1566 }
802f84ff 1567 delete_flows__(&rules, OFPRR_DELETE, NULL);
7ee20df1 1568 }
3948503a
JR
1569 /* XXX: Concurrent handler threads may insert new learned flows based on
1570 * learn actions of the now deleted flows right after we release
1571 * 'ofproto_mutex'. */
15aaf599 1572 ovs_mutex_unlock(&ofproto_mutex);
7ee20df1
BP
1573}
1574
abe529af
BP
1575static void
1576ofproto_destroy__(struct ofproto *ofproto)
15aaf599 1577 OVS_EXCLUDED(ofproto_mutex)
abe529af 1578{
d0918789 1579 struct oftable *table;
6c1491fb 1580
db88b35c 1581 cmap_destroy(&ofproto->groups);
7395c052 1582
abe529af 1583 hmap_remove(&all_ofprotos, &ofproto->hmap_node);
04f48a68 1584
abe529af 1585 free(ofproto->name);
955a7127 1586 free(ofproto->type);
abe529af
BP
1587 free(ofproto->mfr_desc);
1588 free(ofproto->hw_desc);
1589 free(ofproto->sw_desc);
1590 free(ofproto->serial_desc);
1591 free(ofproto->dp_desc);
abe529af 1592 hmap_destroy(&ofproto->ports);
fdcea803 1593 hmap_destroy(&ofproto->ofport_usage);
abe529af 1594 shash_destroy(&ofproto->port_by_name);
e1b1d06a 1595 simap_destroy(&ofproto->ofp_requests);
6c1491fb 1596
b772ded8 1597 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
d0918789 1598 oftable_destroy(table);
6c1491fb
BP
1599 }
1600 free(ofproto->tables);
fa066f01 1601
a70436a3
YHW
1602 ovs_mutex_lock(&ofproto->vl_mff_map.mutex);
1603 mf_vl_mff_map_clear(&ofproto->vl_mff_map, true);
1604 ovs_mutex_unlock(&ofproto->vl_mff_map.mutex);
1605 cmap_destroy(&ofproto->vl_mff_map.cmap);
1606 ovs_mutex_destroy(&ofproto->vl_mff_map.mutex);
1607 tun_metadata_free(ovsrcu_get_protected(struct tun_table *,
1608 &ofproto->metadata_tab));
1609
1406c79b
BP
1610 ovs_assert(hindex_is_empty(&ofproto->cookies));
1611 hindex_destroy(&ofproto->cookies);
1612
35f48b8b
BP
1613 ovs_assert(hmap_is_empty(&ofproto->learned_cookies));
1614 hmap_destroy(&ofproto->learned_cookies);
1615
abe529af
BP
1616 ofproto->ofproto_class->dealloc(ofproto);
1617}
fa066f01 1618
39c94593
JR
1619/* Destroying rules is doubly deferred, must have 'ofproto' around for them.
1620 * - 1st we defer the removal of the rules from the classifier
1621 * - 2nd we defer the actual destruction of the rules. */
1622static void
1623ofproto_destroy_defer__(struct ofproto *ofproto)
1624 OVS_EXCLUDED(ofproto_mutex)
1625{
1626 ovsrcu_postpone(ofproto_destroy__, ofproto);
1627}
1628
064af421 1629void
9aad5a5a 1630ofproto_destroy(struct ofproto *p, bool del)
15aaf599 1631 OVS_EXCLUDED(ofproto_mutex)
064af421 1632{
ca0f572c 1633 struct ofport *ofport, *next_ofport;
4ec3d7c7 1634 struct ofport_usage *usage;
064af421
BP
1635
1636 if (!p) {
1637 return;
1638 }
1639
ba8cff36
AZ
1640 meter_delete_all(p);
1641 hmap_destroy(&p->meters);
717de9ff 1642
7ee20df1 1643 ofproto_flush__(p);
4e8e4213 1644 HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
9aad5a5a 1645 ofport_destroy(ofport, del);
064af421 1646 }
064af421 1647
4ec3d7c7 1648 HMAP_FOR_EACH_POP (usage, hmap_node, &p->ofport_usage) {
fdcea803
GS
1649 free(usage);
1650 }
1651
fe13ccdc 1652 p->ofproto_class->destruct(p, del);
58f19539
DDP
1653
1654 /* We should not postpone this because it involves deleting a listening
25010c68
JR
1655 * socket which we may want to reopen soon. 'connmgr' may be used by other
1656 * threads only if they take the ofproto_mutex and read a non-NULL
1657 * 'ofproto->connmgr'. */
1658 ovs_mutex_lock(&ofproto_mutex);
58f19539 1659 connmgr_destroy(p->connmgr);
25010c68
JR
1660 p->connmgr = NULL;
1661 ovs_mutex_unlock(&ofproto_mutex);
58f19539 1662
f416c8d6 1663 /* Destroying rules is deferred, must have 'ofproto' around for them. */
39c94593 1664 ovsrcu_postpone(ofproto_destroy_defer__, p);
064af421
BP
1665}
1666
abe529af
BP
1667/* Destroys the datapath with the respective 'name' and 'type'. With the Linux
1668 * kernel datapath, for example, this destroys the datapath in the kernel, and
1669 * with the netdev-based datapath, it tears down the data structures that
1670 * represent the datapath.
1671 *
1672 * The datapath should not be currently open as an ofproto. */
064af421 1673int
abe529af 1674ofproto_delete(const char *name, const char *type)
064af421 1675{
abe529af
BP
1676 const struct ofproto_class *class = ofproto_class_find__(type);
1677 return (!class ? EAFNOSUPPORT
1678 : !class->del ? EACCES
1679 : class->del(type, name));
064af421
BP
1680}
1681
e9e28be3
BP
1682static void
1683process_port_change(struct ofproto *ofproto, int error, char *devname)
1684{
1685 if (error == ENOBUFS) {
1686 reinit_ports(ofproto);
1687 } else if (!error) {
1688 update_port(ofproto, devname);
1689 free(devname);
1690 }
1691}
1692
11a574a7
JP
1693int
1694ofproto_type_run(const char *datapath_type)
1695{
1696 const struct ofproto_class *class;
1697 int error;
1698
1699 datapath_type = ofproto_normalize_type(datapath_type);
1700 class = ofproto_class_find__(datapath_type);
1701
1702 error = class->type_run ? class->type_run(datapath_type) : 0;
1703 if (error && error != EAGAIN) {
1704 VLOG_ERR_RL(&rl, "%s: type_run failed (%s)",
10a89ef0 1705 datapath_type, ovs_strerror(error));
11a574a7
JP
1706 }
1707 return error;
1708}
1709
11a574a7
JP
1710void
1711ofproto_type_wait(const char *datapath_type)
1712{
1713 const struct ofproto_class *class;
1714
1715 datapath_type = ofproto_normalize_type(datapath_type);
1716 class = ofproto_class_find__(datapath_type);
1717
1718 if (class->type_wait) {
1719 class->type_wait(datapath_type);
1720 }
1721}
1722
064af421 1723int
abe529af 1724ofproto_run(struct ofproto *p)
064af421 1725{
064af421 1726 int error;
da4a6191 1727 uint64_t new_seq;
064af421 1728
abe529af 1729 error = p->ofproto_class->run(p);
5fcc0d00 1730 if (error && error != EAGAIN) {
10a89ef0 1731 VLOG_ERR_RL(&rl, "%s: run failed (%s)", p->name, ovs_strerror(error));
149f577a
JG
1732 }
1733
448c2fa8
EJ
1734 /* Restore the eviction group heap invariant occasionally. */
1735 if (p->eviction_group_timer < time_msec()) {
1736 size_t i;
1737
1738 p->eviction_group_timer = time_msec() + 1000;
1739
1740 for (i = 0; i < p->n_tables; i++) {
1741 struct oftable *table = &p->tables[i];
1742 struct eviction_group *evg;
448c2fa8
EJ
1743 struct rule *rule;
1744
82c22d34 1745 if (!table->eviction) {
448c2fa8
EJ
1746 continue;
1747 }
1748
d79e3d70 1749 if (table->n_flows > 100000) {
1a9bb326
EJ
1750 static struct vlog_rate_limit count_rl =
1751 VLOG_RATE_LIMIT_INIT(1, 1);
1752 VLOG_WARN_RL(&count_rl, "Table %"PRIuSIZE" has an excessive"
d79e3d70 1753 " number of rules: %d", i, table->n_flows);
1a9bb326
EJ
1754 }
1755
15aaf599 1756 ovs_mutex_lock(&ofproto_mutex);
5f0476ce 1757 CLS_FOR_EACH (rule, cr, &table->cls) {
6d56c1f1
K
1758 if (rule->idle_timeout || rule->hard_timeout) {
1759 if (!rule->eviction_group) {
1760 eviction_group_add_rule(rule);
1761 } else {
1762 heap_raw_change(&rule->evg_node,
1763 rule_eviction_priority(p, rule));
1764 }
448c2fa8
EJ
1765 }
1766 }
6d56c1f1
K
1767
1768 HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
1769 heap_rebuild(&evg->rules);
1770 }
15aaf599 1771 ovs_mutex_unlock(&ofproto_mutex);
448c2fa8
EJ
1772 }
1773 }
1774
5bf0e941 1775 if (p->ofproto_class->port_poll) {
7436ed80
BP
1776 char *devname;
1777
5bf0e941
BP
1778 while ((error = p->ofproto_class->port_poll(p, &devname)) != EAGAIN) {
1779 process_port_change(p, error, devname);
064af421 1780 }
e9e28be3 1781 }
031d8bff 1782
da4a6191
JS
1783 new_seq = seq_read(connectivity_seq_get());
1784 if (new_seq != p->change_seq) {
1785 struct sset devnames;
1786 const char *devname;
1787 struct ofport *ofport;
1788
1789 /* Update OpenFlow port status for any port whose netdev has changed.
1790 *
1791 * Refreshing a given 'ofport' can cause an arbitrary ofport to be
1792 * destroyed, so it's not safe to update ports directly from the
1793 * HMAP_FOR_EACH loop, or even to use HMAP_FOR_EACH_SAFE. Instead, we
1794 * need this two-phase approach. */
1795 sset_init(&devnames);
1796 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
61501798
AW
1797 uint64_t port_change_seq;
1798
1799 port_change_seq = netdev_get_change_seq(ofport->netdev);
1800 if (ofport->change_seq != port_change_seq) {
1801 ofport->change_seq = port_change_seq;
1802 sset_add(&devnames, netdev_get_name(ofport->netdev));
1803 }
031d8bff 1804 }
da4a6191
JS
1805 SSET_FOR_EACH (devname, &devnames) {
1806 update_port(p, devname);
1807 }
1808 sset_destroy(&devnames);
1809
1810 p->change_seq = new_seq;
064af421
BP
1811 }
1812
834fe5cb 1813 connmgr_run(p->connmgr, handle_openflow);
064af421 1814
5fcc0d00
BP
1815 return error;
1816}
1817
064af421
BP
1818void
1819ofproto_wait(struct ofproto *p)
1820{
abe529af 1821 p->ofproto_class->wait(p);
5bf0e941
BP
1822 if (p->ofproto_class->port_poll_wait) {
1823 p->ofproto_class->port_poll_wait(p);
e7934396 1824 }
da4a6191 1825 seq_wait(connectivity_seq_get(), p->change_seq);
834fe5cb 1826 connmgr_wait(p->connmgr);
064af421
BP
1827}
1828
064af421
BP
1829bool
1830ofproto_is_alive(const struct ofproto *p)
1831{
19a87e36 1832 return connmgr_has_controllers(p->connmgr);
064af421
BP
1833}
1834
0d085684
BP
1835/* Adds some memory usage statistics for 'ofproto' into 'usage', for use with
1836 * memory_report(). */
1837void
1838ofproto_get_memory_usage(const struct ofproto *ofproto, struct simap *usage)
1839{
1840 const struct oftable *table;
1841 unsigned int n_rules;
1842
1843 simap_increase(usage, "ports", hmap_count(&ofproto->ports));
15aaf599 1844
0d085684
BP
1845 n_rules = 0;
1846 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
d79e3d70 1847 n_rules += table->n_flows;
0d085684
BP
1848 }
1849 simap_increase(usage, "rules", n_rules);
1850
1851 if (ofproto->ofproto_class->get_memory_usage) {
1852 ofproto->ofproto_class->get_memory_usage(ofproto, usage);
1853 }
1854
1855 connmgr_get_memory_usage(ofproto->connmgr, usage);
1856}
1857
1c030aa5
EJ
1858void
1859ofproto_type_get_memory_usage(const char *datapath_type, struct simap *usage)
1860{
1861 const struct ofproto_class *class;
1862
1863 datapath_type = ofproto_normalize_type(datapath_type);
1864 class = ofproto_class_find__(datapath_type);
1865
1866 if (class && class->type_get_memory_usage) {
1867 class->type_get_memory_usage(datapath_type, usage);
1868 }
1869}
1870
bffc0589 1871void
2cdcb898 1872ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
bffc0589
AE
1873 struct shash *info)
1874{
19a87e36 1875 connmgr_get_controller_info(ofproto->connmgr, info);
bffc0589
AE
1876}
1877
1878void
1879ofproto_free_ofproto_controller_info(struct shash *info)
1880{
72ba2ed3 1881 connmgr_free_controller_info(info);
bffc0589
AE
1882}
1883
b5827b24
BP
1884/* Makes a deep copy of 'old' into 'port'. */
1885void
1886ofproto_port_clone(struct ofproto_port *port, const struct ofproto_port *old)
1887{
1888 port->name = xstrdup(old->name);
1889 port->type = xstrdup(old->type);
1890 port->ofp_port = old->ofp_port;
1891}
1892
1893/* Frees memory allocated to members of 'ofproto_port'.
3a6ccc8c 1894 *
b5827b24
BP
1895 * Do not call this function on an ofproto_port obtained from
1896 * ofproto_port_dump_next(): that function retains ownership of the data in the
1897 * ofproto_port. */
1898void
1899ofproto_port_destroy(struct ofproto_port *ofproto_port)
1900{
1901 free(ofproto_port->name);
1902 free(ofproto_port->type);
1903}
1904
b5827b24 1905/* Initializes 'dump' to begin dumping the ports in an ofproto.
3a6ccc8c 1906 *
b5827b24
BP
1907 * This function provides no status indication. An error status for the entire
1908 * dump operation is provided when it is completed by calling
1909 * ofproto_port_dump_done().
1910 */
1911void
1912ofproto_port_dump_start(struct ofproto_port_dump *dump,
1913 const struct ofproto *ofproto)
1914{
abe529af
BP
1915 dump->ofproto = ofproto;
1916 dump->error = ofproto->ofproto_class->port_dump_start(ofproto,
1917 &dump->state);
b5827b24
BP
1918}
1919
1920/* Attempts to retrieve another port from 'dump', which must have been created
1921 * with ofproto_port_dump_start(). On success, stores a new ofproto_port into
1922 * 'port' and returns true. On failure, returns false.
1923 *
1924 * Failure might indicate an actual error or merely that the last port has been
1925 * dumped. An error status for the entire dump operation is provided when it
1926 * is completed by calling ofproto_port_dump_done().
1927 *
1928 * The ofproto owns the data stored in 'port'. It will remain valid until at
1929 * least the next time 'dump' is passed to ofproto_port_dump_next() or
1930 * ofproto_port_dump_done(). */
1931bool
1932ofproto_port_dump_next(struct ofproto_port_dump *dump,
1933 struct ofproto_port *port)
1934{
abe529af
BP
1935 const struct ofproto *ofproto = dump->ofproto;
1936
1937 if (dump->error) {
1938 return false;
1939 }
b5827b24 1940
abe529af
BP
1941 dump->error = ofproto->ofproto_class->port_dump_next(ofproto, dump->state,
1942 port);
1943 if (dump->error) {
1944 ofproto->ofproto_class->port_dump_done(ofproto, dump->state);
1945 return false;
b5827b24 1946 }
abe529af 1947 return true;
b5827b24
BP
1948}
1949
1950/* Completes port table dump operation 'dump', which must have been created
1951 * with ofproto_port_dump_start(). Returns 0 if the dump operation was
1952 * error-free, otherwise a positive errno value describing the problem. */
3a6ccc8c 1953int
b5827b24 1954ofproto_port_dump_done(struct ofproto_port_dump *dump)
3a6ccc8c 1955{
abe529af
BP
1956 const struct ofproto *ofproto = dump->ofproto;
1957 if (!dump->error) {
1958 dump->error = ofproto->ofproto_class->port_dump_done(ofproto,
1959 dump->state);
1960 }
1961 return dump->error == EOF ? 0 : dump->error;
b5827b24
BP
1962}
1963
0aeaabc8
JP
1964/* Returns the type to pass to netdev_open() when a datapath of type
1965 * 'datapath_type' has a port of type 'port_type', for a few special
1966 * cases when a netdev type differs from a port type. For example, when
1967 * using the userspace datapath, a port of type "internal" needs to be
1968 * opened as "tap".
1969 *
1970 * Returns either 'type' itself or a string literal, which must not be
1971 * freed. */
1972const char *
1973ofproto_port_open_type(const char *datapath_type, const char *port_type)
1974{
1975 const struct ofproto_class *class;
1976
1977 datapath_type = ofproto_normalize_type(datapath_type);
1978 class = ofproto_class_find__(datapath_type);
1979 if (!class) {
1980 return port_type;
1981 }
1982
1983 return (class->port_open_type
1984 ? class->port_open_type(datapath_type, port_type)
1985 : port_type);
1986}
1987
81816a5f
JP
1988/* Attempts to add 'netdev' as a port on 'ofproto'. If 'ofp_portp' is
1989 * non-null and '*ofp_portp' is not OFPP_NONE, attempts to use that as
1990 * the port's OpenFlow port number.
1991 *
1992 * If successful, returns 0 and sets '*ofp_portp' to the new port's
1993 * OpenFlow port number (if 'ofp_portp' is non-null). On failure,
1994 * returns a positive errno value and sets '*ofp_portp' to OFPP_NONE (if
1995 * 'ofp_portp' is non-null). */
b5827b24
BP
1996int
1997ofproto_port_add(struct ofproto *ofproto, struct netdev *netdev,
4e022ec0 1998 ofp_port_t *ofp_portp)
b5827b24 1999{
4e022ec0 2000 ofp_port_t ofp_port = ofp_portp ? *ofp_portp : OFPP_NONE;
3a6ccc8c
BP
2001 int error;
2002
e1b1d06a 2003 error = ofproto->ofproto_class->port_add(ofproto, netdev);
1fa24dea 2004 if (!error) {
e1b1d06a
JP
2005 const char *netdev_name = netdev_get_name(netdev);
2006
4e022ec0
AW
2007 simap_put(&ofproto->ofp_requests, netdev_name,
2008 ofp_to_u16(ofp_port));
01c77073 2009 error = update_port(ofproto, netdev_name);
1fa24dea 2010 }
b5827b24 2011 if (ofp_portp) {
17f69db5
BP
2012 *ofp_portp = OFPP_NONE;
2013 if (!error) {
2014 struct ofproto_port ofproto_port;
2015
2016 error = ofproto_port_query_by_name(ofproto,
2017 netdev_get_name(netdev),
2018 &ofproto_port);
2019 if (!error) {
2020 *ofp_portp = ofproto_port.ofp_port;
2021 ofproto_port_destroy(&ofproto_port);
2022 }
2023 }
3a6ccc8c
BP
2024 }
2025 return error;
2026}
2027
b5827b24
BP
2028/* Looks up a port named 'devname' in 'ofproto'. On success, returns 0 and
2029 * initializes '*port' appropriately; on failure, returns a positive errno
2030 * value.
2031 *
abe529af 2032 * The caller owns the data in 'ofproto_port' and must free it with
b5827b24
BP
2033 * ofproto_port_destroy() when it is no longer needed. */
2034int
2035ofproto_port_query_by_name(const struct ofproto *ofproto, const char *devname,
2036 struct ofproto_port *port)
a4e2e1f2 2037{
b5827b24
BP
2038 int error;
2039
abe529af
BP
2040 error = ofproto->ofproto_class->port_query_by_name(ofproto, devname, port);
2041 if (error) {
2042 memset(port, 0, sizeof *port);
b5827b24
BP
2043 }
2044 return error;
a4e2e1f2
EJ
2045}
2046
b5827b24 2047/* Deletes port number 'ofp_port' from the datapath for 'ofproto'.
3a6ccc8c 2048 * Returns 0 if successful, otherwise a positive errno. */
064af421 2049int
4e022ec0 2050ofproto_port_del(struct ofproto *ofproto, ofp_port_t ofp_port)
064af421 2051{
abe529af 2052 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1264ec95 2053 const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
e1b1d06a 2054 struct simap_node *ofp_request_node;
3cf10406 2055 int error;
cdee00fd 2056
e1b1d06a
JP
2057 ofp_request_node = simap_find(&ofproto->ofp_requests, name);
2058 if (ofp_request_node) {
2059 simap_delete(&ofproto->ofp_requests, ofp_request_node);
2060 }
2061
abe529af 2062 error = ofproto->ofproto_class->port_del(ofproto, ofp_port);
892815f5 2063 if (!error && ofport) {
1264ec95
BP
2064 /* 'name' is the netdev's name and update_port() is going to close the
2065 * netdev. Just in case update_port() refers to 'name' after it
3a6ccc8c
BP
2066 * destroys 'ofport', make a copy of it around the update_port()
2067 * call. */
2068 char *devname = xstrdup(name);
2069 update_port(ofproto, devname);
2070 free(devname);
3cf10406
BP
2071 }
2072 return error;
064af421
BP
2073}
2074
91364d18
IM
2075/* Refreshes datapath configuration of port number 'ofp_port' in 'ofproto'.
2076 *
2077 * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
2078void
2079ofproto_port_set_config(struct ofproto *ofproto, ofp_port_t ofp_port,
2080 const struct smap *cfg)
2081{
2082 struct ofport *ofport;
2083 int error;
2084
2085 ofport = ofproto_get_port(ofproto, ofp_port);
2086 if (!ofport) {
94783c7c 2087 VLOG_WARN("%s: cannot configure datapath on nonexistent port %"PRIu32,
91364d18
IM
2088 ofproto->name, ofp_port);
2089 return;
2090 }
2091
2092 error = (ofproto->ofproto_class->port_set_config
2093 ? ofproto->ofproto_class->port_set_config(ofport, cfg)
2094 : EOPNOTSUPP);
2095 if (error) {
94783c7c 2096 VLOG_WARN("%s: datapath configuration on port %"PRIu32
91364d18
IM
2097 " (%s) failed (%s)",
2098 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
2099 ovs_strerror(error));
2100 }
2101}
2102
2103
276f6518
SH
2104static void
2105flow_mod_init(struct ofputil_flow_mod *fm,
eb391b76 2106 const struct match *match, int priority,
276f6518
SH
2107 const struct ofpact *ofpacts, size_t ofpacts_len,
2108 enum ofp_flow_mod_command command)
2109{
39cc5c4a
BP
2110 *fm = (struct ofputil_flow_mod) {
2111 .match = *match,
2112 .priority = priority,
2113 .table_id = 0,
2114 .command = command,
2115 .buffer_id = UINT32_MAX,
2116 .out_port = OFPP_ANY,
2117 .out_group = OFPG_ANY,
2118 .ofpacts = CONST_CAST(struct ofpact *, ofpacts),
2119 .ofpacts_len = ofpacts_len,
39cc5c4a 2120 };
276f6518
SH
2121}
2122
97f63e57
BP
2123static int
2124simple_flow_mod(struct ofproto *ofproto,
eb391b76 2125 const struct match *match, int priority,
97f63e57
BP
2126 const struct ofpact *ofpacts, size_t ofpacts_len,
2127 enum ofp_flow_mod_command command)
2128{
7338102b 2129 struct ofputil_flow_mod fm;
97f63e57 2130
7338102b 2131 flow_mod_init(&fm, match, priority, ofpacts, ofpacts_len, command);
15aaf599 2132
7338102b 2133 return handle_flow_mod__(ofproto, &fm, NULL);
97f63e57
BP
2134}
2135
6c1491fb 2136/* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
fa8b054f
BP
2137 * performs the 'n_actions' actions in 'actions'. The new flow will not
2138 * timeout.
2139 *
2140 * If cls_rule->priority is in the range of priorities supported by OpenFlow
2141 * (0...65535, inclusive) then the flow will be visible to OpenFlow
2142 * controllers; otherwise, it will be hidden.
2143 *
f25d0cf3 2144 * The caller retains ownership of 'cls_rule' and 'ofpacts'.
6c1491fb
BP
2145 *
2146 * This is a helper function for in-band control and fail-open. */
064af421 2147void
81a76618 2148ofproto_add_flow(struct ofproto *ofproto, const struct match *match,
eb391b76 2149 int priority,
f25d0cf3 2150 const struct ofpact *ofpacts, size_t ofpacts_len)
15aaf599 2151 OVS_EXCLUDED(ofproto_mutex)
064af421 2152{
7ee20df1 2153 const struct rule *rule;
6f00e29b 2154 bool must_add;
7ee20df1 2155
97f63e57
BP
2156 /* First do a cheap check whether the rule we're looking for already exists
2157 * with the actions that we want. If it does, then we're done. */
81a76618 2158 rule = rule_from_cls_rule(classifier_find_match_exactly(
2b7b1427 2159 &ofproto->tables[0].cls, match, priority,
44e0c35d 2160 OVS_VERSION_MAX));
6f00e29b 2161 if (rule) {
dc723c44 2162 const struct rule_actions *actions = rule_get_actions(rule);
06a0f3e2 2163 must_add = !ofpacts_equal(actions->ofpacts, actions->ofpacts_len,
6f00e29b 2164 ofpacts, ofpacts_len);
6f00e29b
BP
2165 } else {
2166 must_add = true;
2167 }
97f63e57
BP
2168
2169 /* If there's no such rule or the rule doesn't have the actions we want,
2170 * fall back to a executing a full flow mod. We can't optimize this at
2171 * all because we didn't take enough locks above to ensure that the flow
2172 * table didn't already change beneath us. */
6f00e29b 2173 if (must_add) {
97f63e57
BP
2174 simple_flow_mod(ofproto, match, priority, ofpacts, ofpacts_len,
2175 OFPFC_MODIFY_STRICT);
7ee20df1 2176 }
064af421
BP
2177}
2178
d51c8b71
JR
2179/* Executes the flow modification specified in 'fm'. Returns 0 on success, or
2180 * an OFPERR_* OpenFlow error code on failure.
75a75043 2181 *
2c7ee524 2182 * This is a helper function for in-band control and fail-open. */
d51c8b71 2183enum ofperr
7338102b 2184ofproto_flow_mod(struct ofproto *ofproto, const struct ofputil_flow_mod *fm)
15aaf599 2185 OVS_EXCLUDED(ofproto_mutex)
75a75043 2186{
7338102b 2187 return handle_flow_mod__(ofproto, fm, NULL);
75a75043
BP
2188}
2189
6c1491fb
BP
2190/* Searches for a rule with matching criteria exactly equal to 'target' in
2191 * ofproto's table 0 and, if it finds one, deletes it.
2192 *
2193 * This is a helper function for in-band control and fail-open. */
b20f4073 2194void
81a76618 2195ofproto_delete_flow(struct ofproto *ofproto,
eb391b76 2196 const struct match *target, int priority)
25010c68 2197 OVS_REQUIRES(ofproto_mutex)
064af421 2198{
8037acb4 2199 struct classifier *cls = &ofproto->tables[0].cls;
064af421
BP
2200 struct rule *rule;
2201
97f63e57
BP
2202 /* First do a cheap check whether the rule we're looking for has already
2203 * been deleted. If so, then we're done. */
39c94593 2204 rule = rule_from_cls_rule(classifier_find_match_exactly(
44e0c35d 2205 cls, target, priority, OVS_VERSION_MAX));
834fe5cb
BP
2206 if (!rule) {
2207 return;
bcf84111 2208 }
834fe5cb 2209
25010c68
JR
2210 struct rule_collection rules;
2211
2212 rule_collection_init(&rules);
2213 rule_collection_add(&rules, rule);
2214 delete_flows__(&rules, OFPRR_DELETE, NULL);
2215 rule_collection_destroy(&rules);
142e1f5c
BP
2216}
2217
834fe5cb
BP
2218/* Delete all of the flows from all of ofproto's flow tables, then reintroduce
2219 * the flows required by in-band control and fail-open. */
142e1f5c
BP
2220void
2221ofproto_flush_flows(struct ofproto *ofproto)
2222{
7ee20df1 2223 COVERAGE_INC(ofproto_flush);
834fe5cb
BP
2224 ofproto_flush__(ofproto);
2225 connmgr_flushed(ofproto->connmgr);
064af421
BP
2226}
2227\f
2228static void
2229reinit_ports(struct ofproto *p)
2230{
abe529af 2231 struct ofproto_port_dump dump;
b3c01ed3 2232 struct sset devnames;
064af421 2233 struct ofport *ofport;
abe529af 2234 struct ofproto_port ofproto_port;
b3c01ed3 2235 const char *devname;
064af421 2236
898bf89d
JP
2237 COVERAGE_INC(ofproto_reinit_ports);
2238
b3c01ed3 2239 sset_init(&devnames);
4e8e4213 2240 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1264ec95 2241 sset_add(&devnames, netdev_get_name(ofport->netdev));
064af421 2242 }
abe529af
BP
2243 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2244 sset_add(&devnames, ofproto_port.name);
064af421 2245 }
064af421 2246
b3c01ed3
BP
2247 SSET_FOR_EACH (devname, &devnames) {
2248 update_port(p, devname);
064af421 2249 }
b3c01ed3 2250 sset_destroy(&devnames);
064af421
BP
2251}
2252
4e022ec0 2253static ofp_port_t
e1b1d06a
JP
2254alloc_ofp_port(struct ofproto *ofproto, const char *netdev_name)
2255{
4e022ec0 2256 uint16_t port_idx;
e1b1d06a 2257
4e022ec0 2258 port_idx = simap_get(&ofproto->ofp_requests, netdev_name);
430dbb14 2259 port_idx = port_idx ? port_idx : UINT16_MAX;
4e022ec0 2260
430dbb14 2261 if (port_idx >= ofproto->max_ports
fdcea803
GS
2262 || ofport_get_usage(ofproto, u16_to_ofp(port_idx)) == LLONG_MAX) {
2263 uint16_t lru_ofport = 0, end_port_no = ofproto->alloc_port_no;
2264 long long int last_used_at, lru = LLONG_MAX;
e1b1d06a 2265
e1b1d06a
JP
2266 /* Search for a free OpenFlow port number. We try not to
2267 * immediately reuse them to prevent problems due to old
484c8355
BP
2268 * flows.
2269 *
2270 * We limit the automatically assigned port numbers to the lower half
2271 * of the port range, to reserve the upper half for assignment by
2272 * controllers. */
6033d9d9 2273 for (;;) {
484c8355 2274 if (++ofproto->alloc_port_no >= MIN(ofproto->max_ports, 32768)) {
fdcea803 2275 ofproto->alloc_port_no = 1;
6033d9d9 2276 }
fdcea803
GS
2277 last_used_at = ofport_get_usage(ofproto,
2278 u16_to_ofp(ofproto->alloc_port_no));
2279 if (!last_used_at) {
430dbb14 2280 port_idx = ofproto->alloc_port_no;
6033d9d9 2281 break;
865b26a4
GS
2282 } else if ( last_used_at < time_msec() - 60*60*1000) {
2283 /* If the port with ofport 'ofproto->alloc_port_no' was deleted
2284 * more than an hour ago, consider it usable. */
2285 ofport_remove_usage(ofproto,
2286 u16_to_ofp(ofproto->alloc_port_no));
2287 port_idx = ofproto->alloc_port_no;
2288 break;
fdcea803
GS
2289 } else if (last_used_at < lru) {
2290 lru = last_used_at;
2291 lru_ofport = ofproto->alloc_port_no;
e1b1d06a 2292 }
fdcea803 2293
430dbb14 2294 if (ofproto->alloc_port_no == end_port_no) {
fdcea803
GS
2295 if (lru_ofport) {
2296 port_idx = lru_ofport;
2297 break;
2298 }
6033d9d9 2299 return OFPP_NONE;
e1b1d06a
JP
2300 }
2301 }
2302 }
fdcea803 2303 ofport_set_usage(ofproto, u16_to_ofp(port_idx), LLONG_MAX);
4e022ec0 2304 return u16_to_ofp(port_idx);
e1b1d06a
JP
2305}
2306
2307static void
fdcea803 2308dealloc_ofp_port(struct ofproto *ofproto, ofp_port_t ofp_port)
e1b1d06a 2309{
430dbb14 2310 if (ofp_to_u16(ofp_port) < ofproto->max_ports) {
fdcea803 2311 ofport_set_usage(ofproto, ofp_port, time_msec());
40fa9417 2312 }
e1b1d06a
JP
2313}
2314
fbfa2911
BP
2315/* Opens and returns a netdev for 'ofproto_port' in 'ofproto', or a null
2316 * pointer if the netdev cannot be opened. On success, also fills in
d7d92203 2317 * '*pp'. */
b33951b8 2318static struct netdev *
e1b1d06a
JP
2319ofport_open(struct ofproto *ofproto,
2320 struct ofproto_port *ofproto_port,
9e1fd49b 2321 struct ofputil_phy_port *pp)
064af421
BP
2322{
2323 enum netdev_flags flags;
064af421 2324 struct netdev *netdev;
064af421
BP
2325 int error;
2326
18812dff 2327 error = netdev_open(ofproto_port->name, ofproto_port->type, &netdev);
064af421 2328 if (error) {
94783c7c 2329 VLOG_WARN_RL(&rl, "%s: ignoring port %s (%"PRIu32") because netdev %s "
064af421 2330 "cannot be opened (%s)",
fbfa2911 2331 ofproto->name,
abe529af 2332 ofproto_port->name, ofproto_port->ofp_port,
10a89ef0 2333 ofproto_port->name, ovs_strerror(error));
064af421
BP
2334 return NULL;
2335 }
2336
e1b1d06a
JP
2337 if (ofproto_port->ofp_port == OFPP_NONE) {
2338 if (!strcmp(ofproto->name, ofproto_port->name)) {
2339 ofproto_port->ofp_port = OFPP_LOCAL;
2340 } else {
2341 ofproto_port->ofp_port = alloc_ofp_port(ofproto,
2342 ofproto_port->name);
2343 }
2344 }
9e1fd49b 2345 pp->port_no = ofproto_port->ofp_port;
74ff3298 2346 netdev_get_etheraddr(netdev, &pp->hw_addr);
2f2b904f 2347 pp->hw_addr64 = eth_addr64_zero;
9e1fd49b 2348 ovs_strlcpy(pp->name, ofproto_port->name, sizeof pp->name);
064af421 2349 netdev_get_flags(netdev, &flags);
9e1fd49b
BP
2350 pp->config = flags & NETDEV_UP ? 0 : OFPUTIL_PC_PORT_DOWN;
2351 pp->state = netdev_get_carrier(netdev) ? 0 : OFPUTIL_PS_LINK_DOWN;
2352 netdev_get_features(netdev, &pp->curr, &pp->advertised,
2353 &pp->supported, &pp->peer);
cd65125d
BP
2354 pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
2355 pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
118c4676 2356
b33951b8 2357 return netdev;
064af421
BP
2358}
2359
b33951b8 2360/* Returns true if most fields of 'a' and 'b' are equal. Differences in name,
d7d92203 2361 * port number, and 'config' bits other than OFPUTIL_PC_PORT_DOWN are
b33951b8
BP
2362 * disregarded. */
2363static bool
9e1fd49b
BP
2364ofport_equal(const struct ofputil_phy_port *a,
2365 const struct ofputil_phy_port *b)
064af421 2366{
9e1fd49b 2367 return (eth_addr_equals(a->hw_addr, b->hw_addr)
2f2b904f 2368 && eth_addr64_equals(a->hw_addr64, b->hw_addr64)
064af421 2369 && a->state == b->state
9e1fd49b 2370 && !((a->config ^ b->config) & OFPUTIL_PC_PORT_DOWN)
064af421
BP
2371 && a->curr == b->curr
2372 && a->advertised == b->advertised
2373 && a->supported == b->supported
9e1fd49b
BP
2374 && a->peer == b->peer
2375 && a->curr_speed == b->curr_speed
2376 && a->max_speed == b->max_speed);
064af421
BP
2377}
2378
b33951b8
BP
2379/* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
2380 * The caller must ensure that 'p' does not have a conflicting ofport (that is,
2381 * one with the same name or port number). */
01c77073 2382static int
b33951b8 2383ofport_install(struct ofproto *p,
9e1fd49b 2384 struct netdev *netdev, const struct ofputil_phy_port *pp)
064af421 2385{
b33951b8
BP
2386 const char *netdev_name = netdev_get_name(netdev);
2387 struct ofport *ofport;
abe529af 2388 int error;
72b06300 2389
b33951b8 2390 /* Create ofport. */
abe529af
BP
2391 ofport = p->ofproto_class->port_alloc();
2392 if (!ofport) {
2393 error = ENOMEM;
2394 goto error;
2395 }
0f7d71a5 2396 ofport->ofproto = p;
b33951b8 2397 ofport->netdev = netdev;
61501798 2398 ofport->change_seq = netdev_get_change_seq(netdev);
9e1fd49b
BP
2399 ofport->pp = *pp;
2400 ofport->ofp_port = pp->port_no;
65e0be10 2401 ofport->created = time_msec();
b33951b8
BP
2402
2403 /* Add port to 'p'. */
4e022ec0 2404 hmap_insert(&p->ports, &ofport->hmap_node,
f9c0c3ec 2405 hash_ofp_port(ofport->ofp_port));
72b06300 2406 shash_add(&p->port_by_name, netdev_name, ofport);
abe529af 2407
ada3428f 2408 update_mtu(p, ofport);
9197df76 2409
abe529af
BP
2410 /* Let the ofproto_class initialize its private data. */
2411 error = p->ofproto_class->port_construct(ofport);
2412 if (error) {
2413 goto error;
2414 }
2a6f78e0 2415 connmgr_send_port_status(p->connmgr, NULL, pp, OFPPR_ADD);
01c77073 2416 return 0;
abe529af
BP
2417
2418error:
2419 VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
10a89ef0 2420 p->name, netdev_name, ovs_strerror(error));
abe529af
BP
2421 if (ofport) {
2422 ofport_destroy__(ofport);
2423 } else {
2424 netdev_close(netdev);
72b06300 2425 }
01c77073 2426 return error;
064af421
BP
2427}
2428
b33951b8 2429/* Removes 'ofport' from 'p' and destroys it. */
064af421 2430static void
0f7d71a5 2431ofport_remove(struct ofport *ofport)
064af421 2432{
0670b5d0 2433 struct ofproto *p = ofport->ofproto;
3a414a0a 2434 bool is_mtu_overridden = ofport_is_mtu_overridden(p, ofport);
0670b5d0 2435
2a6f78e0 2436 connmgr_send_port_status(ofport->ofproto->connmgr, NULL, &ofport->pp,
fa066f01 2437 OFPPR_DELETE);
9aad5a5a 2438 ofport_destroy(ofport, true);
3a414a0a 2439 if (!is_mtu_overridden) {
0670b5d0 2440 update_mtu_ofproto(p);
2441 }
b33951b8
BP
2442}
2443
2444/* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
2445 * destroys it. */
2446static void
2447ofport_remove_with_name(struct ofproto *ofproto, const char *name)
2448{
2449 struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
2450 if (port) {
0f7d71a5 2451 ofport_remove(port);
b33951b8
BP
2452 }
2453}
2454
9e1fd49b 2455/* Updates 'port' with new 'pp' description.
b33951b8
BP
2456 *
2457 * Does not handle a name or port number change. The caller must implement
2458 * such a change as a delete followed by an add. */
2459static void
9e1fd49b 2460ofport_modified(struct ofport *port, struct ofputil_phy_port *pp)
b33951b8 2461{
74ff3298 2462 port->pp.hw_addr = pp->hw_addr;
2f2b904f 2463 port->pp.hw_addr64 = pp->hw_addr64;
9e1fd49b
BP
2464 port->pp.config = ((port->pp.config & ~OFPUTIL_PC_PORT_DOWN)
2465 | (pp->config & OFPUTIL_PC_PORT_DOWN));
53fd5c7c
BP
2466 port->pp.state = ((port->pp.state & ~OFPUTIL_PS_LINK_DOWN)
2467 | (pp->state & OFPUTIL_PS_LINK_DOWN));
9e1fd49b
BP
2468 port->pp.curr = pp->curr;
2469 port->pp.advertised = pp->advertised;
2470 port->pp.supported = pp->supported;
2471 port->pp.peer = pp->peer;
2472 port->pp.curr_speed = pp->curr_speed;
2473 port->pp.max_speed = pp->max_speed;
064af421
BP
2474}
2475
5a2dfd47
JP
2476/* Update OpenFlow 'state' in 'port' and notify controller. */
2477void
9e1fd49b 2478ofproto_port_set_state(struct ofport *port, enum ofputil_port_state state)
5a2dfd47 2479{
9e1fd49b
BP
2480 if (port->pp.state != state) {
2481 port->pp.state = state;
2a6f78e0
BP
2482 connmgr_send_port_status(port->ofproto->connmgr, NULL,
2483 &port->pp, OFPPR_MODIFY);
5a2dfd47
JP
2484 }
2485}
2486
abe529af 2487void
4e022ec0 2488ofproto_port_unregister(struct ofproto *ofproto, ofp_port_t ofp_port)
e7934396 2489{
abe529af
BP
2490 struct ofport *port = ofproto_get_port(ofproto, ofp_port);
2491 if (port) {
b308140a
JP
2492 if (port->ofproto->ofproto_class->set_stp_port) {
2493 port->ofproto->ofproto_class->set_stp_port(port, NULL);
2494 }
9efd308e
DV
2495 if (port->ofproto->ofproto_class->set_rstp_port) {
2496 port->ofproto->ofproto_class->set_rstp_port(port, NULL);
2497 }
abe529af 2498 if (port->ofproto->ofproto_class->set_cfm) {
a5610457 2499 port->ofproto->ofproto_class->set_cfm(port, NULL);
abe529af
BP
2500 }
2501 if (port->ofproto->ofproto_class->bundle_remove) {
2502 port->ofproto->ofproto_class->bundle_remove(port);
e7934396
BP
2503 }
2504 }
2505}
2506
2507static void
abe529af 2508ofport_destroy__(struct ofport *port)
e7934396 2509{
abe529af
BP
2510 struct ofproto *ofproto = port->ofproto;
2511 const char *name = netdev_get_name(port->netdev);
fa066f01 2512
abe529af 2513 hmap_remove(&ofproto->ports, &port->hmap_node);
5978c2e3 2514 shash_find_and_delete(&ofproto->port_by_name, name);
fa066f01 2515
abe529af
BP
2516 netdev_close(port->netdev);
2517 ofproto->ofproto_class->port_dealloc(port);
e7934396
BP
2518}
2519
064af421 2520static void
9aad5a5a 2521ofport_destroy(struct ofport *port, bool del)
064af421 2522{
fa066f01 2523 if (port) {
e1b1d06a 2524 dealloc_ofp_port(port->ofproto, port->ofp_port);
9aad5a5a 2525 port->ofproto->ofproto_class->port_destruct(port, del);
abe529af
BP
2526 ofport_destroy__(port);
2527 }
064af421
BP
2528}
2529
abe529af 2530struct ofport *
4e022ec0 2531ofproto_get_port(const struct ofproto *ofproto, ofp_port_t ofp_port)
ca0f572c
BP
2532{
2533 struct ofport *port;
2534
f9c0c3ec 2535 HMAP_FOR_EACH_IN_BUCKET (port, hmap_node, hash_ofp_port(ofp_port),
4e022ec0 2536 &ofproto->ports) {
abe529af 2537 if (port->ofp_port == ofp_port) {
ca0f572c
BP
2538 return port;
2539 }
2540 }
2541 return NULL;
2542}
2543
fdcea803
GS
2544static long long int
2545ofport_get_usage(const struct ofproto *ofproto, ofp_port_t ofp_port)
2546{
2547 struct ofport_usage *usage;
2548
2549 HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2550 &ofproto->ofport_usage) {
2551 if (usage->ofp_port == ofp_port) {
2552 return usage->last_used;
2553 }
2554 }
2555 return 0;
2556}
2557
2558static void
2559ofport_set_usage(struct ofproto *ofproto, ofp_port_t ofp_port,
2560 long long int last_used)
2561{
2562 struct ofport_usage *usage;
2563 HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2564 &ofproto->ofport_usage) {
2565 if (usage->ofp_port == ofp_port) {
2566 usage->last_used = last_used;
2567 return;
2568 }
2569 }
2570 ovs_assert(last_used == LLONG_MAX);
2571
2572 usage = xmalloc(sizeof *usage);
2573 usage->ofp_port = ofp_port;
2574 usage->last_used = last_used;
2575 hmap_insert(&ofproto->ofport_usage, &usage->hmap_node,
2576 hash_ofp_port(ofp_port));
2577}
2578
865b26a4
GS
2579static void
2580ofport_remove_usage(struct ofproto *ofproto, ofp_port_t ofp_port)
2581{
2582 struct ofport_usage *usage;
2583 HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2584 &ofproto->ofport_usage) {
2585 if (usage->ofp_port == ofp_port) {
2586 hmap_remove(&ofproto->ofport_usage, &usage->hmap_node);
2587 free(usage);
2588 break;
2589 }
2590 }
2591}
2592
6527c598
PS
2593int
2594ofproto_port_get_stats(const struct ofport *port, struct netdev_stats *stats)
2595{
2596 struct ofproto *ofproto = port->ofproto;
2597 int error;
2598
2599 if (ofproto->ofproto_class->port_get_stats) {
2600 error = ofproto->ofproto_class->port_get_stats(port, stats);
2601 } else {
2602 error = EOPNOTSUPP;
2603 }
2604
2605 return error;
2606}
2607
01c77073 2608static int
b33951b8 2609update_port(struct ofproto *ofproto, const char *name)
064af421 2610{
abe529af 2611 struct ofproto_port ofproto_port;
9e1fd49b 2612 struct ofputil_phy_port pp;
b33951b8
BP
2613 struct netdev *netdev;
2614 struct ofport *port;
01c77073 2615 int error = 0;
064af421
BP
2616
2617 COVERAGE_INC(ofproto_update_port);
c874dc6d 2618
b33951b8 2619 /* Fetch 'name''s location and properties from the datapath. */
abe529af 2620 netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
fbfa2911 2621 ? ofport_open(ofproto, &ofproto_port, &pp)
b33951b8 2622 : NULL);
4e022ec0 2623
b33951b8 2624 if (netdev) {
abe529af 2625 port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
b33951b8 2626 if (port && !strcmp(netdev_get_name(port->netdev), name)) {
e65942a0
BP
2627 struct netdev *old_netdev = port->netdev;
2628
b33951b8 2629 /* 'name' hasn't changed location. Any properties changed? */
f73b83fd
LS
2630 bool port_changed = !ofport_equal(&port->pp, &pp);
2631 if (port_changed) {
9e1fd49b 2632 ofport_modified(port, &pp);
abe529af
BP
2633 }
2634
ada3428f 2635 update_mtu(ofproto, port);
9197df76 2636
e65942a0
BP
2637 /* Install the newly opened netdev in case it has changed.
2638 * Don't close the old netdev yet in case port_modified has to
2639 * remove a retained reference to it.*/
abe529af 2640 port->netdev = netdev;
61501798 2641 port->change_seq = netdev_get_change_seq(netdev);
abe529af
BP
2642
2643 if (port->ofproto->ofproto_class->port_modified) {
2644 port->ofproto->ofproto_class->port_modified(port);
b33951b8 2645 }
e65942a0 2646
f73b83fd
LS
2647 /* Send status update, if any port property changed */
2648 if (port_changed) {
2649 connmgr_send_port_status(port->ofproto->connmgr, NULL,
2650 &port->pp, OFPPR_MODIFY);
2651 }
2652
e65942a0 2653 netdev_close(old_netdev);
b33951b8
BP
2654 } else {
2655 /* If 'port' is nonnull then its name differs from 'name' and thus
2656 * we should delete it. If we think there's a port named 'name'
2657 * then its port number must be wrong now so delete it too. */
2658 if (port) {
0f7d71a5 2659 ofport_remove(port);
b33951b8
BP
2660 }
2661 ofport_remove_with_name(ofproto, name);
01c77073 2662 error = ofport_install(ofproto, netdev, &pp);
c874dc6d 2663 }
b33951b8
BP
2664 } else {
2665 /* Any port named 'name' is gone now. */
2666 ofport_remove_with_name(ofproto, name);
c874dc6d 2667 }
abe529af 2668 ofproto_port_destroy(&ofproto_port);
01c77073
BP
2669
2670 return error;
064af421
BP
2671}
2672
2673static int
2674init_ports(struct ofproto *p)
2675{
abe529af
BP
2676 struct ofproto_port_dump dump;
2677 struct ofproto_port ofproto_port;
e1b1d06a 2678 struct shash_node *node, *next;
abe529af
BP
2679
2680 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
e1b1d06a
JP
2681 const char *name = ofproto_port.name;
2682
2683 if (shash_find(&p->port_by_name, name)) {
fbfa2911 2684 VLOG_WARN_RL(&rl, "%s: ignoring duplicate device %s in datapath",
e1b1d06a 2685 p->name, name);
abe529af 2686 } else {
9e1fd49b 2687 struct ofputil_phy_port pp;
b33951b8
BP
2688 struct netdev *netdev;
2689
e1b1d06a
JP
2690 /* Check if an OpenFlow port number had been requested. */
2691 node = shash_find(&init_ofp_ports, name);
2692 if (node) {
2693 const struct iface_hint *iface_hint = node->data;
4e022ec0
AW
2694 simap_put(&p->ofp_requests, name,
2695 ofp_to_u16(iface_hint->ofp_port));
e1b1d06a
JP
2696 }
2697
fbfa2911 2698 netdev = ofport_open(p, &ofproto_port, &pp);
b33951b8 2699 if (netdev) {
9e1fd49b 2700 ofport_install(p, netdev, &pp);
430dbb14 2701 if (ofp_to_u16(ofproto_port.ofp_port) < p->max_ports) {
7c35397c 2702 p->alloc_port_no = MAX(p->alloc_port_no,
430dbb14 2703 ofp_to_u16(ofproto_port.ofp_port));
7c35397c 2704 }
064af421
BP
2705 }
2706 }
2707 }
b0ec0f27 2708
e1b1d06a 2709 SHASH_FOR_EACH_SAFE(node, next, &init_ofp_ports) {
4f9e08a5 2710 struct iface_hint *iface_hint = node->data;
e1b1d06a
JP
2711
2712 if (!strcmp(iface_hint->br_name, p->name)) {
2713 free(iface_hint->br_name);
2714 free(iface_hint->br_type);
4f9e08a5 2715 free(iface_hint);
e1b1d06a
JP
2716 shash_delete(&init_ofp_ports, node);
2717 }
2718 }
2719
064af421
BP
2720 return 0;
2721}
9197df76 2722
3a414a0a 2723static bool
86fce577 2724ofport_is_internal(const struct ofproto *p, const struct ofport *port)
0670b5d0 2725{
86fce577
DDP
2726 return !strcmp(netdev_get_type(port->netdev),
2727 ofproto_port_open_type(p->type, "internal"));
0670b5d0 2728}
2729
3a414a0a
DDP
2730/* If 'port' is internal and if the user didn't explicitly specify an mtu
2731 * through the database, we have to override it. */
2732static bool
2733ofport_is_mtu_overridden(const struct ofproto *p, const struct ofport *port)
2734{
2735 return ofport_is_internal(p, port)
2736 && !netdev_mtu_is_user_config(port->netdev);
2737}
2738
2739/* Find the minimum MTU of all non-overridden devices attached to 'p'.
9197df76
JP
2740 * Returns ETH_PAYLOAD_MAX or the minimum of the ports. */
2741static int
2742find_min_mtu(struct ofproto *p)
2743{
2744 struct ofport *ofport;
2745 int mtu = 0;
2746
2747 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2748 struct netdev *netdev = ofport->netdev;
2749 int dev_mtu;
2750
3a414a0a
DDP
2751 /* Skip any overridden port, since that's what we're trying to set. */
2752 if (ofport_is_mtu_overridden(p, ofport)) {
9197df76
JP
2753 continue;
2754 }
2755
2756 if (netdev_get_mtu(netdev, &dev_mtu)) {
2757 continue;
2758 }
2759 if (!mtu || dev_mtu < mtu) {
2760 mtu = dev_mtu;
2761 }
2762 }
2763
2764 return mtu ? mtu: ETH_PAYLOAD_MAX;
2765}
2766
3a414a0a
DDP
2767/* Update MTU of all overridden devices on 'p' to the minimum of the
2768 * non-overridden ports in event of 'port' added or changed. */
9197df76 2769static void
ada3428f 2770update_mtu(struct ofproto *p, struct ofport *port)
9197df76 2771{
ada3428f 2772 struct netdev *netdev = port->netdev;
0670b5d0 2773 int dev_mtu;
ada3428f
PS
2774
2775 if (netdev_get_mtu(netdev, &dev_mtu)) {
2776 port->mtu = 0;
2777 return;
2778 }
3a414a0a 2779 if (ofport_is_mtu_overridden(p, port)) {
7478b5a2 2780 if (dev_mtu > p->min_mtu) {
3a414a0a
DDP
2781 if (!netdev_set_mtu(port->netdev, p->min_mtu)) {
2782 dev_mtu = p->min_mtu;
2783 }
ada3428f
PS
2784 }
2785 port->mtu = dev_mtu;
2786 return;
2787 }
2788
ada3428f 2789 port->mtu = dev_mtu;
3a414a0a
DDP
2790 /* For non-overridden port find new min mtu. */
2791
0670b5d0 2792 update_mtu_ofproto(p);
2793}
2794
2795static void
2796update_mtu_ofproto(struct ofproto *p)
2797{
0670b5d0 2798 struct ofport *ofport;
2799 int old_min = p->min_mtu;
2800
ada3428f
PS
2801 p->min_mtu = find_min_mtu(p);
2802 if (p->min_mtu == old_min) {
2803 return;
2804 }
9197df76
JP
2805
2806 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2807 struct netdev *netdev = ofport->netdev;
2808
3a414a0a 2809 if (ofport_is_mtu_overridden(p, ofport)) {
ada3428f
PS
2810 if (!netdev_set_mtu(netdev, p->min_mtu)) {
2811 ofport->mtu = p->min_mtu;
2812 }
9197df76
JP
2813 }
2814 }
2815}
064af421 2816\f
f416c8d6
JR
2817static void
2818ofproto_rule_destroy__(struct rule *rule)
2819 OVS_NO_THREAD_SAFETY_ANALYSIS
2820{
2821 cls_rule_destroy(CONST_CAST(struct cls_rule *, &rule->cr));
2822 rule_actions_destroy(rule_get_actions(rule));
2823 ovs_mutex_destroy(&rule->mutex);
2824 rule->ofproto->ofproto_class->rule_dealloc(rule);
2825}
2826
2827static void
2828rule_destroy_cb(struct rule *rule)
f695ebfa 2829 OVS_NO_THREAD_SAFETY_ANALYSIS
f416c8d6 2830{
f695ebfa
JR
2831 /* Send rule removed if needed. */
2832 if (rule->flags & OFPUTIL_FF_SEND_FLOW_REM
2833 && rule->removed_reason != OVS_OFPRR_NONE
2834 && !rule_is_hidden(rule)) {
2835 ofproto_rule_send_removed(rule);
2836 }
f416c8d6 2837 rule->ofproto->ofproto_class->rule_destruct(rule);
5c7c16d8
YHW
2838 mf_vl_mff_unref(&rule->ofproto->vl_mff_map, rule->match_tlv_bitmap);
2839 mf_vl_mff_unref(&rule->ofproto->vl_mff_map, rule->ofpacts_tlv_bitmap);
f416c8d6
JR
2840 ofproto_rule_destroy__(rule);
2841}
2842
a2143702
BP
2843void
2844ofproto_rule_ref(struct rule *rule)
064af421 2845{
1eae3d33 2846 if (rule) {
37bec3d3 2847 ovs_refcount_ref(&rule->ref_count);
a2143702
BP
2848 }
2849}
2850
f5d16e55
JR
2851bool
2852ofproto_rule_try_ref(struct rule *rule)
2853{
2854 if (rule) {
2855 return ovs_refcount_try_ref_rcu(&rule->ref_count);
2856 }
2857 return false;
2858}
2859
f416c8d6
JR
2860/* Decrements 'rule''s ref_count and schedules 'rule' to be destroyed if the
2861 * ref_count reaches 0.
2862 *
2863 * Use of RCU allows short term use (between RCU quiescent periods) without
2864 * keeping a reference. A reference must be taken if the rule needs to
2865 * stay around accross the RCU quiescent periods. */
a2143702
BP
2866void
2867ofproto_rule_unref(struct rule *rule)
2868{
24f83812 2869 if (rule && ovs_refcount_unref_relaxed(&rule->ref_count) == 1) {
2c7ee524 2870 ovs_assert(rule->state != RULE_INSERTED);
f416c8d6 2871 ovsrcu_postpone(rule_destroy_cb, rule);
1eae3d33 2872 }
064af421
BP
2873}
2874
39c94593
JR
2875static void
2876remove_rule_rcu__(struct rule *rule)
2877 OVS_REQUIRES(ofproto_mutex)
2878{
2879 struct ofproto *ofproto = rule->ofproto;
2880 struct oftable *table = &ofproto->tables[rule->table_id];
2881
44e0c35d 2882 ovs_assert(!cls_rule_visible_in_version(&rule->cr, OVS_VERSION_MAX));
39c94593
JR
2883 if (!classifier_remove(&table->cls, &rule->cr)) {
2884 OVS_NOT_REACHED();
2885 }
1fc71871
JR
2886 if (ofproto->ofproto_class->rule_delete) {
2887 ofproto->ofproto_class->rule_delete(rule);
2888 }
39c94593
JR
2889 ofproto_rule_unref(rule);
2890}
2891
2892static void
2893remove_rule_rcu(struct rule *rule)
2894 OVS_EXCLUDED(ofproto_mutex)
2895{
2896 ovs_mutex_lock(&ofproto_mutex);
2897 remove_rule_rcu__(rule);
2898 ovs_mutex_unlock(&ofproto_mutex);
2899}
2900
2901/* Removes and deletes rules from a NULL-terminated array of rule pointers. */
2902static void
2903remove_rules_rcu(struct rule **rules)
2904 OVS_EXCLUDED(ofproto_mutex)
2905{
2906 struct rule **orig_rules = rules;
2907
2908 if (*rules) {
2909 struct ofproto *ofproto = rules[0]->ofproto;
2910 unsigned long tables[BITMAP_N_LONGS(256)];
2911 struct rule *rule;
2912 size_t table_id;
2913
2914 memset(tables, 0, sizeof tables);
2915
2916 ovs_mutex_lock(&ofproto_mutex);
2917 while ((rule = *rules++)) {
2918 /* Defer once for each new table. This defers the subtable cleanup
2919 * until later, so that when removing large number of flows the
2920 * operation is faster. */
2921 if (!bitmap_is_set(tables, rule->table_id)) {
2922 struct classifier *cls = &ofproto->tables[rule->table_id].cls;
2923
2924 bitmap_set1(tables, rule->table_id);
2925 classifier_defer(cls);
2926 }
2927 remove_rule_rcu__(rule);
2928 }
2929
2930 BITMAP_FOR_EACH_1(table_id, 256, tables) {
2931 struct classifier *cls = &ofproto->tables[table_id].cls;
2932
2933 classifier_publish(cls);
2934 }
2935 ovs_mutex_unlock(&ofproto_mutex);
2936 }
2937
2938 free(orig_rules);
2939}
2940
809c7548
RW
2941void
2942ofproto_group_ref(struct ofgroup *group)
2943{
2944 if (group) {
2945 ovs_refcount_ref(&group->ref_count);
2946 }
2947}
2948
db88b35c
JR
2949bool
2950ofproto_group_try_ref(struct ofgroup *group)
2951{
2952 if (group) {
2953 return ovs_refcount_try_ref_rcu(&group->ref_count);
2954 }
2955 return false;
2956}
2957
2958static void
2959group_destroy_cb(struct ofgroup *group)
2960{
2961 group->ofproto->ofproto_class->group_destruct(group);
e8dba719
JR
2962 ofputil_group_properties_destroy(CONST_CAST(struct ofputil_group_props *,
2963 &group->props));
db88b35c
JR
2964 ofputil_bucket_list_destroy(CONST_CAST(struct ovs_list *,
2965 &group->buckets));
2966 group->ofproto->ofproto_class->group_dealloc(group);
2967}
2968
809c7548
RW
2969void
2970ofproto_group_unref(struct ofgroup *group)
cc099268 2971 OVS_NO_THREAD_SAFETY_ANALYSIS
809c7548 2972{
db88b35c 2973 if (group && ovs_refcount_unref_relaxed(&group->ref_count) == 1) {
fe59694b 2974 ovs_assert(rule_collection_n(&group->rules) == 0);
db88b35c 2975 ovsrcu_postpone(group_destroy_cb, group);
809c7548
RW
2976 }
2977}
2978
5d08a275
JR
2979static void
2980remove_group_rcu__(struct ofgroup *group)
2981 OVS_REQUIRES(ofproto_mutex)
2982{
2983 struct ofproto *ofproto = group->ofproto;
2984
2985 ovs_assert(!versions_visible_in_version(&group->versions, OVS_VERSION_MAX));
2986
2987 cmap_remove(&ofproto->groups, &group->cmap_node,
2988 hash_int(group->group_id, 0));
2989 ofproto_group_unref(group);
2990}
2991
2992static void
2993remove_group_rcu(struct ofgroup *group)
2994 OVS_EXCLUDED(ofproto_mutex)
2995{
2996 ovs_mutex_lock(&ofproto_mutex);
2997 remove_group_rcu__(group);
2998 ovs_mutex_unlock(&ofproto_mutex);
2999}
3000
3001/* Removes and deletes groups from a NULL-terminated array of group
3002 * pointers. */
3003static void
3004remove_groups_rcu(struct ofgroup **groups)
3005 OVS_EXCLUDED(ofproto_mutex)
3006{
3007 ovs_mutex_lock(&ofproto_mutex);
3008 for (struct ofgroup **g = groups; *g; g++) {
3009 remove_group_rcu__(*g);
3010 }
3011 ovs_mutex_unlock(&ofproto_mutex);
3012 free(groups);
3013}
3014
076caa2f
JR
3015static bool ofproto_fix_meter_action(const struct ofproto *,
3016 struct ofpact_meter *);
65efd2ab 3017
dc723c44
JR
3018/* Creates and returns a new 'struct rule_actions', whose actions are a copy
3019 * of from the 'ofpacts_len' bytes of 'ofpacts'. */
3020const struct rule_actions *
4c7562c5 3021rule_actions_create(const struct ofpact *ofpacts, size_t ofpacts_len)
6f00e29b
BP
3022{
3023 struct rule_actions *actions;
3024
dc723c44 3025 actions = xmalloc(sizeof *actions + ofpacts_len);
6f00e29b 3026 actions->ofpacts_len = ofpacts_len;
dc723c44 3027 memcpy(actions->ofpacts, ofpacts, ofpacts_len);
cc099268
JR
3028 actions->has_meter = ofpacts_get_meter(ofpacts, ofpacts_len) != 0;
3029 actions->has_groups =
3030 (ofpact_find_type_flattened(ofpacts, OFPACT_GROUP,
3031 ofpact_end(ofpacts, ofpacts_len))
3032 != NULL);
35f48b8b
BP
3033 actions->has_learn_with_delete = (next_learn_with_delete(actions, NULL)
3034 != NULL);
3035
6f00e29b
BP
3036 return actions;
3037}
3038
dc723c44 3039/* Free the actions after the RCU quiescent period is reached. */
6f00e29b 3040void
dc723c44 3041rule_actions_destroy(const struct rule_actions *actions)
6f00e29b 3042{
06a0f3e2 3043 if (actions) {
dc723c44 3044 ovsrcu_postpone(free, CONST_CAST(struct rule_actions *, actions));
6f00e29b
BP
3045 }
3046}
3047
bcf84111 3048/* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
f25d0cf3 3049 * that outputs to 'port' (output to OFPP_FLOOD and OFPP_ALL doesn't count). */
cdbdeeda 3050bool
4e022ec0 3051ofproto_rule_has_out_port(const struct rule *rule, ofp_port_t port)
15aaf599 3052 OVS_REQUIRES(ofproto_mutex)
064af421 3053{
06a0f3e2
BP
3054 if (port == OFPP_ANY) {
3055 return true;
3056 } else {
3057 const struct rule_actions *actions = rule_get_actions(rule);
3058 return ofpacts_output_to_port(actions->ofpacts,
3059 actions->ofpacts_len, port);
3060 }
064af421
BP
3061}
3062
7395c052 3063/* Returns true if 'rule' has group and equals group_id. */
74e79b7c 3064static bool
7395c052 3065ofproto_rule_has_out_group(const struct rule *rule, uint32_t group_id)
15aaf599 3066 OVS_REQUIRES(ofproto_mutex)
7395c052 3067{
06a0f3e2
BP
3068 if (group_id == OFPG_ANY) {
3069 return true;
3070 } else {
3071 const struct rule_actions *actions = rule_get_actions(rule);
3072 return ofpacts_output_to_group(actions->ofpacts,
3073 actions->ofpacts_len, group_id);
3074 }
7395c052
NZ
3075}
3076
adcf00ba 3077static bool
834fe5cb 3078rule_is_readonly(const struct rule *rule)
5c67e4af 3079{
834fe5cb
BP
3080 const struct oftable *table = &rule->ofproto->tables[rule->table_id];
3081 return (table->flags & OFTABLE_READONLY) != 0;
5c67e4af 3082}
fa066f01 3083\f
35f48b8b
BP
3084static uint32_t
3085hash_learned_cookie(ovs_be64 cookie_, uint8_t table_id)
3086{
3087 uint64_t cookie = (OVS_FORCE uint64_t) cookie_;
3088 return hash_3words(cookie, cookie >> 32, table_id);
3089}
3090
3091static void
3092learned_cookies_update_one__(struct ofproto *ofproto,
3093 const struct ofpact_learn *learn,
ca6ba700 3094 int delta, struct ovs_list *dead_cookies)
35f48b8b
BP
3095 OVS_REQUIRES(ofproto_mutex)
3096{
3097 uint32_t hash = hash_learned_cookie(learn->cookie, learn->table_id);
3098 struct learned_cookie *c;
3099
3100 HMAP_FOR_EACH_WITH_HASH (c, u.hmap_node, hash, &ofproto->learned_cookies) {
3101 if (c->cookie == learn->cookie && c->table_id == learn->table_id) {
3102 c->n += delta;
3103 ovs_assert(c->n >= 0);
3104
3105 if (!c->n) {
3106 hmap_remove(&ofproto->learned_cookies, &c->u.hmap_node);
417e7e66 3107 ovs_list_push_back(dead_cookies, &c->u.list_node);
35f48b8b
BP
3108 }
3109
3110 return;
3111 }
3112 }
3113
3114 ovs_assert(delta > 0);
3115 c = xmalloc(sizeof *c);
3116 hmap_insert(&ofproto->learned_cookies, &c->u.hmap_node, hash);
3117 c->cookie = learn->cookie;
3118 c->table_id = learn->table_id;
3119 c->n = delta;
3120}
3121
3122static const struct ofpact_learn *
3123next_learn_with_delete(const struct rule_actions *actions,
3124 const struct ofpact_learn *start)
3125{
3126 const struct ofpact *pos;
3127
3128 for (pos = start ? ofpact_next(&start->ofpact) : actions->ofpacts;
3129 pos < ofpact_end(actions->ofpacts, actions->ofpacts_len);
3130 pos = ofpact_next(pos)) {
3131 if (pos->type == OFPACT_LEARN) {
3132 const struct ofpact_learn *learn = ofpact_get_LEARN(pos);
3133 if (learn->flags & NX_LEARN_F_DELETE_LEARNED) {
3134 return learn;
3135 }
3136 }
3137 }
3138
3139 return NULL;
3140}
3141
3142static void
3143learned_cookies_update__(struct ofproto *ofproto,
3144 const struct rule_actions *actions,
ca6ba700 3145 int delta, struct ovs_list *dead_cookies)
35f48b8b
BP
3146 OVS_REQUIRES(ofproto_mutex)
3147{
3148 if (actions->has_learn_with_delete) {
3149 const struct ofpact_learn *learn;
3150
3151 for (learn = next_learn_with_delete(actions, NULL); learn;
3152 learn = next_learn_with_delete(actions, learn)) {
3153 learned_cookies_update_one__(ofproto, learn, delta, dead_cookies);
3154 }
3155 }
3156}
3157
3158static void
3159learned_cookies_inc(struct ofproto *ofproto,
3160 const struct rule_actions *actions)
3161 OVS_REQUIRES(ofproto_mutex)
3162{
3163 learned_cookies_update__(ofproto, actions, +1, NULL);
3164}
3165
3166static void
3167learned_cookies_dec(struct ofproto *ofproto,
3168 const struct rule_actions *actions,
ca6ba700 3169 struct ovs_list *dead_cookies)
35f48b8b
BP
3170 OVS_REQUIRES(ofproto_mutex)
3171{
3172 learned_cookies_update__(ofproto, actions, -1, dead_cookies);
3173}
3174
3175static void
ca6ba700 3176learned_cookies_flush(struct ofproto *ofproto, struct ovs_list *dead_cookies)
35f48b8b
BP
3177 OVS_REQUIRES(ofproto_mutex)
3178{
5f03c983 3179 struct learned_cookie *c;
35f48b8b 3180
5f03c983 3181 LIST_FOR_EACH_POP (c, u.list_node, dead_cookies) {
35f48b8b
BP
3182 struct rule_criteria criteria;
3183 struct rule_collection rules;
3184 struct match match;
3185
3186 match_init_catchall(&match);
44e0c35d 3187 rule_criteria_init(&criteria, c->table_id, &match, 0, OVS_VERSION_MAX,
35f48b8b
BP
3188 c->cookie, OVS_BE64_MAX, OFPP_ANY, OFPG_ANY);
3189 rule_criteria_require_rw(&criteria, false);
3190 collect_rules_loose(ofproto, &criteria, &rules);
35f48b8b 3191 rule_criteria_destroy(&criteria);
39c94593 3192 delete_flows__(&rules, OFPRR_DELETE, NULL);
35f48b8b 3193
35f48b8b
BP
3194 free(c);
3195 }
3196}
3197\f
90bf1e07 3198static enum ofperr
d1e2cf21 3199handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 3200{
b0421aa2 3201 ofconn_send_reply(ofconn, make_echo_reply(oh));
064af421 3202 return 0;
064af421
BP
3203}
3204
3c1bb396
BP
3205static void
3206query_tables(struct ofproto *ofproto,
3207 struct ofputil_table_features **featuresp,
3208 struct ofputil_table_stats **statsp)
3209{
178742f9
BP
3210 struct mf_bitmap rw_fields = oxm_writable_fields();
3211 struct mf_bitmap match = oxm_matchable_fields();
3212 struct mf_bitmap mask = oxm_maskable_fields();
3c1bb396
BP
3213
3214 struct ofputil_table_features *features;
3215 struct ofputil_table_stats *stats;
3216 int i;
3217
3c1bb396
BP
3218 features = *featuresp = xcalloc(ofproto->n_tables, sizeof *features);
3219 for (i = 0; i < ofproto->n_tables; i++) {
3220 struct ofputil_table_features *f = &features[i];
3221
3222 f->table_id = i;
3223 sprintf(f->name, "table%d", i);
3224 f->metadata_match = OVS_BE64_MAX;
3225 f->metadata_write = OVS_BE64_MAX;
afcea9ea 3226 atomic_read_relaxed(&ofproto->tables[i].miss_config, &f->miss_config);
3c1bb396
BP
3227 f->max_entries = 1000000;
3228
5dc7516b
BP
3229 bool more_tables = false;
3230 for (int j = i + 1; j < ofproto->n_tables; j++) {
3231 if (!(ofproto->tables[j].flags & OFTABLE_HIDDEN)) {
3232 bitmap_set1(f->nonmiss.next, j);
3233 more_tables = true;
3234 }
3235 }
3c1bb396 3236 f->nonmiss.instructions = (1u << N_OVS_INSTRUCTIONS) - 1;
5dc7516b 3237 if (!more_tables) {
3c1bb396
BP
3238 f->nonmiss.instructions &= ~(1u << OVSINST_OFPIT11_GOTO_TABLE);
3239 }
3240 f->nonmiss.write.ofpacts = (UINT64_C(1) << N_OFPACTS) - 1;
3241 f->nonmiss.write.set_fields = rw_fields;
3242 f->nonmiss.apply = f->nonmiss.write;
3243 f->miss = f->nonmiss;
3244
3245 f->match = match;
3246 f->mask = mask;
3247 f->wildcard = match;
3248 }
3249
3250 if (statsp) {
3251 stats = *statsp = xcalloc(ofproto->n_tables, sizeof *stats);
3252 for (i = 0; i < ofproto->n_tables; i++) {
3253 struct ofputil_table_stats *s = &stats[i];
3c1bb396
BP
3254
3255 s->table_id = i;
d79e3d70 3256 s->active_count = ofproto->tables[i].n_flows;
3fbbcba7
BP
3257 if (i == 0) {
3258 s->active_count -= connmgr_count_hidden_rules(
3259 ofproto->connmgr);
3260 }
3c1bb396
BP
3261 }
3262 } else {
3263 stats = NULL;
3264 }
3265
3266 ofproto->ofproto_class->query_tables(ofproto, features, stats);
3267
3268 for (i = 0; i < ofproto->n_tables; i++) {
3269 const struct oftable *table = &ofproto->tables[i];
3270 struct ofputil_table_features *f = &features[i];
3271
3272 if (table->name) {
3273 ovs_strzcpy(f->name, table->name, sizeof f->name);
3274 }
3275
3276 if (table->max_flows < f->max_entries) {
3277 f->max_entries = table->max_flows;
3278 }
3279 }
3280}
3281
3282static void
3283query_switch_features(struct ofproto *ofproto,
3284 bool *arp_match_ip, uint64_t *ofpacts)
3285{
3286 struct ofputil_table_features *features, *f;
3287
3288 *arp_match_ip = false;
3289 *ofpacts = 0;
3290
3291 query_tables(ofproto, &features, NULL);
3292 for (f = features; f < &features[ofproto->n_tables]; f++) {
3293 *ofpacts |= f->nonmiss.apply.ofpacts | f->miss.apply.ofpacts;
3294 if (bitmap_is_set(f->match.bm, MFF_ARP_SPA) ||
3295 bitmap_is_set(f->match.bm, MFF_ARP_TPA)) {
3296 *arp_match_ip = true;
3297 }
3298 }
3299 free(features);
3300
3301 /* Sanity check. */
3302 ovs_assert(*ofpacts & (UINT64_C(1) << OFPACT_OUTPUT));
3303}
3304
90bf1e07 3305static enum ofperr
d1e2cf21 3306handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 3307{
64ff1d96 3308 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
9e1fd49b 3309 struct ofputil_switch_features features;
064af421 3310 struct ofport *port;
6c1491fb 3311 bool arp_match_ip;
9e1fd49b 3312 struct ofpbuf *b;
064af421 3313
3c1bb396 3314 query_switch_features(ofproto, &arp_match_ip, &features.ofpacts);
064af421 3315
9e1fd49b 3316 features.datapath_id = ofproto->datapath_id;
c184807c 3317 features.n_buffers = 0;
adcf00ba 3318 features.n_tables = ofproto_get_n_visible_tables(ofproto);
9e1fd49b 3319 features.capabilities = (OFPUTIL_C_FLOW_STATS | OFPUTIL_C_TABLE_STATS |
4efe455d 3320 OFPUTIL_C_PORT_STATS | OFPUTIL_C_QUEUE_STATS |
50b73fe1 3321 OFPUTIL_C_GROUP_STATS | OFPUTIL_C_BUNDLES);
6c1491fb 3322 if (arp_match_ip) {
9e1fd49b 3323 features.capabilities |= OFPUTIL_C_ARP_MATCH_IP;
6c1491fb 3324 }
2e1ae200
JR
3325 /* FIXME: Fill in proper features.auxiliary_id for auxiliary connections */
3326 features.auxiliary_id = 0;
9e1fd49b
BP
3327 b = ofputil_encode_switch_features(&features, ofconn_get_protocol(ofconn),
3328 oh->xid);
64ff1d96 3329 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
9e1fd49b 3330 ofputil_put_switch_features_port(&port->pp, b);
064af421 3331 }
064af421 3332
9e1fd49b 3333 ofconn_send_reply(ofconn, b);
064af421
BP
3334 return 0;
3335}
064af421 3336
90bf1e07 3337static enum ofperr
d1e2cf21 3338handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 3339{
ad99e2ed
BP
3340 struct ofputil_switch_config config;
3341 config.frag = ofconn_get_ofproto(ofconn)->frag_handling;
3342 config.invalid_ttl_to_controller
3343 = ofconn_get_invalid_ttl_to_controller(ofconn);
3344 config.miss_send_len = ofconn_get_miss_send_len(ofconn);
3345
3346 ofconn_send_reply(ofconn, ofputil_encode_get_config_reply(oh, &config));
2d70a31a 3347
064af421
BP
3348 return 0;
3349}
064af421 3350
90bf1e07 3351static enum ofperr
982697a4 3352handle_set_config(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 3353{
64ff1d96 3354 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
ad99e2ed
BP
3355 struct ofputil_switch_config config;
3356 enum ofperr error;
3357
3358 error = ofputil_decode_set_config(oh, &config);
3359 if (error) {
3360 return error;
3361 }
2d70a31a 3362
7257b535 3363 if (ofconn_get_type(ofconn) != OFCONN_PRIMARY
f4f1ea7e 3364 || ofconn_get_role(ofconn) != OFPCR12_ROLE_SLAVE) {
ad99e2ed
BP
3365 enum ofputil_frag_handling cur = ofproto->frag_handling;
3366 enum ofputil_frag_handling next = config.frag;
7257b535 3367
7257b535
BP
3368 if (cur != next) {
3369 if (ofproto->ofproto_class->set_frag_handling(ofproto, next)) {
3370 ofproto->frag_handling = next;
3371 } else {
3372 VLOG_WARN_RL(&rl, "%s: unsupported fragment handling mode %s",
3373 ofproto->name,
3374 ofputil_frag_handling_to_string(next));
3375 }
064af421
BP
3376 }
3377 }
ebe482fd 3378
ad99e2ed
BP
3379 if (config.invalid_ttl_to_controller >= 0) {
3380 ofconn_set_invalid_ttl_to_controller(ofconn,
3381 config.invalid_ttl_to_controller);
3382 }
3383
3384 ofconn_set_miss_send_len(ofconn, config.miss_send_len);
0ad9b732 3385
064af421 3386 return 0;
064af421
BP
3387}
3388
9deba63b 3389/* Checks whether 'ofconn' is a slave controller. If so, returns an OpenFlow
90bf1e07
BP
3390 * error message code for the caller to propagate upward. Otherwise, returns
3391 * 0.
3392 *
3393 * The log message mentions 'msg_type'. */
3394static enum ofperr
3395reject_slave_controller(struct ofconn *ofconn)
9deba63b 3396{
1ce0a5fa 3397 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
f4f1ea7e 3398 && ofconn_get_role(ofconn) == OFPCR12_ROLE_SLAVE) {
20e4ec1a 3399 return OFPERR_OFPBRC_IS_SLAVE;
9deba63b
BP
3400 } else {
3401 return 0;
3402 }
3403}
3404
7e9f8266
BP
3405/* Checks that the 'ofpacts_len' bytes of action in 'ofpacts' are appropriate
3406 * for 'ofproto':
3407 *
3408 * - If they use a meter, then 'ofproto' has that meter configured.
076caa2f 3409 * Updates the meter action with ofproto's datapath's provider_meter_id.
7e9f8266
BP
3410 *
3411 * - If they use any groups, then 'ofproto' has that group configured.
3412 *
1f4a8933
JR
3413 * Returns 0 if successful, otherwise an OpenFlow error. Caller must hold
3414 * 'ofproto_mutex' for the result to be valid also after this function
3415 * returns. */
89108874 3416enum ofperr
9cae45dc 3417ofproto_check_ofpacts(struct ofproto *ofproto,
7e9f8266 3418 const struct ofpact ofpacts[], size_t ofpacts_len)
1f4a8933 3419 OVS_REQUIRES(ofproto_mutex)
9cae45dc 3420{
076caa2f 3421 const struct ofpact *a;
9cae45dc 3422
076caa2f
JR
3423 OFPACT_FOR_EACH_FLATTENED (a, ofpacts, ofpacts_len) {
3424 if (a->type == OFPACT_METER &&
3425 !ofproto_fix_meter_action(ofproto, ofpact_get_METER(a))) {
3426 return OFPERR_OFPMMFC_INVALID_METER;
3427 }
9cae45dc 3428
076caa2f
JR
3429 if (a->type == OFPACT_GROUP
3430 && !ofproto_group_exists(ofproto, ofpact_get_GROUP(a)->group_id)) {
7e9f8266 3431 return OFPERR_OFPBAC_BAD_OUT_GROUP;
84d68566
SH
3432 }
3433 }
3434
9cae45dc
JR
3435 return 0;
3436}
3437
1f4a8933
JR
3438void
3439ofproto_packet_out_uninit(struct ofproto_packet_out *opo)
3440{
3441 dp_packet_delete(opo->packet);
3442 opo->packet = NULL;
3443 free(opo->flow);
3444 opo->flow = NULL;
3445 free(opo->ofpacts);
3446 opo->ofpacts = NULL;
3447 opo->ofpacts_len = 0;
3448 ovs_assert(!opo->aux);
3449}
3450
3451/* Takes ownership of po->ofpacts, which must have been malloc'ed. */
3452static enum ofperr
3453ofproto_packet_out_init(struct ofproto *ofproto,
3454 struct ofconn *ofconn,
3455 struct ofproto_packet_out *opo,
3456 const struct ofputil_packet_out *po)
3457{
3458 enum ofperr error;
67210a55 3459 struct match match;
d7892c81
YHW
3460 struct {
3461 struct miniflow mf;
3462 uint64_t buf[FLOW_U64S];
3463 } m;
1f4a8933 3464
35eb6326
YHW
3465 uint16_t in_port = ofp_to_u16(po->flow_metadata.flow.in_port.ofp_port);
3466 if (in_port >= ofproto->max_ports && in_port < ofp_to_u16(OFPP_MAX)) {
1f4a8933
JR
3467 return OFPERR_OFPBRC_BAD_PORT;
3468 }
3469
3470 /* Get payload. */
3471 if (po->buffer_id != UINT32_MAX) {
3472 return OFPERR_OFPBRC_BUFFER_UNKNOWN;
3473 }
3474
3475 /* Ensure that the L3 header is 32-bit aligned. */
3476 opo->packet = dp_packet_clone_data_with_headroom(po->packet,
3477 po->packet_len, 2);
cb1145d1
ZB
3478 /* Take the received packet_tpye as packet_type of the packet. */
3479 opo->packet->packet_type = po->flow_metadata.flow.packet_type;
3480
1f4a8933
JR
3481 /* Store struct flow. */
3482 opo->flow = xmalloc(sizeof *opo->flow);
d7892c81
YHW
3483 *opo->flow = po->flow_metadata.flow;
3484 miniflow_extract(opo->packet, &m.mf);
3485 flow_union_with_miniflow(opo->flow, &m.mf);
1f4a8933
JR
3486
3487 /* Check actions like for flow mods. We pass a 'table_id' of 0 to
3488 * ofproto_check_consistency(), which isn't strictly correct because these
3489 * actions aren't in any table. This is OK as 'table_id' is only used to
3490 * check instructions (e.g., goto-table), which can't appear on the action
3491 * list of a packet-out. */
67210a55
JR
3492 match_wc_init(&match, opo->flow);
3493 error = ofpacts_check_consistency(po->ofpacts, po->ofpacts_len, &match,
1f4a8933
JR
3494 u16_to_ofp(ofproto->max_ports), 0,
3495 ofproto->n_tables,
3496 ofconn_get_protocol(ofconn));
3497 if (error) {
3498 dp_packet_delete(opo->packet);
3499 free(opo->flow);
3500 return error;
3501 }
3502
3503 opo->ofpacts = po->ofpacts;
3504 opo->ofpacts_len = po->ofpacts_len;
3505
3506 opo->aux = NULL;
3507 return 0;
3508}
3509
3510static enum ofperr
3511ofproto_packet_out_start(struct ofproto *ofproto,
3512 struct ofproto_packet_out *opo)
3513 OVS_REQUIRES(ofproto_mutex)
3514{
3515 enum ofperr error;
3516
3517 error = ofproto_check_ofpacts(ofproto, opo->ofpacts, opo->ofpacts_len);
3518 if (error) {
3519 return error;
3520 }
3521
3522 return ofproto->ofproto_class->packet_xlate(ofproto, opo);
3523}
3524
6dd3c787
JR
3525static void
3526ofproto_packet_out_revert(struct ofproto *ofproto,
3527 struct ofproto_packet_out *opo)
3528 OVS_REQUIRES(ofproto_mutex)
3529{
3530 ofproto->ofproto_class->packet_xlate_revert(ofproto, opo);
3531}
3532
1f4a8933
JR
3533static void
3534ofproto_packet_out_finish(struct ofproto *ofproto,
3535 struct ofproto_packet_out *opo)
3536 OVS_REQUIRES(ofproto_mutex)
3537{
3538 ofproto->ofproto_class->packet_execute(ofproto, opo);
3539}
3540
90bf1e07 3541static enum ofperr
982697a4 3542handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
1f4a8933 3543 OVS_EXCLUDED(ofproto_mutex)
064af421 3544{
64ff1d96 3545 struct ofproto *p = ofconn_get_ofproto(ofconn);
c6a93eb7 3546 struct ofputil_packet_out po;
1f4a8933 3547 struct ofproto_packet_out opo;
f25d0cf3
BP
3548 uint64_t ofpacts_stub[1024 / 8];
3549 struct ofpbuf ofpacts;
90bf1e07 3550 enum ofperr error;
064af421 3551
ac51afaf
BP
3552 COVERAGE_INC(ofproto_packet_out);
3553
76589937 3554 error = reject_slave_controller(ofconn);
9deba63b 3555 if (error) {
1f4a8933 3556 return error;
9deba63b
BP
3557 }
3558
c6a93eb7 3559 /* Decode message. */
f25d0cf3 3560 ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
89d7927b
YHW
3561 error = ofputil_decode_packet_out(&po, oh, ofproto_get_tun_tab(p),
3562 &ofpacts);
064af421 3563 if (error) {
1f4a8933
JR
3564 ofpbuf_uninit(&ofpacts);
3565 return error;
91858960 3566 }
064af421 3567
1f4a8933
JR
3568 po.ofpacts = ofpbuf_steal_data(&ofpacts); /* Move to heap. */
3569 error = ofproto_packet_out_init(p, ofconn, &opo, &po);
3570 if (error) {
3571 free(po.ofpacts);
3572 return error;
e1154f71 3573 }
89108874 3574
1f4a8933
JR
3575 ovs_mutex_lock(&ofproto_mutex);
3576 opo.version = p->tables_version;
3577 error = ofproto_packet_out_start(p, &opo);
548de4dd 3578 if (!error) {
1f4a8933 3579 ofproto_packet_out_finish(p, &opo);
548de4dd 3580 }
1f4a8933 3581 ovs_mutex_unlock(&ofproto_mutex);
abe529af 3582
1f4a8933 3583 ofproto_packet_out_uninit(&opo);
abe529af 3584 return error;
064af421
BP
3585}
3586
77ab5fd2
BP
3587static enum ofperr
3588handle_nxt_resume(struct ofconn *ofconn, const struct ofp_header *oh)
3589{
3590 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3591 struct ofputil_packet_in_private pin;
3592 enum ofperr error;
3593
8d8ab6c2 3594 error = ofputil_decode_packet_in_private(oh, false,
3cddeff0
YHW
3595 ofproto_get_tun_tab(ofproto),
3596 &ofproto->vl_mff_map, &pin, NULL,
3597 NULL);
77ab5fd2
BP
3598 if (error) {
3599 return error;
3600 }
3601
3602 error = (ofproto->ofproto_class->nxt_resume
3603 ? ofproto->ofproto_class->nxt_resume(ofproto, &pin)
3604 : OFPERR_NXR_NOT_SUPPORTED);
3605
3606 ofputil_packet_in_private_destroy(&pin);
3607
3608 return error;
3609}
3610
064af421 3611static void
2a6f78e0 3612update_port_config(struct ofconn *ofconn, struct ofport *port,
9e1fd49b
BP
3613 enum ofputil_port_config config,
3614 enum ofputil_port_config mask)
064af421 3615{
2a6f78e0 3616 enum ofputil_port_config toggle = (config ^ port->pp.config) & mask;
abe529af 3617
2a6f78e0
BP
3618 if (toggle & OFPUTIL_PC_PORT_DOWN
3619 && (config & OFPUTIL_PC_PORT_DOWN
3620 ? netdev_turn_flags_off(port->netdev, NETDEV_UP, NULL)
3621 : netdev_turn_flags_on(port->netdev, NETDEV_UP, NULL))) {
3622 /* We tried to bring the port up or down, but it failed, so don't
3623 * update the "down" bit. */
9e1fd49b 3624 toggle &= ~OFPUTIL_PC_PORT_DOWN;
064af421 3625 }
abe529af 3626
2a6f78e0
BP
3627 if (toggle) {
3628 enum ofputil_port_config old_config = port->pp.config;
3629 port->pp.config ^= toggle;
abe529af 3630 port->ofproto->ofproto_class->port_reconfigured(port, old_config);
2a6f78e0
BP
3631 connmgr_send_port_status(port->ofproto->connmgr, ofconn, &port->pp,
3632 OFPPR_MODIFY);
064af421
BP
3633 }
3634}
3635
90bf1e07 3636static enum ofperr
1c38055d
JR
3637port_mod_start(struct ofconn *ofconn, struct ofputil_port_mod *pm,
3638 struct ofport **port)
064af421 3639{
64ff1d96 3640 struct ofproto *p = ofconn_get_ofproto(ofconn);
1c38055d
JR
3641
3642 *port = ofproto_get_port(p, pm->port_no);
3643 if (!*port) {
3644 return OFPERR_OFPPMFC_BAD_PORT;
3645 }
2f2b904f
BP
3646 if (!eth_addr_equals((*port)->pp.hw_addr, pm->hw_addr) ||
3647 !eth_addr64_equals((*port)->pp.hw_addr64, pm->hw_addr64)) {
1c38055d
JR
3648 return OFPERR_OFPPMFC_BAD_HW_ADDR;
3649 }
3650 return 0;
3651}
3652
3653static void
3654port_mod_finish(struct ofconn *ofconn, struct ofputil_port_mod *pm,
3655 struct ofport *port)
3656{
3657 update_port_config(ofconn, port, pm->config, pm->mask);
3658 if (pm->advertise) {
3659 netdev_set_advertisements(port->netdev, pm->advertise);
3660 }
3661}
3662
3663static enum ofperr
3664handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3665{
9e1fd49b 3666 struct ofputil_port_mod pm;
064af421 3667 struct ofport *port;
9e1fd49b 3668 enum ofperr error;
064af421 3669
76589937 3670 error = reject_slave_controller(ofconn);
9deba63b
BP
3671 if (error) {
3672 return error;
3673 }
064af421 3674
18cc69d9 3675 error = ofputil_decode_port_mod(oh, &pm, false);
9e1fd49b
BP
3676 if (error) {
3677 return error;
3678 }
3679
1c38055d
JR
3680 error = port_mod_start(ofconn, &pm, &port);
3681 if (!error) {
3682 port_mod_finish(ofconn, &pm, port);
064af421 3683 }
1c38055d 3684 return error;
064af421
BP
3685}
3686
90bf1e07 3687static enum ofperr
3269c562 3688handle_desc_stats_request(struct ofconn *ofconn,
982697a4 3689 const struct ofp_header *request)
064af421 3690{
061bfea4
BP
3691 static const char *default_mfr_desc = "Nicira, Inc.";
3692 static const char *default_hw_desc = "Open vSwitch";
3693 static const char *default_sw_desc = VERSION;
3694 static const char *default_serial_desc = "None";
3695 static const char *default_dp_desc = "None";
3696
64ff1d96 3697 struct ofproto *p = ofconn_get_ofproto(ofconn);
064af421
BP
3698 struct ofp_desc_stats *ods;
3699 struct ofpbuf *msg;
3700
982697a4
BP
3701 msg = ofpraw_alloc_stats_reply(request, 0);
3702 ods = ofpbuf_put_zeros(msg, sizeof *ods);
061bfea4
BP
3703 ovs_strlcpy(ods->mfr_desc, p->mfr_desc ? p->mfr_desc : default_mfr_desc,
3704 sizeof ods->mfr_desc);
3705 ovs_strlcpy(ods->hw_desc, p->hw_desc ? p->hw_desc : default_hw_desc,
3706 sizeof ods->hw_desc);
3707 ovs_strlcpy(ods->sw_desc, p->sw_desc ? p->sw_desc : default_sw_desc,
3708 sizeof ods->sw_desc);
3709 ovs_strlcpy(ods->serial_num,
3710 p->serial_desc ? p->serial_desc : default_serial_desc,
3711 sizeof ods->serial_num);
3712 ovs_strlcpy(ods->dp_desc, p->dp_desc ? p->dp_desc : default_dp_desc,
3713 sizeof ods->dp_desc);
b0421aa2 3714 ofconn_send_reply(ofconn, msg);
064af421
BP
3715
3716 return 0;
3717}
3718
90bf1e07 3719static enum ofperr
3269c562 3720handle_table_stats_request(struct ofconn *ofconn,
982697a4 3721 const struct ofp_header *request)
064af421 3722{
3c1bb396
BP
3723 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3724 struct ofputil_table_features *features;
08d1e234 3725 struct ofputil_table_stats *stats;
3c1bb396 3726 struct ofpbuf *reply;
6c1491fb 3727 size_t i;
064af421 3728
3c1bb396 3729 query_tables(ofproto, &features, &stats);
254750ce 3730
3c1bb396
BP
3731 reply = ofputil_encode_table_stats_reply(request);
3732 for (i = 0; i < ofproto->n_tables; i++) {
3733 if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3734 ofputil_append_table_stats_reply(reply, &stats[i], &features[i]);
254750ce
BP
3735 }
3736 }
3c1bb396 3737 ofconn_send_reply(ofconn, reply);
254750ce 3738
3c1bb396 3739 free(features);
08d1e234 3740 free(stats);
307975da 3741
064af421
BP
3742 return 0;
3743}
3744
3c4e10fb
BP
3745static enum ofperr
3746handle_table_features_request(struct ofconn *ofconn,
3747 const struct ofp_header *request)
3748{
3749 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
0a2869d5
BP
3750 struct ofpbuf msg = ofpbuf_const_initializer(request,
3751 ntohs(request->length));
3c4e10fb 3752 ofpraw_pull_assert(&msg);
6fd6ed71 3753 if (msg.size || ofpmp_more(request)) {
3c4e10fb
BP
3754 return OFPERR_OFPTFFC_EPERM;
3755 }
3756
0a2869d5 3757 struct ofputil_table_features *features;
3c4e10fb
BP
3758 query_tables(ofproto, &features, NULL);
3759
0a2869d5 3760 struct ovs_list replies;
3c4e10fb 3761 ofpmp_init(&replies, request);
0a2869d5 3762 for (size_t i = 0; i < ofproto->n_tables; i++) {
3c4e10fb
BP
3763 if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3764 ofputil_append_table_features_reply(&features[i], &replies);
3765 }
3766 }
3767 ofconn_send_replies(ofconn, &replies);
3768
3769 free(features);
3770
3771 return 0;
3772}
3773
6c6eedc5
SJ
3774/* Returns the vacancy of 'oftable', a number that ranges from 0 (if the table
3775 * is full) to 100 (if the table is empty).
3776 *
3777 * A table without a limit on flows is considered to be empty. */
3778static uint8_t
3779oftable_vacancy(const struct oftable *t)
3780{
3781 return (!t->max_flows ? 100
3782 : t->n_flows >= t->max_flows ? 0
3783 : (t->max_flows - t->n_flows) * 100.0 / t->max_flows);
3784}
3785
bab86012
SJ
3786static void
3787query_table_desc__(struct ofputil_table_desc *td,
3788 struct ofproto *ofproto, uint8_t table_id)
3789{
6c6eedc5 3790 const struct oftable *t = &ofproto->tables[table_id];
bab86012
SJ
3791
3792 td->table_id = table_id;
6c6eedc5 3793 td->eviction = (t->eviction & EVICTION_OPENFLOW
bab86012
SJ
3794 ? OFPUTIL_TABLE_EVICTION_ON
3795 : OFPUTIL_TABLE_EVICTION_OFF);
3796 td->eviction_flags = OFPROTO_EVICTION_FLAGS;
6c6eedc5 3797 td->vacancy = (t->vacancy_event
bab86012
SJ
3798 ? OFPUTIL_TABLE_VACANCY_ON
3799 : OFPUTIL_TABLE_VACANCY_OFF);
6c6eedc5
SJ
3800 td->table_vacancy.vacancy_down = t->vacancy_down;
3801 td->table_vacancy.vacancy_up = t->vacancy_up;
3802 td->table_vacancy.vacancy = oftable_vacancy(t);
bab86012
SJ
3803}
3804
03c72922
BP
3805/* This function queries the database for dumping table-desc. */
3806static void
3807query_tables_desc(struct ofproto *ofproto, struct ofputil_table_desc **descp)
3808{
3809 struct ofputil_table_desc *table_desc;
3810 size_t i;
3811
3812 table_desc = *descp = xcalloc(ofproto->n_tables, sizeof *table_desc);
3813 for (i = 0; i < ofproto->n_tables; i++) {
3814 struct ofputil_table_desc *td = &table_desc[i];
bab86012 3815 query_table_desc__(td, ofproto, i);
03c72922
BP
3816 }
3817}
3818
3819/* Function to handle dump-table-desc request. */
3820static enum ofperr
3821handle_table_desc_request(struct ofconn *ofconn,
3822 const struct ofp_header *request)
3823{
3824 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3825 struct ofputil_table_desc *table_desc;
3826 struct ovs_list replies;
3827 size_t i;
3828
3829 query_tables_desc(ofproto, &table_desc);
3830 ofpmp_init(&replies, request);
3831 for (i = 0; i < ofproto->n_tables; i++) {
3832 if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3833 ofputil_append_table_desc_reply(&table_desc[i], &replies,
3834 request->version);
3835 }
3836 }
3837 ofconn_send_replies(ofconn, &replies);
3838 free(table_desc);
3839 return 0;
3840}
3841
6c6eedc5
SJ
3842/* This function determines and sends the vacancy event, based on the value
3843 * of current vacancy and threshold vacancy. If the current vacancy is less
3844 * than or equal to vacancy_down, vacancy up events must be enabled, and when
3845 * the current vacancy is greater or equal to vacancy_up, vacancy down events
3846 * must be enabled. */
3847static void
3848send_table_status(struct ofproto *ofproto, uint8_t table_id)
3849{
3850 struct oftable *t = &ofproto->tables[table_id];
3851 if (!t->vacancy_event) {
3852 return;
3853 }
3854
3855 uint8_t vacancy = oftable_vacancy(t);
3856 enum ofp14_table_reason event;
3857 if (vacancy < t->vacancy_down) {
3858 event = OFPTR_VACANCY_DOWN;
3859 } else if (vacancy > t->vacancy_up) {
3860 event = OFPTR_VACANCY_UP;
3861 } else {
3862 return;
3863 }
3864
3865 if (event == t->vacancy_event) {
3866 struct ofputil_table_desc td;
3867 query_table_desc__(&td, ofproto, table_id);
3868 connmgr_send_table_status(ofproto->connmgr, &td, event);
3869
3870 t->vacancy_event = (event == OFPTR_VACANCY_DOWN
3871 ? OFPTR_VACANCY_UP
3872 : OFPTR_VACANCY_DOWN);
3873 }
3874}
3875
abaad8cf 3876static void
ca6ba700 3877append_port_stat(struct ofport *port, struct ovs_list *replies)
abaad8cf 3878{
f8e4867e 3879 struct ofputil_port_stats ops = { .port_no = port->pp.port_no };
abaad8cf 3880
65e0be10
BP
3881 calc_duration(port->created, time_msec(),
3882 &ops.duration_sec, &ops.duration_nsec);
3883
d295e8e9
JP
3884 /* Intentionally ignore return value, since errors will set
3885 * 'stats' to all-1s, which is correct for OpenFlow, and
abaad8cf 3886 * netdev_get_stats() will log errors. */
f8e4867e
SH
3887 ofproto_port_get_stats(port, &ops.stats);
3888
3889 ofputil_append_port_stat(replies, &ops);
abaad8cf
JP
3890}
3891
70ae4f93
BP
3892static void
3893handle_port_request(struct ofconn *ofconn,
3894 const struct ofp_header *request, ofp_port_t port_no,
ca6ba700 3895 void (*cb)(struct ofport *, struct ovs_list *replies))
064af421 3896{
70ae4f93 3897 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
064af421 3898 struct ofport *port;
ca6ba700 3899 struct ovs_list replies;
064af421 3900
982697a4 3901 ofpmp_init(&replies, request);
7f05e7ab 3902 if (port_no != OFPP_ANY) {
70ae4f93 3903 port = ofproto_get_port(ofproto, port_no);
abaad8cf 3904 if (port) {
70ae4f93 3905 cb(port, &replies);
abaad8cf
JP
3906 }
3907 } else {
70ae4f93
BP
3908 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3909 cb(port, &replies);
abaad8cf 3910 }
064af421
BP
3911 }
3912
63f2140a 3913 ofconn_send_replies(ofconn, &replies);
70ae4f93
BP
3914}
3915
3916static enum ofperr
3917handle_port_stats_request(struct ofconn *ofconn,
3918 const struct ofp_header *request)
3919{
3920 ofp_port_t port_no;
3921 enum ofperr error;
3922
3923 error = ofputil_decode_port_stats_request(request, &port_no);
3924 if (!error) {
3925 handle_port_request(ofconn, request, port_no, append_port_stat);
3926 }
3927 return error;
3928}
3929
3930static void
ca6ba700 3931append_port_desc(struct ofport *port, struct ovs_list *replies)
70ae4f93
BP
3932{
3933 ofputil_append_port_desc_stats_reply(&port->pp, replies);
064af421
BP
3934}
3935
2be393ed
JP
3936static enum ofperr
3937handle_port_desc_stats_request(struct ofconn *ofconn,
982697a4 3938 const struct ofp_header *request)
2be393ed 3939{
70ae4f93
BP
3940 ofp_port_t port_no;
3941 enum ofperr error;
2be393ed 3942
70ae4f93
BP
3943 error = ofputil_decode_port_desc_stats_request(request, &port_no);
3944 if (!error) {
3945 handle_port_request(ofconn, request, port_no, append_port_desc);
2be393ed 3946 }
70ae4f93 3947 return error;
2be393ed
JP
3948}
3949
98eaac36
JR
3950static uint32_t
3951hash_cookie(ovs_be64 cookie)
3952{
965607c8 3953 return hash_uint64((OVS_FORCE uint64_t)cookie);
98eaac36
JR
3954}
3955
3956static void
3957cookies_insert(struct ofproto *ofproto, struct rule *rule)
2c916028 3958 OVS_REQUIRES(ofproto_mutex)
98eaac36
JR
3959{
3960 hindex_insert(&ofproto->cookies, &rule->cookie_node,
3961 hash_cookie(rule->flow_cookie));
3962}
3963
3964static void
3965cookies_remove(struct ofproto *ofproto, struct rule *rule)
2c916028 3966 OVS_REQUIRES(ofproto_mutex)
98eaac36
JR
3967{
3968 hindex_remove(&ofproto->cookies, &rule->cookie_node);
3969}
3970
c6ebb8fb 3971static void
65e0be10
BP
3972calc_duration(long long int start, long long int now,
3973 uint32_t *sec, uint32_t *nsec)
c6ebb8fb 3974{
f27f2134 3975 long long int msecs = now - start;
588cd7b5
BP
3976 *sec = msecs / 1000;
3977 *nsec = (msecs % 1000) * (1000 * 1000);
3978}
3979
48266274 3980/* Checks whether 'table_id' is 0xff or a valid table ID in 'ofproto'. Returns
554764d1
SH
3981 * true if 'table_id' is OK, false otherwise. */
3982static bool
48266274
BP
3983check_table_id(const struct ofproto *ofproto, uint8_t table_id)
3984{
554764d1 3985 return table_id == OFPTT_ALL || table_id < ofproto->n_tables;
48266274
BP
3986}
3987
5c67e4af 3988static struct oftable *
d4ce8a49 3989next_visible_table(const struct ofproto *ofproto, uint8_t table_id)
5c67e4af
BP
3990{
3991 struct oftable *table;
3992
3993 for (table = &ofproto->tables[table_id];
3994 table < &ofproto->tables[ofproto->n_tables];
3995 table++) {
3996 if (!(table->flags & OFTABLE_HIDDEN)) {
3997 return table;
3998 }
3999 }
4000
4001 return NULL;
4002}
4003
d0918789 4004static struct oftable *
d4ce8a49 4005first_matching_table(const struct ofproto *ofproto, uint8_t table_id)
064af421 4006{
6c1491fb 4007 if (table_id == 0xff) {
5c67e4af 4008 return next_visible_table(ofproto, 0);
6c1491fb
BP
4009 } else if (table_id < ofproto->n_tables) {
4010 return &ofproto->tables[table_id];
a02e5331 4011 } else {
6c1491fb 4012 return NULL;
a02e5331 4013 }
064af421
BP
4014}
4015
d0918789 4016static struct oftable *
d4ce8a49
BP
4017next_matching_table(const struct ofproto *ofproto,
4018 const struct oftable *table, uint8_t table_id)
6c1491fb 4019{
5c67e4af
BP
4020 return (table_id == 0xff
4021 ? next_visible_table(ofproto, (table - ofproto->tables) + 1)
6c1491fb
BP
4022 : NULL);
4023}
4024
d0918789 4025/* Assigns TABLE to each oftable, in turn, that matches TABLE_ID in OFPROTO:
6c1491fb
BP
4026 *
4027 * - If TABLE_ID is 0xff, this iterates over every classifier table in
5c67e4af 4028 * OFPROTO, skipping tables marked OFTABLE_HIDDEN.
6c1491fb
BP
4029 *
4030 * - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
5c67e4af
BP
4031 * only once, for that table. (This can be used to access tables marked
4032 * OFTABLE_HIDDEN.)
6c1491fb 4033 *
48266274
BP
4034 * - Otherwise, TABLE_ID isn't valid for OFPROTO, so the loop won't be
4035 * entered at all. (Perhaps you should have validated TABLE_ID with
4036 * check_table_id().)
6c1491fb
BP
4037 *
4038 * All parameters are evaluated multiple times.
4039 */
d0918789
BP
4040#define FOR_EACH_MATCHING_TABLE(TABLE, TABLE_ID, OFPROTO) \
4041 for ((TABLE) = first_matching_table(OFPROTO, TABLE_ID); \
4042 (TABLE) != NULL; \
4043 (TABLE) = next_matching_table(OFPROTO, TABLE, TABLE_ID))
6c1491fb 4044
a9b22b7f
BP
4045/* Initializes 'criteria' in a straightforward way based on the other
4046 * parameters.
4047 *
dd51dae2
BP
4048 * By default, the criteria include flows that are read-only, on the assumption
4049 * that the collected flows won't be modified. Call rule_criteria_require_rw()
4050 * if flows will be modified.
4051 *
a9b22b7f
BP
4052 * For "loose" matching, the 'priority' parameter is unimportant and may be
4053 * supplied as 0. */
4054static void
4055rule_criteria_init(struct rule_criteria *criteria, uint8_t table_id,
18721c4a 4056 const struct match *match, int priority,
44e0c35d 4057 ovs_version_t version, ovs_be64 cookie,
18721c4a
JR
4058 ovs_be64 cookie_mask, ofp_port_t out_port,
4059 uint32_t out_group)
a9b22b7f
BP
4060{
4061 criteria->table_id = table_id;
bd53aa17
JR
4062 cls_rule_init(&criteria->cr, match, priority);
4063 criteria->version = version;
a9b22b7f
BP
4064 criteria->cookie = cookie;
4065 criteria->cookie_mask = cookie_mask;
4066 criteria->out_port = out_port;
4067 criteria->out_group = out_group;
dd51dae2
BP
4068
4069 /* We ordinarily want to skip hidden rules, but there has to be a way for
4070 * code internal to OVS to modify and delete them, so if the criteria
4071 * specify a priority that can only be for a hidden flow, then allow hidden
4072 * rules to be selected. (This doesn't allow OpenFlow clients to meddle
4073 * with hidden flows because OpenFlow uses only a 16-bit field to specify
4074 * priority.) */
4075 criteria->include_hidden = priority > UINT16_MAX;
4076
4077 /* We assume that the criteria are being used to collect flows for reading
4078 * but not modification. Thus, we should collect read-only flows. */
4079 criteria->include_readonly = true;
4080}
4081
4082/* By default, criteria initialized by rule_criteria_init() will match flows
4083 * that are read-only, on the assumption that the collected flows won't be
4084 * modified. Call this function to match only flows that are be modifiable.
4085 *
4086 * Specify 'can_write_readonly' as false in ordinary circumstances, true if the
4087 * caller has special privileges that allow it to modify even "read-only"
4088 * flows. */
4089static void
4090rule_criteria_require_rw(struct rule_criteria *criteria,
4091 bool can_write_readonly)
4092{
4093 criteria->include_readonly = can_write_readonly;
a9b22b7f
BP
4094}
4095
4096static void
4097rule_criteria_destroy(struct rule_criteria *criteria)
4098{
4099 cls_rule_destroy(&criteria->cr);
5bacd5cd 4100 criteria->version = OVS_VERSION_NOT_REMOVED; /* Mark as destroyed. */
a9b22b7f
BP
4101}
4102
39c94593
JR
4103/* Schedules postponed removal of rules, destroys 'rules'. */
4104static void
cc099268 4105remove_rules_postponed(struct rule_collection *rules)
39c94593
JR
4106 OVS_REQUIRES(ofproto_mutex)
4107{
fe59694b
JR
4108 if (rule_collection_n(rules) > 0) {
4109 if (rule_collection_n(rules) == 1) {
4110 ovsrcu_postpone(remove_rule_rcu, rule_collection_rules(rules)[0]);
4111 rule_collection_init(rules);
39c94593
JR
4112 } else {
4113 ovsrcu_postpone(remove_rules_rcu, rule_collection_detach(rules));
4114 }
4115 }
4116}
4117
5d08a275
JR
4118/* Schedules postponed removal of groups, destroys 'groups'. */
4119static void
4120remove_groups_postponed(struct group_collection *groups)
4121 OVS_REQUIRES(ofproto_mutex)
4122{
4123 if (group_collection_n(groups) > 0) {
4124 if (group_collection_n(groups) == 1) {
4125 ovsrcu_postpone(remove_group_rcu,
4126 group_collection_groups(groups)[0]);
4127 group_collection_init(groups);
4128 } else {
4129 ovsrcu_postpone(remove_groups_rcu,
4130 group_collection_detach(groups));
4131 }
4132 }
4133}
4134
dd51dae2
BP
4135/* Checks whether 'rule' matches 'c' and, if so, adds it to 'rules'. This
4136 * function verifies most of the criteria in 'c' itself, but the caller must
4137 * check 'c->cr' itself.
4138 *
2b7b1427 4139 * Rules that have already been marked for removal are not collected.
ce59413f 4140 *
dd51dae2 4141 * Increments '*n_readonly' if 'rule' wasn't added because it's read-only (and
b20f4073
BP
4142 * 'c' only includes modifiable rules). */
4143static void
a9b22b7f 4144collect_rule(struct rule *rule, const struct rule_criteria *c,
dd51dae2 4145 struct rule_collection *rules, size_t *n_readonly)
15aaf599 4146 OVS_REQUIRES(ofproto_mutex)
6c1d7642 4147{
dd51dae2
BP
4148 if ((c->table_id == rule->table_id || c->table_id == 0xff)
4149 && ofproto_rule_has_out_port(rule, c->out_port)
4150 && ofproto_rule_has_out_group(rule, c->out_group)
4151 && !((rule->flow_cookie ^ c->cookie) & c->cookie_mask)
ce59413f 4152 && (!rule_is_hidden(rule) || c->include_hidden)
bd53aa17 4153 && cls_rule_visible_in_version(&rule->cr, c->version)) {
dd51dae2 4154 /* Rule matches all the criteria... */
834fe5cb 4155 if (!rule_is_readonly(rule) || c->include_readonly) {
dd51dae2 4156 /* ...add it. */
a8e547c1 4157 rule_collection_add(rules, rule);
dd51dae2
BP
4158 } else {
4159 /* ...except it's read-only. */
4160 ++*n_readonly;
6c1d7642 4161 }
6c1d7642
BP
4162 }
4163}
4164
a9b22b7f
BP
4165/* Searches 'ofproto' for rules that match the criteria in 'criteria'. Matches
4166 * on classifiers rules are done in the "loose" way required for OpenFlow
4167 * OFPFC_MODIFY and OFPFC_DELETE requests. Puts the selected rules on list
9ed18e46
BP
4168 * 'rules'.
4169 *
9ed18e46 4170 * Returns 0 on success, otherwise an OpenFlow error code. */
90bf1e07 4171static enum ofperr
a9b22b7f 4172collect_rules_loose(struct ofproto *ofproto,
a8e547c1
BP
4173 const struct rule_criteria *criteria,
4174 struct rule_collection *rules)
15aaf599 4175 OVS_REQUIRES(ofproto_mutex)
9ed18e46 4176{
d0918789 4177 struct oftable *table;
554764d1 4178 enum ofperr error = 0;
dd51dae2 4179 size_t n_readonly = 0;
48266274 4180
a8e547c1
BP
4181 rule_collection_init(rules);
4182
554764d1
SH
4183 if (!check_table_id(ofproto, criteria->table_id)) {
4184 error = OFPERR_OFPBRC_BAD_TABLE_ID;
a8e547c1 4185 goto exit;
48266274 4186 }
9ed18e46 4187
b8266395 4188 if (criteria->cookie_mask == OVS_BE64_MAX) {
98eaac36
JR
4189 struct rule *rule;
4190
a9b22b7f
BP
4191 HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
4192 hash_cookie(criteria->cookie),
98eaac36 4193 &ofproto->cookies) {
a9b22b7f 4194 if (cls_rule_is_loose_match(&rule->cr, &criteria->cr.match)) {
b20f4073 4195 collect_rule(rule, criteria, rules, &n_readonly);
98eaac36
JR
4196 }
4197 }
6c1d7642 4198 } else {
a9b22b7f 4199 FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
6c1d7642 4200 struct rule *rule;
9ed18e46 4201
bd53aa17
JR
4202 CLS_FOR_EACH_TARGET (rule, cr, &table->cls, &criteria->cr,
4203 criteria->version) {
b20f4073 4204 collect_rule(rule, criteria, rules, &n_readonly);
9ed18e46
BP
4205 }
4206 }
4207 }
48d28ac1 4208
a8e547c1 4209exit:
fe59694b 4210 if (!error && !rule_collection_n(rules) && n_readonly) {
dd51dae2
BP
4211 /* We didn't find any rules to modify. We did find some read-only
4212 * rules that we're not allowed to modify, so report that. */
4213 error = OFPERR_OFPBRC_EPERM;
4214 }
a8e547c1
BP
4215 if (error) {
4216 rule_collection_destroy(rules);
4217 }
48d28ac1 4218 return error;
9ed18e46
BP
4219}
4220
a9b22b7f
BP
4221/* Searches 'ofproto' for rules that match the criteria in 'criteria'. Matches
4222 * on classifiers rules are done in the "strict" way required for OpenFlow
4223 * OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests. Puts the selected
4224 * rules on list 'rules'.
9ed18e46 4225 *
9ed18e46 4226 * Returns 0 on success, otherwise an OpenFlow error code. */
90bf1e07 4227static enum ofperr
a9b22b7f 4228collect_rules_strict(struct ofproto *ofproto,
a8e547c1
BP
4229 const struct rule_criteria *criteria,
4230 struct rule_collection *rules)
15aaf599 4231 OVS_REQUIRES(ofproto_mutex)
9ed18e46 4232{
d0918789 4233 struct oftable *table;
dd51dae2 4234 size_t n_readonly = 0;
d51c8b71 4235 enum ofperr error = 0;
48266274 4236
a8e547c1
BP
4237 rule_collection_init(rules);
4238
554764d1
SH
4239 if (!check_table_id(ofproto, criteria->table_id)) {
4240 error = OFPERR_OFPBRC_BAD_TABLE_ID;
a8e547c1 4241 goto exit;
48266274 4242 }
9ed18e46 4243
b8266395 4244 if (criteria->cookie_mask == OVS_BE64_MAX) {
98eaac36
JR
4245 struct rule *rule;
4246
a9b22b7f
BP
4247 HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
4248 hash_cookie(criteria->cookie),
98eaac36 4249 &ofproto->cookies) {
a9b22b7f 4250 if (cls_rule_equal(&rule->cr, &criteria->cr)) {
b20f4073 4251 collect_rule(rule, criteria, rules, &n_readonly);
98eaac36
JR
4252 }
4253 }
6c1d7642 4254 } else {
a9b22b7f 4255 FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
6c1d7642 4256 struct rule *rule;
9ed18e46 4257
a9b22b7f 4258 rule = rule_from_cls_rule(classifier_find_rule_exactly(
bd53aa17
JR
4259 &table->cls, &criteria->cr,
4260 criteria->version));
6c1d7642 4261 if (rule) {
b20f4073 4262 collect_rule(rule, criteria, rules, &n_readonly);
9ed18e46
BP
4263 }
4264 }
4265 }
48d28ac1 4266
a8e547c1 4267exit:
fe59694b 4268 if (!error && !rule_collection_n(rules) && n_readonly) {
b20f4073
BP
4269 /* We didn't find any rules to modify. We did find some read-only
4270 * rules that we're not allowed to modify, so report that. */
4271 error = OFPERR_OFPBRC_EPERM;
4272 }
a8e547c1
BP
4273 if (error) {
4274 rule_collection_destroy(rules);
4275 }
6c1d7642 4276 return error;
9ed18e46
BP
4277}
4278
f27f2134
BP
4279/* Returns 'age_ms' (a duration in milliseconds), converted to seconds and
4280 * forced into the range of a uint16_t. */
4281static int
4282age_secs(long long int age_ms)
4283{
4284 return (age_ms < 0 ? 0
4285 : age_ms >= UINT16_MAX * 1000 ? UINT16_MAX
4286 : (unsigned int) age_ms / 1000);
4287}
4288
90bf1e07 4289static enum ofperr
63f2140a 4290handle_flow_stats_request(struct ofconn *ofconn,
982697a4 4291 const struct ofp_header *request)
15aaf599 4292 OVS_EXCLUDED(ofproto_mutex)
064af421 4293{
64ff1d96 4294 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
81d1ea94 4295 struct ofputil_flow_stats_request fsr;
a9b22b7f 4296 struct rule_criteria criteria;
a8e547c1 4297 struct rule_collection rules;
ca6ba700 4298 struct ovs_list replies;
90bf1e07 4299 enum ofperr error;
09246b99 4300
8d8ab6c2 4301 error = ofputil_decode_flow_stats_request(&fsr, request,
3cddeff0
YHW
4302 ofproto_get_tun_tab(ofproto),
4303 &ofproto->vl_mff_map);
09246b99
BP
4304 if (error) {
4305 return error;
4306 }
4307
44e0c35d 4308 rule_criteria_init(&criteria, fsr.table_id, &fsr.match, 0, OVS_VERSION_MAX,
2b7b1427
JR
4309 fsr.cookie, fsr.cookie_mask, fsr.out_port,
4310 fsr.out_group);
15aaf599
BP
4311
4312 ovs_mutex_lock(&ofproto_mutex);
a9b22b7f
BP
4313 error = collect_rules_loose(ofproto, &criteria, &rules);
4314 rule_criteria_destroy(&criteria);
15aaf599
BP
4315 if (!error) {
4316 rule_collection_ref(&rules);
4317 }
4318 ovs_mutex_unlock(&ofproto_mutex);
4319
9ed18e46
BP
4320 if (error) {
4321 return error;
4322 }
5ecc9d81 4323
982697a4 4324 ofpmp_init(&replies, request);
fe59694b
JR
4325 struct rule *rule;
4326 RULE_COLLECTION_FOR_EACH (rule, &rules) {
f27f2134 4327 long long int now = time_msec();
9ed18e46 4328 struct ofputil_flow_stats fs;
15aaf599 4329 long long int created, used, modified;
dc723c44 4330 const struct rule_actions *actions;
15aaf599 4331 enum ofputil_flow_mod_flags flags;
a3779dbc 4332
d10976b7 4333 ovs_mutex_lock(&rule->mutex);
15aaf599 4334 fs.cookie = rule->flow_cookie;
a3779dbc
EJ
4335 fs.idle_timeout = rule->idle_timeout;
4336 fs.hard_timeout = rule->hard_timeout;
ca26eb44 4337 fs.importance = rule->importance;
15aaf599 4338 created = rule->created;
15aaf599 4339 modified = rule->modified;
06a0f3e2 4340 actions = rule_get_actions(rule);
15aaf599 4341 flags = rule->flags;
d10976b7 4342 ovs_mutex_unlock(&rule->mutex);
a3779dbc 4343
dc437090
JR
4344 ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
4345 &fs.byte_count, &used);
4346
15aaf599
BP
4347 minimatch_expand(&rule->cr.match, &fs.match);
4348 fs.table_id = rule->table_id;
4349 calc_duration(created, now, &fs.duration_sec, &fs.duration_nsec);
4350 fs.priority = rule->cr.priority;
4351 fs.idle_age = age_secs(now - used);
4352 fs.hard_age = age_secs(now - modified);
15aaf599
BP
4353 fs.ofpacts = actions->ofpacts;
4354 fs.ofpacts_len = actions->ofpacts_len;
3f517bcd 4355
15aaf599 4356 fs.flags = flags;
8d8ab6c2
JG
4357 ofputil_append_flow_stats_reply(&fs, &replies,
4358 ofproto_get_tun_tab(ofproto));
3c4486a5 4359 }
15aaf599
BP
4360
4361 rule_collection_unref(&rules);
a8e547c1
BP
4362 rule_collection_destroy(&rules);
4363
63f2140a 4364 ofconn_send_replies(ofconn, &replies);
5ecc9d81 4365
09246b99
BP
4366 return 0;
4367}
4368
4f2cad2c 4369static void
8d8ab6c2 4370flow_stats_ds(struct ofproto *ofproto, struct rule *rule, struct ds *results)
4f2cad2c 4371{
4f2cad2c 4372 uint64_t packet_count, byte_count;
dc723c44 4373 const struct rule_actions *actions;
dc437090 4374 long long int created, used;
4f2cad2c 4375
dc437090
JR
4376 rule->ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
4377 &byte_count, &used);
4f2cad2c 4378
15aaf599 4379 ovs_mutex_lock(&rule->mutex);
06a0f3e2 4380 actions = rule_get_actions(rule);
15aaf599
BP
4381 created = rule->created;
4382 ovs_mutex_unlock(&rule->mutex);
4383
6c1491fb
BP
4384 if (rule->table_id != 0) {
4385 ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
4386 }
15aaf599 4387 ds_put_format(results, "duration=%llds, ", (time_msec() - created) / 1000);
4f2cad2c
JP
4388 ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
4389 ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
50f96b10 4390 cls_rule_format(&rule->cr, ofproto_get_tun_tab(ofproto), NULL, results);
a5df0e72 4391 ds_put_char(results, ',');
15aaf599 4392
455ecd77 4393 ds_put_cstr(results, "actions=");
50f96b10 4394 ofpacts_format(actions->ofpacts, actions->ofpacts_len, NULL, results);
15aaf599 4395
4f2cad2c
JP
4396 ds_put_cstr(results, "\n");
4397}
4398
d295e8e9 4399/* Adds a pretty-printed description of all flows to 'results', including
ee8b231c 4400 * hidden flows (e.g., set up by in-band control). */
4f2cad2c
JP
4401void
4402ofproto_get_all_flows(struct ofproto *p, struct ds *results)
4403{
d0918789 4404 struct oftable *table;
6c1491fb 4405
d0918789 4406 OFPROTO_FOR_EACH_TABLE (table, p) {
6c1491fb 4407 struct rule *rule;
064af421 4408
5f0476ce 4409 CLS_FOR_EACH (rule, cr, &table->cls) {
8d8ab6c2 4410 flow_stats_ds(p, rule, results);
6c1491fb 4411 }
064af421 4412 }
064af421
BP
4413}
4414
b5827b24
BP
4415/* Obtains the NetFlow engine type and engine ID for 'ofproto' into
4416 * '*engine_type' and '*engine_id', respectively. */
4417void
4418ofproto_get_netflow_ids(const struct ofproto *ofproto,
4419 uint8_t *engine_type, uint8_t *engine_id)
4420{
abe529af 4421 ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
b5827b24
BP
4422}
4423
8f5514fe
AW
4424/* Checks the status change of CFM on 'ofport'.
4425 *
4426 * Returns true if 'ofproto_class' does not support 'cfm_status_changed'. */
4427bool
4428ofproto_port_cfm_status_changed(struct ofproto *ofproto, ofp_port_t ofp_port)
4429{
4430 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
4431 return (ofport && ofproto->ofproto_class->cfm_status_changed
4432 ? ofproto->ofproto_class->cfm_status_changed(ofport)
4433 : true);
4434}
4435
88bf179a
AW
4436/* Checks the status of CFM configured on 'ofp_port' within 'ofproto'.
4437 * Returns 0 if the port's CFM status was successfully stored into
4438 * '*status'. Returns positive errno if the port did not have CFM
8f5514fe 4439 * configured.
9a9e3786 4440 *
88bf179a
AW
4441 * The caller must provide and own '*status', and must free 'status->rmps'.
4442 * '*status' is indeterminate if the return value is non-zero. */
4443int
4e022ec0 4444ofproto_port_get_cfm_status(const struct ofproto *ofproto, ofp_port_t ofp_port,
685acfd9 4445 struct cfm_status *status)
3967a833
MM
4446{
4447 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
88bf179a
AW
4448 return (ofport && ofproto->ofproto_class->get_cfm_status
4449 ? ofproto->ofproto_class->get_cfm_status(ofport, status)
4450 : EOPNOTSUPP);
3967a833
MM
4451}
4452
90bf1e07 4453static enum ofperr
76c93b22 4454handle_aggregate_stats_request(struct ofconn *ofconn,
982697a4 4455 const struct ofp_header *oh)
15aaf599 4456 OVS_EXCLUDED(ofproto_mutex)
27d34fce 4457{
76c93b22 4458 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
81d1ea94 4459 struct ofputil_flow_stats_request request;
76c93b22 4460 struct ofputil_aggregate_stats stats;
5e9d0469 4461 bool unknown_packets, unknown_bytes;
a9b22b7f 4462 struct rule_criteria criteria;
a8e547c1 4463 struct rule_collection rules;
76c93b22 4464 struct ofpbuf *reply;
90bf1e07 4465 enum ofperr error;
27d34fce 4466
8d8ab6c2 4467 error = ofputil_decode_flow_stats_request(&request, oh,
3cddeff0
YHW
4468 ofproto_get_tun_tab(ofproto),
4469 &ofproto->vl_mff_map);
76c93b22
BP
4470 if (error) {
4471 return error;
4472 }
5ecc9d81 4473
a9b22b7f 4474 rule_criteria_init(&criteria, request.table_id, &request.match, 0,
44e0c35d 4475 OVS_VERSION_MAX, request.cookie, request.cookie_mask,
a9b22b7f 4476 request.out_port, request.out_group);
15aaf599
BP
4477
4478 ovs_mutex_lock(&ofproto_mutex);
a9b22b7f
BP
4479 error = collect_rules_loose(ofproto, &criteria, &rules);
4480 rule_criteria_destroy(&criteria);
15aaf599
BP
4481 if (!error) {
4482 rule_collection_ref(&rules);
4483 }
4484 ovs_mutex_unlock(&ofproto_mutex);
4485
9ed18e46
BP
4486 if (error) {
4487 return error;
4488 }
3c4486a5 4489
9ed18e46 4490 memset(&stats, 0, sizeof stats);
5e9d0469 4491 unknown_packets = unknown_bytes = false;
fe59694b
JR
4492
4493 struct rule *rule;
4494 RULE_COLLECTION_FOR_EACH (rule, &rules) {
9ed18e46
BP
4495 uint64_t packet_count;
4496 uint64_t byte_count;
dc437090 4497 long long int used;
5ecc9d81 4498
9ed18e46 4499 ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
dc437090 4500 &byte_count, &used);
5ecc9d81 4501
5e9d0469
BP
4502 if (packet_count == UINT64_MAX) {
4503 unknown_packets = true;
4504 } else {
4505 stats.packet_count += packet_count;
4506 }
4507
4508 if (byte_count == UINT64_MAX) {
4509 unknown_bytes = true;
4510 } else {
4511 stats.byte_count += byte_count;
4512 }
4513
9ed18e46 4514 stats.flow_count++;
3c4486a5 4515 }
5e9d0469
BP
4516 if (unknown_packets) {
4517 stats.packet_count = UINT64_MAX;
4518 }
4519 if (unknown_bytes) {
4520 stats.byte_count = UINT64_MAX;
4521 }
27d34fce 4522
15aaf599 4523 rule_collection_unref(&rules);
a8e547c1
BP
4524 rule_collection_destroy(&rules);
4525
982697a4 4526 reply = ofputil_encode_aggregate_stats_reply(&stats, oh);
76c93b22 4527 ofconn_send_reply(ofconn, reply);
09246b99
BP
4528
4529 return 0;
4530}
4531
c1c9c9c4 4532struct queue_stats_cbdata {
ca0f572c 4533 struct ofport *ofport;
ca6ba700 4534 struct ovs_list replies;
6dc34a0d 4535 long long int now;
c1c9c9c4
BP
4536};
4537
4538static void
db9220c3 4539put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
c1c9c9c4
BP
4540 const struct netdev_queue_stats *stats)
4541{
6dc34a0d 4542 struct ofputil_queue_stats oqs;
c1c9c9c4 4543
6dc34a0d
BP
4544 oqs.port_no = cbdata->ofport->pp.port_no;
4545 oqs.queue_id = queue_id;
4546 oqs.tx_bytes = stats->tx_bytes;
4547 oqs.tx_packets = stats->tx_packets;
4548 oqs.tx_errors = stats->tx_errors;
4549 if (stats->created != LLONG_MIN) {
4550 calc_duration(stats->created, cbdata->now,
4551 &oqs.duration_sec, &oqs.duration_nsec);
4552 } else {
4553 oqs.duration_sec = oqs.duration_nsec = UINT32_MAX;
4554 }
64626975 4555 ofputil_append_queue_stat(&cbdata->replies, &oqs);
c1c9c9c4
BP
4556}
4557
4558static void
db9220c3 4559handle_queue_stats_dump_cb(uint32_t queue_id,
c1c9c9c4
BP
4560 struct netdev_queue_stats *stats,
4561 void *cbdata_)
4562{
4563 struct queue_stats_cbdata *cbdata = cbdata_;
4564
4565 put_queue_stats(cbdata, queue_id, stats);
4566}
4567
0414d158 4568static enum ofperr
ca0f572c 4569handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
c1c9c9c4
BP
4570 struct queue_stats_cbdata *cbdata)
4571{
ca0f572c 4572 cbdata->ofport = port;
c1c9c9c4
BP
4573 if (queue_id == OFPQ_ALL) {
4574 netdev_dump_queue_stats(port->netdev,
4575 handle_queue_stats_dump_cb, cbdata);
4576 } else {
4577 struct netdev_queue_stats stats;
4578
1ac788f6
BP
4579 if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
4580 put_queue_stats(cbdata, queue_id, &stats);
0414d158
BP
4581 } else {
4582 return OFPERR_OFPQOFC_BAD_QUEUE;
1ac788f6 4583 }
c1c9c9c4 4584 }
0414d158 4585 return 0;
c1c9c9c4
BP
4586}
4587
90bf1e07 4588static enum ofperr
63f2140a 4589handle_queue_stats_request(struct ofconn *ofconn,
982697a4 4590 const struct ofp_header *rq)
c1c9c9c4 4591{
64ff1d96 4592 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
c1c9c9c4 4593 struct queue_stats_cbdata cbdata;
0414d158 4594 struct ofport *port;
0414d158 4595 enum ofperr error;
64626975 4596 struct ofputil_queue_stats_request oqsr;
c1c9c9c4 4597
c1c9c9c4
BP
4598 COVERAGE_INC(ofproto_queue_req);
4599
982697a4 4600 ofpmp_init(&cbdata.replies, rq);
6dc34a0d 4601 cbdata.now = time_msec();
c1c9c9c4 4602
64626975
SH
4603 error = ofputil_decode_queue_stats_request(rq, &oqsr);
4604 if (error) {
4605 return error;
4606 }
4607
7f05e7ab 4608 if (oqsr.port_no == OFPP_ANY) {
0414d158 4609 error = OFPERR_OFPQOFC_BAD_QUEUE;
4e8e4213 4610 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
64626975 4611 if (!handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)) {
0414d158
BP
4612 error = 0;
4613 }
c1c9c9c4 4614 }
0414d158 4615 } else {
64626975 4616 port = ofproto_get_port(ofproto, oqsr.port_no);
0414d158 4617 error = (port
64626975 4618 ? handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)
0414d158
BP
4619 : OFPERR_OFPQOFC_BAD_PORT);
4620 }
4621 if (!error) {
4622 ofconn_send_replies(ofconn, &cbdata.replies);
c1c9c9c4 4623 } else {
63f2140a 4624 ofpbuf_list_delete(&cbdata.replies);
c1c9c9c4 4625 }
c1c9c9c4 4626
0414d158 4627 return error;
c1c9c9c4 4628}
7ee20df1 4629
2e31a9b8 4630static enum ofperr
6787a49f 4631evict_rules_from_table(struct oftable *table)
15aaf599 4632 OVS_REQUIRES(ofproto_mutex)
2e31a9b8 4633{
802f84ff
JR
4634 enum ofperr error = 0;
4635 struct rule_collection rules;
6787a49f 4636 unsigned int count = table->n_flows;
802f84ff
JR
4637 unsigned int max_flows = table->max_flows;
4638
4639 rule_collection_init(&rules);
4640
4641 while (count-- > max_flows) {
2e31a9b8 4642 struct rule *rule;
8037acb4 4643
2e31a9b8 4644 if (!choose_rule_to_evict(table, &rule)) {
802f84ff
JR
4645 error = OFPERR_OFPFMFC_TABLE_FULL;
4646 break;
2e31a9b8 4647 } else {
802f84ff
JR
4648 eviction_group_remove_rule(rule);
4649 rule_collection_add(&rules, rule);
2e31a9b8 4650 }
8037acb4 4651 }
802f84ff 4652 delete_flows__(&rules, OFPRR_EVICTION, NULL);
2e31a9b8 4653
802f84ff 4654 return error;
8037acb4
BP
4655}
4656
18080541
BP
4657static void
4658get_conjunctions(const struct ofputil_flow_mod *fm,
4659 struct cls_conjunction **conjsp, size_t *n_conjsp)
18080541
BP
4660{
4661 struct cls_conjunction *conjs = NULL;
4662 int n_conjs = 0;
4663
f08e39dd
BP
4664 const struct ofpact *ofpact;
4665 OFPACT_FOR_EACH (ofpact, fm->ofpacts, fm->ofpacts_len) {
4666 if (ofpact->type == OFPACT_CONJUNCTION) {
18080541 4667 n_conjs++;
f08e39dd
BP
4668 } else if (ofpact->type != OFPACT_NOTE) {
4669 /* "conjunction" may appear with "note" actions but not with any
4670 * other type of actions. */
4671 ovs_assert(!n_conjs);
4672 break;
18080541 4673 }
f08e39dd
BP
4674 }
4675 if (n_conjs) {
4676 int i = 0;
18080541
BP
4677
4678 conjs = xzalloc(n_conjs * sizeof *conjs);
18080541 4679 OFPACT_FOR_EACH (ofpact, fm->ofpacts, fm->ofpacts_len) {
f08e39dd
BP
4680 if (ofpact->type == OFPACT_CONJUNCTION) {
4681 struct ofpact_conjunction *oc = ofpact_get_CONJUNCTION(ofpact);
4682 conjs[i].clause = oc->clause;
4683 conjs[i].n_clauses = oc->n_clauses;
4684 conjs[i].id = oc->id;
4685 i++;
4686 }
18080541
BP
4687 }
4688 }
4689
4690 *conjsp = conjs;
4691 *n_conjsp = n_conjs;
4692}
4693
5bacd5cd
JR
4694/* add_flow_init(), add_flow_start(), add_flow_revert(), and add_flow_finish()
4695 * implement OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
1f42be1c
JR
4696 * in which no matching flow already exists in the flow table.
4697 *
5bacd5cd
JR
4698 * add_flow_init() creates a new flow according to 'fm' and stores it to 'ofm'
4699 * for later reference. If the flow replaces other flow, it will be updated to
4700 * match modify semantics later by add_flow_start() (by calling
4701 * replace_rule_start()).
1f42be1c 4702 *
5bacd5cd 4703 * Returns 0 on success, or an OpenFlow error code on failure.
1f42be1c 4704 *
5bacd5cd
JR
4705 * On successful return the caller must complete the operation by calling
4706 * add_flow_start(), and if that succeeds, then either add_flow_finish(), or
4707 * add_flow_revert() if the operation needs to be reverted due to a later
4708 * failure.
4709 */
90bf1e07 4710static enum ofperr
5bacd5cd
JR
4711add_flow_init(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
4712 const struct ofputil_flow_mod *fm)
4713 OVS_EXCLUDED(ofproto_mutex)
064af421 4714{
d0918789 4715 struct oftable *table;
8037acb4 4716 struct cls_rule cr;
5a361239 4717 uint8_t table_id;
39c94593 4718 enum ofperr error;
064af421 4719
554764d1 4720 if (!check_table_id(ofproto, fm->table_id)) {
5bacd5cd 4721 return OFPERR_OFPBRC_BAD_TABLE_ID;
48266274
BP
4722 }
4723
7ee20df1
BP
4724 /* Pick table. */
4725 if (fm->table_id == 0xff) {
13521ff5 4726 if (ofproto->ofproto_class->rule_choose_table) {
81a76618
BP
4727 error = ofproto->ofproto_class->rule_choose_table(ofproto,
4728 &fm->match,
7ee20df1
BP
4729 &table_id);
4730 if (error) {
4731 return error;
4732 }
cb22974d 4733 ovs_assert(table_id < ofproto->n_tables);
7ee20df1 4734 } else {
5a361239 4735 table_id = 0;
7ee20df1
BP
4736 }
4737 } else if (fm->table_id < ofproto->n_tables) {
5a361239 4738 table_id = fm->table_id;
7ee20df1 4739 } else {
c22c56bd 4740 return OFPERR_OFPBRC_BAD_TABLE_ID;
064af421
BP
4741 }
4742
5a361239 4743 table = &ofproto->tables[table_id];
834fe5cb
BP
4744 if (table->flags & OFTABLE_READONLY
4745 && !(fm->flags & OFPUTIL_FF_NO_READONLY)) {
5c67e4af
BP
4746 return OFPERR_OFPBRC_EPERM;
4747 }
4748
c84d8691
JR
4749 if (!(fm->flags & OFPUTIL_FF_HIDDEN_FIELDS)
4750 && !match_has_default_hidden_fields(&fm->match)) {
4751 VLOG_WARN_RL(&rl, "%s: (add_flow) only internal flows can set "
4752 "non-default values to hidden fields", ofproto->name);
4753 return OFPERR_OFPBRC_EPERM;
adcf00ba
AZ
4754 }
4755
2c7ee524
JR
4756 if (!ofm->temp_rule) {
4757 cls_rule_init(&cr, &fm->match, fm->priority);
8037acb4 4758
2c7ee524
JR
4759 /* Allocate new rule. Destroys 'cr'. */
4760 error = ofproto_rule_create(ofproto, &cr, table - ofproto->tables,
4761 fm->new_cookie, fm->idle_timeout,
4762 fm->hard_timeout, fm->flags,
4763 fm->importance, fm->ofpacts,
5c7c16d8
YHW
4764 fm->ofpacts_len,
4765 fm->match.flow.tunnel.metadata.present.map,
4766 fm->ofpacts_tlv_bitmap, &ofm->temp_rule);
2c7ee524
JR
4767 if (error) {
4768 return error;
4769 }
5bacd5cd 4770
2c7ee524
JR
4771 get_conjunctions(fm, &ofm->conjs, &ofm->n_conjs);
4772 }
5bacd5cd
JR
4773 return 0;
4774}
4775
2c7ee524 4776/* ofm->temp_rule is consumed only in the successful case. */
5bacd5cd
JR
4777static enum ofperr
4778add_flow_start(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
4779 OVS_REQUIRES(ofproto_mutex)
4780{
4781 struct rule *old_rule = NULL;
4782 struct rule *new_rule = ofm->temp_rule;
4783 const struct rule_actions *actions = rule_get_actions(new_rule);
4784 struct oftable *table = &ofproto->tables[new_rule->table_id];
4785 enum ofperr error;
4786
4787 /* Must check actions while holding ofproto_mutex to avoid a race. */
4788 error = ofproto_check_ofpacts(ofproto, actions->ofpacts,
4789 actions->ofpacts_len);
4790 if (error) {
4791 return error;
4792 }
4793
1f42be1c 4794 /* Check for the existence of an identical rule.
2b7b1427 4795 * This will not return rules earlier marked for removal. */
5bacd5cd
JR
4796 old_rule = rule_from_cls_rule(classifier_find_rule_exactly(&table->cls,
4797 &new_rule->cr,
4798 ofm->version));
4799 if (!old_rule) {
c84d8691 4800 /* Check for overlap, if requested. */
5bacd5cd
JR
4801 if (new_rule->flags & OFPUTIL_FF_CHECK_OVERLAP
4802 && classifier_rule_overlaps(&table->cls, &new_rule->cr,
4803 ofm->version)) {
c84d8691 4804 return OFPERR_OFPFMFC_OVERLAP;
dd27be82 4805 }
b277c7cc 4806
c84d8691 4807 /* If necessary, evict an existing rule to clear out space. */
6787a49f 4808 if (table->n_flows >= table->max_flows) {
5bacd5cd
JR
4809 if (!choose_rule_to_evict(table, &old_rule)) {
4810 return OFPERR_OFPFMFC_TABLE_FULL;
6787a49f 4811 }
5bacd5cd
JR
4812 eviction_group_remove_rule(old_rule);
4813 /* Marks 'old_rule' as an evicted rule rather than replaced rule.
6787a49f 4814 */
5bacd5cd 4815 old_rule->removed_reason = OFPRR_EVICTION;
c09f755d 4816 }
39c94593 4817 } else {
7338102b 4818 ofm->modify_cookie = true;
39c94593 4819 }
81a76618 4820
5bacd5cd
JR
4821 if (old_rule) {
4822 rule_collection_add(&ofm->old_rules, old_rule);
064af421 4823 }
5bacd5cd 4824 /* Take ownership of the temp_rule. */
58026109 4825 rule_collection_add(&ofm->new_rules, new_rule);
5bacd5cd 4826 ofm->temp_rule = NULL;
8037acb4 4827
5bacd5cd 4828 replace_rule_start(ofproto, ofm, old_rule, new_rule);
c84d8691
JR
4829 return 0;
4830}
1ebeaaa7 4831
6787a49f 4832/* Revert the effects of add_flow_start(). */
1f42be1c 4833static void
8be00367 4834add_flow_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
1f42be1c
JR
4835 OVS_REQUIRES(ofproto_mutex)
4836{
5bacd5cd 4837 struct rule *old_rule = rule_collection_n(&ofm->old_rules)
58026109
JR
4838 ? rule_collection_rules(&ofm->old_rules)[0] : NULL;
4839 struct rule *new_rule = rule_collection_rules(&ofm->new_rules)[0];
8be00367 4840
39c94593 4841 replace_rule_revert(ofproto, old_rule, new_rule);
1f42be1c
JR
4842}
4843
39c94593 4844/* To be called after version bump. */
c84d8691 4845static void
8be00367 4846add_flow_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
0a0d9385 4847 const struct openflow_mod_requester *req)
c84d8691
JR
4848 OVS_REQUIRES(ofproto_mutex)
4849{
5bacd5cd 4850 struct rule *old_rule = rule_collection_n(&ofm->old_rules)
58026109
JR
4851 ? rule_collection_rules(&ofm->old_rules)[0] : NULL;
4852 struct rule *new_rule = rule_collection_rules(&ofm->new_rules)[0];
39c94593 4853 struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
8037acb4 4854
81dee635 4855 replace_rule_finish(ofproto, ofm, req, old_rule, new_rule, &dead_cookies);
39c94593 4856 learned_cookies_flush(ofproto, &dead_cookies);
802f84ff 4857
39c94593
JR
4858 if (old_rule) {
4859 ovsrcu_postpone(remove_rule_rcu, old_rule);
4860 } else {
39c94593 4861 ofmonitor_report(ofproto->connmgr, new_rule, NXFME_ADDED, 0,
c84d8691
JR
4862 req ? req->ofconn : NULL,
4863 req ? req->request->xid : 0, NULL);
6c6eedc5
SJ
4864
4865 /* Send Vacancy Events for OF1.4+. */
4866 send_table_status(ofproto, new_rule->table_id);
c84d8691 4867 }
c84d8691 4868}
79eee1eb
BP
4869\f
4870/* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
064af421 4871
5bacd5cd 4872/* Create a new rule. Note that the rule is NOT inserted into a any data
2c7ee524
JR
4873 * structures yet. Takes ownership of 'cr'. Only assigns '*new_rule' if
4874 * successful. */
90bf1e07 4875static enum ofperr
5bacd5cd
JR
4876ofproto_rule_create(struct ofproto *ofproto, struct cls_rule *cr,
4877 uint8_t table_id, ovs_be64 new_cookie,
4878 uint16_t idle_timeout, uint16_t hard_timeout,
4879 enum ofputil_flow_mod_flags flags, uint16_t importance,
4880 const struct ofpact *ofpacts, size_t ofpacts_len,
5c7c16d8 4881 uint64_t match_tlv_bitmap, uint64_t ofpacts_tlv_bitmap,
5bacd5cd
JR
4882 struct rule **new_rule)
4883 OVS_NO_THREAD_SAFETY_ANALYSIS
79eee1eb 4884{
39c94593 4885 struct rule *rule;
dd27be82 4886 enum ofperr error;
79eee1eb 4887
39c94593
JR
4888 /* Allocate new rule. */
4889 rule = ofproto->ofproto_class->rule_alloc();
4890 if (!rule) {
4891 cls_rule_destroy(cr);
4892 VLOG_WARN_RL(&rl, "%s: failed to allocate a rule.", ofproto->name);
4893 return OFPERR_OFPFMFC_UNKNOWN;
af822017
BP
4894 }
4895
39c94593
JR
4896 /* Initialize base state. */
4897 *CONST_CAST(struct ofproto **, &rule->ofproto) = ofproto;
4898 cls_rule_move(CONST_CAST(struct cls_rule *, &rule->cr), cr);
4899 ovs_refcount_init(&rule->ref_count);
834fe5cb 4900
39c94593
JR
4901 ovs_mutex_init(&rule->mutex);
4902 ovs_mutex_lock(&rule->mutex);
82a3160e 4903 *CONST_CAST(ovs_be64 *, &rule->flow_cookie) = new_cookie;
5bacd5cd
JR
4904 rule->created = rule->modified = time_msec();
4905 rule->idle_timeout = idle_timeout;
4906 rule->hard_timeout = hard_timeout;
4907 *CONST_CAST(uint16_t *, &rule->importance) = importance;
f695ebfa 4908 rule->removed_reason = OVS_OFPRR_NONE;
834fe5cb 4909
39c94593 4910 *CONST_CAST(uint8_t *, &rule->table_id) = table_id;
5bacd5cd
JR
4911 rule->flags = flags & OFPUTIL_FF_STATE;
4912
39c94593 4913 *CONST_CAST(const struct rule_actions **, &rule->actions)
5bacd5cd
JR
4914 = rule_actions_create(ofpacts, ofpacts_len);
4915
417e7e66 4916 ovs_list_init(&rule->meter_list_node);
39c94593 4917 rule->eviction_group = NULL;
39c94593
JR
4918 rule->monitor_flags = 0;
4919 rule->add_seqno = 0;
4920 rule->modify_seqno = 0;
5bacd5cd 4921 ovs_list_init(&rule->expirable);
dd27be82
JR
4922 ovs_mutex_unlock(&rule->mutex);
4923
39c94593
JR
4924 /* Construct rule, initializing derived state. */
4925 error = ofproto->ofproto_class->rule_construct(rule);
4926 if (error) {
4927 ofproto_rule_destroy__(rule);
4928 return error;
dd27be82 4929 }
b277c7cc 4930
30d0452c 4931 rule->state = RULE_INITIALIZED;
5c7c16d8
YHW
4932 rule->match_tlv_bitmap = match_tlv_bitmap;
4933 rule->ofpacts_tlv_bitmap = ofpacts_tlv_bitmap;
4934 mf_vl_mff_ref(&rule->ofproto->vl_mff_map, match_tlv_bitmap);
4935 mf_vl_mff_ref(&rule->ofproto->vl_mff_map, ofpacts_tlv_bitmap);
dd27be82 4936
39c94593
JR
4937 *new_rule = rule;
4938 return 0;
4939}
884e1dc4 4940
2c7ee524
JR
4941/* Initialize 'ofm' for a learn action. If the rule already existed, reference
4942 * to that rule is taken, otherwise a new rule is created. 'ofm' keeps the
4943 * rule reference in both. This does not take the global 'ofproto_mutex'. */
4944enum ofperr
4945ofproto_flow_mod_init_for_learn(struct ofproto *ofproto,
4946 const struct ofputil_flow_mod *fm,
4947 struct ofproto_flow_mod *ofm)
4948 OVS_EXCLUDED(ofproto_mutex)
4949{
4950 enum ofperr error;
4951
4952 /* Reject flow mods that do not look like they were generated by a learn
4953 * action. */
4954 if (fm->command != OFPFC_MODIFY_STRICT || fm->table_id == OFPTT_ALL
4955 || fm->flags & OFPUTIL_FF_RESET_COUNTS
4956 || fm->buffer_id != UINT32_MAX) {
4957 return OFPERR_OFPFMFC_UNKNOWN;
4958 }
4959
4960 /* Check if the rule already exists, and we can get a reference to it. */
4961 struct oftable *table = &ofproto->tables[fm->table_id];
4962 struct rule *rule;
4963
4964 rule = rule_from_cls_rule(classifier_find_match_exactly(
4965 &table->cls, &fm->match, fm->priority,
4966 OVS_VERSION_MAX));
4967 if (rule) {
4968 /* Check if the rule's attributes match as well. */
4969 const struct rule_actions *actions;
4970
4971 ovs_mutex_lock(&rule->mutex);
4972 actions = rule_get_actions(rule);
4973 if (rule->idle_timeout == fm->idle_timeout
4974 && rule->hard_timeout == fm->hard_timeout
4975 && rule->importance == fm->importance
4976 && rule->flags == (fm->flags & OFPUTIL_FF_STATE)
4977 && (!fm->modify_cookie || (fm->new_cookie == rule->flow_cookie))
4978 && ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
4979 actions->ofpacts, actions->ofpacts_len)) {
4980 /* Rule already exists and need not change, except for the modified
4981 * timestamp. Get a reference to the existing rule. */
4982 ovs_mutex_unlock(&rule->mutex);
4983 if (!ofproto_rule_try_ref(rule)) {
4984 rule = NULL; /* Pretend it did not exist. */
4985 }
4986 } else {
4987 ovs_mutex_unlock(&rule->mutex);
4988 rule = NULL;
4989 }
4990 }
4991
4992 /* Initialize ofproto_flow_mod for future use. */
4993 error = ofproto_flow_mod_init(ofproto, ofm, fm, rule);
4994 if (error) {
4995 ofproto_rule_unref(rule);
4996 return error;
4997 }
4998 return 0;
4999}
5000
2c7ee524 5001enum ofperr
1f4a8933 5002ofproto_flow_mod_learn_refresh(struct ofproto_flow_mod *ofm)
2c7ee524
JR
5003{
5004 enum ofperr error = 0;
5005
5006 /* ofm->temp_rule is our reference to the learned rule. We have a
5007 * reference to an existing rule, if it already was in the classifier,
5008 * otherwise we may have a fresh rule that we need to insert. */
5009 struct rule *rule = ofm->temp_rule;
5010 if (!rule) {
5011 return OFPERR_OFPFMFC_UNKNOWN;
5012 }
2c7ee524
JR
5013
5014 /* Create a new rule if the current one has been removed from the
5015 * classifier. We need to do this since RCU does not allow a current rule
5016 * to be reinserted before all threads have quiesced.
5017 *
5018 * It is possible that the rule is removed asynchronously, e.g., right
1f4a8933 5019 * after we have read the 'rule->state' below. In this case the next time
2c7ee524 5020 * this function is executed the rule will be reinstated. */
1f4a8933 5021 if (rule->state == RULE_REMOVED) {
2c7ee524
JR
5022 struct cls_rule cr;
5023
5024 cls_rule_clone(&cr, &rule->cr);
5025 ovs_mutex_lock(&rule->mutex);
1f4a8933 5026 error = ofproto_rule_create(rule->ofproto, &cr, rule->table_id,
2c7ee524
JR
5027 rule->flow_cookie,
5028 rule->idle_timeout,
5029 rule->hard_timeout, rule->flags,
5030 rule->importance,
5031 rule->actions->ofpacts,
5032 rule->actions->ofpacts_len,
5c7c16d8
YHW
5033 rule->match_tlv_bitmap,
5034 rule->ofpacts_tlv_bitmap,
2c7ee524
JR
5035 &ofm->temp_rule);
5036 ovs_mutex_unlock(&rule->mutex);
2c7ee524 5037 if (!error) {
1f4a8933 5038 ofproto_rule_unref(rule); /* Release old reference. */
2c7ee524 5039 }
2c7ee524
JR
5040 } else {
5041 /* Refresh the existing rule. */
5042 ovs_mutex_lock(&rule->mutex);
5043 rule->modified = time_msec();
5044 ovs_mutex_unlock(&rule->mutex);
5045 }
1f4a8933
JR
5046 return error;
5047}
5048
5049enum ofperr
5050ofproto_flow_mod_learn_start(struct ofproto_flow_mod *ofm)
5051 OVS_REQUIRES(ofproto_mutex)
5052{
5053 struct rule *rule = ofm->temp_rule;
5054
5055 /* ofproto_flow_mod_start() consumes the reference, so we
5056 * take a new one. */
5057 ofproto_rule_ref(rule);
5058 enum ofperr error = ofproto_flow_mod_start(rule->ofproto, ofm);
5059 ofm->temp_rule = rule;
5060
5061 return error;
5062}
5063
6dd3c787
JR
5064void
5065ofproto_flow_mod_learn_revert(struct ofproto_flow_mod *ofm)
5066 OVS_REQUIRES(ofproto_mutex)
5067{
5068 struct rule *rule = rule_collection_rules(&ofm->new_rules)[0];
5069 ofproto_flow_mod_revert(rule->ofproto, ofm);
5070}
5071
1f4a8933
JR
5072void
5073ofproto_flow_mod_learn_finish(struct ofproto_flow_mod *ofm,
5074 struct ofproto *orig_ofproto)
5075 OVS_REQUIRES(ofproto_mutex)
5076{
5077 struct rule *rule = rule_collection_rules(&ofm->new_rules)[0];
5078
5079 /* If learning on a different bridge, must bump its version
5080 * number and flush connmgr afterwards. */
5081 if (rule->ofproto != orig_ofproto) {
5082 ofproto_bump_tables_version(rule->ofproto);
5083 }
5084 ofproto_flow_mod_finish(rule->ofproto, ofm, NULL);
5085 if (rule->ofproto != orig_ofproto) {
5086 ofmonitor_flush(rule->ofproto->connmgr);
5087 }
5088}
5089
5090/* Refresh 'ofm->temp_rule', for which the caller holds a reference, if already
5091 * in the classifier, insert it otherwise. If the rule has already been
5092 * removed from the classifier, a new rule is created using 'ofm->temp_rule' as
5093 * a template and the reference to the old 'ofm->temp_rule' is freed. If
5094 * 'keep_ref' is true, then a reference to the current rule is held, otherwise
5095 * it is released and 'ofm->temp_rule' is set to NULL.
5096 *
4c71600d
DDP
5097 * If 'limit' != 0, insertion will fail if there are more than 'limit' rules
5098 * in the same table with the same cookie. If insertion succeeds,
86b7637c
JS
5099 * '*below_limitp' will be set to true. If insertion fails '*below_limitp'
5100 * will be set to false.
4c71600d 5101 *
1f4a8933
JR
5102 * Caller needs to be the exclusive owner of 'ofm' as it is being manipulated
5103 * during the call. */
5104enum ofperr
4c71600d 5105ofproto_flow_mod_learn(struct ofproto_flow_mod *ofm, bool keep_ref,
86b7637c 5106 unsigned limit, bool *below_limitp)
1f4a8933
JR
5107 OVS_EXCLUDED(ofproto_mutex)
5108{
5109 enum ofperr error = ofproto_flow_mod_learn_refresh(ofm);
5110 struct rule *rule = ofm->temp_rule;
86b7637c 5111 bool below_limit = true;
1f4a8933
JR
5112
5113 /* Do we need to insert the rule? */
5114 if (!error && rule->state == RULE_INITIALIZED) {
5115 ovs_mutex_lock(&ofproto_mutex);
4c71600d
DDP
5116
5117 if (limit) {
5118 struct rule_criteria criteria;
5119 struct rule_collection rules;
5120 struct match match;
5121
5122 match_init_catchall(&match);
5123 rule_criteria_init(&criteria, rule->table_id, &match, 0,
5124 OVS_VERSION_MAX, rule->flow_cookie,
5125 OVS_BE64_MAX, OFPP_ANY, OFPG_ANY);
5126 rule_criteria_require_rw(&criteria, false);
5127 collect_rules_loose(rule->ofproto, &criteria, &rules);
5128 if (rule_collection_n(&rules) >= limit) {
86b7637c 5129 below_limit = false;
4c71600d
DDP
5130 }
5131 rule_collection_destroy(&rules);
5132 rule_criteria_destroy(&criteria);
5133 }
5134
86b7637c 5135 if (below_limit) {
4c71600d
DDP
5136 ofm->version = rule->ofproto->tables_version + 1;
5137
5138 error = ofproto_flow_mod_learn_start(ofm);
5139 if (!error) {
5140 ofproto_flow_mod_learn_finish(ofm, NULL);
5141 }
5142 } else {
5143 ofproto_flow_mod_uninit(ofm);
1f4a8933
JR
5144 }
5145 ovs_mutex_unlock(&ofproto_mutex);
3d8e7354 5146
86b7637c 5147 if (!below_limit) {
3d8e7354
JS
5148 static struct vlog_rate_limit learn_rl = VLOG_RATE_LIMIT_INIT(1, 5);
5149 VLOG_INFO_RL(&learn_rl, "Learn limit for flow %"PRIu64" reached.",
5150 rule->flow_cookie);
5151 }
1f4a8933 5152 }
2c7ee524 5153
86b7637c 5154 if (!keep_ref && below_limit) {
2c7ee524
JR
5155 ofproto_rule_unref(rule);
5156 ofm->temp_rule = NULL;
5157 }
86b7637c
JS
5158 if (below_limitp) {
5159 *below_limitp = below_limit;
4c71600d 5160 }
2c7ee524
JR
5161 return error;
5162}
5163
39c94593 5164static void
5bacd5cd
JR
5165replace_rule_start(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
5166 struct rule *old_rule, struct rule *new_rule)
39c94593
JR
5167{
5168 struct oftable *table = &ofproto->tables[new_rule->table_id];
834fe5cb 5169
6787a49f 5170 /* 'old_rule' may be either an evicted rule or replaced rule. */
39c94593 5171 if (old_rule) {
5bacd5cd
JR
5172 /* Copy values from old rule for modify semantics. */
5173 if (old_rule->removed_reason != OFPRR_EVICTION) {
5174 bool change_cookie = (ofm->modify_cookie
5175 && new_rule->flow_cookie != OVS_BE64_MAX
5176 && new_rule->flow_cookie != old_rule->flow_cookie);
5177
5178 ovs_mutex_lock(&new_rule->mutex);
5179 ovs_mutex_lock(&old_rule->mutex);
5180 if (ofm->command != OFPFC_ADD) {
5181 new_rule->idle_timeout = old_rule->idle_timeout;
5182 new_rule->hard_timeout = old_rule->hard_timeout;
5183 *CONST_CAST(uint16_t *, &new_rule->importance) = old_rule->importance;
5184 new_rule->flags = old_rule->flags;
5185 new_rule->created = old_rule->created;
5186 }
5187 if (!change_cookie) {
82a3160e
BP
5188 *CONST_CAST(ovs_be64 *, &new_rule->flow_cookie)
5189 = old_rule->flow_cookie;
5bacd5cd
JR
5190 }
5191 ovs_mutex_unlock(&old_rule->mutex);
5192 ovs_mutex_unlock(&new_rule->mutex);
5193 }
5194
39c94593 5195 /* Mark the old rule for removal in the next version. */
5bacd5cd 5196 cls_rule_make_invisible_in_version(&old_rule->cr, ofm->version);
9bab38ff
JR
5197
5198 /* Remove the old rule from data structures. */
5199 ofproto_rule_remove__(ofproto, old_rule);
d79e3d70
JR
5200 } else {
5201 table->n_flows++;
dd27be82 5202 }
cc099268
JR
5203 /* Insert flow to ofproto data structures, so that later flow_mods may
5204 * relate to it. This is reversible, in case later errors require this to
39c94593
JR
5205 * be reverted. */
5206 ofproto_rule_insert__(ofproto, new_rule);
5207 /* Make the new rule visible for classifier lookups only from the next
5208 * version. */
5bacd5cd
JR
5209 classifier_insert(&table->cls, &new_rule->cr, ofm->version, ofm->conjs,
5210 ofm->n_conjs);
39c94593
JR
5211}
5212
cc099268
JR
5213static void
5214replace_rule_revert(struct ofproto *ofproto,
5215 struct rule *old_rule, struct rule *new_rule)
39c94593
JR
5216{
5217 struct oftable *table = &ofproto->tables[new_rule->table_id];
35f48b8b 5218
39c94593 5219 if (old_rule) {
5bacd5cd
JR
5220 if (old_rule->removed_reason == OFPRR_EVICTION) {
5221 /* Revert the eviction. */
5222 eviction_group_add_rule(old_rule);
5223 }
5224
9bab38ff
JR
5225 /* Restore the old rule to data structures. */
5226 ofproto_rule_insert__(ofproto, old_rule);
5227
d79e3d70 5228 /* Restore the original visibility of the old rule. */
39c94593 5229 cls_rule_restore_visibility(&old_rule->cr);
d79e3d70
JR
5230 } else {
5231 /* Restore table's rule count. */
5232 table->n_flows--;
834fe5cb
BP
5233 }
5234
39c94593
JR
5235 /* Remove the new rule immediately. It was never visible to lookups. */
5236 if (!classifier_remove(&table->cls, &new_rule->cr)) {
5237 OVS_NOT_REACHED();
5ecc9d81 5238 }
39c94593 5239 ofproto_rule_remove__(ofproto, new_rule);
39c94593 5240 ofproto_rule_unref(new_rule);
dd27be82 5241}
79eee1eb 5242
39c94593 5243/* Adds the 'new_rule', replacing the 'old_rule'. */
dd27be82 5244static void
81dee635 5245replace_rule_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
0a0d9385 5246 const struct openflow_mod_requester *req,
39c94593
JR
5247 struct rule *old_rule, struct rule *new_rule,
5248 struct ovs_list *dead_cookies)
dd27be82
JR
5249 OVS_REQUIRES(ofproto_mutex)
5250{
6787a49f
JR
5251 struct rule *replaced_rule;
5252
5aacc3e2
JR
5253 replaced_rule = (old_rule && old_rule->removed_reason != OFPRR_EVICTION)
5254 ? old_rule : NULL;
dd27be82 5255
6787a49f
JR
5256 /* Insert the new flow to the ofproto provider. A non-NULL 'replaced_rule'
5257 * is a duplicate rule the 'new_rule' is replacing. The provider should
748eb2f5 5258 * link the packet and byte counts from the old rule to the new one if
8b6987d7
JR
5259 * 'modify_keep_counts' is 'true'. The 'replaced_rule' will be deleted
5260 * right after this call. */
6787a49f 5261 ofproto->ofproto_class->rule_insert(new_rule, replaced_rule,
8b6987d7 5262 ofm->modify_keep_counts);
39c94593
JR
5263 learned_cookies_inc(ofproto, rule_get_actions(new_rule));
5264
5265 if (old_rule) {
5266 const struct rule_actions *old_actions = rule_get_actions(old_rule);
81dee635 5267 const struct rule_actions *new_actions = rule_get_actions(new_rule);
39c94593 5268
39c94593
JR
5269 learned_cookies_dec(ofproto, old_actions, dead_cookies);
5270
6787a49f 5271 if (replaced_rule) {
5bacd5cd
JR
5272 enum nx_flow_update_event event = ofm->command == OFPFC_ADD
5273 ? NXFME_ADDED : NXFME_MODIFIED;
5274
81dee635
JR
5275 bool changed_cookie = (new_rule->flow_cookie
5276 != old_rule->flow_cookie);
6787a49f 5277
81dee635
JR
5278 bool changed_actions = !ofpacts_equal(new_actions->ofpacts,
5279 new_actions->ofpacts_len,
5280 old_actions->ofpacts,
5281 old_actions->ofpacts_len);
6787a49f 5282
5bacd5cd 5283 if (event != NXFME_MODIFIED || changed_actions
81dee635 5284 || changed_cookie) {
5bacd5cd 5285 ofmonitor_report(ofproto->connmgr, new_rule, event, 0,
6787a49f
JR
5286 req ? req->ofconn : NULL,
5287 req ? req->request->xid : 0,
81dee635 5288 changed_actions ? old_actions : NULL);
6787a49f
JR
5289 }
5290 } else {
5291 /* XXX: This is slight duplication with delete_flows_finish__() */
6787a49f
JR
5292 ofmonitor_report(ofproto->connmgr, old_rule, NXFME_DELETED,
5293 OFPRR_EVICTION,
39c94593 5294 req ? req->ofconn : NULL,
6787a49f 5295 req ? req->request->xid : 0, NULL);
39c94593 5296 }
dd27be82 5297 }
9ed18e46
BP
5298}
5299
2c7ee524 5300/* ofm->temp_rule is consumed only in the successful case. */
9387b970 5301static enum ofperr
8be00367 5302modify_flows_start__(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
dd27be82
JR
5303 OVS_REQUIRES(ofproto_mutex)
5304{
8be00367
JR
5305 struct rule_collection *old_rules = &ofm->old_rules;
5306 struct rule_collection *new_rules = &ofm->new_rules;
dd27be82
JR
5307 enum ofperr error;
5308
fe59694b 5309 if (rule_collection_n(old_rules) > 0) {
39c94593 5310 /* Create a new 'modified' rule for each old rule. */
5bacd5cd
JR
5311 struct rule *old_rule, *new_rule;
5312 const struct rule_actions *actions = rule_get_actions(ofm->temp_rule);
39c94593 5313
5bacd5cd
JR
5314 /* Must check actions while holding ofproto_mutex to avoid a race. */
5315 error = ofproto_check_ofpacts(ofproto, actions->ofpacts,
5316 actions->ofpacts_len);
5317 if (error) {
5318 return error;
5319 }
5320
5321 /* Use the temp rule as the first new rule, and as the template for
5322 * the rest. */
5323 struct rule *temp = ofm->temp_rule;
5324 ofm->temp_rule = NULL; /* We consume the template. */
5325
5326 bool first = true;
5327 RULE_COLLECTION_FOR_EACH (old_rule, old_rules) {
5328 if (first) {
5329 /* The template rule's match is possibly a loose one, so it
5330 * must be replaced with the old rule's match so that the new
5331 * rule actually replaces the old one. */
5332 cls_rule_destroy(CONST_CAST(struct cls_rule *, &temp->cr));
5333 cls_rule_clone(CONST_CAST(struct cls_rule *, &temp->cr),
5334 &old_rule->cr);
5c7c16d8
YHW
5335 if (temp->match_tlv_bitmap != old_rule->match_tlv_bitmap) {
5336 mf_vl_mff_unref(&temp->ofproto->vl_mff_map,
5337 temp->match_tlv_bitmap);
5338 temp->match_tlv_bitmap = old_rule->match_tlv_bitmap;
5339 mf_vl_mff_ref(&temp->ofproto->vl_mff_map,
5340 temp->match_tlv_bitmap);
5341 }
5bacd5cd
JR
5342 *CONST_CAST(uint8_t *, &temp->table_id) = old_rule->table_id;
5343 rule_collection_add(new_rules, temp);
5344 first = false;
39c94593 5345 } else {
5bacd5cd
JR
5346 struct cls_rule cr;
5347 cls_rule_clone(&cr, &old_rule->cr);
5348 error = ofproto_rule_create(ofproto, &cr, old_rule->table_id,
5349 temp->flow_cookie,
5350 temp->idle_timeout,
5351 temp->hard_timeout, temp->flags,
5352 temp->importance,
5353 temp->actions->ofpacts,
5354 temp->actions->ofpacts_len,
5c7c16d8
YHW
5355 old_rule->match_tlv_bitmap,
5356 temp->ofpacts_tlv_bitmap,
5bacd5cd
JR
5357 &new_rule);
5358 if (!error) {
5359 rule_collection_add(new_rules, new_rule);
5360 } else {
2c7ee524
JR
5361 /* Return the template rule in place in the error case. */
5362 ofm->temp_rule = temp;
5363 rule_collection_rules(new_rules)[0] = NULL;
5364
5bacd5cd
JR
5365 rule_collection_unref(new_rules);
5366 rule_collection_destroy(new_rules);
5367 return error;
5368 }
39c94593
JR
5369 }
5370 }
fe59694b
JR
5371 ovs_assert(rule_collection_n(new_rules)
5372 == rule_collection_n(old_rules));
39c94593 5373
fe59694b 5374 RULE_COLLECTIONS_FOR_EACH (old_rule, new_rule, old_rules, new_rules) {
5bacd5cd 5375 replace_rule_start(ofproto, ofm, old_rule, new_rule);
39c94593 5376 }
81dee635 5377 } else if (ofm->modify_may_add_flow) {
5bacd5cd 5378 /* No match, add a new flow, consumes 'temp'. */
8be00367 5379 error = add_flow_start(ofproto, ofm);
dd27be82 5380 } else {
2c7ee524
JR
5381 /* No flow to modify and may not add a flow. */
5382 ofproto_rule_unref(ofm->temp_rule);
5383 ofm->temp_rule = NULL; /* We consume the template. */
d99f64d7 5384 error = 0;
dd27be82 5385 }
39c94593 5386
dd27be82
JR
5387 return error;
5388}
5389
5bacd5cd
JR
5390static enum ofperr
5391modify_flows_init_loose(struct ofproto *ofproto,
5392 struct ofproto_flow_mod *ofm,
5393 const struct ofputil_flow_mod *fm)
5394 OVS_EXCLUDED(ofproto_mutex)
5395{
5396 rule_criteria_init(&ofm->criteria, fm->table_id, &fm->match, 0,
5397 OVS_VERSION_MAX, fm->cookie, fm->cookie_mask, OFPP_ANY,
5398 OFPG_ANY);
5399 rule_criteria_require_rw(&ofm->criteria,
5400 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5401 /* Must create a new flow in advance for the case that no matches are
5402 * found. Also used for template for multiple modified flows. */
5403 add_flow_init(ofproto, ofm, fm);
5404
5405 return 0;
5406}
5407
90bf1e07 5408/* Implements OFPFC_MODIFY. Returns 0 on success or an OpenFlow error code on
c184807c 5409 * failure. */
90bf1e07 5410static enum ofperr
8be00367 5411modify_flows_start_loose(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
15aaf599 5412 OVS_REQUIRES(ofproto_mutex)
9ed18e46 5413{
8be00367 5414 struct rule_collection *old_rules = &ofm->old_rules;
d51c8b71 5415 enum ofperr error;
9ed18e46 5416
5bacd5cd 5417 error = collect_rules_loose(ofproto, &ofm->criteria, old_rules);
a9b22b7f 5418
a8e547c1 5419 if (!error) {
8be00367 5420 error = modify_flows_start__(ofproto, ofm);
d99f64d7
JR
5421 }
5422
5423 if (error) {
39c94593 5424 rule_collection_destroy(old_rules);
d99f64d7 5425 }
5bacd5cd 5426
d99f64d7
JR
5427 return error;
5428}
5429
1f42be1c 5430static void
8be00367 5431modify_flows_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
1f42be1c
JR
5432 OVS_REQUIRES(ofproto_mutex)
5433{
8be00367
JR
5434 struct rule_collection *old_rules = &ofm->old_rules;
5435 struct rule_collection *new_rules = &ofm->new_rules;
5436
39c94593 5437 /* Old rules were not changed yet, only need to revert new rules. */
5bacd5cd 5438 if (rule_collection_n(old_rules) > 0) {
fe59694b
JR
5439 struct rule *old_rule, *new_rule;
5440 RULE_COLLECTIONS_FOR_EACH (old_rule, new_rule, old_rules, new_rules) {
5441 replace_rule_revert(ofproto, old_rule, new_rule);
39c94593
JR
5442 }
5443 rule_collection_destroy(new_rules);
5444 rule_collection_destroy(old_rules);
1f42be1c 5445 }
1f42be1c
JR
5446}
5447
d99f64d7 5448static void
8be00367 5449modify_flows_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
0a0d9385 5450 const struct openflow_mod_requester *req)
d99f64d7
JR
5451 OVS_REQUIRES(ofproto_mutex)
5452{
8be00367
JR
5453 struct rule_collection *old_rules = &ofm->old_rules;
5454 struct rule_collection *new_rules = &ofm->new_rules;
5455
fe59694b
JR
5456 if (rule_collection_n(old_rules) == 0
5457 && rule_collection_n(new_rules) == 1) {
8be00367 5458 add_flow_finish(ofproto, ofm, req);
fe59694b 5459 } else if (rule_collection_n(old_rules) > 0) {
39c94593
JR
5460 struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
5461
fe59694b
JR
5462 ovs_assert(rule_collection_n(new_rules)
5463 == rule_collection_n(old_rules));
39c94593 5464
fe59694b
JR
5465 struct rule *old_rule, *new_rule;
5466 RULE_COLLECTIONS_FOR_EACH (old_rule, new_rule, old_rules, new_rules) {
81dee635 5467 replace_rule_finish(ofproto, ofm, req, old_rule, new_rule,
fe59694b 5468 &dead_cookies);
39c94593
JR
5469 }
5470 learned_cookies_flush(ofproto, &dead_cookies);
cc099268 5471 remove_rules_postponed(old_rules);
d99f64d7 5472 }
d99f64d7
JR
5473}
5474
5bacd5cd
JR
5475static enum ofperr
5476modify_flow_init_strict(struct ofproto *ofproto OVS_UNUSED,
5477 struct ofproto_flow_mod *ofm,
5478 const struct ofputil_flow_mod *fm)
5479 OVS_EXCLUDED(ofproto_mutex)
5480{
5481 rule_criteria_init(&ofm->criteria, fm->table_id, &fm->match, fm->priority,
5482 OVS_VERSION_MAX, fm->cookie, fm->cookie_mask, OFPP_ANY,
5483 OFPG_ANY);
5484 rule_criteria_require_rw(&ofm->criteria,
5485 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5486 /* Must create a new flow in advance for the case that no matches are
5487 * found. Also used for template for multiple modified flows. */
5488 add_flow_init(ofproto, ofm, fm);
5489
5490 return 0;
5491}
5492
79eee1eb 5493/* Implements OFPFC_MODIFY_STRICT. Returns 0 on success or an OpenFlow error
baae3d02 5494 * code on failure. */
90bf1e07 5495static enum ofperr
8be00367 5496modify_flow_start_strict(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
15aaf599 5497 OVS_REQUIRES(ofproto_mutex)
79eee1eb 5498{
8be00367 5499 struct rule_collection *old_rules = &ofm->old_rules;
d51c8b71 5500 enum ofperr error;
6c1491fb 5501
5bacd5cd 5502 error = collect_rules_strict(ofproto, &ofm->criteria, old_rules);
a9b22b7f 5503
a8e547c1 5504 if (!error) {
dd27be82 5505 /* collect_rules_strict() can return max 1 rule. */
8be00367 5506 error = modify_flows_start__(ofproto, ofm);
d99f64d7
JR
5507 }
5508
d99f64d7
JR
5509 return error;
5510}
9ed18e46
BP
5511\f
5512/* OFPFC_DELETE implementation. */
79eee1eb 5513
254750ce 5514static void
44e0c35d 5515delete_flows_start__(struct ofproto *ofproto, ovs_version_t version,
39c94593
JR
5516 const struct rule_collection *rules)
5517 OVS_REQUIRES(ofproto_mutex)
5518{
fe59694b
JR
5519 struct rule *rule;
5520
5521 RULE_COLLECTION_FOR_EACH (rule, rules) {
d79e3d70
JR
5522 struct oftable *table = &ofproto->tables[rule->table_id];
5523
5524 table->n_flows--;
8be00367 5525 cls_rule_make_invisible_in_version(&rule->cr, version);
9bab38ff
JR
5526
5527 /* Remove rule from ofproto data structures. */
5528 ofproto_rule_remove__(ofproto, rule);
39c94593
JR
5529 }
5530}
5531
25070e04
JR
5532static void
5533delete_flows_revert__(struct ofproto *ofproto,
5534 const struct rule_collection *rules)
5535 OVS_REQUIRES(ofproto_mutex)
5536{
5537 struct rule *rule;
5538
5539 RULE_COLLECTION_FOR_EACH (rule, rules) {
5540 struct oftable *table = &ofproto->tables[rule->table_id];
5541
5542 /* Add rule back to ofproto data structures. */
5543 ofproto_rule_insert__(ofproto, rule);
5544
5545 /* Restore table's rule count. */
5546 table->n_flows++;
5547
5548 /* Restore the original visibility of the rule. */
5549 cls_rule_restore_visibility(&rule->cr);
5550 }
5551}
5552
39c94593
JR
5553static void
5554delete_flows_finish__(struct ofproto *ofproto,
5555 struct rule_collection *rules,
5556 enum ofp_flow_removed_reason reason,
0a0d9385 5557 const struct openflow_mod_requester *req)
15aaf599 5558 OVS_REQUIRES(ofproto_mutex)
064af421 5559{
fe59694b 5560 if (rule_collection_n(rules)) {
55951e15 5561 struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
fe59694b 5562 struct rule *rule;
79eee1eb 5563
fe59694b 5564 RULE_COLLECTION_FOR_EACH (rule, rules) {
f695ebfa
JR
5565 /* This value will be used to send the flow removed message right
5566 * before the rule is actually destroyed. */
5567 rule->removed_reason = reason;
5568
9ca4a86f 5569 ofmonitor_report(ofproto->connmgr, rule, NXFME_DELETED, reason,
c84d8691
JR
5570 req ? req->ofconn : NULL,
5571 req ? req->request->xid : 0, NULL);
6c6eedc5
SJ
5572
5573 /* Send Vacancy Event for OF1.4+. */
5574 send_table_status(ofproto, rule->table_id);
5575
802f84ff
JR
5576 learned_cookies_dec(ofproto, rule_get_actions(rule),
5577 &dead_cookies);
9ca4a86f 5578 }
cc099268 5579 remove_rules_postponed(rules);
39c94593 5580
35f48b8b 5581 learned_cookies_flush(ofproto, &dead_cookies);
39c94593
JR
5582 }
5583}
5584
5585/* Deletes the rules listed in 'rules'.
5586 * The deleted rules will become invisible to the lookups in the next version.
5587 * Destroys 'rules'. */
5588static void
5589delete_flows__(struct rule_collection *rules,
5590 enum ofp_flow_removed_reason reason,
0a0d9385 5591 const struct openflow_mod_requester *req)
39c94593
JR
5592 OVS_REQUIRES(ofproto_mutex)
5593{
fe59694b
JR
5594 if (rule_collection_n(rules)) {
5595 struct ofproto *ofproto = rule_collection_rules(rules)[0]->ofproto;
39c94593 5596
8be00367 5597 delete_flows_start__(ofproto, ofproto->tables_version + 1, rules);
39c94593
JR
5598 ofproto_bump_tables_version(ofproto);
5599 delete_flows_finish__(ofproto, rules, reason, req);
9ca4a86f
BP
5600 ofmonitor_flush(ofproto->connmgr);
5601 }
79eee1eb 5602}
79eee1eb 5603
5bacd5cd
JR
5604static enum ofperr
5605delete_flows_init_loose(struct ofproto *ofproto OVS_UNUSED,
5606 struct ofproto_flow_mod *ofm,
5607 const struct ofputil_flow_mod *fm)
5608 OVS_EXCLUDED(ofproto_mutex)
5609{
5610 rule_criteria_init(&ofm->criteria, fm->table_id, &fm->match, 0,
5611 OVS_VERSION_MAX, fm->cookie, fm->cookie_mask,
5612 fm->out_port, fm->out_group);
5613 rule_criteria_require_rw(&ofm->criteria,
5614 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5615 return 0;
5616}
5617
79eee1eb 5618/* Implements OFPFC_DELETE. */
90bf1e07 5619static enum ofperr
8be00367 5620delete_flows_start_loose(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
15aaf599 5621 OVS_REQUIRES(ofproto_mutex)
79eee1eb 5622{
8be00367 5623 struct rule_collection *rules = &ofm->old_rules;
90bf1e07 5624 enum ofperr error;
064af421 5625
5bacd5cd 5626 error = collect_rules_loose(ofproto, &ofm->criteria, rules);
a9b22b7f 5627
802f84ff 5628 if (!error) {
8be00367 5629 delete_flows_start__(ofproto, ofm->version, rules);
a8e547c1 5630 }
a8e547c1
BP
5631
5632 return error;
064af421
BP
5633}
5634
ce59413f 5635static void
8be00367 5636delete_flows_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
ce59413f
JR
5637 OVS_REQUIRES(ofproto_mutex)
5638{
25070e04 5639 delete_flows_revert__(ofproto, &ofm->old_rules);
ce59413f
JR
5640}
5641
1f42be1c 5642static void
2c7ee524 5643delete_flows_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
0a0d9385 5644 const struct openflow_mod_requester *req)
15aaf599 5645 OVS_REQUIRES(ofproto_mutex)
79eee1eb 5646{
5aacc3e2 5647 delete_flows_finish__(ofproto, &ofm->old_rules, OFPRR_DELETE, req);
ce59413f
JR
5648}
5649
5bacd5cd
JR
5650static enum ofperr
5651delete_flows_init_strict(struct ofproto *ofproto OVS_UNUSED,
5652 struct ofproto_flow_mod *ofm,
5653 const struct ofputil_flow_mod *fm)
5654 OVS_EXCLUDED(ofproto_mutex)
5655{
5656 rule_criteria_init(&ofm->criteria, fm->table_id, &fm->match, fm->priority,
5657 OVS_VERSION_MAX, fm->cookie, fm->cookie_mask,
5658 fm->out_port, fm->out_group);
5659 rule_criteria_require_rw(&ofm->criteria,
5660 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
5661 return 0;
5662}
5663
ce59413f
JR
5664/* Implements OFPFC_DELETE_STRICT. */
5665static enum ofperr
2c7ee524 5666delete_flow_start_strict(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
ce59413f
JR
5667 OVS_REQUIRES(ofproto_mutex)
5668{
8be00367 5669 struct rule_collection *rules = &ofm->old_rules;
ce59413f
JR
5670 enum ofperr error;
5671
5bacd5cd 5672 error = collect_rules_strict(ofproto, &ofm->criteria, rules);
a9b22b7f 5673
802f84ff 5674 if (!error) {
8be00367 5675 delete_flows_start__(ofproto, ofm->version, rules);
ce59413f
JR
5676 }
5677
5678 return error;
5679}
5680
f695ebfa 5681/* This may only be called by rule_destroy_cb()! */
abe529af 5682static void
f695ebfa
JR
5683ofproto_rule_send_removed(struct rule *rule)
5684 OVS_EXCLUDED(ofproto_mutex)
abe529af
BP
5685{
5686 struct ofputil_flow_removed fr;
dc437090 5687 long long int used;
abe529af 5688
5cb7a798 5689 minimatch_expand(&rule->cr.match, &fr.match);
81a76618 5690 fr.priority = rule->cr.priority;
f695ebfa 5691
25010c68
JR
5692 /* Synchronize with connmgr_destroy() calls to prevent connmgr disappearing
5693 * while we use it. */
f695ebfa 5694 ovs_mutex_lock(&ofproto_mutex);
25010c68
JR
5695 struct connmgr *connmgr = rule->ofproto->connmgr;
5696 if (!connmgr) {
5697 ovs_mutex_unlock(&ofproto_mutex);
5698 return;
5699 }
5700
abe529af 5701 fr.cookie = rule->flow_cookie;
f695ebfa 5702 fr.reason = rule->removed_reason;
95216219 5703 fr.table_id = rule->table_id;
65e0be10
BP
5704 calc_duration(rule->created, time_msec(),
5705 &fr.duration_sec, &fr.duration_nsec);
d10976b7 5706 ovs_mutex_lock(&rule->mutex);
abe529af 5707 fr.idle_timeout = rule->idle_timeout;
fa2bad0f 5708 fr.hard_timeout = rule->hard_timeout;
d10976b7 5709 ovs_mutex_unlock(&rule->mutex);
abe529af 5710 rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
dc437090 5711 &fr.byte_count, &used);
25010c68 5712 connmgr_send_flow_removed(connmgr, &fr);
f695ebfa 5713 ovs_mutex_unlock(&ofproto_mutex);
abe529af
BP
5714}
5715
5716/* Sends an OpenFlow "flow removed" message with the given 'reason' (either
5717 * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
5718 * ofproto.
5719 *
5720 * ofproto implementation ->run() functions should use this function to expire
5721 * OpenFlow flows. */
5722void
5723ofproto_rule_expire(struct rule *rule, uint8_t reason)
15aaf599 5724 OVS_REQUIRES(ofproto_mutex)
abe529af 5725{
802f84ff
JR
5726 struct rule_collection rules;
5727
fe59694b
JR
5728 rule_collection_init(&rules);
5729 rule_collection_add(&rules, rule);
802f84ff 5730 delete_flows__(&rules, reason, NULL);
79eee1eb 5731}
994c9973
BP
5732
5733/* Reduces '*timeout' to no more than 'max'. A value of zero in either case
5734 * means "infinite". */
5735static void
5736reduce_timeout(uint16_t max, uint16_t *timeout)
5737{
5738 if (max && (!*timeout || *timeout > max)) {
5739 *timeout = max;
5740 }
5741}
5742
5743/* If 'idle_timeout' is nonzero, and 'rule' has no idle timeout or an idle
5744 * timeout greater than 'idle_timeout', lowers 'rule''s idle timeout to
5745 * 'idle_timeout' seconds. Similarly for 'hard_timeout'.
5746 *
5747 * Suitable for implementing OFPACT_FIN_TIMEOUT. */
1f4a8933
JR
5748void
5749ofproto_rule_reduce_timeouts__(struct rule *rule,
5750 uint16_t idle_timeout, uint16_t hard_timeout)
5751 OVS_REQUIRES(ofproto_mutex)
5752 OVS_EXCLUDED(rule->mutex)
5753{
5754 if (!idle_timeout && !hard_timeout) {
5755 return;
5756 }
5757
5758 if (ovs_list_is_empty(&rule->expirable)) {
5759 ovs_list_insert(&rule->ofproto->expirable, &rule->expirable);
5760 }
5761
5762 ovs_mutex_lock(&rule->mutex);
5763 reduce_timeout(idle_timeout, &rule->idle_timeout);
5764 reduce_timeout(hard_timeout, &rule->hard_timeout);
5765 ovs_mutex_unlock(&rule->mutex);
5766}
5767
994c9973
BP
5768void
5769ofproto_rule_reduce_timeouts(struct rule *rule,
5770 uint16_t idle_timeout, uint16_t hard_timeout)
d10976b7 5771 OVS_EXCLUDED(ofproto_mutex, rule->mutex)
994c9973
BP
5772{
5773 if (!idle_timeout && !hard_timeout) {
5774 return;
5775 }
5776
abe7b10f 5777 ovs_mutex_lock(&ofproto_mutex);
417e7e66
BW
5778 if (ovs_list_is_empty(&rule->expirable)) {
5779 ovs_list_insert(&rule->ofproto->expirable, &rule->expirable);
994c9973 5780 }
abe7b10f 5781 ovs_mutex_unlock(&ofproto_mutex);
994c9973 5782
d10976b7 5783 ovs_mutex_lock(&rule->mutex);
994c9973
BP
5784 reduce_timeout(idle_timeout, &rule->idle_timeout);
5785 reduce_timeout(hard_timeout, &rule->hard_timeout);
d10976b7 5786 ovs_mutex_unlock(&rule->mutex);
994c9973 5787}
79eee1eb 5788\f
90bf1e07 5789static enum ofperr
2e4f5fcf 5790handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
15aaf599 5791 OVS_EXCLUDED(ofproto_mutex)
064af421 5792{
a5b8d268 5793 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
7338102b 5794 struct ofputil_flow_mod fm;
f25d0cf3
BP
5795 uint64_t ofpacts_stub[1024 / 8];
5796 struct ofpbuf ofpacts;
90bf1e07 5797 enum ofperr error;
064af421 5798
76589937 5799 error = reject_slave_controller(ofconn);
9deba63b 5800 if (error) {
b0d38b2f 5801 return error;
9deba63b 5802 }
3052b0c5 5803
f25d0cf3 5804 ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
7338102b 5805 error = ofputil_decode_flow_mod(&fm, oh, ofconn_get_protocol(ofconn),
04f48a68
YHW
5806 ofproto_get_tun_tab(ofproto),
5807 &ofproto->vl_mff_map, &ofpacts,
7e9f8266
BP
5808 u16_to_ofp(ofproto->max_ports),
5809 ofproto->n_tables);
548de4dd 5810 if (!error) {
0a0d9385 5811 struct openflow_mod_requester req = { ofconn, oh };
7338102b 5812 error = handle_flow_mod__(ofproto, &fm, &req);
49bdc010 5813 }
2e310801 5814
f25d0cf3 5815 ofpbuf_uninit(&ofpacts);
f25d0cf3 5816 return error;
75a75043
BP
5817}
5818
90bf1e07 5819static enum ofperr
7338102b 5820handle_flow_mod__(struct ofproto *ofproto, const struct ofputil_flow_mod *fm,
0a0d9385 5821 const struct openflow_mod_requester *req)
15aaf599 5822 OVS_EXCLUDED(ofproto_mutex)
75a75043 5823{
7338102b 5824 struct ofproto_flow_mod ofm;
35412852 5825 enum ofperr error;
75a75043 5826
2c7ee524 5827 error = ofproto_flow_mod_init(ofproto, &ofm, fm, NULL);
5bacd5cd
JR
5828 if (error) {
5829 return error;
5830 }
7338102b 5831
15aaf599 5832 ovs_mutex_lock(&ofproto_mutex);
7338102b
JR
5833 ofm.version = ofproto->tables_version + 1;
5834 error = ofproto_flow_mod_start(ofproto, &ofm);
1f42be1c 5835 if (!error) {
39c94593 5836 ofproto_bump_tables_version(ofproto);
7338102b 5837 ofproto_flow_mod_finish(ofproto, &ofm, req);
2c7ee524 5838 ofmonitor_flush(ofproto->connmgr);
3052b0c5 5839 }
15aaf599 5840 ovs_mutex_unlock(&ofproto_mutex);
35412852 5841
35412852 5842 return error;
3052b0c5
BP
5843}
5844
90bf1e07 5845static enum ofperr
d1e2cf21 5846handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
9deba63b 5847{
f4f1ea7e
BP
5848 struct ofputil_role_request request;
5849 struct ofputil_role_request reply;
9deba63b 5850 struct ofpbuf *buf;
6ea4776b
JR
5851 enum ofperr error;
5852
f4f1ea7e 5853 error = ofputil_decode_role_message(oh, &request);
6ea4776b
JR
5854 if (error) {
5855 return error;
5856 }
9deba63b 5857
f4f1ea7e 5858 if (request.role != OFPCR12_ROLE_NOCHANGE) {
d26eda9f
BP
5859 if (request.role != OFPCR12_ROLE_EQUAL
5860 && request.have_generation_id
f4f1ea7e
BP
5861 && !ofconn_set_master_election_id(ofconn, request.generation_id)) {
5862 return OFPERR_OFPRRFC_STALE;
6ea4776b 5863 }
6ea4776b 5864
f4f1ea7e
BP
5865 ofconn_set_role(ofconn, request.role);
5866 }
9deba63b 5867
f4f1ea7e 5868 reply.role = ofconn_get_role(ofconn);
147cc9d3
BP
5869 reply.have_generation_id = ofconn_get_master_election_id(
5870 ofconn, &reply.generation_id);
f4f1ea7e 5871 buf = ofputil_encode_role_reply(oh, &reply);
b0421aa2 5872 ofconn_send_reply(ofconn, buf);
9deba63b
BP
5873
5874 return 0;
5875}
5876
90bf1e07 5877static enum ofperr
6c1491fb
BP
5878handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
5879 const struct ofp_header *oh)
5880{
982697a4 5881 const struct nx_flow_mod_table_id *msg = ofpmsg_body(oh);
27527aa0
BP
5882 enum ofputil_protocol cur, next;
5883
5884 cur = ofconn_get_protocol(ofconn);
5885 next = ofputil_protocol_set_tid(cur, msg->set != 0);
5886 ofconn_set_protocol(ofconn, next);
6c1491fb 5887
6c1491fb
BP
5888 return 0;
5889}
5890
90bf1e07 5891static enum ofperr
d1e2cf21 5892handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
09246b99 5893{
982697a4 5894 const struct nx_set_flow_format *msg = ofpmsg_body(oh);
27527aa0
BP
5895 enum ofputil_protocol cur, next;
5896 enum ofputil_protocol next_base;
09246b99 5897
27527aa0
BP
5898 next_base = ofputil_nx_flow_format_to_protocol(ntohl(msg->format));
5899 if (!next_base) {
90bf1e07 5900 return OFPERR_OFPBRC_EPERM;
09246b99 5901 }
7ee20df1 5902
27527aa0
BP
5903 cur = ofconn_get_protocol(ofconn);
5904 next = ofputil_protocol_set_base(cur, next_base);
27527aa0 5905 ofconn_set_protocol(ofconn, next);
b20f4073 5906
7ee20df1 5907 return 0;
09246b99
BP
5908}
5909
90bf1e07 5910static enum ofperr
54834960
EJ
5911handle_nxt_set_packet_in_format(struct ofconn *ofconn,
5912 const struct ofp_header *oh)
5913{
982697a4 5914 const struct nx_set_packet_in_format *msg = ofpmsg_body(oh);
54834960
EJ
5915 uint32_t format;
5916
54834960 5917 format = ntohl(msg->format);
6409e008 5918 if (!ofputil_packet_in_format_is_valid(format)) {
90bf1e07 5919 return OFPERR_OFPBRC_EPERM;
54834960
EJ
5920 }
5921
54834960
EJ
5922 ofconn_set_packet_in_format(ofconn, format);
5923 return 0;
5924}
5925
80d5aefd
BP
5926static enum ofperr
5927handle_nxt_set_async_config(struct ofconn *ofconn, const struct ofp_header *oh)
5928{
5876b4db
BP
5929 struct ofputil_async_cfg basis = ofconn_get_async_config(ofconn);
5930 struct ofputil_async_cfg ac;
d18cc1ee 5931 enum ofperr error;
80d5aefd 5932
5876b4db 5933 error = ofputil_decode_set_async_config(oh, false, &basis, &ac);
d18cc1ee
AA
5934 if (error) {
5935 return error;
5936 }
80d5aefd 5937
a930d4c5 5938 ofconn_set_async_config(ofconn, &ac);
4550b647
MM
5939 if (ofconn_get_type(ofconn) == OFCONN_SERVICE &&
5940 !ofconn_get_miss_send_len(ofconn)) {
5941 ofconn_set_miss_send_len(ofconn, OFP_DEFAULT_MISS_SEND_LEN);
5942 }
80d5aefd
BP
5943
5944 return 0;
5945}
5946
c423b3b3
AC
5947static enum ofperr
5948handle_nxt_get_async_request(struct ofconn *ofconn, const struct ofp_header *oh)
5949{
a930d4c5 5950 struct ofputil_async_cfg ac = ofconn_get_async_config(ofconn);
af7bc161 5951 ofconn_send_reply(ofconn, ofputil_encode_get_async_reply(oh, &ac));
c423b3b3
AC
5952
5953 return 0;
5954}
5955
a7349929
BP
5956static enum ofperr
5957handle_nxt_set_controller_id(struct ofconn *ofconn,
5958 const struct ofp_header *oh)
5959{
982697a4 5960 const struct nx_controller_id *nci = ofpmsg_body(oh);
a7349929 5961
a7349929
BP
5962 if (!is_all_zeros(nci->zero, sizeof nci->zero)) {
5963 return OFPERR_NXBRC_MUST_BE_ZERO;
5964 }
5965
5966 ofconn_set_controller_id(ofconn, ntohs(nci->controller_id));
5967 return 0;
5968}
5969
90bf1e07 5970static enum ofperr
d1e2cf21 5971handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
246e61ea 5972{
246e61ea
JP
5973 struct ofpbuf *buf;
5974
982697a4
BP
5975 buf = ofpraw_alloc_reply((oh->version == OFP10_VERSION
5976 ? OFPRAW_OFPT10_BARRIER_REPLY
5977 : OFPRAW_OFPT11_BARRIER_REPLY), oh, 0);
b0421aa2 5978 ofconn_send_reply(ofconn, buf);
246e61ea
JP
5979 return 0;
5980}
5981
2b07c8b1
BP
5982static void
5983ofproto_compose_flow_refresh_update(const struct rule *rule,
5984 enum nx_flow_monitor_flags flags,
140f36ba
DDP
5985 struct ovs_list *msgs,
5986 const struct tun_table *tun_table)
15aaf599 5987 OVS_REQUIRES(ofproto_mutex)
2b07c8b1 5988{
6f00e29b 5989 const struct rule_actions *actions;
2b07c8b1
BP
5990 struct ofputil_flow_update fu;
5991
2b07c8b1
BP
5992 fu.event = (flags & (NXFMF_INITIAL | NXFMF_ADD)
5993 ? NXFME_ADDED : NXFME_MODIFIED);
5994 fu.reason = 0;
d10976b7 5995 ovs_mutex_lock(&rule->mutex);
2b07c8b1
BP
5996 fu.idle_timeout = rule->idle_timeout;
5997 fu.hard_timeout = rule->hard_timeout;
d10976b7 5998 ovs_mutex_unlock(&rule->mutex);
2b07c8b1
BP
5999 fu.table_id = rule->table_id;
6000 fu.cookie = rule->flow_cookie;
140f36ba 6001 minimatch_expand(&rule->cr.match, &fu.match);
6b140a4e 6002 fu.priority = rule->cr.priority;
6f00e29b 6003
b20f4073 6004 actions = flags & NXFMF_ACTIONS ? rule_get_actions(rule) : NULL;
6f00e29b
BP
6005 fu.ofpacts = actions ? actions->ofpacts : NULL;
6006 fu.ofpacts_len = actions ? actions->ofpacts_len : 0;
2b07c8b1 6007
417e7e66 6008 if (ovs_list_is_empty(msgs)) {
2b07c8b1
BP
6009 ofputil_start_flow_update(msgs);
6010 }
140f36ba 6011 ofputil_append_flow_update(&fu, msgs, tun_table);
2b07c8b1
BP
6012}
6013
6014void
a8e547c1 6015ofmonitor_compose_refresh_updates(struct rule_collection *rules,
ca6ba700 6016 struct ovs_list *msgs)
15aaf599 6017 OVS_REQUIRES(ofproto_mutex)
2b07c8b1 6018{
fe59694b 6019 struct rule *rule;
2b07c8b1 6020
fe59694b 6021 RULE_COLLECTION_FOR_EACH (rule, rules) {
2b07c8b1
BP
6022 enum nx_flow_monitor_flags flags = rule->monitor_flags;
6023 rule->monitor_flags = 0;
6024
140f36ba
DDP
6025 ofproto_compose_flow_refresh_update(rule, flags, msgs,
6026 ofproto_get_tun_tab(rule->ofproto));
2b07c8b1
BP
6027 }
6028}
6029
6030static void
6031ofproto_collect_ofmonitor_refresh_rule(const struct ofmonitor *m,
6032 struct rule *rule, uint64_t seqno,
a8e547c1 6033 struct rule_collection *rules)
15aaf599 6034 OVS_REQUIRES(ofproto_mutex)
2b07c8b1
BP
6035{
6036 enum nx_flow_monitor_flags update;
6037
5e8b38b0 6038 if (rule_is_hidden(rule)) {
2b07c8b1
BP
6039 return;
6040 }
6041
b20f4073 6042 if (!ofproto_rule_has_out_port(rule, m->out_port)) {
2b07c8b1
BP
6043 return;
6044 }
6045
6046 if (seqno) {
6047 if (rule->add_seqno > seqno) {
6048 update = NXFMF_ADD | NXFMF_MODIFY;
6049 } else if (rule->modify_seqno > seqno) {
6050 update = NXFMF_MODIFY;
6051 } else {
6052 return;
6053 }
6054
6055 if (!(m->flags & update)) {
6056 return;
6057 }
6058 } else {
6059 update = NXFMF_INITIAL;
6060 }
6061
6062 if (!rule->monitor_flags) {
a8e547c1 6063 rule_collection_add(rules, rule);
2b07c8b1
BP
6064 }
6065 rule->monitor_flags |= update | (m->flags & NXFMF_ACTIONS);
6066}
6067
6068static void
6069ofproto_collect_ofmonitor_refresh_rules(const struct ofmonitor *m,
6070 uint64_t seqno,
a8e547c1 6071 struct rule_collection *rules)
15aaf599 6072 OVS_REQUIRES(ofproto_mutex)
2b07c8b1
BP
6073{
6074 const struct ofproto *ofproto = ofconn_get_ofproto(m->ofconn);
2b07c8b1 6075 const struct oftable *table;
81a76618 6076 struct cls_rule target;
2b07c8b1 6077
bd53aa17 6078 cls_rule_init_from_minimatch(&target, &m->match, 0);
2b07c8b1 6079 FOR_EACH_MATCHING_TABLE (table, m->table_id, ofproto) {
2b07c8b1
BP
6080 struct rule *rule;
6081
44e0c35d 6082 CLS_FOR_EACH_TARGET (rule, cr, &table->cls, &target, OVS_VERSION_MAX) {
2b07c8b1
BP
6083 ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
6084 }
6085 }
48d28ac1 6086 cls_rule_destroy(&target);
2b07c8b1
BP
6087}
6088
6089static void
6090ofproto_collect_ofmonitor_initial_rules(struct ofmonitor *m,
a8e547c1 6091 struct rule_collection *rules)
15aaf599 6092 OVS_REQUIRES(ofproto_mutex)
2b07c8b1
BP
6093{
6094 if (m->flags & NXFMF_INITIAL) {
6095 ofproto_collect_ofmonitor_refresh_rules(m, 0, rules);
6096 }
6097}
6098
6099void
6100ofmonitor_collect_resume_rules(struct ofmonitor *m,
a8e547c1 6101 uint64_t seqno, struct rule_collection *rules)
15aaf599 6102 OVS_REQUIRES(ofproto_mutex)
2b07c8b1
BP
6103{
6104 ofproto_collect_ofmonitor_refresh_rules(m, seqno, rules);
6105}
6106
7b900689
SH
6107static enum ofperr
6108flow_monitor_delete(struct ofconn *ofconn, uint32_t id)
6109 OVS_REQUIRES(ofproto_mutex)
6110{
6111 struct ofmonitor *m;
6112 enum ofperr error;
6113
6114 m = ofmonitor_lookup(ofconn, id);
6115 if (m) {
6116 ofmonitor_destroy(m);
6117 error = 0;
6118 } else {
6119 error = OFPERR_OFPMOFC_UNKNOWN_MONITOR;
6120 }
6121
6122 return error;
6123}
6124
2b07c8b1 6125static enum ofperr
982697a4 6126handle_flow_monitor_request(struct ofconn *ofconn, const struct ofp_header *oh)
15aaf599 6127 OVS_EXCLUDED(ofproto_mutex)
2b07c8b1
BP
6128{
6129 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2b07c8b1 6130
0a2869d5
BP
6131 struct ofpbuf b = ofpbuf_const_initializer(oh, ntohs(oh->length));
6132
6133 struct ofmonitor **monitors = NULL;
6134 size_t allocated_monitors = 0;
6135 size_t n_monitors = 0;
6136
6137 enum ofperr error;
15aaf599
BP
6138
6139 ovs_mutex_lock(&ofproto_mutex);
2b07c8b1
BP
6140 for (;;) {
6141 struct ofputil_flow_monitor_request request;
6142 struct ofmonitor *m;
6143 int retval;
6144
6145 retval = ofputil_decode_flow_monitor_request(&request, &b);
6146 if (retval == EOF) {
6147 break;
6148 } else if (retval) {
6149 error = retval;
6150 goto error;
6151 }
6152
6153 if (request.table_id != 0xff
6154 && request.table_id >= ofproto->n_tables) {
6155 error = OFPERR_OFPBRC_BAD_TABLE_ID;
6156 goto error;
6157 }
6158
6159 error = ofmonitor_create(&request, ofconn, &m);
6160 if (error) {
6161 goto error;
6162 }
6163
6164 if (n_monitors >= allocated_monitors) {
6165 monitors = x2nrealloc(monitors, &allocated_monitors,
6166 sizeof *monitors);
6167 }
6168 monitors[n_monitors++] = m;
6169 }
6170
0a2869d5 6171 struct rule_collection rules;
a8e547c1 6172 rule_collection_init(&rules);
0a2869d5 6173 for (size_t i = 0; i < n_monitors; i++) {
2b07c8b1
BP
6174 ofproto_collect_ofmonitor_initial_rules(monitors[i], &rules);
6175 }
6176
0a2869d5 6177 struct ovs_list replies;
982697a4 6178 ofpmp_init(&replies, oh);
2b07c8b1 6179 ofmonitor_compose_refresh_updates(&rules, &replies);
15aaf599
BP
6180 ovs_mutex_unlock(&ofproto_mutex);
6181
a8e547c1
BP
6182 rule_collection_destroy(&rules);
6183
2b07c8b1 6184 ofconn_send_replies(ofconn, &replies);
2b07c8b1
BP
6185 free(monitors);
6186
6187 return 0;
6188
6189error:
0a2869d5 6190 for (size_t i = 0; i < n_monitors; i++) {
2b07c8b1
BP
6191 ofmonitor_destroy(monitors[i]);
6192 }
6193 free(monitors);
4cd1bc9d
BP
6194 ovs_mutex_unlock(&ofproto_mutex);
6195
2b07c8b1
BP
6196 return error;
6197}
6198
6199static enum ofperr
6200handle_flow_monitor_cancel(struct ofconn *ofconn, const struct ofp_header *oh)
15aaf599 6201 OVS_EXCLUDED(ofproto_mutex)
2b07c8b1 6202{
15aaf599 6203 enum ofperr error;
2b07c8b1
BP
6204 uint32_t id;
6205
6206 id = ofputil_decode_flow_monitor_cancel(oh);
15aaf599
BP
6207
6208 ovs_mutex_lock(&ofproto_mutex);
7b900689 6209 error = flow_monitor_delete(ofconn, id);
15aaf599 6210 ovs_mutex_unlock(&ofproto_mutex);
2b07c8b1 6211
15aaf599 6212 return error;
2b07c8b1
BP
6213}
6214
9cae45dc
JR
6215/* Meters implementation.
6216 *
6217 * Meter table entry, indexed by the OpenFlow meter_id.
9cae45dc
JR
6218 * 'created' is used to compute the duration for meter stats.
6219 * 'list rules' is needed so that we can delete the dependent rules when the
6220 * meter table entry is deleted.
6221 * 'provider_meter_id' is for the provider's private use.
6222 */
6223struct meter {
ba8cff36 6224 struct hmap_node node; /* In ofproto->meters. */
9cae45dc 6225 long long int created; /* Time created. */
ca6ba700 6226 struct ovs_list rules; /* List of "struct rule_dpif"s. */
ba8cff36 6227 uint32_t id; /* OpenFlow meter_id. */
9cae45dc
JR
6228 ofproto_meter_id provider_meter_id;
6229 uint16_t flags; /* Meter flags. */
6230 uint16_t n_bands; /* Number of meter bands. */
6231 struct ofputil_meter_band *bands;
6232};
6233
ba8cff36
AZ
6234static struct meter *
6235ofproto_get_meter(const struct ofproto *ofproto, uint32_t meter_id)
6236{
6237 struct meter *meter;
6238 uint32_t hash = hash_int(meter_id, 0);
6239
6240 HMAP_FOR_EACH_WITH_HASH (meter, node, hash, &ofproto->meters) {
6241 if (meter->id == meter_id) {
6242 return meter;
6243 }
6244 }
6245
6246 return NULL;
6247}
6248
9e638f22
AZ
6249static uint32_t *
6250ofproto_upcall_meter_ptr(struct ofproto *ofproto, uint32_t meter_id)
6251{
6252 switch(meter_id) {
6253 case OFPM13_SLOWPATH:
6254 return &ofproto->slowpath_meter_id;
6255 break;
6256 case OFPM13_CONTROLLER:
6257 return &ofproto->controller_meter_id;
6258 break;
6259 case OFPM13_ALL:
6260 OVS_NOT_REACHED();
6261 default:
6262 return NULL;
6263 }
6264}
6265
ba8cff36
AZ
6266static void
6267ofproto_add_meter(struct ofproto *ofproto, struct meter *meter)
6268{
9e638f22
AZ
6269 uint32_t *upcall_meter_ptr = ofproto_upcall_meter_ptr(ofproto, meter->id);
6270
6271 /* Cache datapath meter IDs of special meters. */
6272 if (upcall_meter_ptr) {
6273 *upcall_meter_ptr = meter->provider_meter_id.uint32;
6274 }
6275
ba8cff36
AZ
6276 hmap_insert(&ofproto->meters, &meter->node, hash_int(meter->id, 0));
6277}
6278
9cae45dc 6279/*
076caa2f
JR
6280 * This is used in instruction validation at flow set-up time, to map
6281 * the OpenFlow meter ID to the corresponding datapath provider meter
6282 * ID. If either does not exist, returns false. Otherwise updates
6283 * the meter action and returns true.
9cae45dc 6284 */
076caa2f
JR
6285static bool
6286ofproto_fix_meter_action(const struct ofproto *ofproto,
6287 struct ofpact_meter *ma)
6288{
ba8cff36
AZ
6289 if (ma->meter_id) {
6290 const struct meter *meter = ofproto_get_meter(ofproto, ma->meter_id);
076caa2f
JR
6291
6292 if (meter && meter->provider_meter_id.uint32 != UINT32_MAX) {
6293 /* Update the action with the provider's meter ID, so that we
6294 * do not need any synchronization between ofproto_dpif_xlate
6295 * and ofproto for meter table access. */
6296 ma->provider_meter_id = meter->provider_meter_id.uint32;
6297 return true;
9cae45dc
JR
6298 }
6299 }
076caa2f 6300 return false;
9cae45dc
JR
6301}
6302
062fea06
BP
6303/* Finds the meter invoked by 'rule''s actions and adds 'rule' to the meter's
6304 * list of rules. */
6305static void
6306meter_insert_rule(struct rule *rule)
6307{
6308 const struct rule_actions *a = rule_get_actions(rule);
6309 uint32_t meter_id = ofpacts_get_meter(a->ofpacts, a->ofpacts_len);
ba8cff36 6310 struct meter *meter = ofproto_get_meter(rule->ofproto, meter_id);
062fea06 6311
417e7e66 6312 ovs_list_insert(&meter->rules, &rule->meter_list_node);
062fea06
BP
6313}
6314
9cae45dc
JR
6315static void
6316meter_update(struct meter *meter, const struct ofputil_meter_config *config)
6317{
6318 free(meter->bands);
6319
6320 meter->flags = config->flags;
6321 meter->n_bands = config->n_bands;
6322 meter->bands = xmemdup(config->bands,
6323 config->n_bands * sizeof *meter->bands);
6324}
6325
6326static struct meter *
6327meter_create(const struct ofputil_meter_config *config,
6328 ofproto_meter_id provider_meter_id)
6329{
6330 struct meter *meter;
6331
6332 meter = xzalloc(sizeof *meter);
6333 meter->provider_meter_id = provider_meter_id;
6334 meter->created = time_msec();
ba8cff36 6335 meter->id = config->meter_id;
417e7e66 6336 ovs_list_init(&meter->rules);
9cae45dc
JR
6337
6338 meter_update(meter, config);
6339
6340 return meter;
6341}
6342
6b3f7f02 6343static void
ba8cff36 6344meter_destroy(struct ofproto *ofproto, struct meter *meter)
15aaf599 6345 OVS_REQUIRES(ofproto_mutex)
6b3f7f02 6346{
9e638f22
AZ
6347 uint32_t *upcall_meter_ptr;
6348 upcall_meter_ptr = ofproto_upcall_meter_ptr(ofproto, meter->id);
6349 if (upcall_meter_ptr) {
6350 *upcall_meter_ptr = UINT32_MAX;
6351 }
6352
ba8cff36
AZ
6353 if (!ovs_list_is_empty(&meter->rules)) {
6354 struct rule_collection rules;
6355 struct rule *rule;
3059d7e5 6356
ba8cff36
AZ
6357 rule_collection_init(&rules);
6358 LIST_FOR_EACH (rule, meter_list_node, &meter->rules) {
6359 rule_collection_add(&rules, rule);
6360 }
6361 delete_flows__(&rules, OFPRR_METER_DELETE, NULL);
6362 }
3059d7e5 6363
ba8cff36
AZ
6364 ofproto->ofproto_class->meter_del(ofproto, meter->provider_meter_id);
6365 free(meter->bands);
6366 free(meter);
6367}
3059d7e5 6368
ba8cff36
AZ
6369static void
6370meter_delete(struct ofproto *ofproto, uint32_t meter_id)
6371 OVS_REQUIRES(ofproto_mutex)
6372{
6373 struct meter *meter = ofproto_get_meter(ofproto, meter_id);
6374
6375 if (meter) {
6376 hmap_remove(&ofproto->meters, &meter->node);
6377 meter_destroy(ofproto, meter);
6378 }
6379}
6380
6381static void
6382meter_delete_all(struct ofproto *ofproto)
6383 OVS_REQUIRES(ofproto_mutex)
6384{
6385 struct meter *meter, *next;
6386
6387 HMAP_FOR_EACH_SAFE (meter, next, node, &ofproto->meters) {
6388 hmap_remove(&ofproto->meters, &meter->node);
6389 meter_destroy(ofproto, meter);
6b3f7f02
JR
6390 }
6391}
6392
9cae45dc
JR
6393static enum ofperr
6394handle_add_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
6395{
6396 ofproto_meter_id provider_meter_id = { UINT32_MAX };
ba8cff36 6397 struct meter *meter = ofproto_get_meter(ofproto, mm->meter.meter_id);
9cae45dc
JR
6398 enum ofperr error;
6399
ba8cff36 6400 if (meter) {
9cae45dc
JR
6401 return OFPERR_OFPMMFC_METER_EXISTS;
6402 }
6403
6404 error = ofproto->ofproto_class->meter_set(ofproto, &provider_meter_id,
6405 &mm->meter);
6406 if (!error) {
6407 ovs_assert(provider_meter_id.uint32 != UINT32_MAX);
ba8cff36
AZ
6408 meter = meter_create(&mm->meter, provider_meter_id);
6409 ofproto_add_meter(ofproto, meter);
9cae45dc 6410 }
f0f8c6c2 6411 return error;
9cae45dc
JR
6412}
6413
6414static enum ofperr
6415handle_modify_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
6416{
ba8cff36 6417 struct meter *meter = ofproto_get_meter(ofproto, mm->meter.meter_id);
9cae45dc 6418 enum ofperr error;
e555eb7c 6419 uint32_t provider_meter_id;
9cae45dc
JR
6420
6421 if (!meter) {
6422 return OFPERR_OFPMMFC_UNKNOWN_METER;
6423 }
6424
e555eb7c 6425 provider_meter_id = meter->provider_meter_id.uint32;
9cae45dc
JR
6426 error = ofproto->ofproto_class->meter_set(ofproto,
6427 &meter->provider_meter_id,
6428 &mm->meter);
e555eb7c 6429 ovs_assert(meter->provider_meter_id.uint32 == provider_meter_id);
9cae45dc
JR
6430 if (!error) {
6431 meter_update(meter, &mm->meter);
6432 }
6433 return error;
6434}
6435
6436static enum ofperr
baae3d02 6437handle_delete_meter(struct ofconn *ofconn, struct ofputil_meter_mod *mm)
15aaf599 6438 OVS_EXCLUDED(ofproto_mutex)
9cae45dc
JR
6439{
6440 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6441 uint32_t meter_id = mm->meter.meter_id;
9cae45dc 6442
ba8cff36
AZ
6443 /* OpenFlow does not support Meter ID 0. */
6444 if (meter_id) {
6445 ovs_mutex_lock(&ofproto_mutex);
6446
6447 if (meter_id == OFPM13_ALL) {
6448 meter_delete_all(ofproto);
6449 } else {
6450 meter_delete(ofproto, meter_id);
9cae45dc 6451 }
9cae45dc 6452
ba8cff36
AZ
6453 ovs_mutex_unlock(&ofproto_mutex);
6454 }
a8e547c1 6455
ba8cff36 6456 return 0;
9cae45dc
JR
6457}
6458
6459static enum ofperr
6460handle_meter_mod(struct ofconn *ofconn, const struct ofp_header *oh)
6461{
6462 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6463 struct ofputil_meter_mod mm;
6464 uint64_t bands_stub[256 / 8];
6465 struct ofpbuf bands;
6466 uint32_t meter_id;
6467 enum ofperr error;
6468
6469 error = reject_slave_controller(ofconn);
6470 if (error) {
6471 return error;
6472 }
6473
6474 ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
6475
6476 error = ofputil_decode_meter_mod(oh, &mm, &bands);
6477 if (error) {
6478 goto exit_free_bands;
6479 }
6480
6481 meter_id = mm.meter.meter_id;
6482
6483 if (mm.command != OFPMC13_DELETE) {
6484 /* Fails also when meters are not implemented by the provider. */
9e638f22 6485 if (ofproto->meter_features.max_meters == 0) {
9cae45dc
JR
6486 error = OFPERR_OFPMMFC_INVALID_METER;
6487 goto exit_free_bands;
9e638f22
AZ
6488 }
6489
6490 if (meter_id == 0) {
6491 error = OFPERR_OFPMMFC_INVALID_METER;
b31e8700 6492 goto exit_free_bands;
9e638f22
AZ
6493 } else if (meter_id > OFPM13_MAX) {
6494 switch(meter_id) {
6495 case OFPM13_SLOWPATH:
6496 case OFPM13_CONTROLLER:
6497 break;
6498 case OFPM13_ALL:
6499 default:
6500 error = OFPERR_OFPMMFC_INVALID_METER;
6501 goto exit_free_bands;
6502 }
9cae45dc
JR
6503 }
6504 if (mm.meter.n_bands > ofproto->meter_features.max_bands) {
6505 error = OFPERR_OFPMMFC_OUT_OF_BANDS;
6506 goto exit_free_bands;
6507 }
6508 }
6509
6510 switch (mm.command) {
6511 case OFPMC13_ADD:
6512 error = handle_add_meter(ofproto, &mm);
6513 break;
6514
6515 case OFPMC13_MODIFY:
6516 error = handle_modify_meter(ofproto, &mm);
6517 break;
6518
6519 case OFPMC13_DELETE:
baae3d02 6520 error = handle_delete_meter(ofconn, &mm);
9cae45dc
JR
6521 break;
6522
6523 default:
6524 error = OFPERR_OFPMMFC_BAD_COMMAND;
6525 break;
6526 }
6527
3c35db62
NR
6528 if (!error) {
6529 struct ofputil_requestforward rf;
6530 rf.xid = oh->xid;
6531 rf.reason = OFPRFR_METER_MOD;
6532 rf.meter_mod = &mm;
6533 connmgr_send_requestforward(ofproto->connmgr, ofconn, &rf);
6534 }
6535
9cae45dc
JR
6536exit_free_bands:
6537 ofpbuf_uninit(&bands);
6538 return error;
6539}
6540
6541static enum ofperr
6542handle_meter_features_request(struct ofconn *ofconn,
6543 const struct ofp_header *request)
6544{
6545 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6546 struct ofputil_meter_features features;
6547 struct ofpbuf *b;
6548
6549 if (ofproto->ofproto_class->meter_get_features) {
6550 ofproto->ofproto_class->meter_get_features(ofproto, &features);
6551 } else {
6552 memset(&features, 0, sizeof features);
6553 }
6554 b = ofputil_encode_meter_features_reply(&features, request);
6555
6556 ofconn_send_reply(ofconn, b);
6557 return 0;
6558}
6559
ba8cff36
AZ
6560static void
6561meter_request_reply(struct ofproto *ofproto, struct meter *meter,
6562 enum ofptype type, struct ovs_list *replies)
6563{
6564 uint64_t bands_stub[256 / 8];
6565 struct ofpbuf bands;
6566
6567 ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
6568
6569 if (type == OFPTYPE_METER_STATS_REQUEST) {
6570 struct ofputil_meter_stats stats;
6571
6572 stats.meter_id = meter->id;
6573
6574 /* Provider sets the packet and byte counts, we do the rest. */
6575 stats.flow_count = ovs_list_size(&meter->rules);
6576 calc_duration(meter->created, time_msec(),
6577 &stats.duration_sec, &stats.duration_nsec);
6578 stats.n_bands = meter->n_bands;
6579 ofpbuf_clear(&bands);
6580 stats.bands = ofpbuf_put_uninit(&bands, meter->n_bands
6581 * sizeof *stats.bands);
6582
6583 if (!ofproto->ofproto_class->meter_get(ofproto,
6584 meter->provider_meter_id,
6585 &stats, meter->n_bands)) {
6586 ofputil_append_meter_stats(replies, &stats);
6587 }
6588 } else { /* type == OFPTYPE_METER_CONFIG_REQUEST */
6589 struct ofputil_meter_config config;
6590
6591 config.meter_id = meter->id;
6592 config.flags = meter->flags;
6593 config.n_bands = meter->n_bands;
6594 config.bands = meter->bands;
6595 ofputil_append_meter_config(replies, &config);
6596 }
6597
6598 ofpbuf_uninit(&bands);
6599}
6600
6601static void
6602meter_request_reply_all(struct ofproto *ofproto, enum ofptype type,
6603 struct ovs_list *replies)
6604{
6605 struct meter *meter;
6606
6607 HMAP_FOR_EACH (meter, node, &ofproto->meters) {
6608 meter_request_reply(ofproto, meter, type, replies);
6609 }
6610}
6611
9cae45dc
JR
6612static enum ofperr
6613handle_meter_request(struct ofconn *ofconn, const struct ofp_header *request,
6614 enum ofptype type)
6615{
6616 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
ca6ba700 6617 struct ovs_list replies;
ba8cff36
AZ
6618 uint32_t meter_id;
6619 struct meter *meter;
9cae45dc
JR
6620
6621 ofputil_decode_meter_request(request, &meter_id);
6622
ba8cff36
AZ
6623 if (meter_id != OFPM13_ALL) {
6624 meter = ofproto_get_meter(ofproto, meter_id);
6625 if (!meter) {
6626 /* Meter does not exist. */
9cae45dc
JR
6627 return OFPERR_OFPMMFC_UNKNOWN_METER;
6628 }
ba8cff36
AZ
6629 } else {
6630 /* GCC 4.9.2 complains about 'meter' can potentially be used
6631 * uninitialized. Logically, this is a false alarm since
6632 * meter is only used when meter_id != OFPM13_ALL.
6633 * Set NULL to make compiler happy. */
6634 meter = NULL;
9cae45dc
JR
6635 }
6636
9cae45dc 6637 ofpmp_init(&replies, request);
ba8cff36
AZ
6638 if (meter_id == OFPM13_ALL) {
6639 meter_request_reply_all(ofproto, type, &replies);
6640 } else {
6641 meter_request_reply(ofproto, meter, type, &replies);
9cae45dc 6642 }
9cae45dc 6643 ofconn_send_replies(ofconn, &replies);
9cae45dc
JR
6644 return 0;
6645}
6646
db88b35c
JR
6647/* Returned group is RCU protected. */
6648static struct ofgroup *
5d08a275
JR
6649ofproto_group_lookup__(const struct ofproto *ofproto, uint32_t group_id,
6650 ovs_version_t version)
db88b35c
JR
6651{
6652 struct ofgroup *group;
6653
6654 CMAP_FOR_EACH_WITH_HASH (group, cmap_node, hash_int(group_id, 0),
6655 &ofproto->groups) {
5d08a275
JR
6656 if (group->group_id == group_id
6657 && versions_visible_in_version(&group->versions, version)) {
db88b35c 6658 return group;
7395c052
NZ
6659 }
6660 }
3fc3b679 6661
db88b35c 6662 return NULL;
7395c052
NZ
6663}
6664
3fc3b679
AZ
6665/* If the group exists, this function increments the groups's reference count.
6666 *
6667 * Make sure to call ofproto_group_unref() after no longer needing to maintain
6668 * a reference to the group. */
db88b35c 6669struct ofgroup *
76973237 6670ofproto_group_lookup(const struct ofproto *ofproto, uint32_t group_id,
5d08a275 6671 ovs_version_t version, bool take_ref)
7395c052 6672{
db88b35c 6673 struct ofgroup *group;
7395c052 6674
5d08a275 6675 group = ofproto_group_lookup__(ofproto, group_id, version);
76973237 6676 if (group && take_ref) {
db88b35c
JR
6677 /* Not holding a lock, so it is possible that another thread releases
6678 * the last reference just before we manage to get one. */
6679 return ofproto_group_try_ref(group) ? group : NULL;
7395c052 6680 }
76973237 6681 return group;
7395c052
NZ
6682}
6683
cc099268 6684/* Caller should hold 'ofproto_mutex' if it is important that the
db88b35c 6685 * group is not removed by someone else. */
7e9f8266
BP
6686static bool
6687ofproto_group_exists(const struct ofproto *ofproto, uint32_t group_id)
7e9f8266 6688{
5d08a275 6689 return ofproto_group_lookup__(ofproto, group_id, OVS_VERSION_MAX) != NULL;
7e9f8266
BP
6690}
6691
cc099268
JR
6692static void
6693group_add_rule(struct ofgroup *group, struct rule *rule)
732feb93 6694{
cc099268
JR
6695 rule_collection_add(&group->rules, rule);
6696}
732feb93 6697
cc099268
JR
6698static void
6699group_remove_rule(struct ofgroup *group, struct rule *rule)
6700{
6701 rule_collection_remove(&group->rules, rule);
732feb93
SH
6702}
6703
7395c052 6704static void
ca6ba700 6705append_group_stats(struct ofgroup *group, struct ovs_list *replies)
cc099268 6706 OVS_REQUIRES(ofproto_mutex)
7395c052
NZ
6707{
6708 struct ofputil_group_stats ogs;
eaf004bd 6709 const struct ofproto *ofproto = group->ofproto;
7395c052
NZ
6710 long long int now = time_msec();
6711 int error;
6712
646b2a9c
SH
6713 ogs.bucket_stats = xmalloc(group->n_buckets * sizeof *ogs.bucket_stats);
6714
732feb93 6715 /* Provider sets the packet and byte counts, we do the rest. */
fe59694b 6716 ogs.ref_count = rule_collection_n(&group->rules);
732feb93
SH
6717 ogs.n_buckets = group->n_buckets;
6718
7395c052
NZ
6719 error = (ofproto->ofproto_class->group_get_stats
6720 ? ofproto->ofproto_class->group_get_stats(group, &ogs)
6721 : EOPNOTSUPP);
6722 if (error) {
7395c052
NZ
6723 ogs.packet_count = UINT64_MAX;
6724 ogs.byte_count = UINT64_MAX;
7395c052
NZ
6725 memset(ogs.bucket_stats, 0xff,
6726 ogs.n_buckets * sizeof *ogs.bucket_stats);
6727 }
6728
6729 ogs.group_id = group->group_id;
6730 calc_duration(group->created, now, &ogs.duration_sec, &ogs.duration_nsec);
6731
6732 ofputil_append_group_stats(replies, &ogs);
646b2a9c
SH
6733
6734 free(ogs.bucket_stats);
7395c052
NZ
6735}
6736
19187a71
BP
6737static void
6738handle_group_request(struct ofconn *ofconn,
6739 const struct ofp_header *request, uint32_t group_id,
ca6ba700 6740 void (*cb)(struct ofgroup *, struct ovs_list *replies))
cc099268 6741 OVS_EXCLUDED(ofproto_mutex)
7395c052
NZ
6742{
6743 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
7395c052 6744 struct ofgroup *group;
ca6ba700 6745 struct ovs_list replies;
7395c052
NZ
6746
6747 ofpmp_init(&replies, request);
cc099268
JR
6748 /* Must exclude modifications to guarantee iterating groups. */
6749 ovs_mutex_lock(&ofproto_mutex);
7395c052 6750 if (group_id == OFPG_ALL) {
db88b35c 6751 CMAP_FOR_EACH (group, cmap_node, &ofproto->groups) {
3a46eaaf
BP
6752 if (versions_visible_in_version(&group->versions,
6753 OVS_VERSION_MAX)) {
6754 cb(group, &replies);
6755 }
7395c052 6756 }
7395c052 6757 } else {
5d08a275 6758 group = ofproto_group_lookup__(ofproto, group_id, OVS_VERSION_MAX);
db88b35c 6759 if (group) {
19187a71 6760 cb(group, &replies);
7395c052
NZ
6761 }
6762 }
cc099268 6763 ovs_mutex_unlock(&ofproto_mutex);
7395c052 6764 ofconn_send_replies(ofconn, &replies);
7395c052
NZ
6765}
6766
6767static enum ofperr
19187a71
BP
6768handle_group_stats_request(struct ofconn *ofconn,
6769 const struct ofp_header *request)
7395c052 6770{
19187a71
BP
6771 uint32_t group_id;
6772 enum ofperr error;
7395c052 6773
19187a71
BP
6774 error = ofputil_decode_group_stats_request(request, &group_id);
6775 if (error) {
6776 return error;
7395c052 6777 }
7395c052 6778
19187a71
BP
6779 handle_group_request(ofconn, request, group_id, append_group_stats);
6780 return 0;
6781}
6782
6783static void
ca6ba700 6784append_group_desc(struct ofgroup *group, struct ovs_list *replies)
19187a71
BP
6785{
6786 struct ofputil_group_desc gds;
7395c052 6787
19187a71
BP
6788 gds.group_id = group->group_id;
6789 gds.type = group->type;
53eb84a5
SH
6790 gds.props = group->props;
6791
19187a71
BP
6792 ofputil_append_group_desc_reply(&gds, &group->buckets, replies);
6793}
6794
6795static enum ofperr
6796handle_group_desc_stats_request(struct ofconn *ofconn,
6797 const struct ofp_header *request)
6798{
6799 handle_group_request(ofconn, request,
6800 ofputil_decode_group_desc_request(request),
6801 append_group_desc);
7395c052
NZ
6802 return 0;
6803}
6804
6805static enum ofperr
6806handle_group_features_stats_request(struct ofconn *ofconn,
6807 const struct ofp_header *request)
6808{
6809 struct ofproto *p = ofconn_get_ofproto(ofconn);
6810 struct ofpbuf *msg;
6811
6812 msg = ofputil_encode_group_features_reply(&p->ogf, request);
6813 if (msg) {
6814 ofconn_send_reply(ofconn, msg);
6815 }
6816
6817 return 0;
6818}
6819
56085be5 6820static void
e016fb63
BP
6821put_queue_get_config_reply(struct ofport *port, uint32_t queue,
6822 struct ovs_list *replies)
e8f9a7bb 6823{
e016fb63 6824 struct ofputil_queue_config qc;
e8f9a7bb 6825
e016fb63
BP
6826 /* None of the existing queues have compatible properties, so we hard-code
6827 * omitting min_rate and max_rate. */
6828 qc.port = port->ofp_port;
6829 qc.queue = queue;
6830 qc.min_rate = UINT16_MAX;
6831 qc.max_rate = UINT16_MAX;
6832 ofputil_append_queue_get_config_reply(&qc, replies);
6833}
e8f9a7bb 6834
e016fb63
BP
6835static int
6836handle_queue_get_config_request_for_port(struct ofport *port, uint32_t queue,
6837 struct ovs_list *replies)
6838{
6839 struct smap details = SMAP_INITIALIZER(&details);
6840 if (queue != OFPQ_ALL) {
6841 int error = netdev_get_queue(port->netdev, queue, &details);
6842 switch (error) {
6843 case 0:
6844 put_queue_get_config_reply(port, queue, replies);
6845 break;
6846 case EOPNOTSUPP:
6847 case EINVAL:
6848 return OFPERR_OFPQOFC_BAD_QUEUE;
6849 default:
6850 return OFPERR_NXQOFC_QUEUE_ERROR;
6851 }
6852 } else {
6853 struct netdev_queue_dump queue_dump;
6854 uint32_t queue_id;
6855
6856 NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &queue_dump,
6857 port->netdev) {
6858 put_queue_get_config_reply(port, queue_id, replies);
6859 }
6860 }
6861 smap_destroy(&details);
6862 return 0;
56085be5
BP
6863}
6864
6865static enum ofperr
6866handle_queue_get_config_request(struct ofconn *ofconn,
6867 const struct ofp_header *oh)
6868{
e016fb63
BP
6869 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6870 struct ovs_list replies;
6871 struct ofport *port;
6872 ofp_port_t req_port;
6873 uint32_t req_queue;
6874 enum ofperr error;
6875
6876 error = ofputil_decode_queue_get_config_request(oh, &req_port, &req_queue);
6877 if (error) {
6878 return error;
6879 }
6880
6881 ofputil_start_queue_get_config_reply(oh, &replies);
6882 if (req_port == OFPP_ANY) {
6883 error = OFPERR_OFPQOFC_BAD_QUEUE;
6884 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
6885 if (!handle_queue_get_config_request_for_port(port, req_queue,
6886 &replies)) {
6887 error = 0;
6888 }
6889 }
6890 } else {
6891 port = ofproto_get_port(ofproto, req_port);
6892 error = (port
6893 ? handle_queue_get_config_request_for_port(port, req_queue,
6894 &replies)
6895 : OFPERR_OFPQOFC_BAD_PORT);
6896 }
6897 if (!error) {
6898 ofconn_send_replies(ofconn, &replies);
6899 } else {
6900 ofpbuf_list_delete(&replies);
6901 }
6902
6903 return error;
e8f9a7bb
VG
6904}
6905
809c7548 6906static enum ofperr
63eded98 6907init_group(struct ofproto *ofproto, const struct ofputil_group_mod *gm,
5d08a275 6908 ovs_version_t version, struct ofgroup **ofgroup)
809c7548
RW
6909{
6910 enum ofperr error;
eaf004bd 6911 const long long int now = time_msec();
809c7548
RW
6912
6913 if (gm->group_id > OFPG_MAX) {
6914 return OFPERR_OFPGMFC_INVALID_GROUP;
6915 }
6916 if (gm->type > OFPGT11_FF) {
6917 return OFPERR_OFPGMFC_BAD_TYPE;
6918 }
6919
6920 *ofgroup = ofproto->ofproto_class->group_alloc();
6921 if (!*ofgroup) {
6922 VLOG_WARN_RL(&rl, "%s: failed to allocate group", ofproto->name);
6923 return OFPERR_OFPGMFC_OUT_OF_GROUPS;
6924 }
6925
5d08a275 6926 *CONST_CAST(struct ofproto **, &(*ofgroup)->ofproto) = ofproto;
eaf004bd
AZ
6927 *CONST_CAST(uint32_t *, &((*ofgroup)->group_id)) = gm->group_id;
6928 *CONST_CAST(enum ofp11_group_type *, &(*ofgroup)->type) = gm->type;
6929 *CONST_CAST(long long int *, &((*ofgroup)->created)) = now;
6930 *CONST_CAST(long long int *, &((*ofgroup)->modified)) = now;
809c7548 6931 ovs_refcount_init(&(*ofgroup)->ref_count);
cc099268 6932 (*ofgroup)->being_deleted = false;
809c7548 6933
db88b35c
JR
6934 ovs_list_init(CONST_CAST(struct ovs_list *, &(*ofgroup)->buckets));
6935 ofputil_bucket_clone_list(CONST_CAST(struct ovs_list *,
6936 &(*ofgroup)->buckets),
6937 &gm->buckets, NULL);
63eded98 6938
eaf004bd 6939 *CONST_CAST(uint32_t *, &(*ofgroup)->n_buckets) =
417e7e66 6940 ovs_list_size(&(*ofgroup)->buckets);
809c7548 6941
e8dba719
JR
6942 ofputil_group_properties_copy(CONST_CAST(struct ofputil_group_props *,
6943 &(*ofgroup)->props),
6944 &gm->props);
cc099268 6945 rule_collection_init(&(*ofgroup)->rules);
bc65c25a 6946
5d08a275
JR
6947 /* Make group visible from 'version'. */
6948 (*ofgroup)->versions = VERSIONS_INITIALIZER(version,
6949 OVS_VERSION_NOT_REMOVED);
6950
809c7548
RW
6951 /* Construct called BEFORE any locks are held. */
6952 error = ofproto->ofproto_class->group_construct(*ofgroup);
6953 if (error) {
e8dba719
JR
6954 ofputil_group_properties_destroy(CONST_CAST(struct ofputil_group_props *,
6955 &(*ofgroup)->props));
db88b35c
JR
6956 ofputil_bucket_list_destroy(CONST_CAST(struct ovs_list *,
6957 &(*ofgroup)->buckets));
809c7548
RW
6958 ofproto->ofproto_class->group_dealloc(*ofgroup);
6959 }
6960 return error;
6961}
6962
6c5b90ce
BP
6963/* Implements the OFPGC11_ADD operation specified by 'gm', adding a group to
6964 * 'ofproto''s group table. Returns 0 on success or an OpenFlow error code on
6965 * failure. */
7395c052 6966static enum ofperr
2b0b0b80 6967add_group_start(struct ofproto *ofproto, struct ofproto_group_mod *ogm)
cc099268 6968 OVS_REQUIRES(ofproto_mutex)
7395c052 6969{
7395c052
NZ
6970 enum ofperr error;
6971
2b0b0b80
JR
6972 if (ofproto_group_exists(ofproto, ogm->gm.group_id)) {
6973 return OFPERR_OFPGMFC_GROUP_EXISTS;
7395c052
NZ
6974 }
6975
2b0b0b80
JR
6976 if (ofproto->n_groups[ogm->gm.type]
6977 >= ofproto->ogf.max_groups[ogm->gm.type]) {
6978 return OFPERR_OFPGMFC_OUT_OF_GROUPS;
7395c052
NZ
6979 }
6980
2b0b0b80 6981 /* Allocate new group and initialize it. */
5d08a275 6982 error = init_group(ofproto, &ogm->gm, ogm->version, &ogm->new_group);
2b0b0b80
JR
6983 if (!error) {
6984 /* Insert new group. */
6985 cmap_insert(&ofproto->groups, &ogm->new_group->cmap_node,
6986 hash_int(ogm->new_group->group_id, 0));
6987 ofproto->n_groups[ogm->new_group->type]++;
7395c052 6988 }
7395c052
NZ
6989 return error;
6990}
6991
fce4730c
SH
6992/* Adds all of the buckets from 'ofgroup' to 'new_ofgroup'. The buckets
6993 * already in 'new_ofgroup' will be placed just after the (copy of the) bucket
6994 * in 'ofgroup' with bucket ID 'command_bucket_id'. Special
6995 * 'command_bucket_id' values OFPG15_BUCKET_FIRST and OFPG15_BUCKET_LAST are
6996 * also honored. */
6997static enum ofperr
6998copy_buckets_for_insert_bucket(const struct ofgroup *ofgroup,
6999 struct ofgroup *new_ofgroup,
7000 uint32_t command_bucket_id)
7001{
7002 struct ofputil_bucket *last = NULL;
7003
7004 if (command_bucket_id <= OFPG15_BUCKET_MAX) {
7005 /* Check here to ensure that a bucket corresponding to
7006 * command_bucket_id exists in the old bucket list.
7007 *
7008 * The subsequent search of below of new_ofgroup covers
7009 * both buckets in the old bucket list and buckets added
7010 * by the insert buckets group mod message this function processes. */
7011 if (!ofputil_bucket_find(&ofgroup->buckets, command_bucket_id)) {
7012 return OFPERR_OFPGMFC_UNKNOWN_BUCKET;
7013 }
7014
417e7e66 7015 if (!ovs_list_is_empty(&new_ofgroup->buckets)) {
fce4730c
SH
7016 last = ofputil_bucket_list_back(&new_ofgroup->buckets);
7017 }
7018 }
7019
db88b35c
JR
7020 ofputil_bucket_clone_list(CONST_CAST(struct ovs_list *,
7021 &new_ofgroup->buckets),
7022 &ofgroup->buckets, NULL);
fce4730c 7023
23a31238 7024 if (ofputil_bucket_check_duplicate_id(&new_ofgroup->buckets)) {
d2873d53 7025 VLOG_INFO_RL(&rl, "Duplicate bucket id");
fce4730c
SH
7026 return OFPERR_OFPGMFC_BUCKET_EXISTS;
7027 }
7028
7029 /* Rearrange list according to command_bucket_id */
7030 if (command_bucket_id == OFPG15_BUCKET_LAST) {
417e7e66 7031 if (!ovs_list_is_empty(&ofgroup->buckets)) {
8e19e655
BP
7032 struct ofputil_bucket *new_first;
7033 const struct ofputil_bucket *first;
fce4730c 7034
8e19e655
BP
7035 first = ofputil_bucket_list_front(&ofgroup->buckets);
7036 new_first = ofputil_bucket_find(&new_ofgroup->buckets,
7037 first->bucket_id);
fce4730c 7038
417e7e66 7039 ovs_list_splice(new_ofgroup->buckets.next, &new_first->list_node,
db88b35c
JR
7040 CONST_CAST(struct ovs_list *,
7041 &new_ofgroup->buckets));
8e19e655 7042 }
fce4730c
SH
7043 } else if (command_bucket_id <= OFPG15_BUCKET_MAX && last) {
7044 struct ofputil_bucket *after;
7045
7046 /* Presence of bucket is checked above so after should never be NULL */
7047 after = ofputil_bucket_find(&new_ofgroup->buckets, command_bucket_id);
7048
417e7e66 7049 ovs_list_splice(after->list_node.next, new_ofgroup->buckets.next,
fce4730c
SH
7050 last->list_node.next);
7051 }
7052
7053 return 0;
7054}
7055
7056/* Appends all of the a copy of all the buckets from 'ofgroup' to 'new_ofgroup'
7057 * with the exception of the bucket whose bucket id is 'command_bucket_id'.
7058 * Special 'command_bucket_id' values OFPG15_BUCKET_FIRST, OFPG15_BUCKET_LAST
7059 * and OFPG15_BUCKET_ALL are also honored. */
7060static enum ofperr
7061copy_buckets_for_remove_bucket(const struct ofgroup *ofgroup,
7062 struct ofgroup *new_ofgroup,
7063 uint32_t command_bucket_id)
7064{
7065 const struct ofputil_bucket *skip = NULL;
7066
7067 if (command_bucket_id == OFPG15_BUCKET_ALL) {
7068 return 0;
7069 }
7070
7071 if (command_bucket_id == OFPG15_BUCKET_FIRST) {
417e7e66 7072 if (!ovs_list_is_empty(&ofgroup->buckets)) {
fce4730c
SH
7073 skip = ofputil_bucket_list_front(&ofgroup->buckets);
7074 }
7075 } else if (command_bucket_id == OFPG15_BUCKET_LAST) {
417e7e66 7076 if (!ovs_list_is_empty(&ofgroup->buckets)) {
fce4730c
SH
7077 skip = ofputil_bucket_list_back(&ofgroup->buckets);
7078 }
7079 } else {
7080 skip = ofputil_bucket_find(&ofgroup->buckets, command_bucket_id);
7081 if (!skip) {
7082 return OFPERR_OFPGMFC_UNKNOWN_BUCKET;
7083 }
7084 }
7085
db88b35c
JR
7086 ofputil_bucket_clone_list(CONST_CAST(struct ovs_list *,
7087 &new_ofgroup->buckets),
7088 &ofgroup->buckets, skip);
fce4730c
SH
7089
7090 return 0;
7091}
7092
7093/* Implements OFPGC11_MODIFY, OFPGC15_INSERT_BUCKET and
7094 * OFPGC15_REMOVE_BUCKET. Returns 0 on success or an OpenFlow error code
6c5b90ce 7095 * on failure.
7395c052 7096 *
809c7548
RW
7097 * Note that the group is re-created and then replaces the old group in
7098 * ofproto's ofgroup hash map. Thus, the group is never altered while users of
6c5b90ce 7099 * the xlate module hold a pointer to the group. */
7395c052 7100static enum ofperr
2b0b0b80 7101modify_group_start(struct ofproto *ofproto, struct ofproto_group_mod *ogm)
cc099268 7102 OVS_REQUIRES(ofproto_mutex)
7395c052 7103{
2b0b0b80
JR
7104 struct ofgroup *old_group; /* Modified group. */
7105 struct ofgroup *new_group;
7395c052
NZ
7106 enum ofperr error;
7107
5d08a275
JR
7108 old_group = ofproto_group_lookup__(ofproto, ogm->gm.group_id,
7109 OVS_VERSION_MAX);
2b0b0b80
JR
7110 if (!old_group) {
7111 return OFPERR_OFPGMFC_UNKNOWN_GROUP;
7395c052
NZ
7112 }
7113
2b0b0b80
JR
7114 if (old_group->type != ogm->gm.type
7115 && (ofproto->n_groups[ogm->gm.type]
7116 >= ofproto->ogf.max_groups[ogm->gm.type])) {
7117 return OFPERR_OFPGMFC_OUT_OF_GROUPS;
7395c052 7118 }
809c7548 7119
5d08a275 7120 error = init_group(ofproto, &ogm->gm, ogm->version, &ogm->new_group);
2b0b0b80
JR
7121 if (error) {
7122 return error;
7395c052 7123 }
2b0b0b80 7124 new_group = ogm->new_group;
7395c052 7125
fce4730c 7126 /* Manipulate bucket list for bucket commands */
2b0b0b80
JR
7127 if (ogm->gm.command == OFPGC15_INSERT_BUCKET) {
7128 error = copy_buckets_for_insert_bucket(old_group, new_group,
7129 ogm->gm.command_bucket_id);
7130 } else if (ogm->gm.command == OFPGC15_REMOVE_BUCKET) {
7131 error = copy_buckets_for_remove_bucket(old_group, new_group,
7132 ogm->gm.command_bucket_id);
fce4730c
SH
7133 }
7134 if (error) {
7135 goto out;
7136 }
7137
809c7548 7138 /* The group creation time does not change during modification. */
2b0b0b80
JR
7139 *CONST_CAST(long long int *, &(new_group->created)) = old_group->created;
7140 *CONST_CAST(long long int *, &(new_group->modified)) = time_msec();
7395c052 7141
2b0b0b80 7142 group_collection_add(&ogm->old_groups, old_group);
db88b35c 7143
5d08a275
JR
7144 /* Mark the old group for deletion. */
7145 versions_set_remove_version(&old_group->versions, ogm->version);
7146 /* Insert replacement group. */
7147 cmap_insert(&ofproto->groups, &new_group->cmap_node,
7148 hash_int(new_group->group_id, 0));
cc099268 7149 /* Transfer rules. */
2b0b0b80 7150 rule_collection_move(&new_group->rules, &old_group->rules);
db88b35c 7151
2b0b0b80
JR
7152 if (old_group->type != new_group->type) {
7153 ofproto->n_groups[old_group->type]--;
7154 ofproto->n_groups[new_group->type]++;
7395c052 7155 }
2b0b0b80 7156 return 0;
7395c052 7157
809c7548 7158out:
2b0b0b80 7159 ofproto_group_unref(new_group);
7395c052
NZ
7160 return error;
7161}
7162
88b87a36
JS
7163/* Implements the OFPGC11_ADD_OR_MOD command which creates the group when it does not
7164 * exist yet and modifies it otherwise */
7165static enum ofperr
2b0b0b80
JR
7166add_or_modify_group_start(struct ofproto *ofproto,
7167 struct ofproto_group_mod *ogm)
cc099268 7168 OVS_REQUIRES(ofproto_mutex)
88b87a36 7169{
88b87a36 7170 enum ofperr error;
88b87a36 7171
2b0b0b80
JR
7172 if (!ofproto_group_exists(ofproto, ogm->gm.group_id)) {
7173 error = add_group_start(ofproto, ogm);
88b87a36 7174 } else {
2b0b0b80 7175 error = modify_group_start(ofproto, ogm);
88b87a36 7176 }
cc099268 7177
88b87a36
JS
7178 return error;
7179}
7180
7395c052 7181static void
5d08a275
JR
7182delete_group_start(struct ofproto *ofproto, ovs_version_t version,
7183 struct group_collection *groups, struct ofgroup *group)
cc099268 7184 OVS_REQUIRES(ofproto_mutex)
7395c052 7185{
2b0b0b80 7186 /* Makes flow deletion code leave the rule pointers in 'group->rules'
cc099268
JR
7187 * intact, so that we can later refer to the rules deleted due to the group
7188 * deletion. Rule pointers will be removed from all other groups, if any,
7189 * so we will never try to delete the same rule twice. */
2b0b0b80
JR
7190 group->being_deleted = true;
7191
7192 /* Mark all the referring groups for deletion. */
5d08a275 7193 delete_flows_start__(ofproto, version, &group->rules);
2b0b0b80 7194 group_collection_add(groups, group);
5d08a275 7195 versions_set_remove_version(&group->versions, version);
2b0b0b80
JR
7196 ofproto->n_groups[group->type]--;
7197}
276f6518 7198
2b0b0b80
JR
7199static void
7200delete_group_finish(struct ofproto *ofproto, struct ofgroup *group)
7201 OVS_REQUIRES(ofproto_mutex)
7202{
7203 /* Finish deletion of all flow entries containing this group in a group
7204 * action. */
7205 delete_flows_finish__(ofproto, &group->rules, OFPRR_GROUP_DELETE, NULL);
276f6518 7206
5d08a275 7207 /* Group removal is postponed by the caller. */
7395c052
NZ
7208}
7209
6c5b90ce 7210/* Implements OFPGC11_DELETE. */
7395c052 7211static void
2b0b0b80 7212delete_groups_start(struct ofproto *ofproto, struct ofproto_group_mod *ogm)
cc099268 7213 OVS_REQUIRES(ofproto_mutex)
7395c052 7214{
2b0b0b80 7215 struct ofgroup *group;
7395c052 7216
2b0b0b80
JR
7217 if (ogm->gm.group_id == OFPG_ALL) {
7218 CMAP_FOR_EACH (group, cmap_node, &ofproto->groups) {
5d08a275
JR
7219 if (versions_visible_in_version(&group->versions, ogm->version)) {
7220 delete_group_start(ofproto, ogm->version, &ogm->old_groups,
7221 group);
7222 }
7395c052
NZ
7223 }
7224 } else {
5d08a275
JR
7225 group = ofproto_group_lookup__(ofproto, ogm->gm.group_id, ogm->version);
7226 if (group) {
7227 delete_group_start(ofproto, ogm->version, &ogm->old_groups, group);
7395c052
NZ
7228 }
7229 }
7395c052
NZ
7230}
7231
7232static enum ofperr
2b0b0b80
JR
7233ofproto_group_mod_start(struct ofproto *ofproto, struct ofproto_group_mod *ogm)
7234 OVS_REQUIRES(ofproto_mutex)
7395c052 7235{
7395c052
NZ
7236 enum ofperr error;
7237
2b0b0b80
JR
7238 ogm->new_group = NULL;
7239 group_collection_init(&ogm->old_groups);
7395c052 7240
2b0b0b80 7241 switch (ogm->gm.command) {
7395c052 7242 case OFPGC11_ADD:
2b0b0b80 7243 error = add_group_start(ofproto, ogm);
3c35db62 7244 break;
7395c052
NZ
7245
7246 case OFPGC11_MODIFY:
2b0b0b80 7247 error = modify_group_start(ofproto, ogm);
3c35db62 7248 break;
7395c052 7249
88b87a36 7250 case OFPGC11_ADD_OR_MOD:
2b0b0b80 7251 error = add_or_modify_group_start(ofproto, ogm);
88b87a36
JS
7252 break;
7253
7395c052 7254 case OFPGC11_DELETE:
2b0b0b80 7255 delete_groups_start(ofproto, ogm);
3c35db62
NR
7256 error = 0;
7257 break;
7395c052 7258
fce4730c 7259 case OFPGC15_INSERT_BUCKET:
2b0b0b80 7260 error = modify_group_start(ofproto, ogm);
3c35db62 7261 break;
fce4730c
SH
7262
7263 case OFPGC15_REMOVE_BUCKET:
2b0b0b80 7264 error = modify_group_start(ofproto, ogm);
3c35db62 7265 break;
fce4730c 7266
7395c052 7267 default:
2b0b0b80 7268 if (ogm->gm.command > OFPGC11_DELETE) {
d2873d53 7269 VLOG_INFO_RL(&rl, "%s: Invalid group_mod command type %d",
2b0b0b80 7270 ofproto->name, ogm->gm.command);
7395c052 7271 }
63eded98 7272 error = OFPERR_OFPGMFC_BAD_COMMAND;
2b0b0b80 7273 break;
7395c052 7274 }
2b0b0b80
JR
7275 return error;
7276}
3c35db62 7277
25070e04
JR
7278static void
7279ofproto_group_mod_revert(struct ofproto *ofproto,
7280 struct ofproto_group_mod *ogm)
7281 OVS_REQUIRES(ofproto_mutex)
7282{
7283 struct ofgroup *new_group = ogm->new_group;
7284 struct ofgroup *old_group;
7285
7286 /* Restore replaced or deleted groups. */
7287 GROUP_COLLECTION_FOR_EACH (old_group, &ogm->old_groups) {
7288 ofproto->n_groups[old_group->type]++;
7289 if (new_group) {
7290 ovs_assert(group_collection_n(&ogm->old_groups) == 1);
7291 /* Transfer rules back. */
7292 rule_collection_move(&old_group->rules, &new_group->rules);
7293 } else {
7294 old_group->being_deleted = false;
7295 /* Revert rule deletion. */
7296 delete_flows_revert__(ofproto, &old_group->rules);
7297 }
7298 /* Restore visibility. */
7299 versions_set_remove_version(&old_group->versions,
7300 OVS_VERSION_NOT_REMOVED);
7301 }
7302 if (new_group) {
7303 /* Remove the new group immediately. It was never visible to
7304 * lookups. */
7305 cmap_remove(&ofproto->groups, &new_group->cmap_node,
7306 hash_int(new_group->group_id, 0));
7307 ofproto->n_groups[new_group->type]--;
7308 ofproto_group_unref(new_group);
7309 }
7310}
7311
2b0b0b80
JR
7312static void
7313ofproto_group_mod_finish(struct ofproto *ofproto,
7314 struct ofproto_group_mod *ogm,
7315 const struct openflow_mod_requester *req)
7316 OVS_REQUIRES(ofproto_mutex)
7317{
7318 struct ofgroup *new_group = ogm->new_group;
7319 struct ofgroup *old_group;
7320
ccb3bc08
JR
7321 if (new_group && group_collection_n(&ogm->old_groups) &&
7322 ofproto->ofproto_class->group_modify) {
2b0b0b80
JR
7323 /* Modify a group. */
7324 ovs_assert(group_collection_n(&ogm->old_groups) == 1);
2b0b0b80
JR
7325
7326 /* XXX: OK to lose old group's stats? */
7327 ofproto->ofproto_class->group_modify(new_group);
5d08a275 7328 }
2b0b0b80 7329
5d08a275
JR
7330 /* Delete old groups. */
7331 GROUP_COLLECTION_FOR_EACH(old_group, &ogm->old_groups) {
7332 delete_group_finish(ofproto, old_group);
2b0b0b80 7333 }
5d08a275 7334 remove_groups_postponed(&ogm->old_groups);
2b0b0b80
JR
7335
7336 if (req) {
3c35db62 7337 struct ofputil_requestforward rf;
2b0b0b80 7338 rf.xid = req->request->xid;
3c35db62 7339 rf.reason = OFPRFR_GROUP_MOD;
2b0b0b80
JR
7340 rf.group_mod = &ogm->gm;
7341 connmgr_send_requestforward(ofproto->connmgr, req->ofconn, &rf);
7342 }
7343}
7344
7345/* Delete all groups from 'ofproto'.
7346 *
7347 * This is intended for use within an ofproto provider's 'destruct'
7348 * function. */
7349void
7350ofproto_group_delete_all(struct ofproto *ofproto)
7351 OVS_EXCLUDED(ofproto_mutex)
7352{
7353 struct ofproto_group_mod ogm;
7354
7355 ogm.gm.command = OFPGC11_DELETE;
7356 ogm.gm.group_id = OFPG_ALL;
7357
7358 ovs_mutex_lock(&ofproto_mutex);
5d08a275 7359 ogm.version = ofproto->tables_version + 1;
2b0b0b80 7360 ofproto_group_mod_start(ofproto, &ogm);
5d08a275 7361 ofproto_bump_tables_version(ofproto);
2b0b0b80
JR
7362 ofproto_group_mod_finish(ofproto, &ogm, NULL);
7363 ovs_mutex_unlock(&ofproto_mutex);
7364}
7365
7366static enum ofperr
7367handle_group_mod(struct ofconn *ofconn, const struct ofp_header *oh)
7368 OVS_EXCLUDED(ofproto_mutex)
7369{
7370 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
7371 struct ofproto_group_mod ogm;
7372 enum ofperr error;
7373
7374 error = reject_slave_controller(ofconn);
7375 if (error) {
7376 return error;
7377 }
7378
7379 error = ofputil_decode_group_mod(oh, &ogm.gm);
7380 if (error) {
7381 return error;
3c35db62 7382 }
2b0b0b80
JR
7383
7384 ovs_mutex_lock(&ofproto_mutex);
5d08a275 7385 ogm.version = ofproto->tables_version + 1;
2b0b0b80
JR
7386 error = ofproto_group_mod_start(ofproto, &ogm);
7387 if (!error) {
7388 struct openflow_mod_requester req = { ofconn, oh };
5d08a275
JR
7389
7390 ofproto_bump_tables_version(ofproto);
2b0b0b80 7391 ofproto_group_mod_finish(ofproto, &ogm, &req);
2c7ee524 7392 ofmonitor_flush(ofproto->connmgr);
2b0b0b80 7393 }
2b0b0b80
JR
7394 ovs_mutex_unlock(&ofproto_mutex);
7395
75868d0e 7396 ofputil_uninit_group_mod(&ogm.gm);
63eded98 7397
3c35db62 7398 return error;
7395c052
NZ
7399}
7400
3c1bb396
BP
7401enum ofputil_table_miss
7402ofproto_table_get_miss_config(const struct ofproto *ofproto, uint8_t table_id)
6d328fa2 7403{
82c22d34
BP
7404 enum ofputil_table_miss miss;
7405
7406 atomic_read_relaxed(&ofproto->tables[table_id].miss_config, &miss);
7407 return miss;
7408}
7409
7410static void
7411table_mod__(struct oftable *oftable,
de7d3c07 7412 const struct ofputil_table_mod *tm)
82c22d34 7413{
de7d3c07 7414 if (tm->miss == OFPUTIL_TABLE_MISS_DEFAULT) {
82c22d34
BP
7415 /* This is how an OFPT_TABLE_MOD decodes if it doesn't specify any
7416 * table-miss configuration (because the protocol used doesn't have
7417 * such a concept), so there's nothing to do. */
7418 } else {
de7d3c07 7419 atomic_store_relaxed(&oftable->miss_config, tm->miss);
82c22d34
BP
7420 }
7421
7422 unsigned int new_eviction = oftable->eviction;
de7d3c07 7423 if (tm->eviction == OFPUTIL_TABLE_EVICTION_ON) {
82c22d34 7424 new_eviction |= EVICTION_OPENFLOW;
de7d3c07 7425 } else if (tm->eviction == OFPUTIL_TABLE_EVICTION_OFF) {
82c22d34
BP
7426 new_eviction &= ~EVICTION_OPENFLOW;
7427 }
afcea9ea 7428
82c22d34
BP
7429 if (new_eviction != oftable->eviction) {
7430 ovs_mutex_lock(&ofproto_mutex);
7431 oftable_configure_eviction(oftable, new_eviction,
7432 oftable->eviction_fields,
7433 oftable->n_eviction_fields);
7434 ovs_mutex_unlock(&ofproto_mutex);
7435 }
de7d3c07
SJ
7436
7437 if (tm->vacancy != OFPUTIL_TABLE_VACANCY_DEFAULT) {
7438 ovs_mutex_lock(&ofproto_mutex);
de7d3c07
SJ
7439 oftable->vacancy_down = tm->table_vacancy.vacancy_down;
7440 oftable->vacancy_up = tm->table_vacancy.vacancy_up;
6c6eedc5
SJ
7441 if (tm->vacancy == OFPUTIL_TABLE_VACANCY_OFF) {
7442 oftable->vacancy_event = 0;
7443 } else if (!oftable->vacancy_event) {
7444 uint8_t vacancy = oftable_vacancy(oftable);
7445 oftable->vacancy_event = (vacancy < oftable->vacancy_up
7446 ? OFPTR_VACANCY_UP
7447 : OFPTR_VACANCY_DOWN);
7448 }
de7d3c07
SJ
7449 ovs_mutex_unlock(&ofproto_mutex);
7450 }
6d328fa2
SH
7451}
7452
67761761
SH
7453static enum ofperr
7454table_mod(struct ofproto *ofproto, const struct ofputil_table_mod *tm)
7455{
3c1bb396 7456 if (!check_table_id(ofproto, tm->table_id)) {
67761761 7457 return OFPERR_OFPTMFC_BAD_TABLE;
82c22d34
BP
7458 }
7459
7460 /* Don't allow the eviction flags to be changed (except to the only fixed
7461 * value that OVS supports). OF1.4 says this is normal: "The
7462 * OFPTMPT_EVICTION property usually cannot be modified using a
7463 * OFP_TABLE_MOD request, because the eviction mechanism is switch
7464 * defined". */
7465 if (tm->eviction_flags != UINT32_MAX
7466 && tm->eviction_flags != OFPROTO_EVICTION_FLAGS) {
7467 return OFPERR_OFPTMFC_BAD_CONFIG;
7468 }
7469
7470 if (tm->table_id == OFPTT_ALL) {
7471 struct oftable *oftable;
7472 OFPROTO_FOR_EACH_TABLE (oftable, ofproto) {
7473 if (!(oftable->flags & (OFTABLE_HIDDEN | OFTABLE_READONLY))) {
de7d3c07 7474 table_mod__(oftable, tm);
3c1bb396 7475 }
3c1bb396 7476 }
82c22d34
BP
7477 } else {
7478 struct oftable *oftable = &ofproto->tables[tm->table_id];
7479 if (oftable->flags & OFTABLE_READONLY) {
7480 return OFPERR_OFPTMFC_EPERM;
7481 }
de7d3c07 7482 table_mod__(oftable, tm);
67761761 7483 }
82c22d34 7484
67761761
SH
7485 return 0;
7486}
7487
918f2b82
AZ
7488static enum ofperr
7489handle_table_mod(struct ofconn *ofconn, const struct ofp_header *oh)
7490{
67761761 7491 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
918f2b82
AZ
7492 struct ofputil_table_mod tm;
7493 enum ofperr error;
7494
7495 error = reject_slave_controller(ofconn);
7496 if (error) {
7497 return error;
7498 }
7499
7500 error = ofputil_decode_table_mod(oh, &tm);
7501 if (error) {
7502 return error;
7503 }
7504
67761761 7505 return table_mod(ofproto, &tm);
918f2b82
AZ
7506}
7507
5bacd5cd
JR
7508/* Free resources that may be allocated by ofproto_flow_mod_init(). */
7509void
7510ofproto_flow_mod_uninit(struct ofproto_flow_mod *ofm)
7511{
7512 if (ofm->temp_rule) {
7513 ofproto_rule_unref(ofm->temp_rule);
7514 ofm->temp_rule = NULL;
7515 }
7516 if (ofm->criteria.version != OVS_VERSION_NOT_REMOVED) {
7517 rule_criteria_destroy(&ofm->criteria);
7518 }
7519 if (ofm->conjs) {
7520 free(ofm->conjs);
7521 ofm->conjs = NULL;
7522 ofm->n_conjs = 0;
7523 }
7524}
7525
777af88d 7526static enum ofperr
5bacd5cd 7527ofproto_flow_mod_init(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
2c7ee524 7528 const struct ofputil_flow_mod *fm, struct rule *rule)
5bacd5cd 7529 OVS_EXCLUDED(ofproto_mutex)
777af88d 7530{
5bacd5cd
JR
7531 enum ofperr error;
7532
7533 /* Forward flow mod fields we need later. */
7534 ofm->command = fm->command;
5bacd5cd
JR
7535 ofm->modify_cookie = fm->modify_cookie;
7536
7537 ofm->modify_may_add_flow = (fm->new_cookie != OVS_BE64_MAX
7538 && fm->cookie_mask == htonll(0));
8b6987d7
JR
7539 /* Old flags must be kept when modifying a flow, but we still must
7540 * honor the reset counts flag if present in the flow mod. */
7541 ofm->modify_keep_counts = !(fm->flags & OFPUTIL_FF_RESET_COUNTS);
5bacd5cd
JR
7542
7543 /* Initialize state needed by ofproto_flow_mod_uninit(). */
2c7ee524 7544 ofm->temp_rule = rule;
5bacd5cd
JR
7545 ofm->criteria.version = OVS_VERSION_NOT_REMOVED;
7546 ofm->conjs = NULL;
7547 ofm->n_conjs = 0;
7548
c184807c
JR
7549 bool check_buffer_id = false;
7550
5bacd5cd
JR
7551 switch (ofm->command) {
7552 case OFPFC_ADD:
c184807c 7553 check_buffer_id = true;
5bacd5cd
JR
7554 error = add_flow_init(ofproto, ofm, fm);
7555 break;
7556 case OFPFC_MODIFY:
c184807c 7557 check_buffer_id = true;
5bacd5cd
JR
7558 error = modify_flows_init_loose(ofproto, ofm, fm);
7559 break;
7560 case OFPFC_MODIFY_STRICT:
c184807c 7561 check_buffer_id = true;
5bacd5cd
JR
7562 error = modify_flow_init_strict(ofproto, ofm, fm);
7563 break;
7564 case OFPFC_DELETE:
7565 error = delete_flows_init_loose(ofproto, ofm, fm);
7566 break;
7567 case OFPFC_DELETE_STRICT:
7568 error = delete_flows_init_strict(ofproto, ofm, fm);
7569 break;
7570 default:
7571 error = OFPERR_OFPFMFC_BAD_COMMAND;
7572 break;
7573 }
c184807c
JR
7574 if (!error && check_buffer_id && fm->buffer_id != UINT32_MAX) {
7575 error = OFPERR_OFPBRC_BUFFER_UNKNOWN;
7576 }
7577
cc099268 7578 if (error) {
5bacd5cd 7579 ofproto_flow_mod_uninit(ofm);
cc099268 7580 }
5bacd5cd
JR
7581 return error;
7582}
cc099268 7583
5bacd5cd
JR
7584static enum ofperr
7585ofproto_flow_mod_start(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
7586 OVS_REQUIRES(ofproto_mutex)
7587{
7588 enum ofperr error;
81dee635 7589
5bacd5cd
JR
7590 rule_collection_init(&ofm->old_rules);
7591 rule_collection_init(&ofm->new_rules);
81dee635 7592
5a27991d 7593 switch (ofm->command) {
1f42be1c 7594 case OFPFC_ADD:
5bacd5cd
JR
7595 error = add_flow_start(ofproto, ofm);
7596 break;
1f42be1c 7597 case OFPFC_MODIFY:
5bacd5cd
JR
7598 error = modify_flows_start_loose(ofproto, ofm);
7599 break;
1f42be1c 7600 case OFPFC_MODIFY_STRICT:
5bacd5cd
JR
7601 error = modify_flow_start_strict(ofproto, ofm);
7602 break;
1f42be1c 7603 case OFPFC_DELETE:
5bacd5cd
JR
7604 error = delete_flows_start_loose(ofproto, ofm);
7605 break;
1f42be1c 7606 case OFPFC_DELETE_STRICT:
5bacd5cd
JR
7607 error = delete_flow_start_strict(ofproto, ofm);
7608 break;
7609 default:
7610 OVS_NOT_REACHED();
1f42be1c 7611 }
5bacd5cd
JR
7612 /* Release resources not needed after start. */
7613 ofproto_flow_mod_uninit(ofm);
1f42be1c 7614
5bacd5cd
JR
7615 if (error) {
7616 rule_collection_destroy(&ofm->old_rules);
7617 rule_collection_destroy(&ofm->new_rules);
7618 }
7619 return error;
1f42be1c
JR
7620}
7621
7622static void
8be00367 7623ofproto_flow_mod_revert(struct ofproto *ofproto, struct ofproto_flow_mod *ofm)
1f42be1c
JR
7624 OVS_REQUIRES(ofproto_mutex)
7625{
5a27991d 7626 switch (ofm->command) {
1f42be1c 7627 case OFPFC_ADD:
8be00367 7628 add_flow_revert(ofproto, ofm);
1f42be1c
JR
7629 break;
7630
7631 case OFPFC_MODIFY:
7632 case OFPFC_MODIFY_STRICT:
8be00367 7633 modify_flows_revert(ofproto, ofm);
1f42be1c
JR
7634 break;
7635
7636 case OFPFC_DELETE:
7637 case OFPFC_DELETE_STRICT:
8be00367 7638 delete_flows_revert(ofproto, ofm);
1f42be1c
JR
7639 break;
7640
7641 default:
7642 break;
7643 }
2c7ee524 7644
5bacd5cd
JR
7645 rule_collection_destroy(&ofm->old_rules);
7646 rule_collection_destroy(&ofm->new_rules);
1f42be1c
JR
7647}
7648
7649static void
2c7ee524 7650ofproto_flow_mod_finish(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
0a0d9385 7651 const struct openflow_mod_requester *req)
1f42be1c
JR
7652 OVS_REQUIRES(ofproto_mutex)
7653{
5a27991d 7654 switch (ofm->command) {
1f42be1c 7655 case OFPFC_ADD:
8be00367 7656 add_flow_finish(ofproto, ofm, req);
1f42be1c
JR
7657 break;
7658
7659 case OFPFC_MODIFY:
7660 case OFPFC_MODIFY_STRICT:
8be00367 7661 modify_flows_finish(ofproto, ofm, req);
1f42be1c
JR
7662 break;
7663
7664 case OFPFC_DELETE:
7665 case OFPFC_DELETE_STRICT:
8be00367 7666 delete_flows_finish(ofproto, ofm, req);
1f42be1c
JR
7667 break;
7668
7669 default:
7670 break;
7671 }
b0d38b2f 7672
5bacd5cd
JR
7673 rule_collection_destroy(&ofm->old_rules);
7674 rule_collection_destroy(&ofm->new_rules);
7675
b0d38b2f 7676 if (req) {
5a27991d 7677 ofconn_report_flow_mod(req->ofconn, ofm->command);
b0d38b2f 7678 }
1f42be1c
JR
7679}
7680
39c94593
JR
7681/* Commit phases (all while locking ofproto_mutex):
7682 *
7683 * 1. Begin: Gather resources and make changes visible in the next version.
7684 * - Mark affected rules for removal in the next version.
7685 * - Create new replacement rules, make visible in the next
7686 * version.
7687 * - Do not send any events or notifications.
7688 *
7689 * 2. Revert: Fail if any errors are found. After this point no errors are
7690 * possible. No visible changes were made, so rollback is minimal (remove
7691 * added invisible rules, restore visibility of rules marked for removal).
7692 *
1c38055d
JR
7693 * 3. Finish: Make the changes visible for lookups. Insert replacement rules to
7694 * the ofproto provider. Remove replaced and deleted rules from ofproto data
7695 * structures, and Schedule postponed removal of deleted rules from the
7696 * classifier. Send notifications, buffered packets, etc.
39c94593 7697 */
1f42be1c
JR
7698static enum ofperr
7699do_bundle_commit(struct ofconn *ofconn, uint32_t id, uint16_t flags)
7700{
7701 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
44e0c35d 7702 ovs_version_t version = ofproto->tables_version + 1;
1f42be1c
JR
7703 struct ofp_bundle *bundle;
7704 struct ofp_bundle_entry *be;
777af88d 7705 enum ofperr error;
1f42be1c
JR
7706
7707 bundle = ofconn_get_bundle(ofconn, id);
7708
7709 if (!bundle) {
7710 return OFPERR_OFPBFC_BAD_ID;
7711 }
7712 if (bundle->flags != flags) {
7713 error = OFPERR_OFPBFC_BAD_FLAGS;
7714 } else {
1c38055d
JR
7715 bool prev_is_port_mod = false;
7716
1f42be1c
JR
7717 error = 0;
7718 ovs_mutex_lock(&ofproto_mutex);
39c94593
JR
7719
7720 /* 1. Begin. */
1f42be1c
JR
7721 LIST_FOR_EACH (be, node, &bundle->msg_list) {
7722 if (be->type == OFPTYPE_PORT_MOD) {
1c38055d
JR
7723 /* Our port mods are not atomic. */
7724 if (flags & OFPBF_ATOMIC) {
7725 error = OFPERR_OFPBFC_MSG_FAILED;
7726 } else {
7727 prev_is_port_mod = true;
8be00367 7728 error = port_mod_start(ofconn, &be->opm.pm, &be->opm.port);
1c38055d 7729 }
25070e04
JR
7730 } else {
7731 /* Flow & group mods between port mods are applied as a single
7732 * version, but the versions are published only after we know
7733 * the commit is successful. */
1c38055d 7734 if (prev_is_port_mod) {
25070e04 7735 prev_is_port_mod = false;
8be00367 7736 ++version;
1c38055d 7737 }
25070e04
JR
7738 if (be->type == OFPTYPE_FLOW_MOD) {
7739 /* Store the version in which the changes should take
7740 * effect. */
7741 be->ofm.version = version;
7742 error = ofproto_flow_mod_start(ofproto, &be->ofm);
7743 } else if (be->type == OFPTYPE_GROUP_MOD) {
7744 /* Store the version in which the changes should take
7745 * effect. */
7746 be->ogm.version = version;
7747 error = ofproto_group_mod_start(ofproto, &be->ogm);
6dd3c787
JR
7748 } else if (be->type == OFPTYPE_PACKET_OUT) {
7749 be->opo.version = version;
7750 error = ofproto_packet_out_start(ofproto, &be->opo);
25070e04
JR
7751 } else {
7752 OVS_NOT_REACHED();
7753 }
1f42be1c
JR
7754 }
7755 if (error) {
7756 break;
7757 }
7758 }
1c38055d 7759
1f42be1c
JR
7760 if (error) {
7761 /* Send error referring to the original message. */
7762 if (error) {
51bb26fa 7763 ofconn_send_error(ofconn, &be->ofp_msg, error);
1f42be1c
JR
7764 error = OFPERR_OFPBFC_MSG_FAILED;
7765 }
7766
39c94593 7767 /* 2. Revert. Undo all the changes made above. */
1f42be1c
JR
7768 LIST_FOR_EACH_REVERSE_CONTINUE(be, node, &bundle->msg_list) {
7769 if (be->type == OFPTYPE_FLOW_MOD) {
8be00367 7770 ofproto_flow_mod_revert(ofproto, &be->ofm);
25070e04
JR
7771 } else if (be->type == OFPTYPE_GROUP_MOD) {
7772 ofproto_group_mod_revert(ofproto, &be->ogm);
6dd3c787
JR
7773 } else if (be->type == OFPTYPE_PACKET_OUT) {
7774 ofproto_packet_out_revert(ofproto, &be->opo);
1f42be1c 7775 }
1c38055d 7776 /* Nothing needs to be reverted for a port mod. */
1f42be1c
JR
7777 }
7778 } else {
39c94593 7779 /* 4. Finish. */
1f42be1c 7780 LIST_FOR_EACH (be, node, &bundle->msg_list) {
25070e04 7781 if (be->type == OFPTYPE_PORT_MOD) {
1c38055d
JR
7782 /* Perform the actual port mod. This is not atomic, i.e.,
7783 * the effects will be immediately seen by upcall
7784 * processing regardless of the lookup version. It should
7785 * be noted that port configuration changes can originate
7786 * also from OVSDB changes asynchronously to all upcall
7787 * processing. */
8be00367 7788 port_mod_finish(ofconn, &be->opm.pm, be->opm.port);
25070e04 7789 } else {
6dd3c787
JR
7790 version =
7791 (be->type == OFPTYPE_FLOW_MOD) ? be->ofm.version :
7792 (be->type == OFPTYPE_GROUP_MOD) ? be->ogm.version :
7793 (be->type == OFPTYPE_PACKET_OUT) ? be->opo.version :
7794 version;
7795
7796 /* Bump the lookup version to the one of the current
7797 * message. This makes all the changes in the bundle at
7798 * this version visible to lookups at once. */
7799 if (ofproto->tables_version < version) {
7800 ofproto->tables_version = version;
7801 ofproto->ofproto_class->set_tables_version(
7802 ofproto, ofproto->tables_version);
7803 }
7804
25070e04 7805 struct openflow_mod_requester req = { ofconn,
51bb26fa 7806 &be->ofp_msg };
25070e04 7807
6dd3c787 7808 if (be->type == OFPTYPE_FLOW_MOD) {
25070e04
JR
7809 ofproto_flow_mod_finish(ofproto, &be->ofm, &req);
7810 } else if (be->type == OFPTYPE_GROUP_MOD) {
25070e04 7811 ofproto_group_mod_finish(ofproto, &be->ogm, &req);
6dd3c787
JR
7812 } else if (be->type == OFPTYPE_PACKET_OUT) {
7813 ofproto_packet_out_finish(ofproto, &be->opo);
25070e04 7814 }
1f42be1c
JR
7815 }
7816 }
7817 }
1c38055d 7818
1f42be1c
JR
7819 ofmonitor_flush(ofproto->connmgr);
7820 ovs_mutex_unlock(&ofproto_mutex);
1f42be1c
JR
7821 }
7822
7823 /* The bundle is discarded regardless the outcome. */
0c78eebe 7824 ofp_bundle_remove__(ofconn, bundle);
1f42be1c
JR
7825 return error;
7826}
7827
7828static enum ofperr
7829handle_bundle_control(struct ofconn *ofconn, const struct ofp_header *oh)
7830{
777af88d 7831 struct ofputil_bundle_ctrl_msg bctrl;
777af88d 7832 struct ofputil_bundle_ctrl_msg reply;
1f42be1c
JR
7833 struct ofpbuf *buf;
7834 enum ofperr error;
777af88d 7835
ba9d374a
JR
7836 error = reject_slave_controller(ofconn);
7837 if (error) {
7838 return error;
7839 }
7840
777af88d
AC
7841 error = ofputil_decode_bundle_ctrl(oh, &bctrl);
7842 if (error) {
7843 return error;
7844 }
7845 reply.flags = 0;
7846 reply.bundle_id = bctrl.bundle_id;
7847
7848 switch (bctrl.type) {
51bb26fa
JR
7849 case OFPBCT_OPEN_REQUEST:
7850 error = ofp_bundle_open(ofconn, bctrl.bundle_id, bctrl.flags, oh);
777af88d
AC
7851 reply.type = OFPBCT_OPEN_REPLY;
7852 break;
7853 case OFPBCT_CLOSE_REQUEST:
7854 error = ofp_bundle_close(ofconn, bctrl.bundle_id, bctrl.flags);
ea53e3a8 7855 reply.type = OFPBCT_CLOSE_REPLY;
777af88d
AC
7856 break;
7857 case OFPBCT_COMMIT_REQUEST:
1f42be1c 7858 error = do_bundle_commit(ofconn, bctrl.bundle_id, bctrl.flags);
777af88d
AC
7859 reply.type = OFPBCT_COMMIT_REPLY;
7860 break;
7861 case OFPBCT_DISCARD_REQUEST:
7862 error = ofp_bundle_discard(ofconn, bctrl.bundle_id);
7863 reply.type = OFPBCT_DISCARD_REPLY;
7864 break;
7865
7866 case OFPBCT_OPEN_REPLY:
7867 case OFPBCT_CLOSE_REPLY:
7868 case OFPBCT_COMMIT_REPLY:
7869 case OFPBCT_DISCARD_REPLY:
7870 return OFPERR_OFPBFC_BAD_TYPE;
7871 break;
7872 }
7873
7874 if (!error) {
7875 buf = ofputil_encode_bundle_ctrl_reply(oh, &reply);
7876 ofconn_send_reply(ofconn, buf);
7877 }
7878 return error;
7879}
7880
777af88d
AC
7881static enum ofperr
7882handle_bundle_add(struct ofconn *ofconn, const struct ofp_header *oh)
5bacd5cd 7883 OVS_EXCLUDED(ofproto_mutex)
777af88d 7884{
7ac27a04 7885 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
777af88d
AC
7886 enum ofperr error;
7887 struct ofputil_bundle_add_msg badd;
7ac27a04
JR
7888 struct ofp_bundle_entry *bmsg;
7889 enum ofptype type;
777af88d 7890
ba9d374a
JR
7891 error = reject_slave_controller(ofconn);
7892 if (error) {
7893 return error;
7894 }
7895
7ac27a04 7896 error = ofputil_decode_bundle_add(oh, &badd, &type);
777af88d
AC
7897 if (error) {
7898 return error;
7899 }
7900
1f42be1c 7901 bmsg = ofp_bundle_entry_alloc(type, badd.msg);
7ac27a04 7902
6dd3c787
JR
7903 struct ofpbuf ofpacts;
7904 uint64_t ofpacts_stub[1024 / 8];
7905 ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
7906
7ac27a04 7907 if (type == OFPTYPE_PORT_MOD) {
8be00367 7908 error = ofputil_decode_port_mod(badd.msg, &bmsg->opm.pm, false);
7ac27a04 7909 } else if (type == OFPTYPE_FLOW_MOD) {
5bacd5cd 7910 struct ofputil_flow_mod fm;
7ac27a04 7911
5bacd5cd 7912 error = ofputil_decode_flow_mod(&fm, badd.msg,
7ac27a04 7913 ofconn_get_protocol(ofconn),
8d8ab6c2 7914 ofproto_get_tun_tab(ofproto),
04f48a68 7915 &ofproto->vl_mff_map, &ofpacts,
7ac27a04
JR
7916 u16_to_ofp(ofproto->max_ports),
7917 ofproto->n_tables);
5bacd5cd 7918 if (!error) {
2c7ee524 7919 error = ofproto_flow_mod_init(ofproto, &bmsg->ofm, &fm, NULL);
5bacd5cd 7920 }
25070e04
JR
7921 } else if (type == OFPTYPE_GROUP_MOD) {
7922 error = ofputil_decode_group_mod(badd.msg, &bmsg->ogm.gm);
6dd3c787
JR
7923 } else if (type == OFPTYPE_PACKET_OUT) {
7924 struct ofputil_packet_out po;
7925
7926 COVERAGE_INC(ofproto_packet_out);
7927
7928 /* Decode message. */
89d7927b
YHW
7929 error = ofputil_decode_packet_out(&po, badd.msg,
7930 ofproto_get_tun_tab(ofproto),
7931 &ofpacts);
6dd3c787
JR
7932 if (!error) {
7933 po.ofpacts = ofpbuf_steal_data(&ofpacts); /* Move to heap. */
7934 error = ofproto_packet_out_init(ofproto, ofconn, &bmsg->opo, &po);
7935 }
7ac27a04
JR
7936 } else {
7937 OVS_NOT_REACHED();
7938 }
7939
6dd3c787
JR
7940 ofpbuf_uninit(&ofpacts);
7941
7ac27a04
JR
7942 if (!error) {
7943 error = ofp_bundle_add_message(ofconn, badd.bundle_id, badd.flags,
51bb26fa 7944 bmsg, oh);
7ac27a04
JR
7945 }
7946
7947 if (error) {
7948 ofp_bundle_entry_free(bmsg);
7949 }
7950
7951 return error;
777af88d
AC
7952}
7953
6159c531 7954static enum ofperr
4e548ad9 7955handle_tlv_table_mod(struct ofconn *ofconn, const struct ofp_header *oh)
6159c531 7956{
8d8ab6c2
JG
7957 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
7958 struct tun_table *old_tab, *new_tab;
4e548ad9 7959 struct ofputil_tlv_table_mod ttm;
6159c531
JG
7960 enum ofperr error;
7961
7962 error = reject_slave_controller(ofconn);
7963 if (error) {
7964 return error;
7965 }
7966
4e548ad9 7967 error = ofputil_decode_tlv_table_mod(oh, &ttm);
6159c531
JG
7968 if (error) {
7969 return error;
7970 }
7971
8d8ab6c2
JG
7972 old_tab = ovsrcu_get_protected(struct tun_table *, &ofproto->metadata_tab);
7973 error = tun_metadata_table_mod(&ttm, old_tab, &new_tab);
7974 if (!error) {
04f48a68
YHW
7975 ovs_mutex_lock(&ofproto->vl_mff_map.mutex);
7976 error = mf_vl_mff_map_mod_from_tun_metadata(&ofproto->vl_mff_map,
7977 &ttm);
7978 ovs_mutex_unlock(&ofproto->vl_mff_map.mutex);
5c7c16d8
YHW
7979 if (!error) {
7980 ovsrcu_set(&ofproto->metadata_tab, new_tab);
7981 tun_metadata_postpone_free(old_tab);
bc36c3a8
YHW
7982 } else {
7983 tun_metadata_free(new_tab);
5c7c16d8 7984 }
8d8ab6c2 7985 }
9558d2a5 7986
4e548ad9 7987 ofputil_uninit_tlv_table(&ttm.mappings);
9558d2a5 7988 return error;
6159c531
JG
7989}
7990
7991static enum ofperr
4e548ad9 7992handle_tlv_table_request(struct ofconn *ofconn, const struct ofp_header *oh)
6159c531 7993{
8d8ab6c2 7994 const struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4e548ad9 7995 struct ofputil_tlv_table_reply ttr;
9558d2a5
JG
7996 struct ofpbuf *b;
7997
8d8ab6c2
JG
7998 tun_metadata_table_request(ofproto_get_tun_tab(ofproto), &ttr);
7999
4e548ad9
ML
8000 b = ofputil_encode_tlv_table_reply(oh, &ttr);
8001 ofputil_uninit_tlv_table(&ttr.mappings);
9558d2a5
JG
8002
8003 ofconn_send_reply(ofconn, b);
8004 return 0;
6159c531
JG
8005}
8006
90bf1e07 8007static enum ofperr
d1e2cf21 8008handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
15aaf599 8009 OVS_EXCLUDED(ofproto_mutex)
064af421 8010{
6fd6ed71 8011 const struct ofp_header *oh = msg->data;
982697a4 8012 enum ofptype type;
90bf1e07 8013 enum ofperr error;
064af421 8014
982697a4 8015 error = ofptype_decode(&type, oh);
d1e2cf21
BP
8016 if (error) {
8017 return error;
8018 }
ff3c2c63
YT
8019 if (oh->version >= OFP13_VERSION && ofpmsg_is_stat_request(oh)
8020 && ofpmp_more(oh)) {
8021 /* We have no buffer implementation for multipart requests.
8022 * Report overflow for requests which consists of multiple
8023 * messages. */
8024 return OFPERR_OFPBRC_MULTIPART_BUFFER_OVERFLOW;
8025 }
064af421 8026
982697a4 8027 switch (type) {
d1e2cf21 8028 /* OpenFlow requests. */
982697a4 8029 case OFPTYPE_ECHO_REQUEST:
d1e2cf21 8030 return handle_echo_request(ofconn, oh);
064af421 8031
982697a4 8032 case OFPTYPE_FEATURES_REQUEST:
d1e2cf21 8033 return handle_features_request(ofconn, oh);
064af421 8034
982697a4 8035 case OFPTYPE_GET_CONFIG_REQUEST:
d1e2cf21 8036 return handle_get_config_request(ofconn, oh);
064af421 8037
982697a4
BP
8038 case OFPTYPE_SET_CONFIG:
8039 return handle_set_config(ofconn, oh);
064af421 8040
982697a4
BP
8041 case OFPTYPE_PACKET_OUT:
8042 return handle_packet_out(ofconn, oh);
064af421 8043
982697a4 8044 case OFPTYPE_PORT_MOD:
d1e2cf21 8045 return handle_port_mod(ofconn, oh);
064af421 8046
982697a4 8047 case OFPTYPE_FLOW_MOD:
2e4f5fcf 8048 return handle_flow_mod(ofconn, oh);
064af421 8049
7395c052
NZ
8050 case OFPTYPE_GROUP_MOD:
8051 return handle_group_mod(ofconn, oh);
8052
918f2b82
AZ
8053 case OFPTYPE_TABLE_MOD:
8054 return handle_table_mod(ofconn, oh);
8055
9cae45dc
JR
8056 case OFPTYPE_METER_MOD:
8057 return handle_meter_mod(ofconn, oh);
8058
982697a4 8059 case OFPTYPE_BARRIER_REQUEST:
d1e2cf21 8060 return handle_barrier_request(ofconn, oh);
064af421 8061
6ea4776b
JR
8062 case OFPTYPE_ROLE_REQUEST:
8063 return handle_role_request(ofconn, oh);
8064
d1e2cf21 8065 /* OpenFlow replies. */
982697a4 8066 case OFPTYPE_ECHO_REPLY:
d1e2cf21 8067 return 0;
246e61ea 8068
d1e2cf21 8069 /* Nicira extension requests. */
982697a4 8070 case OFPTYPE_FLOW_MOD_TABLE_ID:
6c1491fb 8071 return handle_nxt_flow_mod_table_id(ofconn, oh);
d1e2cf21 8072
982697a4 8073 case OFPTYPE_SET_FLOW_FORMAT:
d1e2cf21
BP
8074 return handle_nxt_set_flow_format(ofconn, oh);
8075
982697a4 8076 case OFPTYPE_SET_PACKET_IN_FORMAT:
54834960
EJ
8077 return handle_nxt_set_packet_in_format(ofconn, oh);
8078
982697a4 8079 case OFPTYPE_SET_CONTROLLER_ID:
a7349929
BP
8080 return handle_nxt_set_controller_id(ofconn, oh);
8081
982697a4 8082 case OFPTYPE_FLOW_AGE:
f27f2134
BP
8083 /* Nothing to do. */
8084 return 0;
8085
982697a4 8086 case OFPTYPE_FLOW_MONITOR_CANCEL:
2b07c8b1
BP
8087 return handle_flow_monitor_cancel(ofconn, oh);
8088
982697a4 8089 case OFPTYPE_SET_ASYNC_CONFIG:
80d5aefd
BP
8090 return handle_nxt_set_async_config(ofconn, oh);
8091
c423b3b3
AC
8092 case OFPTYPE_GET_ASYNC_REQUEST:
8093 return handle_nxt_get_async_request(ofconn, oh);
8094
77ab5fd2
BP
8095 case OFPTYPE_NXT_RESUME:
8096 return handle_nxt_resume(ofconn, oh);
8097
349adfb2 8098 /* Statistics requests. */
982697a4
BP
8099 case OFPTYPE_DESC_STATS_REQUEST:
8100 return handle_desc_stats_request(ofconn, oh);
8101
8102 case OFPTYPE_FLOW_STATS_REQUEST:
8103 return handle_flow_stats_request(ofconn, oh);
8104
8105 case OFPTYPE_AGGREGATE_STATS_REQUEST:
8106 return handle_aggregate_stats_request(ofconn, oh);
8107
8108 case OFPTYPE_TABLE_STATS_REQUEST:
8109 return handle_table_stats_request(ofconn, oh);
8110
3c4e10fb
BP
8111 case OFPTYPE_TABLE_FEATURES_STATS_REQUEST:
8112 return handle_table_features_request(ofconn, oh);
8113
03c72922
BP
8114 case OFPTYPE_TABLE_DESC_REQUEST:
8115 return handle_table_desc_request(ofconn, oh);
8116
982697a4
BP
8117 case OFPTYPE_PORT_STATS_REQUEST:
8118 return handle_port_stats_request(ofconn, oh);
8119
8120 case OFPTYPE_QUEUE_STATS_REQUEST:
8121 return handle_queue_stats_request(ofconn, oh);
8122
8123 case OFPTYPE_PORT_DESC_STATS_REQUEST:
8124 return handle_port_desc_stats_request(ofconn, oh);
8125
8126 case OFPTYPE_FLOW_MONITOR_STATS_REQUEST:
8127 return handle_flow_monitor_request(ofconn, oh);
8128
261bd854
BP
8129 case OFPTYPE_METER_STATS_REQUEST:
8130 case OFPTYPE_METER_CONFIG_STATS_REQUEST:
9cae45dc
JR
8131 return handle_meter_request(ofconn, oh, type);
8132
261bd854 8133 case OFPTYPE_METER_FEATURES_STATS_REQUEST:
9cae45dc
JR
8134 return handle_meter_features_request(ofconn, oh);
8135
261bd854 8136 case OFPTYPE_GROUP_STATS_REQUEST:
7395c052
NZ
8137 return handle_group_stats_request(ofconn, oh);
8138
261bd854 8139 case OFPTYPE_GROUP_DESC_STATS_REQUEST:
7395c052
NZ
8140 return handle_group_desc_stats_request(ofconn, oh);
8141
261bd854 8142 case OFPTYPE_GROUP_FEATURES_STATS_REQUEST:
7395c052
NZ
8143 return handle_group_features_stats_request(ofconn, oh);
8144
7395c052 8145 case OFPTYPE_QUEUE_GET_CONFIG_REQUEST:
e8f9a7bb 8146 return handle_queue_get_config_request(ofconn, oh);
2e1ae200 8147
777af88d
AC
8148 case OFPTYPE_BUNDLE_CONTROL:
8149 return handle_bundle_control(ofconn, oh);
8150
8151 case OFPTYPE_BUNDLE_ADD_MESSAGE:
8152 return handle_bundle_add(ofconn, oh);
8153
4e548ad9
ML
8154 case OFPTYPE_NXT_TLV_TABLE_MOD:
8155 return handle_tlv_table_mod(ofconn, oh);
6159c531 8156
4e548ad9
ML
8157 case OFPTYPE_NXT_TLV_TABLE_REQUEST:
8158 return handle_tlv_table_request(ofconn, oh);
6159c531 8159
fb8f22c1
BY
8160 case OFPTYPE_IPFIX_BRIDGE_STATS_REQUEST:
8161 return handle_ipfix_bridge_stats_request(ofconn, oh);
8162
8163 case OFPTYPE_IPFIX_FLOW_STATS_REQUEST:
8164 return handle_ipfix_flow_stats_request(ofconn, oh);
8165
2a7c4805
JP
8166 case OFPTYPE_CT_FLUSH_ZONE:
8167 return handle_nxt_ct_flush_zone(ofconn, oh);
8168
982697a4
BP
8169 case OFPTYPE_HELLO:
8170 case OFPTYPE_ERROR:
8171 case OFPTYPE_FEATURES_REPLY:
8172 case OFPTYPE_GET_CONFIG_REPLY:
8173 case OFPTYPE_PACKET_IN:
8174 case OFPTYPE_FLOW_REMOVED:
8175 case OFPTYPE_PORT_STATUS:
8176 case OFPTYPE_BARRIER_REPLY:
c545d38d 8177 case OFPTYPE_QUEUE_GET_CONFIG_REPLY:
982697a4
BP
8178 case OFPTYPE_DESC_STATS_REPLY:
8179 case OFPTYPE_FLOW_STATS_REPLY:
8180 case OFPTYPE_QUEUE_STATS_REPLY:
8181 case OFPTYPE_PORT_STATS_REPLY:
8182 case OFPTYPE_TABLE_STATS_REPLY:
8183 case OFPTYPE_AGGREGATE_STATS_REPLY:
8184 case OFPTYPE_PORT_DESC_STATS_REPLY:
8185 case OFPTYPE_ROLE_REPLY:
8186 case OFPTYPE_FLOW_MONITOR_PAUSED:
8187 case OFPTYPE_FLOW_MONITOR_RESUMED:
8188 case OFPTYPE_FLOW_MONITOR_STATS_REPLY:
2e1ae200 8189 case OFPTYPE_GET_ASYNC_REPLY:
261bd854
BP
8190 case OFPTYPE_GROUP_STATS_REPLY:
8191 case OFPTYPE_GROUP_DESC_STATS_REPLY:
8192 case OFPTYPE_GROUP_FEATURES_STATS_REPLY:
8193 case OFPTYPE_METER_STATS_REPLY:
8194 case OFPTYPE_METER_CONFIG_STATS_REPLY:
8195 case OFPTYPE_METER_FEATURES_STATS_REPLY:
8196 case OFPTYPE_TABLE_FEATURES_STATS_REPLY:
03c72922 8197 case OFPTYPE_TABLE_DESC_REPLY:
252f3411 8198 case OFPTYPE_ROLE_STATUS:
3c35db62 8199 case OFPTYPE_REQUESTFORWARD:
6c6eedc5 8200 case OFPTYPE_TABLE_STATUS:
4e548ad9 8201 case OFPTYPE_NXT_TLV_TABLE_REPLY:
fb8f22c1
BY
8202 case OFPTYPE_IPFIX_BRIDGE_STATS_REPLY:
8203 case OFPTYPE_IPFIX_FLOW_STATS_REPLY:
064af421 8204 default:
76ec08e0
YT
8205 if (ofpmsg_is_stat_request(oh)) {
8206 return OFPERR_OFPBRC_BAD_STAT;
8207 } else {
8208 return OFPERR_OFPBRC_BAD_TYPE;
8209 }
064af421 8210 }
d1e2cf21 8211}
064af421 8212
b20f4073 8213static void
e03248b7 8214handle_openflow(struct ofconn *ofconn, const struct ofpbuf *ofp_msg)
15aaf599 8215 OVS_EXCLUDED(ofproto_mutex)
d1e2cf21 8216{
d51c8b71
JR
8217 enum ofperr error = handle_openflow__(ofconn, ofp_msg);
8218
b20f4073 8219 if (error) {
6fd6ed71 8220 ofconn_send_error(ofconn, ofp_msg->data, error);
064af421 8221 }
d1e2cf21 8222 COVERAGE_INC(ofproto_recv_openflow);
7ee20df1
BP
8223}
8224\f
064af421 8225static uint64_t
fa60c019 8226pick_datapath_id(const struct ofproto *ofproto)
064af421 8227{
fa60c019 8228 const struct ofport *port;
064af421 8229
abe529af 8230 port = ofproto_get_port(ofproto, OFPP_LOCAL);
fa60c019 8231 if (port) {
74ff3298 8232 struct eth_addr ea;
fa60c019
BP
8233 int error;
8234
74ff3298 8235 error = netdev_get_etheraddr(port->netdev, &ea);
064af421
BP
8236 if (!error) {
8237 return eth_addr_to_uint64(ea);
8238 }
fbfa2911
BP
8239 VLOG_WARN("%s: could not get MAC address for %s (%s)",
8240 ofproto->name, netdev_get_name(port->netdev),
10a89ef0 8241 ovs_strerror(error));
064af421 8242 }
fa60c019 8243 return ofproto->fallback_dpid;
064af421
BP
8244}
8245
8246static uint64_t
8247pick_fallback_dpid(void)
8248{
74ff3298
JR
8249 struct eth_addr ea;
8250 eth_addr_nicira_random(&ea);
064af421
BP
8251 return eth_addr_to_uint64(ea);
8252}
8253\f
254750ce
BP
8254/* Table overflow policy. */
8255
ad3efdcb
EJ
8256/* Chooses and updates 'rulep' with a rule to evict from 'table'. Sets 'rulep'
8257 * to NULL if the table is not configured to evict rules or if the table
8258 * contains no evictable rules. (Rules with a readlock on their evict rwlock,
8259 * or with no timeouts are not evictable.) */
8260static bool
8261choose_rule_to_evict(struct oftable *table, struct rule **rulep)
15aaf599 8262 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8263{
8264 struct eviction_group *evg;
8265
ad3efdcb 8266 *rulep = NULL;
82c22d34 8267 if (!table->eviction) {
ad3efdcb 8268 return false;
254750ce
BP
8269 }
8270
8271 /* In the common case, the outer and inner loops here will each be entered
8272 * exactly once:
8273 *
8274 * - The inner loop normally "return"s in its first iteration. If the
8275 * eviction group has any evictable rules, then it always returns in
8276 * some iteration.
8277 *
8278 * - The outer loop only iterates more than once if the largest eviction
8279 * group has no evictable rules.
8280 *
8281 * - The outer loop can exit only if table's 'max_flows' is all filled up
afe2143d 8282 * by unevictable rules. */
254750ce
BP
8283 HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
8284 struct rule *rule;
8285
8286 HEAP_FOR_EACH (rule, evg_node, &evg->rules) {
15aaf599
BP
8287 *rulep = rule;
8288 return true;
254750ce
BP
8289 }
8290 }
8291
ad3efdcb 8292 return false;
254750ce 8293}
254750ce
BP
8294\f
8295/* Eviction groups. */
8296
8297/* Returns the priority to use for an eviction_group that contains 'n_rules'
8298 * rules. The priority contains low-order random bits to ensure that eviction
8299 * groups with the same number of rules are prioritized randomly. */
8300static uint32_t
8301eviction_group_priority(size_t n_rules)
8302{
8303 uint16_t size = MIN(UINT16_MAX, n_rules);
8304 return (size << 16) | random_uint16();
8305}
8306
8307/* Updates 'evg', an eviction_group within 'table', following a change that
8308 * adds or removes rules in 'evg'. */
8309static void
8310eviction_group_resized(struct oftable *table, struct eviction_group *evg)
15aaf599 8311 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8312{
8313 heap_change(&table->eviction_groups_by_size, &evg->size_node,
8314 eviction_group_priority(heap_count(&evg->rules)));
8315}
8316
8317/* Destroys 'evg', an eviction_group within 'table':
8318 *
8319 * - Removes all the rules, if any, from 'evg'. (It doesn't destroy the
8320 * rules themselves, just removes them from the eviction group.)
8321 *
8322 * - Removes 'evg' from 'table'.
8323 *
8324 * - Frees 'evg'. */
8325static void
8326eviction_group_destroy(struct oftable *table, struct eviction_group *evg)
15aaf599 8327 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8328{
8329 while (!heap_is_empty(&evg->rules)) {
8330 struct rule *rule;
8331
8332 rule = CONTAINER_OF(heap_pop(&evg->rules), struct rule, evg_node);
8333 rule->eviction_group = NULL;
8334 }
8335 hmap_remove(&table->eviction_groups_by_id, &evg->id_node);
8336 heap_remove(&table->eviction_groups_by_size, &evg->size_node);
8337 heap_destroy(&evg->rules);
8338 free(evg);
8339}
8340
8341/* Removes 'rule' from its eviction group, if any. */
8342static void
8343eviction_group_remove_rule(struct rule *rule)
15aaf599 8344 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8345{
8346 if (rule->eviction_group) {
8347 struct oftable *table = &rule->ofproto->tables[rule->table_id];
8348 struct eviction_group *evg = rule->eviction_group;
8349
8350 rule->eviction_group = NULL;
8351 heap_remove(&evg->rules, &rule->evg_node);
8352 if (heap_is_empty(&evg->rules)) {
8353 eviction_group_destroy(table, evg);
8354 } else {
8355 eviction_group_resized(table, evg);
8356 }
8357 }
8358}
8359
8360/* Hashes the 'rule''s values for the eviction_fields of 'rule''s table, and
8361 * returns the hash value. */
8362static uint32_t
8363eviction_group_hash_rule(struct rule *rule)
15aaf599 8364 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8365{
8366 struct oftable *table = &rule->ofproto->tables[rule->table_id];
8367 const struct mf_subfield *sf;
5cb7a798 8368 struct flow flow;
254750ce
BP
8369 uint32_t hash;
8370
8371 hash = table->eviction_group_id_basis;
8fd47924 8372 miniflow_expand(rule->cr.match.flow, &flow);
254750ce
BP
8373 for (sf = table->eviction_fields;
8374 sf < &table->eviction_fields[table->n_eviction_fields];
8375 sf++)
8376 {
aff49b8c 8377 if (mf_are_prereqs_ok(sf->field, &flow, NULL)) {
254750ce
BP
8378 union mf_value value;
8379
5cb7a798 8380 mf_get_value(sf->field, &flow, &value);
254750ce
BP
8381 if (sf->ofs) {
8382 bitwise_zero(&value, sf->field->n_bytes, 0, sf->ofs);
8383 }
8384 if (sf->ofs + sf->n_bits < sf->field->n_bytes * 8) {
8385 unsigned int start = sf->ofs + sf->n_bits;
8386 bitwise_zero(&value, sf->field->n_bytes, start,
8387 sf->field->n_bytes * 8 - start);
8388 }
8389 hash = hash_bytes(&value, sf->field->n_bytes, hash);
8390 } else {
8391 hash = hash_int(hash, 0);
8392 }
8393 }
8394
8395 return hash;
8396}
8397
8398/* Returns an eviction group within 'table' with the given 'id', creating one
8399 * if necessary. */
8400static struct eviction_group *
8401eviction_group_find(struct oftable *table, uint32_t id)
15aaf599 8402 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8403{
8404 struct eviction_group *evg;
8405
8406 HMAP_FOR_EACH_WITH_HASH (evg, id_node, id, &table->eviction_groups_by_id) {
8407 return evg;
8408 }
8409
8410 evg = xmalloc(sizeof *evg);
8411 hmap_insert(&table->eviction_groups_by_id, &evg->id_node, id);
8412 heap_insert(&table->eviction_groups_by_size, &evg->size_node,
8413 eviction_group_priority(0));
8414 heap_init(&evg->rules);
8415
8416 return evg;
8417}
8418
8419/* Returns an eviction priority for 'rule'. The return value should be
f70b94de
BP
8420 * interpreted so that higher priorities make a rule a more attractive
8421 * candidate for eviction. */
8422static uint64_t
dc437090 8423rule_eviction_priority(struct ofproto *ofproto, struct rule *rule)
15aaf599 8424 OVS_REQUIRES(ofproto_mutex)
254750ce 8425{
f70b94de
BP
8426 /* Calculate absolute time when this flow will expire. If it will never
8427 * expire, then return 0 to make it unevictable. */
dc437090 8428 long long int expiration = LLONG_MAX;
dc437090 8429 if (rule->hard_timeout) {
f70b94de
BP
8430 /* 'modified' needs protection even when we hold 'ofproto_mutex'. */
8431 ovs_mutex_lock(&rule->mutex);
8432 long long int modified = rule->modified;
8433 ovs_mutex_unlock(&rule->mutex);
8434
dc437090
JR
8435 expiration = modified + rule->hard_timeout * 1000;
8436 }
8437 if (rule->idle_timeout) {
8438 uint64_t packets, bytes;
8439 long long int used;
8440 long long int idle_expiration;
8441
8442 ofproto->ofproto_class->rule_get_stats(rule, &packets, &bytes, &used);
8443 idle_expiration = used + rule->idle_timeout * 1000;
8444 expiration = MIN(expiration, idle_expiration);
8445 }
254750ce
BP
8446 if (expiration == LLONG_MAX) {
8447 return 0;
8448 }
8449
8450 /* Calculate the time of expiration as a number of (approximate) seconds
8451 * after program startup.
8452 *
8453 * This should work OK for program runs that last UINT32_MAX seconds or
8454 * less. Therefore, please restart OVS at least once every 136 years. */
f70b94de 8455 uint32_t expiration_ofs = (expiration >> 10) - (time_boot_msec() >> 10);
254750ce 8456
f70b94de
BP
8457 /* Combine expiration time with OpenFlow "importance" to form a single
8458 * priority value. We want flows with relatively low "importance" to be
8459 * evicted before even considering expiration time, so put "importance" in
8460 * the most significant bits and expiration time in the least significant
8461 * bits.
8462 *
8463 * Small 'priority' should be evicted before those with large 'priority'.
8464 * The caller expects the opposite convention (a large return value being
8465 * more attractive for eviction) so we invert it before returning. */
8466 uint64_t priority = ((uint64_t) rule->importance << 32) + expiration_ofs;
8467 return UINT64_MAX - priority;
254750ce
BP
8468}
8469
8470/* Adds 'rule' to an appropriate eviction group for its oftable's
8471 * configuration. Does nothing if 'rule''s oftable doesn't have eviction
8472 * enabled, or if 'rule' is a permanent rule (one that will never expire on its
8473 * own).
8474 *
8475 * The caller must ensure that 'rule' is not already in an eviction group. */
8476static void
8477eviction_group_add_rule(struct rule *rule)
15aaf599 8478 OVS_REQUIRES(ofproto_mutex)
254750ce
BP
8479{
8480 struct ofproto *ofproto = rule->ofproto;
8481 struct oftable *table = &ofproto->tables[rule->table_id];
a3779dbc 8482 bool has_timeout;
254750ce 8483
dc437090
JR
8484 /* Timeouts may be modified only when holding 'ofproto_mutex'. We have it
8485 * so no additional protection is needed. */
a3779dbc 8486 has_timeout = rule->hard_timeout || rule->idle_timeout;
a3779dbc 8487
82c22d34 8488 if (table->eviction && has_timeout) {
254750ce
BP
8489 struct eviction_group *evg;
8490
8491 evg = eviction_group_find(table, eviction_group_hash_rule(rule));
8492
8493 rule->eviction_group = evg;
8494 heap_insert(&evg->rules, &rule->evg_node,
dc437090 8495 rule_eviction_priority(ofproto, rule));
254750ce
BP
8496 eviction_group_resized(table, evg);
8497 }
8498}
8499\f
d0918789
BP
8500/* oftables. */
8501
8502/* Initializes 'table'. */
8503static void
8504oftable_init(struct oftable *table)
8505{
5c67e4af 8506 memset(table, 0, sizeof *table);
d70e8c28 8507 classifier_init(&table->cls, flow_segment_u64s);
ec1c5c7e 8508 table->max_flows = UINT_MAX;
d79e3d70 8509 table->n_flows = 0;
82c22d34
BP
8510 hmap_init(&table->eviction_groups_by_id);
8511 heap_init(&table->eviction_groups_by_size);
3c1bb396 8512 atomic_init(&table->miss_config, OFPUTIL_TABLE_MISS_DEFAULT);
f017d986 8513
f017d986
JR
8514 classifier_set_prefix_fields(&table->cls, default_prefix_fields,
8515 ARRAY_SIZE(default_prefix_fields));
d611866c
SH
8516
8517 atomic_init(&table->n_matched, 0);
8518 atomic_init(&table->n_missed, 0);
d0918789
BP
8519}
8520
254750ce 8521/* Destroys 'table', including its classifier and eviction groups.
d0918789
BP
8522 *
8523 * The caller is responsible for freeing 'table' itself. */
8524static void
8525oftable_destroy(struct oftable *table)
8526{
cb22974d 8527 ovs_assert(classifier_is_empty(&table->cls));
82c22d34 8528
7394b8fb 8529 ovs_mutex_lock(&ofproto_mutex);
82c22d34 8530 oftable_configure_eviction(table, 0, NULL, 0);
7394b8fb 8531 ovs_mutex_unlock(&ofproto_mutex);
82c22d34
BP
8532
8533 hmap_destroy(&table->eviction_groups_by_id);
8534 heap_destroy(&table->eviction_groups_by_size);
d0918789 8535 classifier_destroy(&table->cls);
254750ce
BP
8536 free(table->name);
8537}
8538
8539/* Changes the name of 'table' to 'name'. If 'name' is NULL or the empty
8540 * string, then 'table' will use its default name.
8541 *
8542 * This only affects the name exposed for a table exposed through the OpenFlow
8543 * OFPST_TABLE (as printed by "ovs-ofctl dump-tables"). */
8544static void
8545oftable_set_name(struct oftable *table, const char *name)
8546{
8547 if (name && name[0]) {
8548 int len = strnlen(name, OFP_MAX_TABLE_NAME_LEN);
8549 if (!table->name || strncmp(name, table->name, len)) {
8550 free(table->name);
8551 table->name = xmemdup0(name, len);
8552 }
8553 } else {
8554 free(table->name);
8555 table->name = NULL;
8556 }
8557}
8558
254750ce
BP
8559/* oftables support a choice of two policies when adding a rule would cause the
8560 * number of flows in the table to exceed the configured maximum number: either
8561 * they can refuse to add the new flow or they can evict some existing flow.
8562 * This function configures the latter policy on 'table', with fairness based
8563 * on the values of the 'n_fields' fields specified in 'fields'. (Specifying
8564 * 'n_fields' as 0 disables fairness.) */
8565static void
82c22d34
BP
8566oftable_configure_eviction(struct oftable *table, unsigned int eviction,
8567 const struct mf_subfield *fields, size_t n_fields)
15aaf599 8568 OVS_REQUIRES(ofproto_mutex)
254750ce 8569{
254750ce
BP
8570 struct rule *rule;
8571
82c22d34 8572 if ((table->eviction != 0) == (eviction != 0)
254750ce
BP
8573 && n_fields == table->n_eviction_fields
8574 && (!n_fields
8575 || !memcmp(fields, table->eviction_fields,
8576 n_fields * sizeof *fields))) {
82c22d34
BP
8577 /* The set of eviction fields did not change. If 'eviction' changed,
8578 * it remains nonzero, so that we can just update table->eviction
8579 * without fussing with the eviction groups. */
8580 table->eviction = eviction;
254750ce
BP
8581 return;
8582 }
8583
82c22d34
BP
8584 /* Destroy existing eviction groups, then destroy and recreate data
8585 * structures to recover memory. */
8586 struct eviction_group *evg, *next;
8587 HMAP_FOR_EACH_SAFE (evg, next, id_node, &table->eviction_groups_by_id) {
8588 eviction_group_destroy(table, evg);
8589 }
8590 hmap_destroy(&table->eviction_groups_by_id);
254750ce 8591 hmap_init(&table->eviction_groups_by_id);
82c22d34 8592 heap_destroy(&table->eviction_groups_by_size);
254750ce
BP
8593 heap_init(&table->eviction_groups_by_size);
8594
82c22d34
BP
8595 /* Replace eviction groups by the new ones, if there is a change. Free the
8596 * old fields only after allocating the new ones, because 'fields ==
8597 * table->eviction_fields' is possible. */
8598 struct mf_subfield *old_fields = table->eviction_fields;
8599 table->n_eviction_fields = n_fields;
8600 table->eviction_fields = (fields
8601 ? xmemdup(fields, n_fields * sizeof *fields)
8602 : NULL);
8603 free(old_fields);
8604
8605 /* Add the new eviction groups, if enabled. */
8606 table->eviction = eviction;
8607 if (table->eviction) {
8608 table->eviction_group_id_basis = random_uint32();
8609 CLS_FOR_EACH (rule, cr, &table->cls) {
8610 eviction_group_add_rule(rule);
8611 }
254750ce 8612 }
d0918789
BP
8613}
8614
bc5e6a91
JR
8615/* Inserts 'rule' from the ofproto data structures BEFORE caller has inserted
8616 * it to the classifier. */
8617static void
8618ofproto_rule_insert__(struct ofproto *ofproto, struct rule *rule)
8619 OVS_REQUIRES(ofproto_mutex)
8620{
8621 const struct rule_actions *actions = rule_get_actions(rule);
8622
30d0452c
JR
8623 /* A rule may not be reinserted. */
8624 ovs_assert(rule->state == RULE_INITIALIZED);
39c94593 8625
bc5e6a91 8626 if (rule->hard_timeout || rule->idle_timeout) {
417e7e66 8627 ovs_list_insert(&ofproto->expirable, &rule->expirable);
bc5e6a91
JR
8628 }
8629 cookies_insert(ofproto, rule);
8630 eviction_group_add_rule(rule);
8631 if (actions->has_meter) {
8632 meter_insert_rule(rule);
8633 }
cc099268
JR
8634 if (actions->has_groups) {
8635 const struct ofpact_group *a;
8636 OFPACT_FOR_EACH_TYPE_FLATTENED (a, GROUP, actions->ofpacts,
8637 actions->ofpacts_len) {
8638 struct ofgroup *group;
8639
5d08a275
JR
8640 group = ofproto_group_lookup(ofproto, a->group_id, OVS_VERSION_MAX,
8641 false);
cc099268
JR
8642 ovs_assert(group != NULL);
8643 group_add_rule(group, rule);
8644 }
8645 }
8646
30d0452c 8647 rule->state = RULE_INSERTED;
bc5e6a91
JR
8648}
8649
6787a49f
JR
8650/* Removes 'rule' from the ofproto data structures. Caller may have deferred
8651 * the removal from the classifier. */
d0918789 8652static void
802f84ff 8653ofproto_rule_remove__(struct ofproto *ofproto, struct rule *rule)
15aaf599 8654 OVS_REQUIRES(ofproto_mutex)
d0918789 8655{
30d0452c 8656 ovs_assert(rule->state == RULE_INSERTED);
39c94593 8657
98eaac36 8658 cookies_remove(ofproto, rule);
2c916028 8659
254750ce 8660 eviction_group_remove_rule(rule);
417e7e66
BW
8661 if (!ovs_list_is_empty(&rule->expirable)) {
8662 ovs_list_remove(&rule->expirable);
e503cc19 8663 }
417e7e66
BW
8664 if (!ovs_list_is_empty(&rule->meter_list_node)) {
8665 ovs_list_remove(&rule->meter_list_node);
8666 ovs_list_init(&rule->meter_list_node);
9cae45dc 8667 }
802f84ff 8668
cc099268
JR
8669 /* Remove the rule from any groups, except from the group that is being
8670 * deleted, if any. */
8671 const struct rule_actions *actions = rule_get_actions(rule);
8672
8673 if (actions->has_groups) {
8674 const struct ofpact_group *a;
8675
8483173b 8676 OFPACT_FOR_EACH_TYPE_FLATTENED(a, GROUP, actions->ofpacts,
cc099268
JR
8677 actions->ofpacts_len) {
8678 struct ofgroup *group;
8679
5d08a275
JR
8680 group = ofproto_group_lookup(ofproto, a->group_id, OVS_VERSION_MAX,
8681 false);
cc099268
JR
8682 ovs_assert(group);
8683
8684 /* Leave the rule for the group that is being deleted, if any,
8685 * as we still need the list of rules for clean-up. */
8686 if (!group->being_deleted) {
8687 group_remove_rule(group, rule);
8688 }
8689 }
8690 }
8691
30d0452c 8692 rule->state = RULE_REMOVED;
0b4f2078 8693}
d0918789 8694\f
abe529af 8695/* unixctl commands. */
7aa697dd 8696
abe529af 8697struct ofproto *
2ac6bedd 8698ofproto_lookup(const char *name)
7aa697dd 8699{
2ac6bedd 8700 struct ofproto *ofproto;
7aa697dd 8701
2ac6bedd
BP
8702 HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
8703 &all_ofprotos) {
8704 if (!strcmp(ofproto->name, name)) {
8705 return ofproto;
8706 }
7aa697dd 8707 }
2ac6bedd 8708 return NULL;
7aa697dd
BP
8709}
8710
8711static void
0e15264f
BP
8712ofproto_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED,
8713 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7aa697dd 8714{
7aa697dd 8715 struct ofproto *ofproto;
7aa697dd 8716 struct ds results;
7aa697dd 8717
7aa697dd 8718 ds_init(&results);
2ac6bedd
BP
8719 HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
8720 ds_put_format(&results, "%s\n", ofproto->name);
7aa697dd 8721 }
bde9f75d 8722 unixctl_command_reply(conn, ds_cstr(&results));
7aa697dd 8723 ds_destroy(&results);
7aa697dd
BP
8724}
8725
8726static void
8727ofproto_unixctl_init(void)
8728{
8729 static bool registered;
8730 if (registered) {
8731 return;
8732 }
8733 registered = true;
8734
0e15264f
BP
8735 unixctl_command_register("ofproto/list", "", 0, 0,
8736 ofproto_unixctl_list, NULL);
064af421 8737}
f0fb825a
EG
8738
8739void
8740ofproto_set_vlan_limit(int vlan_limit)
8741{
8742 flow_limit_vlans(vlan_limit);
8743}