]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/ofproto.c
netdev: Decouple creating and configuring network devices.
[mirror_ovs.git] / ofproto / ofproto.c
CommitLineData
064af421 1/*
db5ce514 2 * Copyright (c) 2009, 2010, 2011 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>
10a24935 24#include "byte-order.h"
064af421 25#include "classifier.h"
19a87e36 26#include "connmgr.h"
064af421 27#include "coverage.h"
4f2cad2c 28#include "dynamic-string.h"
ca0f572c
BP
29#include "hash.h"
30#include "hmap.h"
064af421 31#include "netdev.h"
09246b99 32#include "nx-match.h"
064af421 33#include "ofp-print.h"
fa37b408 34#include "ofp-util.h"
064af421 35#include "ofpbuf.h"
5bee6e26 36#include "ofproto-provider.h"
064af421
BP
37#include "openflow/nicira-ext.h"
38#include "openflow/openflow.h"
064af421
BP
39#include "packets.h"
40#include "pinsched.h"
41#include "pktbuf.h"
42#include "poll-loop.h"
064af421 43#include "shash.h"
b3c01ed3 44#include "sset.h"
064af421 45#include "timeval.h"
c4617b3c 46#include "unaligned.h"
4f2cad2c 47#include "unixctl.h"
5136ce49 48#include "vlog.h"
064af421 49
d98e6007 50VLOG_DEFINE_THIS_MODULE(ofproto);
064af421 51
d76f09ea 52COVERAGE_DEFINE(ofproto_error);
d76f09ea 53COVERAGE_DEFINE(ofproto_flush);
d76f09ea 54COVERAGE_DEFINE(ofproto_no_packet_in);
d76f09ea
BP
55COVERAGE_DEFINE(ofproto_packet_out);
56COVERAGE_DEFINE(ofproto_queue_req);
57COVERAGE_DEFINE(ofproto_recv_openflow);
58COVERAGE_DEFINE(ofproto_reinit_ports);
d76f09ea
BP
59COVERAGE_DEFINE(ofproto_uninstallable);
60COVERAGE_DEFINE(ofproto_update_port);
61
7ee20df1
BP
62enum ofproto_state {
63 S_OPENFLOW, /* Processing OpenFlow commands. */
64 S_FLUSH, /* Deleting all flow table rules. */
65};
66
67enum ofoperation_type {
68 OFOPERATION_ADD,
69 OFOPERATION_DELETE,
70 OFOPERATION_MODIFY
71};
72
73/* A single OpenFlow request can execute any number of operations. The
74 * ofopgroup maintain OpenFlow state common to all of the operations, e.g. the
75 * ofconn to which an error reply should be sent if necessary.
76 *
77 * ofproto initiates some operations internally. These operations are still
78 * assigned to groups but will not have an associated ofconn. */
79struct ofopgroup {
80 struct ofproto *ofproto; /* Owning ofproto. */
81 struct list ofproto_node; /* In ofproto's "pending" list. */
82 struct list ops; /* List of "struct ofoperation"s. */
83
84 /* Data needed to send OpenFlow reply on failure or to send a buffered
85 * packet on success.
86 *
87 * If list_is_empty(ofconn_node) then this ofopgroup never had an
88 * associated ofconn or its ofconn's connection dropped after it initiated
89 * the operation. In the latter case 'ofconn' is a wild pointer that
90 * refers to freed memory, so the 'ofconn' member must be used only if
91 * !list_is_empty(ofconn_node).
92 */
93 struct list ofconn_node; /* In ofconn's list of pending opgroups. */
94 struct ofconn *ofconn; /* ofconn for reply (but see note above). */
95 struct ofp_header *request; /* Original request (truncated at 64 bytes). */
96 uint32_t buffer_id; /* Buffer id from original request. */
97 int error; /* 0 if no error yet, otherwise error code. */
98};
99
100static struct ofopgroup *ofopgroup_create(struct ofproto *);
101static struct ofopgroup *ofopgroup_create_for_ofconn(struct ofconn *,
102 const struct ofp_header *,
103 uint32_t buffer_id);
104static void ofopgroup_submit(struct ofopgroup *);
105static void ofopgroup_destroy(struct ofopgroup *);
106
107/* A single flow table operation. */
108struct ofoperation {
109 struct ofopgroup *group; /* Owning group. */
110 struct list group_node; /* In ofopgroup's "ops" list. */
111 struct hmap_node hmap_node; /* In ofproto's "deletions" hmap. */
112 struct rule *rule; /* Rule being operated upon. */
113 enum ofoperation_type type; /* Type of operation. */
114 int status; /* -1 if pending, otherwise 0 or error code. */
115 struct rule *victim; /* OFOPERATION_ADDING: Replaced rule. */
116 union ofp_action *actions; /* OFOPERATION_MODIFYING: Replaced actions. */
117 int n_actions; /* OFOPERATION_MODIFYING: # of old actions. */
118 ovs_be64 flow_cookie; /* Rule's old flow cookie. */
119};
120
121static void ofoperation_create(struct ofopgroup *, struct rule *,
122 enum ofoperation_type);
123static void ofoperation_destroy(struct ofoperation *);
124
abe529af
BP
125static void ofport_destroy__(struct ofport *);
126static void ofport_destroy(struct ofport *);
878ae780 127
abe529af
BP
128static uint64_t pick_datapath_id(const struct ofproto *);
129static uint64_t pick_fallback_dpid(void);
064af421 130
abe529af 131static void ofproto_destroy__(struct ofproto *);
064af421 132
abe529af
BP
133static void ofproto_rule_destroy__(struct rule *);
134static void ofproto_rule_send_removed(struct rule *, uint8_t reason);
f29152ca 135
7ee20df1
BP
136static void ofopgroup_destroy(struct ofopgroup *);
137
138static int add_flow(struct ofproto *, struct ofconn *, struct flow_mod *,
139 const struct ofp_header *);
140
141/* This return value tells handle_openflow() that processing of the current
142 * OpenFlow message must be postponed until some ongoing operations have
143 * completed.
144 *
145 * This particular value is a good choice because it is negative (so it won't
146 * collide with any errno value or any value returned by ofp_mkerr()) and large
147 * (so it won't accidentally collide with EOF or a negative errno value). */
148enum { OFPROTO_POSTPONE = -100000 };
149
150static bool handle_openflow(struct ofconn *, struct ofpbuf *);
f29152ca 151
abe529af
BP
152static void update_port(struct ofproto *, const char *devname);
153static int init_ports(struct ofproto *);
154static void reinit_ports(struct ofproto *);
f29152ca 155
abe529af 156static void ofproto_unixctl_init(void);
f29152ca 157
abe529af
BP
158/* All registered ofproto classes, in probe order. */
159static const struct ofproto_class **ofproto_classes;
160static size_t n_ofproto_classes;
161static size_t allocated_ofproto_classes;
7aa697dd 162
f797957a 163/* Map from datapath name to struct ofproto, for use by unixctl commands. */
abe529af 164static struct hmap all_ofprotos = HMAP_INITIALIZER(&all_ofprotos);
ebe482fd 165
abe529af 166static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
f29152ca 167
abe529af
BP
168static void
169ofproto_initialize(void)
170{
171 static bool inited;
f29152ca 172
abe529af
BP
173 if (!inited) {
174 inited = true;
175 ofproto_class_register(&ofproto_dpif_class);
176 }
177}
f29152ca 178
abe529af
BP
179/* 'type' should be a normalized datapath type, as returned by
180 * ofproto_normalize_type(). Returns the corresponding ofproto_class
181 * structure, or a null pointer if there is none registered for 'type'. */
182static const struct ofproto_class *
183ofproto_class_find__(const char *type)
184{
185 size_t i;
f29152ca 186
abe529af
BP
187 ofproto_initialize();
188 for (i = 0; i < n_ofproto_classes; i++) {
189 const struct ofproto_class *class = ofproto_classes[i];
190 struct sset types;
191 bool found;
064af421 192
abe529af
BP
193 sset_init(&types);
194 class->enumerate_types(&types);
195 found = sset_contains(&types, type);
196 sset_destroy(&types);
bcf84111 197
abe529af
BP
198 if (found) {
199 return class;
200 }
201 }
202 VLOG_WARN("unknown datapath type %s", type);
203 return NULL;
204}
064af421 205
abe529af
BP
206/* Registers a new ofproto class. After successful registration, new ofprotos
207 * of that type can be created using ofproto_create(). */
208int
209ofproto_class_register(const struct ofproto_class *new_class)
210{
211 size_t i;
7aa697dd 212
abe529af
BP
213 for (i = 0; i < n_ofproto_classes; i++) {
214 if (ofproto_classes[i] == new_class) {
215 return EEXIST;
216 }
217 }
064af421 218
abe529af
BP
219 if (n_ofproto_classes >= allocated_ofproto_classes) {
220 ofproto_classes = x2nrealloc(ofproto_classes,
221 &allocated_ofproto_classes,
222 sizeof *ofproto_classes);
223 }
224 ofproto_classes[n_ofproto_classes++] = new_class;
225 return 0;
226}
064af421 227
abe529af
BP
228/* Unregisters a datapath provider. 'type' must have been previously
229 * registered and not currently be in use by any ofprotos. After
230 * unregistration new datapaths of that type cannot be opened using
231 * ofproto_create(). */
232int
233ofproto_class_unregister(const struct ofproto_class *class)
234{
235 size_t i;
76ce9432 236
abe529af
BP
237 for (i = 0; i < n_ofproto_classes; i++) {
238 if (ofproto_classes[i] == class) {
239 for (i++; i < n_ofproto_classes; i++) {
240 ofproto_classes[i - 1] = ofproto_classes[i];
241 }
242 n_ofproto_classes--;
243 return 0;
244 }
245 }
246 VLOG_WARN("attempted to unregister an ofproto class that is not "
247 "registered");
248 return EAFNOSUPPORT;
249}
4a4cdb3b 250
f79e673f
BP
251/* Clears 'types' and enumerates all registered ofproto types into it. The
252 * caller must first initialize the sset. */
253void
254ofproto_enumerate_types(struct sset *types)
255{
abe529af 256 size_t i;
064af421 257
abe529af
BP
258 ofproto_initialize();
259 for (i = 0; i < n_ofproto_classes; i++) {
260 ofproto_classes[i]->enumerate_types(types);
261 }
f79e673f 262}
064af421 263
f79e673f
BP
264/* Returns the fully spelled out name for the given ofproto 'type'.
265 *
266 * Normalized type string can be compared with strcmp(). Unnormalized type
267 * string might be the same even if they have different spellings. */
268const char *
269ofproto_normalize_type(const char *type)
270{
abe529af 271 return type && type[0] ? type : "system";
f79e673f 272}
064af421 273
f79e673f
BP
274/* Clears 'names' and enumerates the names of all known created ofprotos with
275 * the given 'type'. The caller must first initialize the sset. Returns 0 if
276 * successful, otherwise a positive errno value.
277 *
278 * Some kinds of datapaths might not be practically enumerable. This is not
279 * considered an error. */
280int
281ofproto_enumerate_names(const char *type, struct sset *names)
282{
abe529af
BP
283 const struct ofproto_class *class = ofproto_class_find__(type);
284 return class ? class->enumerate_names(type, names) : EAFNOSUPPORT;
285 }
7aa697dd 286
064af421 287int
abe529af 288ofproto_create(const char *datapath_name, const char *datapath_type,
064af421
BP
289 struct ofproto **ofprotop)
290{
abe529af
BP
291 const struct ofproto_class *class;
292 struct ofproto *ofproto;
064af421
BP
293 int error;
294
295 *ofprotop = NULL;
296
abe529af 297 ofproto_initialize();
7aa697dd
BP
298 ofproto_unixctl_init();
299
abe529af
BP
300 datapath_type = ofproto_normalize_type(datapath_type);
301 class = ofproto_class_find__(datapath_type);
302 if (!class) {
303 VLOG_WARN("could not create datapath %s of unknown type %s",
304 datapath_name, datapath_type);
305 return EAFNOSUPPORT;
064af421
BP
306 }
307
abe529af
BP
308 ofproto = class->alloc();
309 if (!ofproto) {
310 VLOG_ERR("failed to allocate datapath %s of type %s",
311 datapath_name, datapath_type);
312 return ENOMEM;
313 }
314
315 /* Initialize. */
316 memset(ofproto, 0, sizeof *ofproto);
317 ofproto->ofproto_class = class;
318 ofproto->name = xstrdup(datapath_name);
319 ofproto->type = xstrdup(datapath_type);
320 hmap_insert(&all_ofprotos, &ofproto->hmap_node,
321 hash_string(ofproto->name, 0));
322 ofproto->datapath_id = 0;
084f5290
SH
323 ofproto_set_flow_eviction_threshold(ofproto,
324 OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT);
abe529af
BP
325 ofproto->fallback_dpid = pick_fallback_dpid();
326 ofproto->mfr_desc = xstrdup(DEFAULT_MFR_DESC);
327 ofproto->hw_desc = xstrdup(DEFAULT_HW_DESC);
328 ofproto->sw_desc = xstrdup(DEFAULT_SW_DESC);
329 ofproto->serial_desc = xstrdup(DEFAULT_SERIAL_DESC);
330 ofproto->dp_desc = xstrdup(DEFAULT_DP_DESC);
abe529af
BP
331 hmap_init(&ofproto->ports);
332 shash_init(&ofproto->port_by_name);
6c1491fb
BP
333 ofproto->tables = NULL;
334 ofproto->n_tables = 0;
abe529af 335 ofproto->connmgr = connmgr_create(ofproto, datapath_name, datapath_name);
7ee20df1
BP
336 ofproto->state = S_OPENFLOW;
337 list_init(&ofproto->pending);
338 hmap_init(&ofproto->deletions);
abe529af
BP
339
340 error = ofproto->ofproto_class->construct(ofproto);
19a87e36 341 if (error) {
abe529af
BP
342 VLOG_ERR("failed to open datapath %s: %s",
343 datapath_name, strerror(error));
344 ofproto_destroy__(ofproto);
19a87e36
BP
345 return error;
346 }
6c1491fb 347 assert(ofproto->n_tables > 0);
19a87e36 348
abe529af
BP
349 ofproto->datapath_id = pick_datapath_id(ofproto);
350 VLOG_INFO("using datapath ID %016"PRIx64, ofproto->datapath_id);
351 init_ports(ofproto);
7aa697dd 352
abe529af 353 *ofprotop = ofproto;
064af421
BP
354 return 0;
355}
356
357void
358ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
359{
360 uint64_t old_dpid = p->datapath_id;
fa60c019 361 p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
064af421 362 if (p->datapath_id != old_dpid) {
b123cc3c 363 VLOG_INFO("datapath ID changed to %016"PRIx64, p->datapath_id);
76ce9432
BP
364
365 /* Force all active connections to reconnect, since there is no way to
366 * notify a controller that the datapath ID has changed. */
fa05809b 367 ofproto_reconnect_controllers(p);
064af421
BP
368 }
369}
370
76ce9432
BP
371void
372ofproto_set_controllers(struct ofproto *p,
373 const struct ofproto_controller *controllers,
374 size_t n_controllers)
375{
19a87e36 376 connmgr_set_controllers(p->connmgr, controllers, n_controllers);
064af421
BP
377}
378
31681a5d
JP
379void
380ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
381{
19a87e36 382 connmgr_set_fail_mode(p->connmgr, fail_mode);
31681a5d
JP
383}
384
fa05809b
BP
385/* Drops the connections between 'ofproto' and all of its controllers, forcing
386 * them to reconnect. */
387void
388ofproto_reconnect_controllers(struct ofproto *ofproto)
389{
19a87e36 390 connmgr_reconnect(ofproto->connmgr);
917e50e1
BP
391}
392
393/* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
394 * in-band control should guarantee access, in the same way that in-band
395 * control guarantees access to OpenFlow controllers. */
396void
397ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
398 const struct sockaddr_in *extras, size_t n)
399{
19a87e36 400 connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
917e50e1
BP
401}
402
b1da6250
BP
403/* Sets the OpenFlow queue used by flows set up by in-band control on
404 * 'ofproto' to 'queue_id'. If 'queue_id' is negative, then in-band control
405 * flows will use the default queue. */
406void
407ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
408{
19a87e36 409 connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
b1da6250
BP
410}
411
084f5290
SH
412/* Sets the number of flows at which eviction from the kernel flow table
413 * will occur. */
414void
415ofproto_set_flow_eviction_threshold(struct ofproto *ofproto, unsigned threshold)
416{
417 if (threshold < OFPROTO_FLOW_EVICTION_THRESHOLD_MIN) {
418 ofproto->flow_eviction_threshold = OFPROTO_FLOW_EVICTION_THRESHOLD_MIN;
419 } else {
420 ofproto->flow_eviction_threshold = threshold;
421 }
422}
423
064af421
BP
424void
425ofproto_set_desc(struct ofproto *p,
5a719c38
JP
426 const char *mfr_desc, const char *hw_desc,
427 const char *sw_desc, const char *serial_desc,
8abc4ed7 428 const char *dp_desc)
064af421 429{
5a719c38
JP
430 struct ofp_desc_stats *ods;
431
432 if (mfr_desc) {
433 if (strlen(mfr_desc) >= sizeof ods->mfr_desc) {
434 VLOG_WARN("truncating mfr_desc, must be less than %zu characters",
435 sizeof ods->mfr_desc);
436 }
437 free(p->mfr_desc);
438 p->mfr_desc = xstrdup(mfr_desc);
064af421 439 }
5a719c38
JP
440 if (hw_desc) {
441 if (strlen(hw_desc) >= sizeof ods->hw_desc) {
442 VLOG_WARN("truncating hw_desc, must be less than %zu characters",
443 sizeof ods->hw_desc);
444 }
445 free(p->hw_desc);
446 p->hw_desc = xstrdup(hw_desc);
064af421 447 }
5a719c38
JP
448 if (sw_desc) {
449 if (strlen(sw_desc) >= sizeof ods->sw_desc) {
450 VLOG_WARN("truncating sw_desc, must be less than %zu characters",
451 sizeof ods->sw_desc);
452 }
453 free(p->sw_desc);
454 p->sw_desc = xstrdup(sw_desc);
455 }
456 if (serial_desc) {
457 if (strlen(serial_desc) >= sizeof ods->serial_num) {
458 VLOG_WARN("truncating serial_desc, must be less than %zu "
459 "characters",
460 sizeof ods->serial_num);
461 }
462 free(p->serial_desc);
463 p->serial_desc = xstrdup(serial_desc);
064af421 464 }
8abc4ed7 465 if (dp_desc) {
5a719c38
JP
466 if (strlen(dp_desc) >= sizeof ods->dp_desc) {
467 VLOG_WARN("truncating dp_desc, must be less than %zu characters",
468 sizeof ods->dp_desc);
469 }
8abc4ed7
JP
470 free(p->dp_desc);
471 p->dp_desc = xstrdup(dp_desc);
472 }
064af421
BP
473}
474
064af421 475int
81e2083f 476ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
064af421 477{
19a87e36 478 return connmgr_set_snoops(ofproto->connmgr, snoops);
064af421
BP
479}
480
481int
0193b2af
JG
482ofproto_set_netflow(struct ofproto *ofproto,
483 const struct netflow_options *nf_options)
064af421 484{
abe529af
BP
485 if (nf_options && sset_is_empty(&nf_options->collectors)) {
486 nf_options = NULL;
487 }
488
489 if (ofproto->ofproto_class->set_netflow) {
490 return ofproto->ofproto_class->set_netflow(ofproto, nf_options);
064af421 491 } else {
abe529af 492 return nf_options ? EOPNOTSUPP : 0;
064af421
BP
493 }
494}
495
abe529af 496int
72b06300
BP
497ofproto_set_sflow(struct ofproto *ofproto,
498 const struct ofproto_sflow_options *oso)
499{
abe529af
BP
500 if (oso && sset_is_empty(&oso->targets)) {
501 oso = NULL;
502 }
72b06300 503
abe529af
BP
504 if (ofproto->ofproto_class->set_sflow) {
505 return ofproto->ofproto_class->set_sflow(ofproto, oso);
72b06300 506 } else {
abe529af 507 return oso ? EOPNOTSUPP : 0;
72b06300
BP
508 }
509}
e7934396
BP
510\f
511/* Connectivity Fault Management configuration. */
512
892815f5 513/* Clears the CFM configuration from 'ofp_port' on 'ofproto'. */
e7934396 514void
892815f5 515ofproto_port_clear_cfm(struct ofproto *ofproto, uint16_t ofp_port)
e7934396 516{
abe529af
BP
517 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
518 if (ofport && ofproto->ofproto_class->set_cfm) {
a5610457 519 ofproto->ofproto_class->set_cfm(ofport, NULL);
e7934396
BP
520 }
521}
72b06300 522
892815f5 523/* Configures connectivity fault management on 'ofp_port' in 'ofproto'. Takes
93b8df38
EJ
524 * basic configuration from the configuration members in 'cfm', and the remote
525 * maintenance point ID from remote_mpid. Ignores the statistics members of
526 * 'cfm'.
e7934396 527 *
892815f5 528 * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
e7934396 529void
892815f5 530ofproto_port_set_cfm(struct ofproto *ofproto, uint16_t ofp_port,
a5610457 531 const struct cfm_settings *s)
e7934396
BP
532{
533 struct ofport *ofport;
abe529af 534 int error;
e7934396 535
abe529af 536 ofport = ofproto_get_port(ofproto, ofp_port);
e7934396 537 if (!ofport) {
892815f5
BP
538 VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu16,
539 ofproto->name, ofp_port);
e7934396
BP
540 return;
541 }
542
93b8df38
EJ
543 /* XXX: For configuration simplicity, we only support one remote_mpid
544 * outside of the CFM module. It's not clear if this is the correct long
545 * term solution or not. */
abe529af 546 error = (ofproto->ofproto_class->set_cfm
a5610457 547 ? ofproto->ofproto_class->set_cfm(ofport, s)
abe529af
BP
548 : EOPNOTSUPP);
549 if (error) {
550 VLOG_WARN("%s: CFM configuration on port %"PRIu16" (%s) failed (%s)",
551 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
552 strerror(error));
e7934396 553 }
e7934396 554}
e7934396 555
fa066f01
BP
556/* Checks the status of LACP negotiation for 'ofp_port' within ofproto.
557 * Returns 1 if LACP partner information for 'ofp_port' is up-to-date,
558 * 0 if LACP partner information is not current (generally indicating a
559 * connectivity problem), or -1 if LACP is not enabled on 'ofp_port'. */
560int
561ofproto_port_is_lacp_current(struct ofproto *ofproto, uint16_t ofp_port)
562{
abe529af
BP
563 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
564 return (ofport && ofproto->ofproto_class->port_is_lacp_current
565 ? ofproto->ofproto_class->port_is_lacp_current(ofport)
fa066f01 566 : -1);
e7934396 567}
e7934396 568\f
fa066f01 569/* Bundles. */
e7934396 570
abe529af
BP
571/* Registers a "bundle" associated with client data pointer 'aux' in 'ofproto'.
572 * A bundle is the same concept as a Port in OVSDB, that is, it consists of one
573 * or more "slave" devices (Interfaces, in OVSDB) along with a VLAN
574 * configuration plus, if there is more than one slave, a bonding
575 * configuration.
576 *
577 * If 'aux' is already registered then this function updates its configuration
578 * to 's'. Otherwise, this function registers a new bundle.
579 *
580 * Bundles only affect the NXAST_AUTOPATH action and output to the OFPP_NORMAL
581 * port. */
582int
583ofproto_bundle_register(struct ofproto *ofproto, void *aux,
584 const struct ofproto_bundle_settings *s)
fa066f01 585{
abe529af
BP
586 return (ofproto->ofproto_class->bundle_set
587 ? ofproto->ofproto_class->bundle_set(ofproto, aux, s)
588 : EOPNOTSUPP);
fa066f01
BP
589}
590
abe529af
BP
591/* Unregisters the bundle registered on 'ofproto' with auxiliary data 'aux'.
592 * If no such bundle has been registered, this has no effect. */
593int
594ofproto_bundle_unregister(struct ofproto *ofproto, void *aux)
e7934396 595{
abe529af 596 return ofproto_bundle_register(ofproto, aux, NULL);
e7934396 597}
fa066f01 598
e7934396 599\f
abe529af
BP
600/* Registers a mirror associated with client data pointer 'aux' in 'ofproto'.
601 * If 'aux' is already registered then this function updates its configuration
602 * to 's'. Otherwise, this function registers a new mirror.
603 *
604 * Mirrors affect only the treatment of packets output to the OFPP_NORMAL
605 * port. */
606int
607ofproto_mirror_register(struct ofproto *ofproto, void *aux,
608 const struct ofproto_mirror_settings *s)
064af421 609{
abe529af
BP
610 return (ofproto->ofproto_class->mirror_set
611 ? ofproto->ofproto_class->mirror_set(ofproto, aux, s)
612 : EOPNOTSUPP);
064af421
BP
613}
614
abe529af
BP
615/* Unregisters the mirror registered on 'ofproto' with auxiliary data 'aux'.
616 * If no mirror has been registered, this has no effect. */
617int
618ofproto_mirror_unregister(struct ofproto *ofproto, void *aux)
064af421 619{
abe529af 620 return ofproto_mirror_register(ofproto, aux, NULL);
064af421
BP
621}
622
abe529af
BP
623/* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs on
624 * which all packets are flooded, instead of using MAC learning. If
625 * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
626 *
627 * Flood VLANs affect only the treatment of packets output to the OFPP_NORMAL
628 * port. */
629int
630ofproto_set_flood_vlans(struct ofproto *ofproto, unsigned long *flood_vlans)
abdfe474 631{
abe529af
BP
632 return (ofproto->ofproto_class->set_flood_vlans
633 ? ofproto->ofproto_class->set_flood_vlans(ofproto, flood_vlans)
634 : EOPNOTSUPP);
abdfe474
JP
635}
636
abe529af
BP
637/* Returns true if 'aux' is a registered bundle that is currently in use as the
638 * output for a mirror. */
639bool
640ofproto_is_mirror_output_bundle(struct ofproto *ofproto, void *aux)
641{
642 return (ofproto->ofproto_class->is_mirror_output_bundle
643 ? ofproto->ofproto_class->is_mirror_output_bundle(ofproto, aux)
644 : false);
645}
646\f
81e2083f
BP
647bool
648ofproto_has_snoops(const struct ofproto *ofproto)
649{
650 return connmgr_has_snoops(ofproto->connmgr);
651}
652
064af421 653void
81e2083f 654ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
064af421 655{
19a87e36 656 connmgr_get_snoops(ofproto->connmgr, snoops);
064af421
BP
657}
658
7ee20df1
BP
659static void
660ofproto_flush__(struct ofproto *ofproto)
661{
662 struct classifier *table;
663 struct ofopgroup *group;
664
665 if (ofproto->ofproto_class->flush) {
666 ofproto->ofproto_class->flush(ofproto);
667 }
668
669 group = ofopgroup_create(ofproto);
670 for (table = ofproto->tables; table < &ofproto->tables[ofproto->n_tables];
671 table++) {
672 struct rule *rule, *next_rule;
673 struct cls_cursor cursor;
674
675 cls_cursor_init(&cursor, table, NULL);
676 CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cr, &cursor) {
677 if (!rule->pending) {
678 ofoperation_create(group, rule, OFOPERATION_DELETE);
679 classifier_remove(table, &rule->cr);
680 ofproto->ofproto_class->rule_destruct(rule);
681 }
682 }
683 }
684 ofopgroup_submit(group);
685}
686
abe529af
BP
687static void
688ofproto_destroy__(struct ofproto *ofproto)
689{
6c1491fb
BP
690 size_t i;
691
7ee20df1
BP
692 assert(list_is_empty(&ofproto->pending));
693
abe529af 694 connmgr_destroy(ofproto->connmgr);
fa066f01 695
abe529af
BP
696 hmap_remove(&all_ofprotos, &ofproto->hmap_node);
697 free(ofproto->name);
955a7127 698 free(ofproto->type);
abe529af
BP
699 free(ofproto->mfr_desc);
700 free(ofproto->hw_desc);
701 free(ofproto->sw_desc);
702 free(ofproto->serial_desc);
703 free(ofproto->dp_desc);
abe529af
BP
704 hmap_destroy(&ofproto->ports);
705 shash_destroy(&ofproto->port_by_name);
6c1491fb
BP
706
707 for (i = 0; i < ofproto->n_tables; i++) {
7ee20df1 708 assert(classifier_is_empty(&ofproto->tables[i]));
6c1491fb
BP
709 classifier_destroy(&ofproto->tables[i]);
710 }
711 free(ofproto->tables);
fa066f01 712
7ee20df1
BP
713 hmap_destroy(&ofproto->deletions);
714
abe529af
BP
715 ofproto->ofproto_class->dealloc(ofproto);
716}
fa066f01 717
064af421
BP
718void
719ofproto_destroy(struct ofproto *p)
720{
ca0f572c 721 struct ofport *ofport, *next_ofport;
064af421
BP
722
723 if (!p) {
724 return;
725 }
726
7ee20df1 727 ofproto_flush__(p);
4e8e4213 728 HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
abe529af 729 ofport_destroy(ofport);
064af421 730 }
064af421 731
abe529af
BP
732 p->ofproto_class->destruct(p);
733 ofproto_destroy__(p);
064af421
BP
734}
735
abe529af
BP
736/* Destroys the datapath with the respective 'name' and 'type'. With the Linux
737 * kernel datapath, for example, this destroys the datapath in the kernel, and
738 * with the netdev-based datapath, it tears down the data structures that
739 * represent the datapath.
740 *
741 * The datapath should not be currently open as an ofproto. */
064af421 742int
abe529af 743ofproto_delete(const char *name, const char *type)
064af421 744{
abe529af
BP
745 const struct ofproto_class *class = ofproto_class_find__(type);
746 return (!class ? EAFNOSUPPORT
747 : !class->del ? EACCES
748 : class->del(type, name));
064af421
BP
749}
750
e9e28be3
BP
751static void
752process_port_change(struct ofproto *ofproto, int error, char *devname)
753{
754 if (error == ENOBUFS) {
755 reinit_ports(ofproto);
756 } else if (!error) {
757 update_port(ofproto, devname);
758 free(devname);
759 }
760}
761
064af421 762int
abe529af 763ofproto_run(struct ofproto *p)
064af421 764{
031d8bff 765 struct ofport *ofport;
064af421
BP
766 char *devname;
767 int error;
064af421 768
abe529af
BP
769 error = p->ofproto_class->run(p);
770 if (error == ENODEV) {
771 /* Someone destroyed the datapath behind our back. The caller
772 * better destroy us and give up, because we're just going to
773 * spin from here on out. */
774 static struct vlog_rate_limit rl2 = VLOG_RATE_LIMIT_INIT(1, 5);
775 VLOG_ERR_RL(&rl2, "%s: datapath was destroyed externally",
776 p->name);
777 return ENODEV;
149f577a
JG
778 }
779
5bf0e941
BP
780 if (p->ofproto_class->port_poll) {
781 while ((error = p->ofproto_class->port_poll(p, &devname)) != EAGAIN) {
782 process_port_change(p, error, devname);
064af421 783 }
e9e28be3 784 }
031d8bff
EJ
785
786 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
787 unsigned int change_seq = netdev_change_seq(ofport->netdev);
788 if (ofport->change_seq != change_seq) {
789 ofport->change_seq = change_seq;
790 update_port(p, netdev_get_name(ofport->netdev));
791 }
064af421
BP
792 }
793
7ee20df1
BP
794
795 switch (p->state) {
796 case S_OPENFLOW:
797 connmgr_run(p->connmgr, handle_openflow);
798 break;
799
800 case S_FLUSH:
801 connmgr_run(p->connmgr, NULL);
802 ofproto_flush__(p);
803 if (list_is_empty(&p->pending) && hmap_is_empty(&p->deletions)) {
804 connmgr_flushed(p->connmgr);
805 p->state = S_OPENFLOW;
806 }
807 break;
808
809 default:
810 NOT_REACHED();
811 }
064af421 812
064af421
BP
813 return 0;
814}
815
816void
817ofproto_wait(struct ofproto *p)
818{
031d8bff
EJ
819 struct ofport *ofport;
820
abe529af 821 p->ofproto_class->wait(p);
5bf0e941
BP
822 if (p->ofproto_class->port_poll_wait) {
823 p->ofproto_class->port_poll_wait(p);
e7934396 824 }
031d8bff
EJ
825
826 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
827 if (ofport->change_seq != netdev_change_seq(ofport->netdev)) {
828 poll_immediate_wake();
829 }
830 }
7ee20df1
BP
831
832 switch (p->state) {
833 case S_OPENFLOW:
834 connmgr_wait(p->connmgr, true);
835 break;
836
837 case S_FLUSH:
838 connmgr_wait(p->connmgr, false);
839 if (list_is_empty(&p->pending) && hmap_is_empty(&p->deletions)) {
840 poll_immediate_wake();
841 }
842 break;
843 }
064af421
BP
844}
845
064af421
BP
846bool
847ofproto_is_alive(const struct ofproto *p)
848{
19a87e36 849 return connmgr_has_controllers(p->connmgr);
064af421
BP
850}
851
bffc0589 852void
2cdcb898 853ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
bffc0589
AE
854 struct shash *info)
855{
19a87e36 856 connmgr_get_controller_info(ofproto->connmgr, info);
bffc0589
AE
857}
858
859void
860ofproto_free_ofproto_controller_info(struct shash *info)
861{
72ba2ed3 862 connmgr_free_controller_info(info);
bffc0589
AE
863}
864
b5827b24
BP
865/* Makes a deep copy of 'old' into 'port'. */
866void
867ofproto_port_clone(struct ofproto_port *port, const struct ofproto_port *old)
868{
869 port->name = xstrdup(old->name);
870 port->type = xstrdup(old->type);
871 port->ofp_port = old->ofp_port;
872}
873
874/* Frees memory allocated to members of 'ofproto_port'.
3a6ccc8c 875 *
b5827b24
BP
876 * Do not call this function on an ofproto_port obtained from
877 * ofproto_port_dump_next(): that function retains ownership of the data in the
878 * ofproto_port. */
879void
880ofproto_port_destroy(struct ofproto_port *ofproto_port)
881{
882 free(ofproto_port->name);
883 free(ofproto_port->type);
884}
885
b5827b24 886/* Initializes 'dump' to begin dumping the ports in an ofproto.
3a6ccc8c 887 *
b5827b24
BP
888 * This function provides no status indication. An error status for the entire
889 * dump operation is provided when it is completed by calling
890 * ofproto_port_dump_done().
891 */
892void
893ofproto_port_dump_start(struct ofproto_port_dump *dump,
894 const struct ofproto *ofproto)
895{
abe529af
BP
896 dump->ofproto = ofproto;
897 dump->error = ofproto->ofproto_class->port_dump_start(ofproto,
898 &dump->state);
b5827b24
BP
899}
900
901/* Attempts to retrieve another port from 'dump', which must have been created
902 * with ofproto_port_dump_start(). On success, stores a new ofproto_port into
903 * 'port' and returns true. On failure, returns false.
904 *
905 * Failure might indicate an actual error or merely that the last port has been
906 * dumped. An error status for the entire dump operation is provided when it
907 * is completed by calling ofproto_port_dump_done().
908 *
909 * The ofproto owns the data stored in 'port'. It will remain valid until at
910 * least the next time 'dump' is passed to ofproto_port_dump_next() or
911 * ofproto_port_dump_done(). */
912bool
913ofproto_port_dump_next(struct ofproto_port_dump *dump,
914 struct ofproto_port *port)
915{
abe529af
BP
916 const struct ofproto *ofproto = dump->ofproto;
917
918 if (dump->error) {
919 return false;
920 }
b5827b24 921
abe529af
BP
922 dump->error = ofproto->ofproto_class->port_dump_next(ofproto, dump->state,
923 port);
924 if (dump->error) {
925 ofproto->ofproto_class->port_dump_done(ofproto, dump->state);
926 return false;
b5827b24 927 }
abe529af 928 return true;
b5827b24
BP
929}
930
931/* Completes port table dump operation 'dump', which must have been created
932 * with ofproto_port_dump_start(). Returns 0 if the dump operation was
933 * error-free, otherwise a positive errno value describing the problem. */
3a6ccc8c 934int
b5827b24 935ofproto_port_dump_done(struct ofproto_port_dump *dump)
3a6ccc8c 936{
abe529af
BP
937 const struct ofproto *ofproto = dump->ofproto;
938 if (!dump->error) {
939 dump->error = ofproto->ofproto_class->port_dump_done(ofproto,
940 dump->state);
941 }
942 return dump->error == EOF ? 0 : dump->error;
b5827b24
BP
943}
944
945/* Attempts to add 'netdev' as a port on 'ofproto'. If successful, returns 0
892815f5 946 * and sets '*ofp_portp' to the new port's OpenFlow port number (if 'ofp_portp'
b5827b24
BP
947 * is non-null). On failure, returns a positive errno value and sets
948 * '*ofp_portp' to OFPP_NONE (if 'ofp_portp' is non-null). */
949int
950ofproto_port_add(struct ofproto *ofproto, struct netdev *netdev,
951 uint16_t *ofp_portp)
952{
abe529af 953 uint16_t ofp_port;
3a6ccc8c
BP
954 int error;
955
abe529af 956 error = ofproto->ofproto_class->port_add(ofproto, netdev, &ofp_port);
1fa24dea
BP
957 if (!error) {
958 update_port(ofproto, netdev_get_name(netdev));
959 }
b5827b24 960 if (ofp_portp) {
abe529af 961 *ofp_portp = error ? OFPP_NONE : ofp_port;
3a6ccc8c
BP
962 }
963 return error;
964}
965
b5827b24
BP
966/* Looks up a port named 'devname' in 'ofproto'. On success, returns 0 and
967 * initializes '*port' appropriately; on failure, returns a positive errno
968 * value.
969 *
abe529af 970 * The caller owns the data in 'ofproto_port' and must free it with
b5827b24
BP
971 * ofproto_port_destroy() when it is no longer needed. */
972int
973ofproto_port_query_by_name(const struct ofproto *ofproto, const char *devname,
974 struct ofproto_port *port)
a4e2e1f2 975{
b5827b24
BP
976 int error;
977
abe529af
BP
978 error = ofproto->ofproto_class->port_query_by_name(ofproto, devname, port);
979 if (error) {
980 memset(port, 0, sizeof *port);
b5827b24
BP
981 }
982 return error;
a4e2e1f2
EJ
983}
984
b5827b24 985/* Deletes port number 'ofp_port' from the datapath for 'ofproto'.
3a6ccc8c 986 * Returns 0 if successful, otherwise a positive errno. */
064af421 987int
b5827b24 988ofproto_port_del(struct ofproto *ofproto, uint16_t ofp_port)
064af421 989{
abe529af 990 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1264ec95 991 const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
3cf10406 992 int error;
cdee00fd 993
abe529af 994 error = ofproto->ofproto_class->port_del(ofproto, ofp_port);
892815f5 995 if (!error && ofport) {
1264ec95
BP
996 /* 'name' is the netdev's name and update_port() is going to close the
997 * netdev. Just in case update_port() refers to 'name' after it
3a6ccc8c
BP
998 * destroys 'ofport', make a copy of it around the update_port()
999 * call. */
1000 char *devname = xstrdup(name);
1001 update_port(ofproto, devname);
1002 free(devname);
3cf10406
BP
1003 }
1004 return error;
064af421
BP
1005}
1006
6c1491fb 1007/* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
fa8b054f
BP
1008 * performs the 'n_actions' actions in 'actions'. The new flow will not
1009 * timeout.
1010 *
1011 * If cls_rule->priority is in the range of priorities supported by OpenFlow
1012 * (0...65535, inclusive) then the flow will be visible to OpenFlow
1013 * controllers; otherwise, it will be hidden.
1014 *
6c1491fb
BP
1015 * The caller retains ownership of 'cls_rule' and 'actions'.
1016 *
1017 * This is a helper function for in-band control and fail-open. */
064af421 1018void
7ee20df1 1019ofproto_add_flow(struct ofproto *ofproto, const struct cls_rule *cls_rule,
fa8b054f 1020 const union ofp_action *actions, size_t n_actions)
064af421 1021{
7ee20df1
BP
1022 const struct rule *rule;
1023
1024 rule = rule_from_cls_rule(classifier_find_rule_exactly(
1025 &ofproto->tables[0], cls_rule));
1026 if (!rule || !ofputil_actions_equal(rule->actions, rule->n_actions,
1027 actions, n_actions)) {
1028 struct flow_mod fm;
1029
1030 memset(&fm, 0, sizeof fm);
1031 fm.cr = *cls_rule;
1032 fm.buffer_id = UINT32_MAX;
1033 fm.actions = (union ofp_action *) actions;
1034 fm.n_actions = n_actions;
1035 add_flow(ofproto, NULL, &fm, NULL);
1036 }
064af421
BP
1037}
1038
6c1491fb
BP
1039/* Searches for a rule with matching criteria exactly equal to 'target' in
1040 * ofproto's table 0 and, if it finds one, deletes it.
1041 *
1042 * This is a helper function for in-band control and fail-open. */
7ee20df1 1043bool
cf3fad8a 1044ofproto_delete_flow(struct ofproto *ofproto, const struct cls_rule *target)
064af421
BP
1045{
1046 struct rule *rule;
1047
6c1491fb
BP
1048 rule = rule_from_cls_rule(classifier_find_rule_exactly(
1049 &ofproto->tables[0], target));
7ee20df1
BP
1050 if (!rule) {
1051 /* No such rule -> success. */
1052 return true;
1053 } else if (rule->pending) {
1054 /* An operation on the rule is already pending -> failure.
1055 * Caller must retry later if it's important. */
1056 return false;
1057 } else {
1058 /* Initiate deletion -> success. */
1059 struct ofopgroup *group = ofopgroup_create(ofproto);
1060 ofoperation_create(group, rule, OFOPERATION_DELETE);
1061 classifier_remove(&ofproto->tables[rule->table_id], &rule->cr);
1062 rule->ofproto->ofproto_class->rule_destruct(rule);
1063 ofopgroup_submit(group);
1064 return true;
bcf84111 1065 }
5ecc9d81 1066
142e1f5c
BP
1067}
1068
7ee20df1
BP
1069/* Starts the process of deleting all of the flows from all of ofproto's flow
1070 * tables and then reintroducing the flows required by in-band control and
1071 * fail-open. The process will complete in a later call to ofproto_run(). */
142e1f5c
BP
1072void
1073ofproto_flush_flows(struct ofproto *ofproto)
1074{
7ee20df1
BP
1075 COVERAGE_INC(ofproto_flush);
1076 ofproto->state = S_FLUSH;
064af421
BP
1077}
1078\f
1079static void
1080reinit_ports(struct ofproto *p)
1081{
abe529af 1082 struct ofproto_port_dump dump;
b3c01ed3 1083 struct sset devnames;
064af421 1084 struct ofport *ofport;
abe529af 1085 struct ofproto_port ofproto_port;
b3c01ed3 1086 const char *devname;
064af421 1087
898bf89d
JP
1088 COVERAGE_INC(ofproto_reinit_ports);
1089
b3c01ed3 1090 sset_init(&devnames);
4e8e4213 1091 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1264ec95 1092 sset_add(&devnames, netdev_get_name(ofport->netdev));
064af421 1093 }
abe529af
BP
1094 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
1095 sset_add(&devnames, ofproto_port.name);
064af421 1096 }
064af421 1097
b3c01ed3
BP
1098 SSET_FOR_EACH (devname, &devnames) {
1099 update_port(p, devname);
064af421 1100 }
b3c01ed3 1101 sset_destroy(&devnames);
064af421
BP
1102}
1103
abe529af
BP
1104/* Opens and returns a netdev for 'ofproto_port', or a null pointer if the
1105 * netdev cannot be opened. On success, also fills in 'opp'. */
b33951b8 1106static struct netdev *
abe529af 1107ofport_open(const struct ofproto_port *ofproto_port, struct ofp_phy_port *opp)
064af421 1108{
118c4676 1109 uint32_t curr, advertised, supported, peer;
149f577a 1110 struct netdev_options netdev_options;
064af421 1111 enum netdev_flags flags;
064af421 1112 struct netdev *netdev;
064af421
BP
1113 int error;
1114
149f577a 1115 memset(&netdev_options, 0, sizeof netdev_options);
abe529af
BP
1116 netdev_options.name = ofproto_port->name;
1117 netdev_options.type = ofproto_port->type;
149f577a
JG
1118
1119 error = netdev_open(&netdev_options, &netdev);
064af421
BP
1120 if (error) {
1121 VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1122 "cannot be opened (%s)",
abe529af
BP
1123 ofproto_port->name, ofproto_port->ofp_port,
1124 ofproto_port->name, strerror(error));
064af421
BP
1125 return NULL;
1126 }
1127
064af421 1128 netdev_get_flags(netdev, &flags);
118c4676 1129 netdev_get_features(netdev, &curr, &advertised, &supported, &peer);
064af421 1130
abe529af 1131 opp->port_no = htons(ofproto_port->ofp_port);
b33951b8 1132 netdev_get_etheraddr(netdev, opp->hw_addr);
abe529af 1133 ovs_strzcpy(opp->name, ofproto_port->name, sizeof opp->name);
118c4676
BP
1134 opp->config = flags & NETDEV_UP ? 0 : htonl(OFPPC_PORT_DOWN);
1135 opp->state = netdev_get_carrier(netdev) ? 0 : htonl(OFPPS_LINK_DOWN);
1136 opp->curr = htonl(curr);
1137 opp->advertised = htonl(advertised);
1138 opp->supported = htonl(supported);
1139 opp->peer = htonl(peer);
1140
b33951b8 1141 return netdev;
064af421
BP
1142}
1143
b33951b8
BP
1144/* Returns true if most fields of 'a' and 'b' are equal. Differences in name,
1145 * port number, and 'config' bits other than OFPPC_PORT_DOWN are
1146 * disregarded. */
1147static bool
1148ofport_equal(const struct ofp_phy_port *a, const struct ofp_phy_port *b)
064af421 1149{
064af421 1150 BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
b33951b8 1151 return (!memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
064af421 1152 && a->state == b->state
118c4676 1153 && !((a->config ^ b->config) & htonl(OFPPC_PORT_DOWN))
064af421
BP
1154 && a->curr == b->curr
1155 && a->advertised == b->advertised
1156 && a->supported == b->supported
1157 && a->peer == b->peer);
1158}
1159
b33951b8
BP
1160/* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
1161 * The caller must ensure that 'p' does not have a conflicting ofport (that is,
1162 * one with the same name or port number). */
064af421 1163static void
b33951b8
BP
1164ofport_install(struct ofproto *p,
1165 struct netdev *netdev, const struct ofp_phy_port *opp)
064af421 1166{
b33951b8
BP
1167 const char *netdev_name = netdev_get_name(netdev);
1168 struct ofport *ofport;
abe529af 1169 int error;
72b06300 1170
b33951b8 1171 /* Create ofport. */
abe529af
BP
1172 ofport = p->ofproto_class->port_alloc();
1173 if (!ofport) {
1174 error = ENOMEM;
1175 goto error;
1176 }
0f7d71a5 1177 ofport->ofproto = p;
b33951b8 1178 ofport->netdev = netdev;
031d8bff 1179 ofport->change_seq = netdev_change_seq(netdev);
b33951b8 1180 ofport->opp = *opp;
abe529af 1181 ofport->ofp_port = ntohs(opp->port_no);
b33951b8
BP
1182
1183 /* Add port to 'p'. */
abe529af 1184 hmap_insert(&p->ports, &ofport->hmap_node, hash_int(ofport->ofp_port, 0));
72b06300 1185 shash_add(&p->port_by_name, netdev_name, ofport);
abe529af
BP
1186
1187 /* Let the ofproto_class initialize its private data. */
1188 error = p->ofproto_class->port_construct(ofport);
1189 if (error) {
1190 goto error;
1191 }
1192 connmgr_send_port_status(p->connmgr, opp, OFPPR_ADD);
1193 return;
1194
1195error:
1196 VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
1197 p->name, netdev_name, strerror(error));
1198 if (ofport) {
1199 ofport_destroy__(ofport);
1200 } else {
1201 netdev_close(netdev);
72b06300 1202 }
064af421
BP
1203}
1204
b33951b8 1205/* Removes 'ofport' from 'p' and destroys it. */
064af421 1206static void
0f7d71a5 1207ofport_remove(struct ofport *ofport)
064af421 1208{
fa066f01
BP
1209 connmgr_send_port_status(ofport->ofproto->connmgr, &ofport->opp,
1210 OFPPR_DELETE);
abe529af 1211 ofport_destroy(ofport);
b33951b8
BP
1212}
1213
1214/* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
1215 * destroys it. */
1216static void
1217ofport_remove_with_name(struct ofproto *ofproto, const char *name)
1218{
1219 struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
1220 if (port) {
0f7d71a5 1221 ofport_remove(port);
b33951b8
BP
1222 }
1223}
1224
1225/* Updates 'port' within 'ofproto' with the new 'netdev' and 'opp'.
1226 *
1227 * Does not handle a name or port number change. The caller must implement
1228 * such a change as a delete followed by an add. */
1229static void
abe529af 1230ofport_modified(struct ofport *port, struct ofp_phy_port *opp)
b33951b8
BP
1231{
1232 memcpy(port->opp.hw_addr, opp->hw_addr, ETH_ADDR_LEN);
118c4676
BP
1233 port->opp.config = ((port->opp.config & ~htonl(OFPPC_PORT_DOWN))
1234 | (opp->config & htonl(OFPPC_PORT_DOWN)));
b33951b8
BP
1235 port->opp.state = opp->state;
1236 port->opp.curr = opp->curr;
1237 port->opp.advertised = opp->advertised;
1238 port->opp.supported = opp->supported;
1239 port->opp.peer = opp->peer;
1240
abe529af 1241 connmgr_send_port_status(port->ofproto->connmgr, &port->opp, OFPPR_MODIFY);
064af421
BP
1242}
1243
abe529af
BP
1244void
1245ofproto_port_unregister(struct ofproto *ofproto, uint16_t ofp_port)
e7934396 1246{
abe529af
BP
1247 struct ofport *port = ofproto_get_port(ofproto, ofp_port);
1248 if (port) {
1249 if (port->ofproto->ofproto_class->set_cfm) {
a5610457 1250 port->ofproto->ofproto_class->set_cfm(port, NULL);
abe529af
BP
1251 }
1252 if (port->ofproto->ofproto_class->bundle_remove) {
1253 port->ofproto->ofproto_class->bundle_remove(port);
e7934396
BP
1254 }
1255 }
1256}
1257
1258static void
abe529af 1259ofport_destroy__(struct ofport *port)
e7934396 1260{
abe529af
BP
1261 struct ofproto *ofproto = port->ofproto;
1262 const char *name = netdev_get_name(port->netdev);
fa066f01 1263
abe529af
BP
1264 hmap_remove(&ofproto->ports, &port->hmap_node);
1265 shash_delete(&ofproto->port_by_name,
1266 shash_find(&ofproto->port_by_name, name));
fa066f01 1267
abe529af
BP
1268 netdev_close(port->netdev);
1269 ofproto->ofproto_class->port_dealloc(port);
e7934396
BP
1270}
1271
064af421 1272static void
abe529af 1273ofport_destroy(struct ofport *port)
064af421 1274{
fa066f01 1275 if (port) {
abe529af
BP
1276 port->ofproto->ofproto_class->port_destruct(port);
1277 ofport_destroy__(port);
1278 }
064af421
BP
1279}
1280
abe529af
BP
1281struct ofport *
1282ofproto_get_port(const struct ofproto *ofproto, uint16_t ofp_port)
ca0f572c
BP
1283{
1284 struct ofport *port;
1285
4e8e4213 1286 HMAP_FOR_EACH_IN_BUCKET (port, hmap_node,
abe529af
BP
1287 hash_int(ofp_port, 0), &ofproto->ports) {
1288 if (port->ofp_port == ofp_port) {
ca0f572c
BP
1289 return port;
1290 }
1291 }
1292 return NULL;
1293}
1294
064af421 1295static void
b33951b8 1296update_port(struct ofproto *ofproto, const char *name)
064af421 1297{
abe529af 1298 struct ofproto_port ofproto_port;
b33951b8
BP
1299 struct ofp_phy_port opp;
1300 struct netdev *netdev;
1301 struct ofport *port;
064af421
BP
1302
1303 COVERAGE_INC(ofproto_update_port);
c874dc6d 1304
b33951b8 1305 /* Fetch 'name''s location and properties from the datapath. */
abe529af
BP
1306 netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
1307 ? ofport_open(&ofproto_port, &opp)
b33951b8
BP
1308 : NULL);
1309 if (netdev) {
abe529af 1310 port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
b33951b8 1311 if (port && !strcmp(netdev_get_name(port->netdev), name)) {
e65942a0
BP
1312 struct netdev *old_netdev = port->netdev;
1313
b33951b8
BP
1314 /* 'name' hasn't changed location. Any properties changed? */
1315 if (!ofport_equal(&port->opp, &opp)) {
abe529af
BP
1316 ofport_modified(port, &opp);
1317 }
1318
e65942a0
BP
1319 /* Install the newly opened netdev in case it has changed.
1320 * Don't close the old netdev yet in case port_modified has to
1321 * remove a retained reference to it.*/
abe529af 1322 port->netdev = netdev;
031d8bff 1323 port->change_seq = netdev_change_seq(netdev);
abe529af
BP
1324
1325 if (port->ofproto->ofproto_class->port_modified) {
1326 port->ofproto->ofproto_class->port_modified(port);
b33951b8 1327 }
e65942a0
BP
1328
1329 netdev_close(old_netdev);
b33951b8
BP
1330 } else {
1331 /* If 'port' is nonnull then its name differs from 'name' and thus
1332 * we should delete it. If we think there's a port named 'name'
1333 * then its port number must be wrong now so delete it too. */
1334 if (port) {
0f7d71a5 1335 ofport_remove(port);
b33951b8
BP
1336 }
1337 ofport_remove_with_name(ofproto, name);
1338 ofport_install(ofproto, netdev, &opp);
c874dc6d 1339 }
b33951b8
BP
1340 } else {
1341 /* Any port named 'name' is gone now. */
1342 ofport_remove_with_name(ofproto, name);
c874dc6d 1343 }
abe529af 1344 ofproto_port_destroy(&ofproto_port);
064af421
BP
1345}
1346
1347static int
1348init_ports(struct ofproto *p)
1349{
abe529af
BP
1350 struct ofproto_port_dump dump;
1351 struct ofproto_port ofproto_port;
1352
1353 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
1354 uint16_t ofp_port = ofproto_port.ofp_port;
1355 if (ofproto_get_port(p, ofp_port)) {
1356 VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1357 ofp_port);
1358 } else if (shash_find(&p->port_by_name, ofproto_port.name)) {
1359 VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1360 ofproto_port.name);
1361 } else {
b33951b8
BP
1362 struct ofp_phy_port opp;
1363 struct netdev *netdev;
1364
abe529af 1365 netdev = ofport_open(&ofproto_port, &opp);
b33951b8
BP
1366 if (netdev) {
1367 ofport_install(p, netdev, &opp);
064af421
BP
1368 }
1369 }
1370 }
b0ec0f27 1371
064af421
BP
1372 return 0;
1373}
1374\f
064af421 1375static void
abe529af 1376ofproto_rule_destroy__(struct rule *rule)
064af421
BP
1377{
1378 free(rule->actions);
abe529af 1379 rule->ofproto->ofproto_class->rule_dealloc(rule);
064af421
BP
1380}
1381
7ee20df1
BP
1382/* This function allows an ofproto implementation to destroy any rules that
1383 * remain when its ->destruct() function is called. The caller must have
1384 * already uninitialized any derived members of 'rule' (step 5 described in the
5bee6e26
JP
1385 * large comment in ofproto/ofproto-provider.h titled "Life Cycle").
1386 * This function implements steps 6 and 7.
7ee20df1
BP
1387 *
1388 * This function should only be called from an ofproto implementation's
1389 * ->destruct() function. It is not suitable elsewhere. */
abe529af
BP
1390void
1391ofproto_rule_destroy(struct rule *rule)
064af421 1392{
7ee20df1
BP
1393 assert(!rule->pending);
1394 classifier_remove(&rule->ofproto->tables[rule->table_id], &rule->cr);
1395 ofproto_rule_destroy__(rule);
064af421
BP
1396}
1397
bcf84111
BP
1398/* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
1399 * that outputs to 'out_port' (output to OFPP_FLOOD and OFPP_ALL doesn't
1400 * count). */
064af421 1401static bool
9ed18e46 1402rule_has_out_port(const struct rule *rule, uint16_t out_port)
064af421
BP
1403{
1404 const union ofp_action *oa;
b4b8c781 1405 size_t left;
064af421 1406
9ed18e46 1407 if (out_port == OFPP_NONE) {
064af421
BP
1408 return true;
1409 }
b4b8c781 1410 OFPUTIL_ACTION_FOR_EACH_UNSAFE (oa, left, rule->actions, rule->n_actions) {
9ed18e46 1411 if (action_outputs_to_port(oa, htons(out_port))) {
064af421
BP
1412 return true;
1413 }
1414 }
1415 return false;
1416}
1417
bcf84111 1418/* Executes the actions indicated by 'rule' on 'packet' and credits 'rule''s
bcf84111
BP
1419 * statistics appropriately. 'packet' must have at least sizeof(struct
1420 * ofp_packet_in) bytes of headroom.
064af421 1421 *
bcf84111
BP
1422 * 'packet' doesn't necessarily have to match 'rule'. 'rule' will be credited
1423 * with statistics for 'packet' either way.
1424 *
1425 * Takes ownership of 'packet'. */
5bf0e941 1426static int
abe529af 1427rule_execute(struct rule *rule, uint16_t in_port, struct ofpbuf *packet)
eedc0097 1428{
bcf84111 1429 struct flow flow;
eedc0097 1430
abe529af 1431 assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
eedc0097 1432
abe529af 1433 flow_extract(packet, 0, in_port, &flow);
5bf0e941 1434 return rule->ofproto->ofproto_class->rule_execute(rule, &flow, packet);
350a665f
BP
1435}
1436
abe529af
BP
1437/* Returns true if 'rule' should be hidden from the controller.
1438 *
1439 * Rules with priority higher than UINT16_MAX are set up by ofproto itself
1440 * (e.g. by in-band control) and are intentionally hidden from the
1441 * controller. */
1442static bool
1443rule_is_hidden(const struct rule *rule)
b6c9e612 1444{
abe529af 1445 return rule->cr.priority > UINT16_MAX;
7b064a79 1446}
fa066f01 1447\f
064af421 1448static int
d1e2cf21 1449handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 1450{
b0421aa2 1451 ofconn_send_reply(ofconn, make_echo_reply(oh));
064af421 1452 return 0;
064af421
BP
1453}
1454
064af421 1455static int
d1e2cf21 1456handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 1457{
64ff1d96 1458 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
064af421
BP
1459 struct ofp_switch_features *osf;
1460 struct ofpbuf *buf;
064af421 1461 struct ofport *port;
6c1491fb
BP
1462 bool arp_match_ip;
1463 uint32_t actions;
064af421 1464
6c1491fb
BP
1465 ofproto->ofproto_class->get_features(ofproto, &arp_match_ip, &actions);
1466 assert(actions & (1 << OFPAT_OUTPUT)); /* sanity check */
064af421 1467
064af421 1468 osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
64ff1d96 1469 osf->datapath_id = htonll(ofproto->datapath_id);
064af421 1470 osf->n_buffers = htonl(pktbuf_capacity());
6c1491fb 1471 osf->n_tables = ofproto->n_tables;
064af421 1472 osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
6c1491fb
BP
1473 OFPC_PORT_STATS);
1474 if (arp_match_ip) {
1475 osf->capabilities |= htonl(OFPC_ARP_MATCH_IP);
1476 }
1477 osf->actions = htonl(actions);
064af421 1478
64ff1d96 1479 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
9cfcdadf 1480 ofpbuf_put(buf, &port->opp, sizeof port->opp);
064af421 1481 }
064af421 1482
b0421aa2 1483 ofconn_send_reply(ofconn, buf);
064af421
BP
1484 return 0;
1485}
064af421 1486
064af421 1487static int
d1e2cf21 1488handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 1489{
64ff1d96 1490 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
064af421
BP
1491 struct ofpbuf *buf;
1492 struct ofp_switch_config *osc;
1493 uint16_t flags;
1494 bool drop_frags;
064af421 1495
064af421 1496 /* Figure out flags. */
abe529af 1497 drop_frags = ofproto->ofproto_class->get_drop_frags(ofproto);
064af421 1498 flags = drop_frags ? OFPC_FRAG_DROP : OFPC_FRAG_NORMAL;
959a2ecd 1499
064af421
BP
1500 /* Send reply. */
1501 osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
1502 osc->flags = htons(flags);
810605a2 1503 osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
b0421aa2 1504 ofconn_send_reply(ofconn, buf);
2d70a31a 1505
064af421
BP
1506 return 0;
1507}
064af421 1508
064af421 1509static int
d1e2cf21 1510handle_set_config(struct ofconn *ofconn, const struct ofp_switch_config *osc)
064af421 1511{
64ff1d96 1512 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
d1e2cf21 1513 uint16_t flags = ntohs(osc->flags);
2d70a31a 1514
1ce0a5fa
BP
1515 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
1516 && ofconn_get_role(ofconn) != NX_ROLE_SLAVE) {
064af421
BP
1517 switch (flags & OFPC_FRAG_MASK) {
1518 case OFPC_FRAG_NORMAL:
abe529af 1519 ofproto->ofproto_class->set_drop_frags(ofproto, false);
064af421 1520 break;
064af421 1521 case OFPC_FRAG_DROP:
abe529af 1522 ofproto->ofproto_class->set_drop_frags(ofproto, true);
c1c9c9c4 1523 break;
064af421 1524 default:
064af421
BP
1525 VLOG_WARN_RL(&rl, "requested bad fragment mode (flags=%"PRIx16")",
1526 osc->flags);
064af421
BP
1527 break;
1528 }
1529 }
ebe482fd 1530
810605a2 1531 ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
0ad9b732 1532
064af421 1533 return 0;
064af421
BP
1534}
1535
9deba63b
BP
1536/* Checks whether 'ofconn' is a slave controller. If so, returns an OpenFlow
1537 * error message code (composed with ofp_mkerr()) for the caller to propagate
1538 * upward. Otherwise, returns 0.
1539 *
2228b50d 1540 * The log message mentions 'msg_type'. */
9deba63b 1541static int
1102893d 1542reject_slave_controller(struct ofconn *ofconn, const char *msg_type)
9deba63b 1543{
1ce0a5fa
BP
1544 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
1545 && ofconn_get_role(ofconn) == NX_ROLE_SLAVE) {
9deba63b 1546 static struct vlog_rate_limit perm_rl = VLOG_RATE_LIMIT_INIT(1, 5);
9deba63b 1547 VLOG_WARN_RL(&perm_rl, "rejecting %s message from slave controller",
2228b50d 1548 msg_type);
9deba63b
BP
1549
1550 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
1551 } else {
1552 return 0;
1553 }
1554}
1555
064af421 1556static int
d1e2cf21 1557handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 1558{
64ff1d96 1559 struct ofproto *p = ofconn_get_ofproto(ofconn);
064af421
BP
1560 struct ofp_packet_out *opo;
1561 struct ofpbuf payload, *buffer;
ac51afaf 1562 union ofp_action *ofp_actions;
ac51afaf 1563 struct ofpbuf request;
ae412e7d 1564 struct flow flow;
ac51afaf 1565 size_t n_ofp_actions;
064af421 1566 uint16_t in_port;
064af421
BP
1567 int error;
1568
ac51afaf
BP
1569 COVERAGE_INC(ofproto_packet_out);
1570
2228b50d 1571 error = reject_slave_controller(ofconn, "OFPT_PACKET_OUT");
9deba63b
BP
1572 if (error) {
1573 return error;
1574 }
1575
ac51afaf 1576 /* Get ofp_packet_out. */
0bc9407d 1577 ofpbuf_use_const(&request, oh, ntohs(oh->length));
bbc32a88 1578 opo = ofpbuf_pull(&request, offsetof(struct ofp_packet_out, actions));
ac51afaf
BP
1579
1580 /* Get actions. */
1581 error = ofputil_pull_actions(&request, ntohs(opo->actions_len),
1582 &ofp_actions, &n_ofp_actions);
064af421
BP
1583 if (error) {
1584 return error;
1585 }
064af421 1586
ac51afaf 1587 /* Get payload. */
064af421 1588 if (opo->buffer_id != htonl(UINT32_MAX)) {
10d0a1d2
BP
1589 error = ofconn_pktbuf_retrieve(ofconn, ntohl(opo->buffer_id),
1590 &buffer, &in_port);
7778bd15 1591 if (error || !buffer) {
064af421
BP
1592 return error;
1593 }
1594 payload = *buffer;
1595 } else {
ac51afaf 1596 payload = request;
064af421
BP
1597 buffer = NULL;
1598 }
1599
abe529af
BP
1600 /* Send out packet. */
1601 flow_extract(&payload, 0, ntohs(opo->in_port), &flow);
1602 error = p->ofproto_class->packet_out(p, &payload, &flow,
1603 ofp_actions, n_ofp_actions);
ac51afaf 1604 ofpbuf_delete(buffer);
abe529af
BP
1605
1606 return error;
064af421
BP
1607}
1608
1609static void
abe529af 1610update_port_config(struct ofport *port, ovs_be32 config, ovs_be32 mask)
064af421 1611{
abe529af
BP
1612 ovs_be32 old_config = port->opp.config;
1613
064af421 1614 mask &= config ^ port->opp.config;
118c4676
BP
1615 if (mask & htonl(OFPPC_PORT_DOWN)) {
1616 if (config & htonl(OFPPC_PORT_DOWN)) {
064af421
BP
1617 netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
1618 } else {
1619 netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
1620 }
1621 }
abe529af
BP
1622
1623 port->opp.config ^= mask & (htonl(OFPPC_NO_RECV | OFPPC_NO_RECV_STP |
1624 OFPPC_NO_FLOOD | OFPPC_NO_FWD |
1625 OFPPC_NO_PACKET_IN));
1626 if (port->opp.config != old_config) {
1627 port->ofproto->ofproto_class->port_reconfigured(port, old_config);
064af421
BP
1628 }
1629}
1630
1631static int
d1e2cf21 1632handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 1633{
64ff1d96 1634 struct ofproto *p = ofconn_get_ofproto(ofconn);
d1e2cf21 1635 const struct ofp_port_mod *opm = (const struct ofp_port_mod *) oh;
064af421
BP
1636 struct ofport *port;
1637 int error;
1638
2228b50d 1639 error = reject_slave_controller(ofconn, "OFPT_PORT_MOD");
9deba63b
BP
1640 if (error) {
1641 return error;
1642 }
064af421 1643
abe529af 1644 port = ofproto_get_port(p, ntohs(opm->port_no));
064af421
BP
1645 if (!port) {
1646 return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
1647 } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
1648 return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
1649 } else {
abe529af 1650 update_port_config(port, opm->config, opm->mask);
064af421
BP
1651 if (opm->advertise) {
1652 netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
1653 }
1654 }
1655 return 0;
1656}
1657
064af421 1658static int
3269c562 1659handle_desc_stats_request(struct ofconn *ofconn,
63f2140a 1660 const struct ofp_stats_msg *request)
064af421 1661{
64ff1d96 1662 struct ofproto *p = ofconn_get_ofproto(ofconn);
064af421
BP
1663 struct ofp_desc_stats *ods;
1664 struct ofpbuf *msg;
1665
63f2140a 1666 ods = ofputil_make_stats_reply(sizeof *ods, request, &msg);
5a719c38
JP
1667 ovs_strlcpy(ods->mfr_desc, p->mfr_desc, sizeof ods->mfr_desc);
1668 ovs_strlcpy(ods->hw_desc, p->hw_desc, sizeof ods->hw_desc);
1669 ovs_strlcpy(ods->sw_desc, p->sw_desc, sizeof ods->sw_desc);
1670 ovs_strlcpy(ods->serial_num, p->serial_desc, sizeof ods->serial_num);
1671 ovs_strlcpy(ods->dp_desc, p->dp_desc, sizeof ods->dp_desc);
b0421aa2 1672 ofconn_send_reply(ofconn, msg);
064af421
BP
1673
1674 return 0;
1675}
1676
064af421 1677static int
3269c562 1678handle_table_stats_request(struct ofconn *ofconn,
63f2140a 1679 const struct ofp_stats_msg *request)
064af421 1680{
64ff1d96 1681 struct ofproto *p = ofconn_get_ofproto(ofconn);
064af421
BP
1682 struct ofp_table_stats *ots;
1683 struct ofpbuf *msg;
6c1491fb 1684 size_t i;
064af421 1685
63f2140a 1686 ofputil_make_stats_reply(sizeof(struct ofp_stats_msg), request, &msg);
064af421 1687
6c1491fb
BP
1688 ots = ofpbuf_put_zeros(msg, sizeof *ots * p->n_tables);
1689 for (i = 0; i < p->n_tables; i++) {
1690 ots[i].table_id = i;
35aa7a21 1691 sprintf(ots[i].name, "table%zu", i);
00794817 1692 ots[i].wildcards = htonl(OFPFW_ALL);
6c1491fb
BP
1693 ots[i].max_entries = htonl(1000000); /* An arbitrary big number. */
1694 ots[i].active_count = htonl(classifier_count(&p->tables[i]));
1695 }
064af421 1696
6c1491fb 1697 p->ofproto_class->get_tables(p, ots);
064af421 1698
b0421aa2 1699 ofconn_send_reply(ofconn, msg);
064af421
BP
1700 return 0;
1701}
1702
abaad8cf 1703static void
63f2140a 1704append_port_stat(struct ofport *port, struct list *replies)
abaad8cf
JP
1705{
1706 struct netdev_stats stats;
1707 struct ofp_port_stats *ops;
1708
d295e8e9
JP
1709 /* Intentionally ignore return value, since errors will set
1710 * 'stats' to all-1s, which is correct for OpenFlow, and
abaad8cf
JP
1711 * netdev_get_stats() will log errors. */
1712 netdev_get_stats(port->netdev, &stats);
1713
63f2140a 1714 ops = ofputil_append_stats_reply(sizeof *ops, replies);
118c4676 1715 ops->port_no = port->opp.port_no;
abaad8cf 1716 memset(ops->pad, 0, sizeof ops->pad);
c4617b3c
BP
1717 put_32aligned_be64(&ops->rx_packets, htonll(stats.rx_packets));
1718 put_32aligned_be64(&ops->tx_packets, htonll(stats.tx_packets));
1719 put_32aligned_be64(&ops->rx_bytes, htonll(stats.rx_bytes));
1720 put_32aligned_be64(&ops->tx_bytes, htonll(stats.tx_bytes));
1721 put_32aligned_be64(&ops->rx_dropped, htonll(stats.rx_dropped));
1722 put_32aligned_be64(&ops->tx_dropped, htonll(stats.tx_dropped));
1723 put_32aligned_be64(&ops->rx_errors, htonll(stats.rx_errors));
1724 put_32aligned_be64(&ops->tx_errors, htonll(stats.tx_errors));
1725 put_32aligned_be64(&ops->rx_frame_err, htonll(stats.rx_frame_errors));
1726 put_32aligned_be64(&ops->rx_over_err, htonll(stats.rx_over_errors));
1727 put_32aligned_be64(&ops->rx_crc_err, htonll(stats.rx_crc_errors));
1728 put_32aligned_be64(&ops->collisions, htonll(stats.collisions));
abaad8cf
JP
1729}
1730
064af421 1731static int
63f2140a
BP
1732handle_port_stats_request(struct ofconn *ofconn,
1733 const struct ofp_port_stats_request *psr)
064af421 1734{
64ff1d96 1735 struct ofproto *p = ofconn_get_ofproto(ofconn);
064af421 1736 struct ofport *port;
63f2140a 1737 struct list replies;
064af421 1738
63f2140a 1739 ofputil_start_stats_reply(&psr->osm, &replies);
abaad8cf 1740 if (psr->port_no != htons(OFPP_NONE)) {
abe529af 1741 port = ofproto_get_port(p, ntohs(psr->port_no));
abaad8cf 1742 if (port) {
63f2140a 1743 append_port_stat(port, &replies);
abaad8cf
JP
1744 }
1745 } else {
4e8e4213 1746 HMAP_FOR_EACH (port, hmap_node, &p->ports) {
63f2140a 1747 append_port_stat(port, &replies);
abaad8cf 1748 }
064af421
BP
1749 }
1750
63f2140a 1751 ofconn_send_replies(ofconn, &replies);
064af421
BP
1752 return 0;
1753}
1754
c6ebb8fb 1755static void
588cd7b5 1756calc_flow_duration__(long long int start, uint32_t *sec, uint32_t *nsec)
c6ebb8fb
BP
1757{
1758 long long int msecs = time_msec() - start;
588cd7b5
BP
1759 *sec = msecs / 1000;
1760 *nsec = (msecs % 1000) * (1000 * 1000);
1761}
1762
6c1491fb
BP
1763static struct classifier *
1764first_matching_table(struct ofproto *ofproto, uint8_t table_id)
064af421 1765{
6c1491fb
BP
1766 if (table_id == 0xff) {
1767 return &ofproto->tables[0];
1768 } else if (table_id < ofproto->n_tables) {
1769 return &ofproto->tables[table_id];
a02e5331
BP
1770 } else {
1771 /* It would probably be better to reply with an error but there doesn't
1772 * seem to be any appropriate value, so that might just be
1773 * confusing. */
1774 VLOG_WARN_RL(&rl, "controller asked for invalid table %"PRIu8,
1775 table_id);
6c1491fb 1776 return NULL;
a02e5331 1777 }
064af421
BP
1778}
1779
6c1491fb
BP
1780static struct classifier *
1781next_matching_table(struct ofproto *ofproto,
1782 struct classifier *cls, uint8_t table_id)
1783{
1784 return (table_id == 0xff && cls != &ofproto->tables[ofproto->n_tables - 1]
1785 ? cls + 1
1786 : NULL);
1787}
1788
1789/* Assigns CLS to each classifier table, in turn, that matches TABLE_ID in
1790 * OFPROTO:
1791 *
1792 * - If TABLE_ID is 0xff, this iterates over every classifier table in
1793 * OFPROTO.
1794 *
1795 * - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
1796 * only once, for that table.
1797 *
1798 * - Otherwise, TABLE_ID isn't valid for OFPROTO, so ofproto logs a warning
1799 * and does not enter the loop at all.
1800 *
1801 * All parameters are evaluated multiple times.
1802 */
1803#define FOR_EACH_MATCHING_TABLE(CLS, TABLE_ID, OFPROTO) \
1804 for ((CLS) = first_matching_table(OFPROTO, TABLE_ID); \
1805 (CLS) != NULL; \
1806 (CLS) = next_matching_table(OFPROTO, CLS, TABLE_ID))
1807
9ed18e46
BP
1808/* Searches 'ofproto' for rules in table 'table_id' (or in all tables, if
1809 * 'table_id' is 0xff) that match 'match' in the "loose" way required for
1810 * OpenFlow OFPFC_MODIFY and OFPFC_DELETE requests and puts them on list
1811 * 'rules'.
1812 *
1813 * If 'out_port' is anything other than OFPP_NONE, then only rules that output
1814 * to 'out_port' are included.
1815 *
1816 * Hidden rules are always omitted.
1817 *
1818 * Returns 0 on success, otherwise an OpenFlow error code. */
1819static int
1820collect_rules_loose(struct ofproto *ofproto, uint8_t table_id,
1821 const struct cls_rule *match, uint16_t out_port,
1822 struct list *rules)
1823{
1824 struct classifier *cls;
1825
1826 list_init(rules);
1827 FOR_EACH_MATCHING_TABLE (cls, table_id, ofproto) {
1828 struct cls_cursor cursor;
1829 struct rule *rule;
1830
1831 cls_cursor_init(&cursor, cls, match);
1832 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
7ee20df1
BP
1833 if (rule->pending) {
1834 return OFPROTO_POSTPONE;
1835 }
9ed18e46
BP
1836 if (!rule_is_hidden(rule) && rule_has_out_port(rule, out_port)) {
1837 list_push_back(rules, &rule->ofproto_node);
1838 }
1839 }
1840 }
1841 return 0;
1842}
1843
1844/* Searches 'ofproto' for rules in table 'table_id' (or in all tables, if
1845 * 'table_id' is 0xff) that match 'match' in the "strict" way required for
1846 * OpenFlow OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests and puts them
1847 * on list 'rules'.
1848 *
1849 * If 'out_port' is anything other than OFPP_NONE, then only rules that output
1850 * to 'out_port' are included.
1851 *
1852 * Hidden rules are always omitted.
1853 *
1854 * Returns 0 on success, otherwise an OpenFlow error code. */
1855static int
1856collect_rules_strict(struct ofproto *ofproto, uint8_t table_id,
1857 const struct cls_rule *match, uint16_t out_port,
1858 struct list *rules)
1859{
1860 struct classifier *cls;
1861
1862 list_init(rules);
1863 FOR_EACH_MATCHING_TABLE (cls, table_id, ofproto) {
1864 struct rule *rule;
1865
1866 rule = rule_from_cls_rule(classifier_find_rule_exactly(cls, match));
1867 if (rule) {
7ee20df1
BP
1868 if (rule->pending) {
1869 return OFPROTO_POSTPONE;
1870 }
9ed18e46
BP
1871 if (!rule_is_hidden(rule) && rule_has_out_port(rule, out_port)) {
1872 list_push_back(rules, &rule->ofproto_node);
1873 }
1874 }
1875 }
1876 return 0;
1877}
1878
064af421 1879static int
63f2140a 1880handle_flow_stats_request(struct ofconn *ofconn,
349adfb2 1881 const struct ofp_stats_msg *osm)
064af421 1882{
64ff1d96 1883 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
349adfb2 1884 struct flow_stats_request fsr;
63f2140a 1885 struct list replies;
9ed18e46
BP
1886 struct list rules;
1887 struct rule *rule;
09246b99
BP
1888 int error;
1889
349adfb2 1890 error = ofputil_decode_flow_stats_request(&fsr, &osm->header);
09246b99
BP
1891 if (error) {
1892 return error;
1893 }
1894
9ed18e46
BP
1895 error = collect_rules_loose(ofproto, fsr.table_id, &fsr.match,
1896 fsr.out_port, &rules);
1897 if (error) {
1898 return error;
1899 }
5ecc9d81 1900
9ed18e46
BP
1901 ofputil_start_stats_reply(osm, &replies);
1902 LIST_FOR_EACH (rule, ofproto_node, &rules) {
1903 struct ofputil_flow_stats fs;
1904
1905 fs.rule = rule->cr;
1906 fs.cookie = rule->flow_cookie;
1907 fs.table_id = rule->table_id;
1908 calc_flow_duration__(rule->created, &fs.duration_sec,
1909 &fs.duration_nsec);
1910 fs.idle_timeout = rule->idle_timeout;
1911 fs.hard_timeout = rule->hard_timeout;
1912 ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
1913 &fs.byte_count);
1914 fs.actions = rule->actions;
1915 fs.n_actions = rule->n_actions;
1916 ofputil_append_flow_stats_reply(&fs, &replies);
3c4486a5 1917 }
63f2140a 1918 ofconn_send_replies(ofconn, &replies);
5ecc9d81 1919
09246b99
BP
1920 return 0;
1921}
1922
4f2cad2c 1923static void
3394b5b6 1924flow_stats_ds(struct rule *rule, struct ds *results)
4f2cad2c 1925{
4f2cad2c 1926 uint64_t packet_count, byte_count;
4f2cad2c 1927
abe529af
BP
1928 rule->ofproto->ofproto_class->rule_get_stats(rule,
1929 &packet_count, &byte_count);
4f2cad2c 1930
6c1491fb
BP
1931 if (rule->table_id != 0) {
1932 ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
1933 }
4f2cad2c
JP
1934 ds_put_format(results, "duration=%llds, ",
1935 (time_msec() - rule->created) / 1000);
52ae00b3 1936 ds_put_format(results, "priority=%u, ", rule->cr.priority);
4f2cad2c
JP
1937 ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
1938 ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
cb833cf6 1939 cls_rule_format(&rule->cr, results);
a5df0e72 1940 ds_put_char(results, ',');
b4b8c781
BP
1941 if (rule->n_actions > 0) {
1942 ofp_print_actions(results, rule->actions, rule->n_actions);
3c8552c1
JP
1943 } else {
1944 ds_put_cstr(results, "drop");
3dffcf07 1945 }
4f2cad2c
JP
1946 ds_put_cstr(results, "\n");
1947}
1948
d295e8e9 1949/* Adds a pretty-printed description of all flows to 'results', including
ee8b231c 1950 * hidden flows (e.g., set up by in-band control). */
4f2cad2c
JP
1951void
1952ofproto_get_all_flows(struct ofproto *p, struct ds *results)
1953{
6c1491fb
BP
1954 struct classifier *cls;
1955
1956 for (cls = &p->tables[0]; cls < &p->tables[p->n_tables]; cls++) {
1957 struct cls_cursor cursor;
1958 struct rule *rule;
064af421 1959
6c1491fb
BP
1960 cls_cursor_init(&cursor, cls, NULL);
1961 CLS_CURSOR_FOR_EACH (rule, cr, &cursor) {
1962 flow_stats_ds(rule, results);
1963 }
064af421 1964 }
064af421
BP
1965}
1966
b5827b24
BP
1967/* Obtains the NetFlow engine type and engine ID for 'ofproto' into
1968 * '*engine_type' and '*engine_id', respectively. */
1969void
1970ofproto_get_netflow_ids(const struct ofproto *ofproto,
1971 uint8_t *engine_type, uint8_t *engine_id)
1972{
abe529af 1973 ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
b5827b24
BP
1974}
1975
a5610457
EJ
1976/* Checks the fault status of CFM for 'ofp_port' within 'ofproto'. Returns 1
1977 * if CFM is faulted (generally indiciating a connectivity problem), 0 if CFM
1978 * is not faulted, and -1 if CFM is not enabled on 'ofp_port'. */
1979int
1980ofproto_port_get_cfm_fault(const struct ofproto *ofproto, uint16_t ofp_port)
1981{
1982 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1983 return (ofport && ofproto->ofproto_class->get_cfm_fault
1984 ? ofproto->ofproto_class->get_cfm_fault(ofport)
1985 : -1);
1986}
1987
76c93b22
BP
1988static int
1989handle_aggregate_stats_request(struct ofconn *ofconn,
1990 const struct ofp_stats_msg *osm)
27d34fce 1991{
76c93b22
BP
1992 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
1993 struct flow_stats_request request;
1994 struct ofputil_aggregate_stats stats;
5e9d0469 1995 bool unknown_packets, unknown_bytes;
76c93b22 1996 struct ofpbuf *reply;
9ed18e46
BP
1997 struct list rules;
1998 struct rule *rule;
76c93b22 1999 int error;
27d34fce 2000
76c93b22
BP
2001 error = ofputil_decode_flow_stats_request(&request, &osm->header);
2002 if (error) {
2003 return error;
2004 }
5ecc9d81 2005
9ed18e46
BP
2006 error = collect_rules_loose(ofproto, request.table_id, &request.match,
2007 request.out_port, &rules);
2008 if (error) {
2009 return error;
2010 }
3c4486a5 2011
9ed18e46 2012 memset(&stats, 0, sizeof stats);
5e9d0469 2013 unknown_packets = unknown_bytes = false;
9ed18e46
BP
2014 LIST_FOR_EACH (rule, ofproto_node, &rules) {
2015 uint64_t packet_count;
2016 uint64_t byte_count;
5ecc9d81 2017
9ed18e46
BP
2018 ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
2019 &byte_count);
5ecc9d81 2020
5e9d0469
BP
2021 if (packet_count == UINT64_MAX) {
2022 unknown_packets = true;
2023 } else {
2024 stats.packet_count += packet_count;
2025 }
2026
2027 if (byte_count == UINT64_MAX) {
2028 unknown_bytes = true;
2029 } else {
2030 stats.byte_count += byte_count;
2031 }
2032
9ed18e46 2033 stats.flow_count++;
3c4486a5 2034 }
5e9d0469
BP
2035 if (unknown_packets) {
2036 stats.packet_count = UINT64_MAX;
2037 }
2038 if (unknown_bytes) {
2039 stats.byte_count = UINT64_MAX;
2040 }
27d34fce 2041
76c93b22
BP
2042 reply = ofputil_encode_aggregate_stats_reply(&stats, osm);
2043 ofconn_send_reply(ofconn, reply);
09246b99
BP
2044
2045 return 0;
2046}
2047
c1c9c9c4 2048struct queue_stats_cbdata {
ca0f572c 2049 struct ofport *ofport;
63f2140a 2050 struct list replies;
c1c9c9c4
BP
2051};
2052
2053static void
db9220c3 2054put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
c1c9c9c4
BP
2055 const struct netdev_queue_stats *stats)
2056{
2057 struct ofp_queue_stats *reply;
2058
63f2140a 2059 reply = ofputil_append_stats_reply(sizeof *reply, &cbdata->replies);
118c4676 2060 reply->port_no = cbdata->ofport->opp.port_no;
c1c9c9c4
BP
2061 memset(reply->pad, 0, sizeof reply->pad);
2062 reply->queue_id = htonl(queue_id);
c4617b3c
BP
2063 put_32aligned_be64(&reply->tx_bytes, htonll(stats->tx_bytes));
2064 put_32aligned_be64(&reply->tx_packets, htonll(stats->tx_packets));
2065 put_32aligned_be64(&reply->tx_errors, htonll(stats->tx_errors));
c1c9c9c4
BP
2066}
2067
2068static void
db9220c3 2069handle_queue_stats_dump_cb(uint32_t queue_id,
c1c9c9c4
BP
2070 struct netdev_queue_stats *stats,
2071 void *cbdata_)
2072{
2073 struct queue_stats_cbdata *cbdata = cbdata_;
2074
2075 put_queue_stats(cbdata, queue_id, stats);
2076}
2077
2078static void
ca0f572c 2079handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
c1c9c9c4
BP
2080 struct queue_stats_cbdata *cbdata)
2081{
ca0f572c 2082 cbdata->ofport = port;
c1c9c9c4
BP
2083 if (queue_id == OFPQ_ALL) {
2084 netdev_dump_queue_stats(port->netdev,
2085 handle_queue_stats_dump_cb, cbdata);
2086 } else {
2087 struct netdev_queue_stats stats;
2088
1ac788f6
BP
2089 if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
2090 put_queue_stats(cbdata, queue_id, &stats);
2091 }
c1c9c9c4
BP
2092 }
2093}
2094
2095static int
63f2140a
BP
2096handle_queue_stats_request(struct ofconn *ofconn,
2097 const struct ofp_queue_stats_request *qsr)
c1c9c9c4 2098{
64ff1d96 2099 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
c1c9c9c4
BP
2100 struct queue_stats_cbdata cbdata;
2101 struct ofport *port;
2102 unsigned int port_no;
2103 uint32_t queue_id;
2104
c1c9c9c4
BP
2105 COVERAGE_INC(ofproto_queue_req);
2106
63f2140a 2107 ofputil_start_stats_reply(&qsr->osm, &cbdata.replies);
c1c9c9c4
BP
2108
2109 port_no = ntohs(qsr->port_no);
2110 queue_id = ntohl(qsr->queue_id);
2111 if (port_no == OFPP_ALL) {
4e8e4213 2112 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
ca0f572c 2113 handle_queue_stats_for_port(port, queue_id, &cbdata);
c1c9c9c4 2114 }
abe529af
BP
2115 } else if (port_no < OFPP_MAX) {
2116 port = ofproto_get_port(ofproto, port_no);
c1c9c9c4 2117 if (port) {
ca0f572c 2118 handle_queue_stats_for_port(port, queue_id, &cbdata);
c1c9c9c4
BP
2119 }
2120 } else {
63f2140a 2121 ofpbuf_list_delete(&cbdata.replies);
c1c9c9c4
BP
2122 return ofp_mkerr(OFPET_QUEUE_OP_FAILED, OFPQOFC_BAD_PORT);
2123 }
63f2140a 2124 ofconn_send_replies(ofconn, &cbdata.replies);
c1c9c9c4
BP
2125
2126 return 0;
2127}
7ee20df1
BP
2128
2129static bool
2130is_flow_deletion_pending(const struct ofproto *ofproto,
2131 const struct cls_rule *cls_rule,
2132 uint8_t table_id)
2133{
2134 if (!hmap_is_empty(&ofproto->deletions)) {
2135 struct ofoperation *op;
2136
2137 HMAP_FOR_EACH_WITH_HASH (op, hmap_node,
2138 cls_rule_hash(cls_rule, table_id),
2139 &ofproto->deletions) {
2140 if (cls_rule_equal(cls_rule, &op->rule->cr)) {
2141 return true;
2142 }
2143 }
2144 }
2145
2146 return false;
2147}
2148
79eee1eb
BP
2149/* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
2150 * in which no matching flow already exists in the flow table.
2151 *
2152 * Adds the flow specified by 'ofm', which is followed by 'n_actions'
64ff1d96 2153 * ofp_actions, to the ofproto's flow table. Returns 0 on success or an
3269c562 2154 * OpenFlow error code as encoded by ofp_mkerr() on failure.
79eee1eb
BP
2155 *
2156 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
2157 * if any. */
064af421 2158static int
7ee20df1
BP
2159add_flow(struct ofproto *ofproto, struct ofconn *ofconn, struct flow_mod *fm,
2160 const struct ofp_header *request)
064af421 2161{
7ee20df1
BP
2162 struct classifier *table;
2163 struct ofopgroup *group;
2164 struct rule *victim;
064af421 2165 struct rule *rule;
064af421
BP
2166 int error;
2167
7ee20df1 2168 /* Check for overlap, if requested. */
6c1491fb
BP
2169 if (fm->flags & OFPFF_CHECK_OVERLAP) {
2170 struct classifier *cls;
2171
7ee20df1 2172 FOR_EACH_MATCHING_TABLE (cls, fm->table_id, ofproto) {
6c1491fb
BP
2173 if (classifier_rule_overlaps(cls, &fm->cr)) {
2174 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP);
2175 }
2176 }
49bdc010
JP
2177 }
2178
7ee20df1
BP
2179 /* Pick table. */
2180 if (fm->table_id == 0xff) {
2181 uint8_t table_id;
2182 if (ofproto->n_tables > 1) {
2183 error = ofproto->ofproto_class->rule_choose_table(ofproto, &fm->cr,
2184 &table_id);
2185 if (error) {
2186 return error;
2187 }
2188 assert(table_id < ofproto->n_tables);
2189 table = &ofproto->tables[table_id];
2190 } else {
2191 table = &ofproto->tables[0];
2192 }
2193 } else if (fm->table_id < ofproto->n_tables) {
2194 table = &ofproto->tables[fm->table_id];
2195 } else {
2196 return ofp_mkerr_nicira(OFPET_FLOW_MOD_FAILED, NXFMFC_BAD_TABLE_ID);
064af421
BP
2197 }
2198
7ee20df1
BP
2199 /* Serialize against pending deletion. */
2200 if (is_flow_deletion_pending(ofproto, &fm->cr, table - ofproto->tables)) {
2201 return OFPROTO_POSTPONE;
afe75089 2202 }
064af421 2203
7ee20df1
BP
2204 /* Allocate new rule. */
2205 rule = ofproto->ofproto_class->rule_alloc();
2206 if (!rule) {
2207 VLOG_WARN_RL(&rl, "%s: failed to create rule (%s)",
2208 ofproto->name, strerror(error));
2209 return ENOMEM;
2210 }
2211 rule->ofproto = ofproto;
2212 rule->cr = fm->cr;
2213 rule->pending = NULL;
2214 rule->flow_cookie = fm->cookie;
2215 rule->created = time_msec();
2216 rule->idle_timeout = fm->idle_timeout;
2217 rule->hard_timeout = fm->hard_timeout;
2218 rule->table_id = table - ofproto->tables;
2219 rule->send_flow_removed = (fm->flags & OFPFF_SEND_FLOW_REM) != 0;
2220 rule->actions = ofputil_actions_clone(fm->actions, fm->n_actions);
2221 rule->n_actions = fm->n_actions;
2222
2223 /* Insert new rule. */
2224 victim = rule_from_cls_rule(classifier_replace(table, &rule->cr));
2225 if (victim && victim->pending) {
2226 error = OFPROTO_POSTPONE;
2227 } else {
2228 group = (ofconn
2229 ? ofopgroup_create_for_ofconn(ofconn, request, fm->buffer_id)
2230 : ofopgroup_create(ofproto));
2231 ofoperation_create(group, rule, OFOPERATION_ADD);
2232 rule->pending->victim = victim;
2233
2234 error = ofproto->ofproto_class->rule_construct(rule);
2235 if (error) {
2236 ofoperation_destroy(rule->pending);
2237 }
2238 ofopgroup_submit(group);
064af421 2239 }
79eee1eb 2240
7ee20df1 2241 /* Back out if an error occurred. */
79eee1eb 2242 if (error) {
7ee20df1
BP
2243 if (victim) {
2244 classifier_replace(table, &victim->cr);
2245 } else {
2246 classifier_remove(table, &rule->cr);
2247 }
2248 ofproto_rule_destroy__(rule);
79eee1eb 2249 }
7ee20df1 2250 return error;
064af421 2251}
79eee1eb
BP
2252\f
2253/* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
064af421 2254
9ed18e46
BP
2255/* Modifies the rules listed in 'rules', changing their actions to match those
2256 * in 'fm'.
79eee1eb 2257 *
9ed18e46
BP
2258 * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
2259 * if any.
2260 *
2261 * Returns 0 on success, otherwise an OpenFlow error code. */
79eee1eb 2262static int
9ed18e46 2263modify_flows__(struct ofconn *ofconn, const struct flow_mod *fm,
7ee20df1 2264 const struct ofp_header *request, struct list *rules)
79eee1eb 2265{
7ee20df1 2266 struct ofopgroup *group;
9ed18e46 2267 struct rule *rule;
79eee1eb 2268
7ee20df1 2269 group = ofopgroup_create_for_ofconn(ofconn, request, fm->buffer_id);
9ed18e46
BP
2270 LIST_FOR_EACH (rule, ofproto_node, rules) {
2271 if (!ofputil_actions_equal(fm->actions, fm->n_actions,
2272 rule->actions, rule->n_actions)) {
7ee20df1
BP
2273 ofoperation_create(group, rule, OFOPERATION_MODIFY);
2274 rule->pending->actions = rule->actions;
2275 rule->pending->n_actions = rule->n_actions;
2276 rule->actions = ofputil_actions_clone(fm->actions, fm->n_actions);
2277 rule->n_actions = fm->n_actions;
2278 rule->ofproto->ofproto_class->rule_modify_actions(rule);
5ecc9d81 2279 }
9ed18e46 2280 rule->flow_cookie = fm->cookie;
5ecc9d81 2281 }
7ee20df1 2282 ofopgroup_submit(group);
79eee1eb 2283
7ee20df1 2284 return 0;
9ed18e46
BP
2285}
2286
2287/* Implements OFPFC_MODIFY. Returns 0 on success or an OpenFlow error code as
2288 * encoded by ofp_mkerr() on failure.
2289 *
2290 * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
2291 * if any. */
2292static int
7ee20df1
BP
2293modify_flows_loose(struct ofconn *ofconn, struct flow_mod *fm,
2294 const struct ofp_header *request)
9ed18e46
BP
2295{
2296 struct ofproto *p = ofconn_get_ofproto(ofconn);
2297 struct list rules;
2298 int error;
2299
2300 error = collect_rules_loose(p, fm->table_id, &fm->cr, OFPP_NONE, &rules);
2301 return (error ? error
7ee20df1
BP
2302 : list_is_empty(&rules) ? add_flow(p, ofconn, fm, request)
2303 : modify_flows__(ofconn, fm, request, &rules));
79eee1eb
BP
2304}
2305
2306/* Implements OFPFC_MODIFY_STRICT. Returns 0 on success or an OpenFlow error
2307 * code as encoded by ofp_mkerr() on failure.
2308 *
9ed18e46 2309 * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
79eee1eb
BP
2310 * if any. */
2311static int
7ee20df1
BP
2312modify_flow_strict(struct ofconn *ofconn, struct flow_mod *fm,
2313 const struct ofp_header *request)
79eee1eb 2314{
64ff1d96 2315 struct ofproto *p = ofconn_get_ofproto(ofconn);
9ed18e46 2316 struct list rules;
6c1491fb
BP
2317 int error;
2318
9ed18e46
BP
2319 error = collect_rules_strict(p, fm->table_id, &fm->cr, OFPP_NONE, &rules);
2320 return (error ? error
7ee20df1
BP
2321 : list_is_empty(&rules) ? add_flow(p, ofconn, fm, request)
2322 : list_is_singleton(&rules) ? modify_flows__(ofconn, fm, request,
2323 &rules)
9ed18e46 2324 : 0);
79eee1eb 2325}
9ed18e46
BP
2326\f
2327/* OFPFC_DELETE implementation. */
79eee1eb 2328
9ed18e46
BP
2329/* Deletes the rules listed in 'rules'.
2330 *
2331 * Returns 0 on success, otherwise an OpenFlow error code. */
064af421 2332static int
7ee20df1
BP
2333delete_flows__(struct ofconn *ofconn, const struct ofp_header *request,
2334 struct list *rules)
064af421 2335{
7ee20df1 2336 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
9ed18e46 2337 struct rule *rule, *next;
7ee20df1 2338 struct ofopgroup *group;
79eee1eb 2339
7ee20df1 2340 group = ofopgroup_create_for_ofconn(ofconn, request, UINT32_MAX);
9ed18e46
BP
2341 LIST_FOR_EACH_SAFE (rule, next, ofproto_node, rules) {
2342 ofproto_rule_send_removed(rule, OFPRR_DELETE);
7ee20df1
BP
2343
2344 ofoperation_create(group, rule, OFOPERATION_DELETE);
2345 classifier_remove(&ofproto->tables[rule->table_id], &rule->cr);
2346 rule->ofproto->ofproto_class->rule_destruct(rule);
79eee1eb 2347 }
7ee20df1 2348 ofopgroup_submit(group);
79eee1eb 2349
9ed18e46 2350 return 0;
79eee1eb 2351}
79eee1eb
BP
2352
2353/* Implements OFPFC_DELETE. */
9ed18e46 2354static int
7ee20df1
BP
2355delete_flows_loose(struct ofconn *ofconn, const struct flow_mod *fm,
2356 const struct ofp_header *request)
79eee1eb 2357{
7ee20df1 2358 struct ofproto *p = ofconn_get_ofproto(ofconn);
9ed18e46
BP
2359 struct list rules;
2360 int error;
064af421 2361
9ed18e46
BP
2362 error = collect_rules_loose(p, fm->table_id, &fm->cr, fm->out_port,
2363 &rules);
2364 return (error ? error
7ee20df1 2365 : !list_is_empty(&rules) ? delete_flows__(ofconn, request, &rules)
9ed18e46 2366 : 0);
064af421
BP
2367}
2368
79eee1eb 2369/* Implements OFPFC_DELETE_STRICT. */
9ed18e46 2370static int
7ee20df1
BP
2371delete_flow_strict(struct ofconn *ofconn, struct flow_mod *fm,
2372 const struct ofp_header *request)
79eee1eb 2373{
7ee20df1 2374 struct ofproto *p = ofconn_get_ofproto(ofconn);
9ed18e46
BP
2375 struct list rules;
2376 int error;
79eee1eb 2377
9ed18e46
BP
2378 error = collect_rules_strict(p, fm->table_id, &fm->cr, fm->out_port,
2379 &rules);
2380 return (error ? error
7ee20df1
BP
2381 : list_is_singleton(&rules) ? delete_flows__(ofconn, request,
2382 &rules)
9ed18e46 2383 : 0);
abe529af
BP
2384}
2385
2386static void
2387ofproto_rule_send_removed(struct rule *rule, uint8_t reason)
2388{
2389 struct ofputil_flow_removed fr;
2390
2391 if (rule_is_hidden(rule) || !rule->send_flow_removed) {
2392 return;
2393 }
2394
2395 fr.rule = rule->cr;
2396 fr.cookie = rule->flow_cookie;
2397 fr.reason = reason;
2398 calc_flow_duration__(rule->created, &fr.duration_sec, &fr.duration_nsec);
2399 fr.idle_timeout = rule->idle_timeout;
2400 rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
2401 &fr.byte_count);
2402
2403 connmgr_send_flow_removed(rule->ofproto->connmgr, &fr);
2404}
2405
2406/* Sends an OpenFlow "flow removed" message with the given 'reason' (either
2407 * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
2408 * ofproto.
2409 *
2410 * ofproto implementation ->run() functions should use this function to expire
2411 * OpenFlow flows. */
2412void
2413ofproto_rule_expire(struct rule *rule, uint8_t reason)
2414{
7ee20df1
BP
2415 struct ofproto *ofproto = rule->ofproto;
2416 struct ofopgroup *group;
2417
abe529af 2418 assert(reason == OFPRR_HARD_TIMEOUT || reason == OFPRR_IDLE_TIMEOUT);
7ee20df1 2419
abe529af 2420 ofproto_rule_send_removed(rule, reason);
7ee20df1
BP
2421
2422 group = ofopgroup_create(ofproto);
2423 ofoperation_create(group, rule, OFOPERATION_DELETE);
2424 classifier_remove(&ofproto->tables[rule->table_id], &rule->cr);
2425 rule->ofproto->ofproto_class->rule_destruct(rule);
2426 ofopgroup_submit(group);
79eee1eb
BP
2427}
2428\f
064af421 2429static int
2e4f5fcf 2430handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
064af421 2431{
7ee20df1 2432 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
2e4f5fcf 2433 struct flow_mod fm;
064af421
BP
2434 int error;
2435
3052b0c5 2436 error = reject_slave_controller(ofconn, "flow_mod");
9deba63b
BP
2437 if (error) {
2438 return error;
2439 }
3052b0c5 2440
7ee20df1
BP
2441 if (list_size(&ofproto->pending) >= 50) {
2442 return OFPROTO_POSTPONE;
2443 }
2444
00794817 2445 error = ofputil_decode_flow_mod(&fm, oh,
6c1491fb 2446 ofconn_get_flow_mod_table_id(ofconn));
064af421
BP
2447 if (error) {
2448 return error;
2449 }
2450
2e4f5fcf
BP
2451 /* We do not support the emergency flow cache. It will hopefully get
2452 * dropped from OpenFlow in the near future. */
2453 if (fm.flags & OFPFF_EMERG) {
49bdc010
JP
2454 /* There isn't a good fit for an error code, so just state that the
2455 * flow table is full. */
2456 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL);
2457 }
2458
2e4f5fcf 2459 switch (fm.command) {
3052b0c5 2460 case OFPFC_ADD:
7ee20df1 2461 return add_flow(ofproto, ofconn, &fm, oh);
3052b0c5
BP
2462
2463 case OFPFC_MODIFY:
7ee20df1 2464 return modify_flows_loose(ofconn, &fm, oh);
3052b0c5
BP
2465
2466 case OFPFC_MODIFY_STRICT:
7ee20df1 2467 return modify_flow_strict(ofconn, &fm, oh);
3052b0c5
BP
2468
2469 case OFPFC_DELETE:
7ee20df1 2470 return delete_flows_loose(ofconn, &fm, oh);
3052b0c5
BP
2471
2472 case OFPFC_DELETE_STRICT:
7ee20df1 2473 return delete_flow_strict(ofconn, &fm, oh);
3052b0c5
BP
2474
2475 default:
6c1491fb
BP
2476 if (fm.command > 0xff) {
2477 VLOG_WARN_RL(&rl, "flow_mod has explicit table_id but "
2478 "flow_mod_table_id extension is not enabled");
2479 }
3052b0c5
BP
2480 return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
2481 }
2482}
2483
9deba63b 2484static int
d1e2cf21 2485handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
9deba63b 2486{
d1e2cf21 2487 struct nx_role_request *nrr = (struct nx_role_request *) oh;
9deba63b
BP
2488 struct nx_role_request *reply;
2489 struct ofpbuf *buf;
2490 uint32_t role;
2491
1ce0a5fa 2492 if (ofconn_get_type(ofconn) != OFCONN_PRIMARY) {
19a87e36 2493 VLOG_WARN_RL(&rl, "ignoring role request on service connection");
9deba63b
BP
2494 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2495 }
2496
2497 role = ntohl(nrr->role);
2498 if (role != NX_ROLE_OTHER && role != NX_ROLE_MASTER
2499 && role != NX_ROLE_SLAVE) {
2500 VLOG_WARN_RL(&rl, "received request for unknown role %"PRIu32, role);
2501
2502 /* There's no good error code for this. */
2503 return ofp_mkerr(OFPET_BAD_REQUEST, -1);
2504 }
2505
7ee20df1
BP
2506 if (ofconn_get_role(ofconn) != role
2507 && ofconn_has_pending_opgroups(ofconn)) {
2508 return OFPROTO_POSTPONE;
2509 }
2510
1ce0a5fa 2511 ofconn_set_role(ofconn, role);
9deba63b 2512
d1e2cf21 2513 reply = make_nxmsg_xid(sizeof *reply, NXT_ROLE_REPLY, oh->xid, &buf);
9deba63b 2514 reply->role = htonl(role);
b0421aa2 2515 ofconn_send_reply(ofconn, buf);
9deba63b
BP
2516
2517 return 0;
2518}
2519
6c1491fb
BP
2520static int
2521handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
2522 const struct ofp_header *oh)
2523{
2524 const struct nxt_flow_mod_table_id *msg
2525 = (const struct nxt_flow_mod_table_id *) oh;
2526
2527 ofconn_set_flow_mod_table_id(ofconn, msg->set != 0);
2528 return 0;
2529}
2530
09246b99 2531static int
d1e2cf21 2532handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
09246b99 2533{
d1e2cf21
BP
2534 const struct nxt_set_flow_format *msg
2535 = (const struct nxt_set_flow_format *) oh;
09246b99 2536 uint32_t format;
09246b99
BP
2537
2538 format = ntohl(msg->format);
7ee20df1 2539 if (format != NXFF_OPENFLOW10 && format != NXFF_NXM) {
09246b99
BP
2540 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2541 }
7ee20df1
BP
2542
2543 if (format != ofconn_get_flow_format(ofconn)
2544 && ofconn_has_pending_opgroups(ofconn)) {
2545 /* Avoid sending async messages in surprising flow format. */
2546 return OFPROTO_POSTPONE;
2547 }
2548
2549 ofconn_set_flow_format(ofconn, format);
2550 return 0;
09246b99
BP
2551}
2552
064af421 2553static int
d1e2cf21 2554handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
246e61ea
JP
2555{
2556 struct ofp_header *ob;
2557 struct ofpbuf *buf;
2558
7ee20df1
BP
2559 if (ofconn_has_pending_opgroups(ofconn)) {
2560 return OFPROTO_POSTPONE;
2561 }
2562
246e61ea 2563 ob = make_openflow_xid(sizeof *ob, OFPT_BARRIER_REPLY, oh->xid, &buf);
b0421aa2 2564 ofconn_send_reply(ofconn, buf);
246e61ea
JP
2565 return 0;
2566}
2567
d1e2cf21
BP
2568static int
2569handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
064af421 2570{
d1e2cf21
BP
2571 const struct ofp_header *oh = msg->data;
2572 const struct ofputil_msg_type *type;
064af421
BP
2573 int error;
2574
d1e2cf21
BP
2575 error = ofputil_decode_msg_type(oh, &type);
2576 if (error) {
2577 return error;
2578 }
064af421 2579
d1e2cf21
BP
2580 switch (ofputil_msg_type_code(type)) {
2581 /* OpenFlow requests. */
2582 case OFPUTIL_OFPT_ECHO_REQUEST:
2583 return handle_echo_request(ofconn, oh);
064af421 2584
d1e2cf21
BP
2585 case OFPUTIL_OFPT_FEATURES_REQUEST:
2586 return handle_features_request(ofconn, oh);
064af421 2587
d1e2cf21
BP
2588 case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
2589 return handle_get_config_request(ofconn, oh);
064af421 2590
d1e2cf21
BP
2591 case OFPUTIL_OFPT_SET_CONFIG:
2592 return handle_set_config(ofconn, msg->data);
064af421 2593
d1e2cf21
BP
2594 case OFPUTIL_OFPT_PACKET_OUT:
2595 return handle_packet_out(ofconn, oh);
064af421 2596
d1e2cf21
BP
2597 case OFPUTIL_OFPT_PORT_MOD:
2598 return handle_port_mod(ofconn, oh);
064af421 2599
d1e2cf21 2600 case OFPUTIL_OFPT_FLOW_MOD:
2e4f5fcf 2601 return handle_flow_mod(ofconn, oh);
064af421 2602
d1e2cf21
BP
2603 case OFPUTIL_OFPT_BARRIER_REQUEST:
2604 return handle_barrier_request(ofconn, oh);
064af421 2605
d1e2cf21
BP
2606 /* OpenFlow replies. */
2607 case OFPUTIL_OFPT_ECHO_REPLY:
2608 return 0;
246e61ea 2609
d1e2cf21 2610 /* Nicira extension requests. */
d1e2cf21
BP
2611 case OFPUTIL_NXT_ROLE_REQUEST:
2612 return handle_role_request(ofconn, oh);
2613
6c1491fb
BP
2614 case OFPUTIL_NXT_FLOW_MOD_TABLE_ID:
2615 return handle_nxt_flow_mod_table_id(ofconn, oh);
d1e2cf21
BP
2616
2617 case OFPUTIL_NXT_SET_FLOW_FORMAT:
2618 return handle_nxt_set_flow_format(ofconn, oh);
2619
2620 case OFPUTIL_NXT_FLOW_MOD:
2e4f5fcf 2621 return handle_flow_mod(ofconn, oh);
d1e2cf21 2622
349adfb2 2623 /* Statistics requests. */
d1e2cf21 2624 case OFPUTIL_OFPST_DESC_REQUEST:
63f2140a 2625 return handle_desc_stats_request(ofconn, msg->data);
d1e2cf21
BP
2626
2627 case OFPUTIL_OFPST_FLOW_REQUEST:
349adfb2 2628 case OFPUTIL_NXST_FLOW_REQUEST:
63f2140a 2629 return handle_flow_stats_request(ofconn, msg->data);
d1e2cf21
BP
2630
2631 case OFPUTIL_OFPST_AGGREGATE_REQUEST:
76c93b22 2632 case OFPUTIL_NXST_AGGREGATE_REQUEST:
63f2140a 2633 return handle_aggregate_stats_request(ofconn, msg->data);
d1e2cf21
BP
2634
2635 case OFPUTIL_OFPST_TABLE_REQUEST:
63f2140a 2636 return handle_table_stats_request(ofconn, msg->data);
d1e2cf21
BP
2637
2638 case OFPUTIL_OFPST_PORT_REQUEST:
63f2140a 2639 return handle_port_stats_request(ofconn, msg->data);
d1e2cf21
BP
2640
2641 case OFPUTIL_OFPST_QUEUE_REQUEST:
63f2140a 2642 return handle_queue_stats_request(ofconn, msg->data);
d1e2cf21 2643
8f93e93c 2644 case OFPUTIL_MSG_INVALID:
d1e2cf21
BP
2645 case OFPUTIL_OFPT_HELLO:
2646 case OFPUTIL_OFPT_ERROR:
2647 case OFPUTIL_OFPT_FEATURES_REPLY:
2648 case OFPUTIL_OFPT_GET_CONFIG_REPLY:
2649 case OFPUTIL_OFPT_PACKET_IN:
2650 case OFPUTIL_OFPT_FLOW_REMOVED:
2651 case OFPUTIL_OFPT_PORT_STATUS:
2652 case OFPUTIL_OFPT_BARRIER_REPLY:
2653 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
2654 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
2655 case OFPUTIL_OFPST_DESC_REPLY:
2656 case OFPUTIL_OFPST_FLOW_REPLY:
2657 case OFPUTIL_OFPST_QUEUE_REPLY:
2658 case OFPUTIL_OFPST_PORT_REPLY:
2659 case OFPUTIL_OFPST_TABLE_REPLY:
2660 case OFPUTIL_OFPST_AGGREGATE_REPLY:
d1e2cf21
BP
2661 case OFPUTIL_NXT_ROLE_REPLY:
2662 case OFPUTIL_NXT_FLOW_REMOVED:
2663 case OFPUTIL_NXST_FLOW_REPLY:
2664 case OFPUTIL_NXST_AGGREGATE_REPLY:
064af421
BP
2665 default:
2666 if (VLOG_IS_WARN_ENABLED()) {
2667 char *s = ofp_to_string(oh, ntohs(oh->length), 2);
2668 VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
2669 free(s);
2670 }
d1e2cf21
BP
2671 if (oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY) {
2672 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
2673 } else {
2674 return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
2675 }
064af421 2676 }
d1e2cf21 2677}
064af421 2678
7ee20df1 2679static bool
d1e2cf21
BP
2680handle_openflow(struct ofconn *ofconn, struct ofpbuf *ofp_msg)
2681{
2682 int error = handle_openflow__(ofconn, ofp_msg);
7ee20df1 2683 if (error && error != OFPROTO_POSTPONE) {
1be5ff75 2684 ofconn_send_error(ofconn, ofp_msg->data, error);
064af421 2685 }
d1e2cf21 2686 COVERAGE_INC(ofproto_recv_openflow);
7ee20df1
BP
2687 return error != OFPROTO_POSTPONE;
2688}
2689\f
2690/* Asynchronous operations. */
2691
2692/* Creates and returns a new ofopgroup that is not associated with any
2693 * OpenFlow connection.
2694 *
2695 * The caller should add operations to the returned group with
2696 * ofoperation_create() and then submit it with ofopgroup_submit(). */
2697static struct ofopgroup *
2698ofopgroup_create(struct ofproto *ofproto)
2699{
2700 struct ofopgroup *group = xzalloc(sizeof *group);
2701 group->ofproto = ofproto;
2702 list_init(&group->ofproto_node);
2703 list_init(&group->ops);
2704 list_init(&group->ofconn_node);
2705 return group;
2706}
2707
2708/* Creates and returns a new ofopgroup that is associated with 'ofconn'. If
2709 * the ofopgroup eventually fails, then the error reply will include 'request'.
2710 * If the ofopgroup eventually succeeds, then the packet with buffer id
2711 * 'buffer_id' on 'ofconn' will be sent by 'ofconn''s ofproto.
2712 *
2713 * The caller should add operations to the returned group with
2714 * ofoperation_create() and then submit it with ofopgroup_submit(). */
2715static struct ofopgroup *
2716ofopgroup_create_for_ofconn(struct ofconn *ofconn,
2717 const struct ofp_header *request,
2718 uint32_t buffer_id)
2719{
2720 struct ofopgroup *group = ofopgroup_create(ofconn_get_ofproto(ofconn));
2721 size_t request_len = ntohs(request->length);
2722
2723 ofconn_add_opgroup(ofconn, &group->ofconn_node);
2724 group->ofconn = ofconn;
2725 group->request = xmemdup(request, MIN(request_len, 64));
2726 group->buffer_id = buffer_id;
2727
2728 return group;
2729}
2730
2731/* Submits 'group' for processing.
2732 *
2733 * If 'group' contains no operations (e.g. none were ever added, or all of the
2734 * ones that were added completed synchronously), then it is destroyed
2735 * immediately. Otherwise it is added to the ofproto's list of pending
2736 * groups. */
2737static void
2738ofopgroup_submit(struct ofopgroup *group)
2739{
2740 if (list_is_empty(&group->ops)) {
2741 ofopgroup_destroy(group);
2742 } else {
2743 list_push_back(&group->ofproto->pending, &group->ofproto_node);
2744 }
2745}
2746
2747static void
2748ofopgroup_destroy(struct ofopgroup *group)
2749{
2750 assert(list_is_empty(&group->ops));
2751 if (!list_is_empty(&group->ofproto_node)) {
2752 list_remove(&group->ofproto_node);
2753 }
2754 if (!list_is_empty(&group->ofconn_node)) {
2755 list_remove(&group->ofconn_node);
2756 if (group->error) {
2757 ofconn_send_error(group->ofconn, group->request, group->error);
2758 }
2759 connmgr_retry(group->ofproto->connmgr);
2760 }
2761 free(group->request);
2762 free(group);
2763}
2764
2765/* Initiates a new operation on 'rule', of the specified 'type', within
2766 * 'group'. Prior to calling, 'rule' must not have any pending operation. */
2767static void
2768ofoperation_create(struct ofopgroup *group, struct rule *rule,
2769 enum ofoperation_type type)
2770{
2771 struct ofoperation *op;
2772
2773 assert(!rule->pending);
2774
2775 op = rule->pending = xzalloc(sizeof *op);
2776 op->group = group;
2777 list_push_back(&group->ops, &op->group_node);
2778 op->rule = rule;
2779 op->type = type;
2780 op->status = -1;
2781 op->flow_cookie = rule->flow_cookie;
2782
2783 if (type == OFOPERATION_DELETE) {
2784 hmap_insert(&op->group->ofproto->deletions, &op->hmap_node,
2785 cls_rule_hash(&rule->cr, rule->table_id));
2786 }
2787}
2788
2789static void
2790ofoperation_destroy(struct ofoperation *op)
2791{
2792 struct ofopgroup *group = op->group;
2793
2794 if (op->rule) {
2795 op->rule->pending = NULL;
2796 }
2797 if (op->type == OFOPERATION_DELETE) {
2798 hmap_remove(&group->ofproto->deletions, &op->hmap_node);
2799 }
2800 list_remove(&op->group_node);
2801 free(op->actions);
2802 free(op);
2803
2804 if (list_is_empty(&group->ops) && !list_is_empty(&group->ofproto_node)) {
2805 ofopgroup_destroy(group);
2806 }
2807}
2808
2809/* Indicates that 'op' completed with status 'error', which is either 0 to
2810 * indicate success or an OpenFlow error code (constructed with
2811 * e.g. ofp_mkerr()).
2812 *
2813 * If 'op' is a "delete flow" operation, 'error' must be 0. That is, flow
2814 * deletions are not allowed to fail.
2815 *
5bee6e26
JP
2816 * Please see the large comment in ofproto/ofproto-provider.h titled
2817 * "Asynchronous Operation Support" for more information. */
7ee20df1
BP
2818void
2819ofoperation_complete(struct ofoperation *op, int error)
2820{
2821 struct ofopgroup *group = op->group;
2822 struct rule *rule = op->rule;
2823 struct classifier *table = &rule->ofproto->tables[rule->table_id];
2824
2825 assert(rule->pending == op);
2826 assert(op->status < 0);
2827 assert(error >= 0);
2828
2829 if (!error
2830 && !group->error
2831 && op->type != OFOPERATION_DELETE
2832 && group->ofconn
2833 && group->buffer_id != UINT32_MAX
2834 && list_is_singleton(&op->group_node)) {
2835 struct ofpbuf *packet;
2836 uint16_t in_port;
2837
2838 error = ofconn_pktbuf_retrieve(group->ofconn, group->buffer_id,
2839 &packet, &in_port);
2840 if (packet) {
2841 assert(!error);
2842 error = rule_execute(rule, in_port, packet);
2843 }
2844 }
2845 if (!group->error) {
2846 group->error = error;
2847 }
2848
2849 switch (op->type) {
2850 case OFOPERATION_ADD:
2851 if (!error) {
2852 if (op->victim) {
2853 ofproto_rule_destroy__(op->victim);
2854 }
2855 } else {
2856 if (op->victim) {
2857 classifier_replace(table, &op->victim->cr);
2858 op->victim = NULL;
2859 } else {
2860 classifier_remove(table, &rule->cr);
2861 }
2862 ofproto_rule_destroy__(rule);
2863 }
2864 op->victim = NULL;
2865 break;
2866
2867 case OFOPERATION_DELETE:
2868 assert(!error);
2869 ofproto_rule_destroy__(rule);
2870 op->rule = NULL;
2871 break;
2872
2873 case OFOPERATION_MODIFY:
2874 if (error) {
2875 free(rule->actions);
2876 rule->actions = op->actions;
2877 rule->n_actions = op->n_actions;
2878 op->actions = NULL;
2879 }
2880 break;
2881
2882 default:
2883 NOT_REACHED();
2884 }
2885 ofoperation_destroy(op);
2886}
2887
2888struct rule *
2889ofoperation_get_victim(struct ofoperation *op)
2890{
2891 assert(op->type == OFOPERATION_ADD);
2892 return op->victim;
064af421
BP
2893}
2894\f
064af421 2895static uint64_t
fa60c019 2896pick_datapath_id(const struct ofproto *ofproto)
064af421 2897{
fa60c019 2898 const struct ofport *port;
064af421 2899
abe529af 2900 port = ofproto_get_port(ofproto, OFPP_LOCAL);
fa60c019
BP
2901 if (port) {
2902 uint8_t ea[ETH_ADDR_LEN];
2903 int error;
2904
2905 error = netdev_get_etheraddr(port->netdev, ea);
064af421
BP
2906 if (!error) {
2907 return eth_addr_to_uint64(ea);
2908 }
2909 VLOG_WARN("could not get MAC address for %s (%s)",
fa60c019 2910 netdev_get_name(port->netdev), strerror(error));
064af421 2911 }
fa60c019 2912 return ofproto->fallback_dpid;
064af421
BP
2913}
2914
2915static uint64_t
2916pick_fallback_dpid(void)
2917{
2918 uint8_t ea[ETH_ADDR_LEN];
70150daf 2919 eth_addr_nicira_random(ea);
064af421
BP
2920 return eth_addr_to_uint64(ea);
2921}
2922\f
abe529af 2923/* unixctl commands. */
7aa697dd 2924
abe529af 2925struct ofproto *
2ac6bedd 2926ofproto_lookup(const char *name)
7aa697dd 2927{
2ac6bedd 2928 struct ofproto *ofproto;
7aa697dd 2929
2ac6bedd
BP
2930 HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
2931 &all_ofprotos) {
2932 if (!strcmp(ofproto->name, name)) {
2933 return ofproto;
2934 }
7aa697dd 2935 }
2ac6bedd 2936 return NULL;
7aa697dd
BP
2937}
2938
2939static void
7aa697dd
BP
2940ofproto_unixctl_list(struct unixctl_conn *conn, const char *arg OVS_UNUSED,
2941 void *aux OVS_UNUSED)
7aa697dd 2942{
7aa697dd 2943 struct ofproto *ofproto;
7aa697dd 2944 struct ds results;
7aa697dd 2945
7aa697dd 2946 ds_init(&results);
2ac6bedd
BP
2947 HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
2948 ds_put_format(&results, "%s\n", ofproto->name);
7aa697dd 2949 }
7aa697dd
BP
2950 unixctl_command_reply(conn, 200, ds_cstr(&results));
2951 ds_destroy(&results);
7aa697dd
BP
2952}
2953
2954static void
2955ofproto_unixctl_init(void)
2956{
2957 static bool registered;
2958 if (registered) {
2959 return;
2960 }
2961 registered = true;
2962
2963 unixctl_command_register("ofproto/list", ofproto_unixctl_list, NULL);
064af421 2964}