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