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