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