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