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