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