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