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