]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/ofproto-dpif.c
dpif: Pass flow parameter to dpif_execute().
[mirror_ovs.git] / ofproto / ofproto-dpif.c
CommitLineData
abe529af 1/*
39cc5c4a 2 * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
abe529af
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
abe529af
BP
18#include <errno.h>
19
ccc09689 20#include "bfd.h"
abe529af 21#include "bond.h"
daff3353 22#include "bundle.h"
abe529af 23#include "byte-order.h"
f23d157c 24#include "connectivity.h"
abe529af
BP
25#include "connmgr.h"
26#include "coverage.h"
27#include "cfm.h"
28#include "dpif.h"
abe529af 29#include "fail-open.h"
05067881 30#include "guarded-list.h"
abe529af
BP
31#include "hmapx.h"
32#include "lacp.h"
75a75043 33#include "learn.h"
abe529af 34#include "mac-learning.h"
6d95c4e8 35#include "mcast-snooping.h"
abe529af 36#include "multipath.h"
0a740f48 37#include "netdev-vport.h"
abe529af
BP
38#include "netdev.h"
39#include "netlink.h"
40#include "nx-match.h"
41#include "odp-util.h"
1ac7c9bd 42#include "odp-execute.h"
b598f214
BW
43#include "ofproto/ofproto-dpif.h"
44#include "ofproto/ofproto-provider.h"
29089a54 45#include "ofproto-dpif-ipfix.h"
ec7ceaed 46#include "ofproto-dpif-mirror.h"
635c5db9 47#include "ofproto-dpif-monitor.h"
f5374617 48#include "ofproto-dpif-rid.h"
bae473fe 49#include "ofproto-dpif-sflow.h"
e1ec7dd4 50#include "ofproto-dpif-upcall.h"
9583bc14 51#include "ofproto-dpif-xlate.h"
b598f214
BW
52#include "openvswitch/ofp-actions.h"
53#include "openvswitch/dynamic-string.h"
54#include "openvswitch/meta-flow.h"
55#include "openvswitch/ofp-parse.h"
25d436fb 56#include "openvswitch/ofp-print.h"
b598f214
BW
57#include "openvswitch/ofp-util.h"
58#include "openvswitch/ofpbuf.h"
59#include "openvswitch/vlog.h"
60#include "ovs-lldp.h"
dfba2dfc 61#include "ovs-rcu.h"
a36de779 62#include "ovs-router.h"
b598f214 63#include "poll-loop.h"
f23d157c 64#include "seq.h"
0d085684 65#include "simap.h"
27022416 66#include "smap.h"
abe529af 67#include "timer.h"
b9ad7294 68#include "tunnel.h"
6c1491fb 69#include "unaligned.h"
abe529af
BP
70#include "unixctl.h"
71#include "vlan-bitmap.h"
abe529af
BP
72
73VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
74
abe529af 75COVERAGE_DEFINE(ofproto_dpif_expired);
ada3a58d 76COVERAGE_DEFINE(packet_in_overflow);
abe529af 77
a088a1ff 78struct flow_miss;
abe529af 79
70742c7f
EJ
80struct rule_dpif {
81 struct rule up;
82
83 /* These statistics:
84 *
e79a6c83
EJ
85 * - Do include packets and bytes from datapath flows which have not
86 * recently been processed by a revalidator. */
70742c7f 87 struct ovs_mutex stats_mutex;
1a4ec18d 88 struct dpif_flow_stats stats OVS_GUARDED;
888ac0d7 89
39c94593
JR
90 /* In non-NULL, will point to a new rule (for which a reference is held) to
91 * which all the stats updates should be forwarded. This exists only
92 * transitionally when flows are replaced.
93 *
94 * Protected by stats_mutex. If both 'rule->stats_mutex' and
95 * 'rule->new_rule->stats_mutex' must be held together, acquire them in that
96 * order, */
97 struct rule_dpif *new_rule OVS_GUARDED;
98
888ac0d7
SH
99 /* If non-zero then the recirculation id that has
100 * been allocated for use with this rule.
101 * The recirculation id and associated internal flow should
102 * be freed when the rule is freed */
103 uint32_t recirc_id;
70742c7f
EJ
104};
105
003ce655
JR
106/* RULE_CAST() depends on this. */
107BUILD_ASSERT_DECL(offsetof(struct rule_dpif, up) == 0);
108
dc437090
JR
109static void rule_get_stats(struct rule *, uint64_t *packets, uint64_t *bytes,
110 long long int *used);
70742c7f 111static struct rule_dpif *rule_dpif_cast(const struct rule *);
e79a6c83 112static void rule_expire(struct rule_dpif *);
b0f7b9b5 113
00430a3f
SH
114struct group_dpif {
115 struct ofgroup up;
116
117 /* These statistics:
118 *
e79a6c83
EJ
119 * - Do include packets and bytes from datapath flows which have not
120 * recently been processed by a revalidator. */
00430a3f
SH
121 struct ovs_mutex stats_mutex;
122 uint64_t packet_count OVS_GUARDED; /* Number of packets received. */
123 uint64_t byte_count OVS_GUARDED; /* Number of bytes received. */
00430a3f
SH
124};
125
46c88433
EJ
126struct ofbundle {
127 struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
128 struct ofproto_dpif *ofproto; /* Owning ofproto. */
129 void *aux; /* Key supplied by ofproto's client. */
130 char *name; /* Identifier for log messages. */
131
132 /* Configuration. */
ca6ba700 133 struct ovs_list ports; /* Contains "struct ofport"s. */
46c88433
EJ
134 enum port_vlan_mode vlan_mode; /* VLAN mode */
135 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
136 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
137 * NULL if all VLANs are trunked. */
138 struct lacp *lacp; /* LACP if LACP is enabled, otherwise NULL. */
139 struct bond *bond; /* Nonnull iff more than one port. */
140 bool use_priority_tags; /* Use 802.1p tag for frames in VLAN 0? */
141
142 /* Status. */
143 bool floodable; /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
144};
145
abe529af 146static void bundle_remove(struct ofport *);
7bde8dd8 147static void bundle_update(struct ofbundle *);
abe529af
BP
148static void bundle_destroy(struct ofbundle *);
149static void bundle_del_port(struct ofport_dpif *);
150static void bundle_run(struct ofbundle *);
151static void bundle_wait(struct ofbundle *);
66ff280d 152static void bundle_flush_macs(struct ofbundle *, bool);
2372c146 153static void bundle_move(struct ofbundle *, struct ofbundle *);
33158a18 154
21f7563c
JP
155static void stp_run(struct ofproto_dpif *ofproto);
156static void stp_wait(struct ofproto_dpif *ofproto);
851bf71d
EJ
157static int set_stp_port(struct ofport *,
158 const struct ofproto_port_stp_settings *);
21f7563c 159
9efd308e
DV
160static void rstp_run(struct ofproto_dpif *ofproto);
161static void set_rstp_port(struct ofport *,
162 const struct ofproto_port_rstp_settings *);
163
46c88433
EJ
164struct ofport_dpif {
165 struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
166 struct ofport up;
167
168 odp_port_t odp_port;
169 struct ofbundle *bundle; /* Bundle that contains this port, if any. */
ca6ba700 170 struct ovs_list bundle_node;/* In struct ofbundle's "ports" list. */
46c88433
EJ
171 struct cfm *cfm; /* Connectivity Fault Management, if any. */
172 struct bfd *bfd; /* BFD, if any. */
0477baa9 173 struct lldp *lldp; /* lldp, if any. */
46c88433
EJ
174 bool may_enable; /* May be enabled in bonds. */
175 bool is_tunnel; /* This port is a tunnel. */
a6363cfd 176 bool is_layer3; /* This is a layer 3 port. */
46c88433
EJ
177 long long int carrier_seq; /* Carrier status changes. */
178 struct ofport_dpif *peer; /* Peer if patch port. */
179
180 /* Spanning tree. */
181 struct stp_port *stp_port; /* Spanning Tree Protocol, if any. */
182 enum stp_state stp_state; /* Always STP_DISABLED if STP not in use. */
183 long long int stp_state_entered;
184
9efd308e
DV
185 /* Rapid Spanning Tree. */
186 struct rstp_port *rstp_port; /* Rapid Spanning Tree Protocol, if any. */
187 enum rstp_state rstp_state; /* Always RSTP_DISABLED if RSTP not in use. */
188
55954f6e
EJ
189 /* Queue to DSCP mapping. */
190 struct ofproto_port_queue *qdscp;
191 size_t n_qdscp;
46c88433
EJ
192};
193
46c88433
EJ
194static odp_port_t ofp_port_to_odp_port(const struct ofproto_dpif *,
195 ofp_port_t);
196
4e022ec0 197static ofp_port_t odp_port_to_ofp_port(const struct ofproto_dpif *,
46c88433 198 odp_port_t);
e1b1d06a 199
abe529af
BP
200static struct ofport_dpif *
201ofport_dpif_cast(const struct ofport *ofport)
202{
abe529af
BP
203 return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
204}
205
206static void port_run(struct ofport_dpif *);
8aee94b6 207static int set_bfd(struct ofport *, const struct smap *);
a5610457 208static int set_cfm(struct ofport *, const struct cfm_settings *);
0477baa9 209static int set_lldp(struct ofport *ofport_, const struct smap *cfg);
6cbbf4fa 210static void ofport_update_peer(struct ofport_dpif *);
abe529af 211
e79a6c83
EJ
212/* Reasons that we might need to revalidate every datapath flow, and
213 * corresponding coverage counters.
cdc3ab65
EJ
214 *
215 * A value of 0 means that there is no need to revalidate.
216 *
217 * It would be nice to have some cleaner way to integrate with coverage
218 * counters, but with only a few reasons I guess this is good enough for
219 * now. */
220enum revalidate_reason {
221 REV_RECONFIGURE = 1, /* Switch configuration changed. */
222 REV_STP, /* Spanning tree protocol port status change. */
9efd308e 223 REV_RSTP, /* RSTP port status change. */
4a1b8f30 224 REV_BOND, /* Bonding changed. */
cdc3ab65
EJ
225 REV_PORT_TOGGLED, /* Port enabled or disabled by CFM, LACP, ...*/
226 REV_FLOW_TABLE, /* Flow table changed. */
30618594 227 REV_MAC_LEARNING, /* Mac learning changed. */
6d95c4e8 228 REV_MCAST_SNOOPING, /* Multicast snooping changed. */
cdc3ab65 229};
3c4a309c
BP
230COVERAGE_DEFINE(rev_reconfigure);
231COVERAGE_DEFINE(rev_stp);
9efd308e 232COVERAGE_DEFINE(rev_rstp);
4a1b8f30 233COVERAGE_DEFINE(rev_bond);
3c4a309c
BP
234COVERAGE_DEFINE(rev_port_toggled);
235COVERAGE_DEFINE(rev_flow_table);
30618594 236COVERAGE_DEFINE(rev_mac_learning);
6d95c4e8 237COVERAGE_DEFINE(rev_mcast_snooping);
3c4a309c 238
cdc3ab65
EJ
239/* All datapaths of a given type share a single dpif backer instance. */
240struct dpif_backer {
241 char *type;
242 int refcount;
243 struct dpif *dpif;
e1ec7dd4 244 struct udpif *udpif;
8449c4d6
EJ
245
246 struct ovs_rwlock odp_to_ofport_lock;
390eadaa 247 struct hmap odp_to_ofport_map OVS_GUARDED; /* Contains "struct ofport"s. */
cdc3ab65
EJ
248
249 struct simap tnl_backers; /* Set of dpif ports backing tunnels. */
250
e79a6c83 251 enum revalidate_reason need_revalidate; /* Revalidate all flows. */
cdc3ab65 252
cdc3ab65 253 bool recv_set_enable; /* Enables or disables receiving packets. */
4b97b70d 254
b5cbbcf6
AZ
255 /* Version string of the datapath stored in OVSDB. */
256 char *dp_version_string;
a36de779 257
b440dd8c
JS
258 /* Datapath feature support. */
259 struct dpif_backer_support support;
a36de779 260 struct atomic_count tnl_count;
cdc3ab65
EJ
261};
262
acf60855
JP
263/* All existing ofproto_backer instances, indexed by ofproto->up.type. */
264static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
265
46c88433
EJ
266struct ofproto_dpif {
267 struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
268 struct ofproto up;
269 struct dpif_backer *backer;
270
290835f9
BP
271 /* Unique identifier for this instantiation of this bridge in this running
272 * process. */
273 struct uuid uuid;
274
18721c4a 275 ATOMIC(cls_version_t) tables_version; /* For classifier lookups. */
621b8064 276
e79a6c83
EJ
277 uint64_t dump_seq; /* Last read of udpif_dump_seq(). */
278
46c88433
EJ
279 /* Special OpenFlow rules. */
280 struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
281 struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
ad99e2ed 282 struct rule_dpif *drop_frags_rule; /* Used in OFPUTIL_FRAG_DROP mode. */
46c88433
EJ
283
284 /* Bridging. */
285 struct netflow *netflow;
286 struct dpif_sflow *sflow;
287 struct dpif_ipfix *ipfix;
288 struct hmap bundles; /* Contains "struct ofbundle"s. */
289 struct mac_learning *ml;
6d95c4e8 290 struct mcast_snooping *ms;
46c88433 291 bool has_bonded_bundles;
e2d13c43 292 bool lacp_enabled;
46c88433
EJ
293 struct mbridge *mbridge;
294
0da3c61b
AW
295 struct ovs_mutex stats_mutex;
296 struct netdev_stats stats OVS_GUARDED; /* To account packets generated and
297 * consumed in userspace. */
46c88433
EJ
298
299 /* Spanning tree. */
300 struct stp *stp;
301 long long int stp_last_tick;
302
9efd308e
DV
303 /* Rapid Spanning Tree. */
304 struct rstp *rstp;
305 long long int rstp_last_tick;
306
46c88433
EJ
307 /* Ports. */
308 struct sset ports; /* Set of standard port names. */
309 struct sset ghost_ports; /* Ports with no datapath port. */
310 struct sset port_poll_set; /* Queued names for port_poll() reply. */
311 int port_poll_errno; /* Last errno for port_poll() reply. */
f23d157c 312 uint64_t change_seq; /* Connectivity status changes. */
46c88433 313
3d9c5e58 314 /* Work queues. */
a2b53dec
BP
315 struct guarded_list ams; /* Contains "struct ofproto_async_msgs"s. */
316 struct seq *ams_seq; /* For notifying 'ams' reception. */
317 uint64_t ams_seqno;
46c88433
EJ
318};
319
b44a10b7
BP
320/* All existing ofproto_dpif instances, indexed by ->up.name. */
321static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
322
a36de779
PS
323static bool ofproto_use_tnl_push_pop = true;
324static void ofproto_unixctl_init(void);
abe529af 325
46c88433
EJ
326static inline struct ofproto_dpif *
327ofproto_dpif_cast(const struct ofproto *ofproto)
328{
329 ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
330 return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
331}
332
adcf00ba 333bool
2494ccd7 334ofproto_dpif_get_enable_ufid(const struct dpif_backer *backer)
adcf00ba 335{
2494ccd7 336 return backer->support.ufid;
adcf00ba
AZ
337}
338
2494ccd7
JS
339struct dpif_backer_support *
340ofproto_dpif_get_support(const struct ofproto_dpif *ofproto)
8e1ffd75 341{
2494ccd7 342 return &ofproto->backer->support;
8e1ffd75
JS
343}
344
adcf00ba 345static void ofproto_trace(struct ofproto_dpif *, struct flow *,
cf62fa4c 346 const struct dp_packet *packet,
aee0979b
BP
347 const struct ofpact[], size_t ofpacts_len,
348 struct ds *);
46c88433 349
abe529af
BP
350/* Global variables. */
351static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
acf60855
JP
352
353/* Initial mappings of port to bridge mappings. */
354static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
46c88433 355
1b63b91e
BP
356/* Executes 'fm'. The caller retains ownership of 'fm' and everything in
357 * it. */
3d9c5e58 358void
46c88433 359ofproto_dpif_flow_mod(struct ofproto_dpif *ofproto,
8be00367 360 const struct ofputil_flow_mod *fm)
46c88433 361{
8be00367
JR
362 struct ofproto_flow_mod ofm;
363
364 /* Multiple threads may do this for the same 'fm' at the same time.
365 * Allocate ofproto_flow_mod with execution context from stack.
366 *
367 * Note: This copy could be avoided by making ofproto_flow_mod more
368 * complex, but that may not be desireable, and a learn action is not that
369 * fast to begin with. */
370 ofm.fm = *fm;
371 ofproto_flow_mod(&ofproto->up, &ofm);
46c88433
EJ
372}
373
a2b53dec
BP
374/* Appends 'am' to the queue of asynchronous messages to be sent to the
375 * controller. Takes ownership of 'am' and any data it points to. */
46c88433 376void
a2b53dec
BP
377ofproto_dpif_send_async_msg(struct ofproto_dpif *ofproto,
378 struct ofproto_async_msg *am)
46c88433 379{
a2b53dec 380 if (!guarded_list_push_back(&ofproto->ams, &am->list_node, 1024)) {
ada3a58d 381 COVERAGE_INC(packet_in_overflow);
a2b53dec 382 ofproto_async_msg_free(am);
ada3a58d 383 }
cfc50ae5
AW
384
385 /* Wakes up main thread for packet-in I/O. */
a2b53dec 386 seq_change(ofproto->ams_seq);
46c88433 387}
6b83a3c5
SH
388
389/* The default "table-miss" behaviour for OpenFlow1.3+ is to drop the
390 * packet rather than to send the packet to the controller.
391 *
392 * This function returns false to indicate that a packet_in message
393 * for a "table-miss" should be sent to at least one controller.
394 * False otherwise. */
395bool
396ofproto_dpif_wants_packet_in_on_miss(struct ofproto_dpif *ofproto)
397{
398 return connmgr_wants_packet_in_on_miss(ofproto->up.connmgr);
399}
abe529af
BP
400\f
401/* Factory functions. */
402
b0408fca 403static void
acf60855 404init(const struct shash *iface_hints)
b0408fca 405{
acf60855
JP
406 struct shash_node *node;
407
408 /* Make a local copy, since we don't own 'iface_hints' elements. */
409 SHASH_FOR_EACH(node, iface_hints) {
410 const struct iface_hint *orig_hint = node->data;
411 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
412
413 new_hint->br_name = xstrdup(orig_hint->br_name);
414 new_hint->br_type = xstrdup(orig_hint->br_type);
415 new_hint->ofp_port = orig_hint->ofp_port;
416
417 shash_add(&init_ofp_ports, node->name, new_hint);
418 }
0fc1f5c0
HH
419
420 ofproto_unixctl_init();
421 udpif_init();
b0408fca
JP
422}
423
abe529af
BP
424static void
425enumerate_types(struct sset *types)
426{
427 dp_enumerate_types(types);
428}
429
430static int
431enumerate_names(const char *type, struct sset *names)
432{
acf60855
JP
433 struct ofproto_dpif *ofproto;
434
435 sset_clear(names);
436 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
437 if (strcmp(type, ofproto->up.type)) {
438 continue;
439 }
440 sset_add(names, ofproto->up.name);
441 }
442
443 return 0;
abe529af
BP
444}
445
446static int
447del(const char *type, const char *name)
448{
449 struct dpif *dpif;
450 int error;
451
452 error = dpif_open(name, type, &dpif);
453 if (!error) {
454 error = dpif_delete(dpif);
455 dpif_close(dpif);
456 }
457 return error;
458}
459\f
0aeaabc8
JP
460static const char *
461port_open_type(const char *datapath_type, const char *port_type)
462{
463 return dpif_port_open_type(datapath_type, port_type);
464}
465
acf60855
JP
466/* Type functions. */
467
36beb9be
BP
468static void process_dpif_port_changes(struct dpif_backer *);
469static void process_dpif_all_ports_changed(struct dpif_backer *);
470static void process_dpif_port_change(struct dpif_backer *,
471 const char *devname);
472static void process_dpif_port_error(struct dpif_backer *, int error);
473
476cb42a
BP
474static struct ofproto_dpif *
475lookup_ofproto_dpif_by_port_name(const char *name)
476{
477 struct ofproto_dpif *ofproto;
478
479 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
480 if (sset_contains(&ofproto->ports, name)) {
481 return ofproto;
482 }
483 }
484
485 return NULL;
486}
487
d997f23f
ZK
488bool
489ofproto_dpif_backer_enabled(struct dpif_backer* backer)
490{
491 return backer->recv_set_enable;
492}
493
acf60855
JP
494static int
495type_run(const char *type)
496{
497 struct dpif_backer *backer;
acf60855
JP
498
499 backer = shash_find_data(&all_dpif_backers, type);
500 if (!backer) {
501 /* This is not necessarily a problem, since backers are only
502 * created on demand. */
503 return 0;
504 }
505
a36de779
PS
506
507 if (dpif_run(backer->dpif)) {
508 backer->need_revalidate = REV_RECONFIGURE;
509 }
510
27f57736 511 udpif_run(backer->udpif);
acf60855 512
40358701
GS
513 /* If vswitchd started with other_config:flow_restore_wait set as "true",
514 * and the configuration has now changed to "false", enable receiving
515 * packets from the datapath. */
516 if (!backer->recv_set_enable && !ofproto_get_flow_restore_wait()) {
36beb9be
BP
517 int error;
518
40358701
GS
519 backer->recv_set_enable = true;
520
521 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
522 if (error) {
523 VLOG_ERR("Failed to enable receiving packets in dpif.");
524 return error;
525 }
526 dpif_flow_flush(backer->dpif);
527 backer->need_revalidate = REV_RECONFIGURE;
528 }
529
6567010f 530 if (backer->recv_set_enable) {
e79a6c83 531 udpif_set_threads(backer->udpif, n_handlers, n_revalidators);
448a4b2f
AW
532 }
533
a14b8947 534 dpif_poll_threads_set(backer->dpif, pmd_cpu_mask);
f2eee189 535
a1616063 536 if (backer->need_revalidate) {
2cc3c58e 537 struct ofproto_dpif *ofproto;
a614d823
KM
538 struct simap_node *node;
539 struct simap tmp_backers;
540
541 /* Handle tunnel garbage collection. */
542 simap_init(&tmp_backers);
543 simap_swap(&backer->tnl_backers, &tmp_backers);
544
545 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
546 struct ofport_dpif *iter;
547
548 if (backer != ofproto->backer) {
549 continue;
550 }
551
552 HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
3aa30359 553 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
a614d823
KM
554 const char *dp_port;
555
42943cde 556 if (!iter->is_tunnel) {
a614d823
KM
557 continue;
558 }
559
3aa30359
BP
560 dp_port = netdev_vport_get_dpif_port(iter->up.netdev,
561 namebuf, sizeof namebuf);
a614d823
KM
562 node = simap_find(&tmp_backers, dp_port);
563 if (node) {
564 simap_put(&backer->tnl_backers, dp_port, node->data);
565 simap_delete(&tmp_backers, node);
566 node = simap_find(&backer->tnl_backers, dp_port);
567 } else {
568 node = simap_find(&backer->tnl_backers, dp_port);
569 if (!node) {
4e022ec0 570 odp_port_t odp_port = ODPP_NONE;
a614d823
KM
571
572 if (!dpif_port_add(backer->dpif, iter->up.netdev,
573 &odp_port)) {
4e022ec0
AW
574 simap_put(&backer->tnl_backers, dp_port,
575 odp_to_u32(odp_port));
a614d823
KM
576 node = simap_find(&backer->tnl_backers, dp_port);
577 }
578 }
579 }
580
4e022ec0 581 iter->odp_port = node ? u32_to_odp(node->data) : ODPP_NONE;
42943cde 582 if (tnl_port_reconfigure(iter, iter->up.netdev,
a36de779
PS
583 iter->odp_port,
584 ovs_native_tunneling_is_on(ofproto), dp_port)) {
a614d823
KM
585 backer->need_revalidate = REV_RECONFIGURE;
586 }
587 }
588 }
589
590 SIMAP_FOR_EACH (node, &tmp_backers) {
4e022ec0 591 dpif_port_del(backer->dpif, u32_to_odp(node->data));
a614d823
KM
592 }
593 simap_destroy(&tmp_backers);
2cc3c58e
EJ
594
595 switch (backer->need_revalidate) {
1373ee25
FL
596 case REV_RECONFIGURE: COVERAGE_INC(rev_reconfigure); break;
597 case REV_STP: COVERAGE_INC(rev_stp); break;
9efd308e 598 case REV_RSTP: COVERAGE_INC(rev_rstp); break;
1373ee25
FL
599 case REV_BOND: COVERAGE_INC(rev_bond); break;
600 case REV_PORT_TOGGLED: COVERAGE_INC(rev_port_toggled); break;
601 case REV_FLOW_TABLE: COVERAGE_INC(rev_flow_table); break;
602 case REV_MAC_LEARNING: COVERAGE_INC(rev_mac_learning); break;
6d95c4e8 603 case REV_MCAST_SNOOPING: COVERAGE_INC(rev_mcast_snooping); break;
2cc3c58e 604 }
f728af2e
BP
605 backer->need_revalidate = 0;
606
2cc3c58e 607 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
a1616063 608 struct ofport_dpif *ofport;
a1616063 609 struct ofbundle *bundle;
2cc3c58e
EJ
610
611 if (ofproto->backer != backer) {
612 continue;
613 }
614
84f0f298 615 xlate_txn_start();
89a8a7f0 616 xlate_ofproto_set(ofproto, ofproto->up.name,
34dd0d78 617 ofproto->backer->dpif, ofproto->ml,
9efd308e
DV
618 ofproto->stp, ofproto->rstp, ofproto->ms,
619 ofproto->mbridge, ofproto->sflow, ofproto->ipfix,
2f47cdf4 620 ofproto->netflow,
a1616063 621 ofproto->up.forward_bpdu,
4b97b70d 622 connmgr_has_in_band(ofproto->up.connmgr),
b440dd8c 623 &ofproto->backer->support);
46c88433 624
a1616063
EJ
625 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
626 xlate_bundle_set(ofproto, bundle, bundle->name,
627 bundle->vlan_mode, bundle->vlan,
628 bundle->trunks, bundle->use_priority_tags,
629 bundle->bond, bundle->lacp,
630 bundle->floodable);
631 }
632
633 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
9d189a50
EJ
634 int stp_port = ofport->stp_port
635 ? stp_port_no(ofport->stp_port)
92cf817b 636 : -1;
a1616063
EJ
637 xlate_ofport_set(ofproto, ofport->bundle, ofport,
638 ofport->up.ofp_port, ofport->odp_port,
0477baa9
DF
639 ofport->up.netdev, ofport->cfm, ofport->bfd,
640 ofport->lldp, ofport->peer, stp_port,
f025bcb7
JR
641 ofport->rstp_port, ofport->qdscp,
642 ofport->n_qdscp, ofport->up.pp.config,
643 ofport->up.pp.state, ofport->is_tunnel,
644 ofport->may_enable);
46c88433 645 }
84f0f298 646 xlate_txn_commit();
2cc3c58e 647 }
e1ec7dd4
EJ
648
649 udpif_revalidate(backer->udpif);
2cc3c58e
EJ
650 }
651
36beb9be 652 process_dpif_port_changes(backer);
acf60855
JP
653
654 return 0;
655}
656
36beb9be
BP
657/* Check for and handle port changes in 'backer''s dpif. */
658static void
659process_dpif_port_changes(struct dpif_backer *backer)
660{
661 for (;;) {
662 char *devname;
663 int error;
664
665 error = dpif_port_poll(backer->dpif, &devname);
666 switch (error) {
667 case EAGAIN:
668 return;
669
670 case ENOBUFS:
671 process_dpif_all_ports_changed(backer);
672 break;
673
674 case 0:
675 process_dpif_port_change(backer, devname);
676 free(devname);
677 break;
678
679 default:
680 process_dpif_port_error(backer, error);
681 break;
682 }
683 }
684}
685
686static void
687process_dpif_all_ports_changed(struct dpif_backer *backer)
688{
689 struct ofproto_dpif *ofproto;
690 struct dpif_port dpif_port;
691 struct dpif_port_dump dump;
692 struct sset devnames;
693 const char *devname;
694
695 sset_init(&devnames);
696 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
697 if (ofproto->backer == backer) {
698 struct ofport *ofport;
699
700 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
701 sset_add(&devnames, netdev_get_name(ofport->netdev));
702 }
703 }
704 }
705 DPIF_PORT_FOR_EACH (&dpif_port, &dump, backer->dpif) {
706 sset_add(&devnames, dpif_port.name);
707 }
708
709 SSET_FOR_EACH (devname, &devnames) {
710 process_dpif_port_change(backer, devname);
711 }
712 sset_destroy(&devnames);
713}
714
715static void
716process_dpif_port_change(struct dpif_backer *backer, const char *devname)
717{
718 struct ofproto_dpif *ofproto;
719 struct dpif_port port;
720
721 /* Don't report on the datapath's device. */
722 if (!strcmp(devname, dpif_base_name(backer->dpif))) {
723 return;
724 }
725
726 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
727 &all_ofproto_dpifs) {
728 if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
729 return;
730 }
731 }
732
733 ofproto = lookup_ofproto_dpif_by_port_name(devname);
734 if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
735 /* The port was removed. If we know the datapath,
736 * report it through poll_set(). If we don't, it may be
737 * notifying us of a removal we initiated, so ignore it.
738 * If there's a pending ENOBUFS, let it stand, since
739 * everything will be reevaluated. */
740 if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
741 sset_add(&ofproto->port_poll_set, devname);
742 ofproto->port_poll_errno = 0;
743 }
744 } else if (!ofproto) {
745 /* The port was added, but we don't know with which
746 * ofproto we should associate it. Delete it. */
747 dpif_port_del(backer->dpif, port.port_no);
74cc3969
BP
748 } else {
749 struct ofport_dpif *ofport;
750
751 ofport = ofport_dpif_cast(shash_find_data(
752 &ofproto->up.port_by_name, devname));
753 if (ofport
754 && ofport->odp_port != port.port_no
755 && !odp_port_to_ofport(backer, port.port_no))
756 {
757 /* 'ofport''s datapath port number has changed from
758 * 'ofport->odp_port' to 'port.port_no'. Update our internal data
759 * structures to match. */
8449c4d6 760 ovs_rwlock_wrlock(&backer->odp_to_ofport_lock);
74cc3969
BP
761 hmap_remove(&backer->odp_to_ofport_map, &ofport->odp_port_node);
762 ofport->odp_port = port.port_no;
763 hmap_insert(&backer->odp_to_ofport_map, &ofport->odp_port_node,
764 hash_odp_port(port.port_no));
8449c4d6 765 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
74cc3969
BP
766 backer->need_revalidate = REV_RECONFIGURE;
767 }
36beb9be
BP
768 }
769 dpif_port_destroy(&port);
770}
771
772/* Propagate 'error' to all ofprotos based on 'backer'. */
773static void
774process_dpif_port_error(struct dpif_backer *backer, int error)
775{
776 struct ofproto_dpif *ofproto;
777
778 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
779 if (ofproto->backer == backer) {
780 sset_clear(&ofproto->port_poll_set);
781 ofproto->port_poll_errno = error;
782 }
783 }
784}
785
acf60855
JP
786static void
787type_wait(const char *type)
788{
789 struct dpif_backer *backer;
790
791 backer = shash_find_data(&all_dpif_backers, type);
792 if (!backer) {
793 /* This is not necessarily a problem, since backers are only
794 * created on demand. */
795 return;
796 }
797
c0365fc8 798 dpif_wait(backer->dpif);
acf60855
JP
799}
800\f
abe529af
BP
801/* Basic life-cycle. */
802
c57b2226
BP
803static int add_internal_flows(struct ofproto_dpif *);
804
abe529af
BP
805static struct ofproto *
806alloc(void)
807{
3da29e32 808 struct ofproto_dpif *ofproto = xzalloc(sizeof *ofproto);
abe529af
BP
809 return &ofproto->up;
810}
811
812static void
813dealloc(struct ofproto *ofproto_)
814{
815 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
816 free(ofproto);
817}
818
acf60855
JP
819static void
820close_dpif_backer(struct dpif_backer *backer)
821{
cb22974d 822 ovs_assert(backer->refcount > 0);
acf60855
JP
823
824 if (--backer->refcount) {
825 return;
826 }
827
b395cf1f
BP
828 udpif_destroy(backer->udpif);
829
7d82ab2e 830 simap_destroy(&backer->tnl_backers);
8449c4d6 831 ovs_rwlock_destroy(&backer->odp_to_ofport_lock);
acf60855 832 hmap_destroy(&backer->odp_to_ofport_map);
4f7cc3c7 833 shash_find_and_delete(&all_dpif_backers, backer->type);
acf60855 834 free(backer->type);
b5cbbcf6 835 free(backer->dp_version_string);
acf60855 836 dpif_close(backer->dpif);
acf60855
JP
837 free(backer);
838}
839
840/* Datapath port slated for removal from datapath. */
841struct odp_garbage {
ca6ba700 842 struct ovs_list list_node;
4e022ec0 843 odp_port_t odp_port;
acf60855
JP
844};
845
4b97b70d 846static bool check_variable_length_userdata(struct dpif_backer *backer);
b440dd8c 847static void check_support(struct dpif_backer *backer);
4b97b70d 848
acf60855
JP
849static int
850open_dpif_backer(const char *type, struct dpif_backer **backerp)
851{
852 struct dpif_backer *backer;
853 struct dpif_port_dump port_dump;
854 struct dpif_port port;
855 struct shash_node *node;
ca6ba700 856 struct ovs_list garbage_list;
5f03c983 857 struct odp_garbage *garbage;
f5374617 858
acf60855
JP
859 struct sset names;
860 char *backer_name;
861 const char *name;
862 int error;
863
864 backer = shash_find_data(&all_dpif_backers, type);
865 if (backer) {
866 backer->refcount++;
867 *backerp = backer;
868 return 0;
869 }
870
871 backer_name = xasprintf("ovs-%s", type);
872
873 /* Remove any existing datapaths, since we assume we're the only
874 * userspace controlling the datapath. */
875 sset_init(&names);
876 dp_enumerate_names(type, &names);
877 SSET_FOR_EACH(name, &names) {
878 struct dpif *old_dpif;
879
880 /* Don't remove our backer if it exists. */
881 if (!strcmp(name, backer_name)) {
882 continue;
883 }
884
885 if (dpif_open(name, type, &old_dpif)) {
886 VLOG_WARN("couldn't open old datapath %s to remove it", name);
887 } else {
888 dpif_delete(old_dpif);
889 dpif_close(old_dpif);
890 }
891 }
892 sset_destroy(&names);
893
894 backer = xmalloc(sizeof *backer);
895
896 error = dpif_create_and_open(backer_name, type, &backer->dpif);
897 free(backer_name);
898 if (error) {
899 VLOG_ERR("failed to open datapath of type %s: %s", type,
10a89ef0 900 ovs_strerror(error));
4c1b1289 901 free(backer);
acf60855
JP
902 return error;
903 }
e1ec7dd4 904 backer->udpif = udpif_create(backer, backer->dpif);
acf60855
JP
905
906 backer->type = xstrdup(type);
907 backer->refcount = 1;
908 hmap_init(&backer->odp_to_ofport_map);
8449c4d6 909 ovs_rwlock_init(&backer->odp_to_ofport_lock);
2cc3c58e 910 backer->need_revalidate = 0;
7d82ab2e 911 simap_init(&backer->tnl_backers);
40358701 912 backer->recv_set_enable = !ofproto_get_flow_restore_wait();
acf60855
JP
913 *backerp = backer;
914
40358701
GS
915 if (backer->recv_set_enable) {
916 dpif_flow_flush(backer->dpif);
917 }
acf60855
JP
918
919 /* Loop through the ports already on the datapath and remove any
920 * that we don't need anymore. */
417e7e66 921 ovs_list_init(&garbage_list);
acf60855
JP
922 dpif_port_dump_start(&port_dump, backer->dpif);
923 while (dpif_port_dump_next(&port_dump, &port)) {
924 node = shash_find(&init_ofp_ports, port.name);
925 if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
926 garbage = xmalloc(sizeof *garbage);
927 garbage->odp_port = port.port_no;
417e7e66 928 ovs_list_push_front(&garbage_list, &garbage->list_node);
acf60855
JP
929 }
930 }
931 dpif_port_dump_done(&port_dump);
932
5f03c983 933 LIST_FOR_EACH_POP (garbage, list_node, &garbage_list) {
acf60855 934 dpif_port_del(backer->dpif, garbage->odp_port);
acf60855
JP
935 free(garbage);
936 }
937
938 shash_add(&all_dpif_backers, type, backer);
939
b440dd8c 940 check_support(backer);
a36de779
PS
941 atomic_count_init(&backer->tnl_count, 0);
942
40358701 943 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
acf60855
JP
944 if (error) {
945 VLOG_ERR("failed to listen on datapath of type %s: %s",
10a89ef0 946 type, ovs_strerror(error));
acf60855
JP
947 close_dpif_backer(backer);
948 return error;
949 }
6567010f
EJ
950
951 if (backer->recv_set_enable) {
e79a6c83 952 udpif_set_threads(backer->udpif, n_handlers, n_revalidators);
6567010f 953 }
acf60855 954
48931b58
JR
955 /* This check fails if performed before udpif threads have been set,
956 * as the kernel module checks that the 'pid' in userspace action
957 * is non-zero. */
b440dd8c
JS
958 backer->support.variable_length_userdata
959 = check_variable_length_userdata(backer);
b5cbbcf6 960 backer->dp_version_string = dpif_get_dp_version(backer->dpif);
48931b58 961
acf60855
JP
962 return error;
963}
964
a36de779
PS
965bool
966ovs_native_tunneling_is_on(struct ofproto_dpif *ofproto)
967{
b440dd8c 968 return ofproto_use_tnl_push_pop && ofproto->backer->support.tnl_push_pop &&
a36de779
PS
969 atomic_count_get(&ofproto->backer->tnl_count);
970}
971
9b2cb971
SH
972/* Tests whether 'backer''s datapath supports recirculation. Only newer
973 * datapaths support OVS_KEY_ATTR_RECIRC_ID in keys. We need to disable some
974 * features on older datapaths that don't support this feature.
adcf00ba
AZ
975 *
976 * Returns false if 'backer' definitely does not support recirculation, true if
977 * it seems to support recirculation or if at least the error we get is
978 * ambiguous. */
979static bool
980check_recirc(struct dpif_backer *backer)
981{
982 struct flow flow;
983 struct odputil_keybuf keybuf;
984 struct ofpbuf key;
2c85851f 985 bool enable_recirc;
5262eea1
JG
986 struct odp_flow_key_parms odp_parms = {
987 .flow = &flow,
2494ccd7
JS
988 .support = {
989 .recirc = true,
990 },
5262eea1 991 };
adcf00ba
AZ
992
993 memset(&flow, 0, sizeof flow);
994 flow.recirc_id = 1;
995 flow.dp_hash = 1;
996
997 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5262eea1 998 odp_flow_key_from_flow(&odp_parms, &key);
2c85851f
JS
999 enable_recirc = dpif_probe_feature(backer->dpif, "recirculation", &key,
1000 NULL);
adcf00ba 1001
adcf00ba
AZ
1002 if (enable_recirc) {
1003 VLOG_INFO("%s: Datapath supports recirculation",
1004 dpif_name(backer->dpif));
1005 } else {
1006 VLOG_INFO("%s: Datapath does not support recirculation",
1007 dpif_name(backer->dpif));
1008 }
1009
1010 return enable_recirc;
1011}
1012
7915c9d6 1013/* Tests whether 'dpif' supports unique flow ids. We can skip serializing
8e1ffd75
JS
1014 * some flow attributes for datapaths that support this feature.
1015 *
1016 * Returns true if 'dpif' supports UFID for flow operations.
1017 * Returns false if 'dpif' does not support UFID. */
1018static bool
1019check_ufid(struct dpif_backer *backer)
1020{
1021 struct flow flow;
1022 struct odputil_keybuf keybuf;
1023 struct ofpbuf key;
1024 ovs_u128 ufid;
1025 bool enable_ufid;
5262eea1
JG
1026 struct odp_flow_key_parms odp_parms = {
1027 .flow = &flow,
1028 };
8e1ffd75
JS
1029
1030 memset(&flow, 0, sizeof flow);
1031 flow.dl_type = htons(0x1234);
1032
1033 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5262eea1 1034 odp_flow_key_from_flow(&odp_parms, &key);
6fd6ed71 1035 dpif_flow_hash(backer->dpif, key.data, key.size, &ufid);
8e1ffd75
JS
1036
1037 enable_ufid = dpif_probe_feature(backer->dpif, "UFID", &key, &ufid);
1038
1039 if (enable_ufid) {
7915c9d6 1040 VLOG_INFO("%s: Datapath supports unique flow ids",
8e1ffd75
JS
1041 dpif_name(backer->dpif));
1042 } else {
7915c9d6 1043 VLOG_INFO("%s: Datapath does not support unique flow ids",
8e1ffd75
JS
1044 dpif_name(backer->dpif));
1045 }
1046 return enable_ufid;
1047}
1048
4b97b70d
BP
1049/* Tests whether 'backer''s datapath supports variable-length
1050 * OVS_USERSPACE_ATTR_USERDATA in OVS_ACTION_ATTR_USERSPACE actions. We need
1051 * to disable some features on older datapaths that don't support this
1052 * feature.
1053 *
1054 * Returns false if 'backer' definitely does not support variable-length
1055 * userdata, true if it seems to support them or if at least the error we get
1056 * is ambiguous. */
1057static bool
1058check_variable_length_userdata(struct dpif_backer *backer)
1059{
1060 struct eth_header *eth;
1061 struct ofpbuf actions;
758c456d 1062 struct dpif_execute execute;
cf62fa4c 1063 struct dp_packet packet;
1cceb31b 1064 struct flow flow;
4b97b70d
BP
1065 size_t start;
1066 int error;
1067
1068 /* Compose a userspace action that will cause an ERANGE error on older
1069 * datapaths that don't support variable-length userdata.
1070 *
1071 * We really test for using userdata longer than 8 bytes, but older
1072 * datapaths accepted these, silently truncating the userdata to 8 bytes.
1073 * The same older datapaths rejected userdata shorter than 8 bytes, so we
1074 * test for that instead as a proxy for longer userdata support. */
1075 ofpbuf_init(&actions, 64);
1076 start = nl_msg_start_nested(&actions, OVS_ACTION_ATTR_USERSPACE);
1077 nl_msg_put_u32(&actions, OVS_USERSPACE_ATTR_PID,
1954e6bb 1078 dpif_port_get_pid(backer->dpif, ODPP_NONE, 0));
4b97b70d
BP
1079 nl_msg_put_unspec_zero(&actions, OVS_USERSPACE_ATTR_USERDATA, 4);
1080 nl_msg_end_nested(&actions, start);
1081
758c456d 1082 /* Compose a dummy ethernet packet. */
cf62fa4c
PS
1083 dp_packet_init(&packet, ETH_HEADER_LEN);
1084 eth = dp_packet_put_zeros(&packet, ETH_HEADER_LEN);
4b97b70d
BP
1085 eth->eth_type = htons(0x1234);
1086
1cceb31b
DDP
1087 flow_extract(&packet, &flow);
1088
758c456d 1089 /* Execute the actions. On older datapaths this fails with ERANGE, on
4b97b70d 1090 * newer datapaths it succeeds. */
6fd6ed71
PS
1091 execute.actions = actions.data;
1092 execute.actions_len = actions.size;
758c456d 1093 execute.packet = &packet;
1cceb31b 1094 execute.flow = &flow;
758c456d 1095 execute.needs_help = false;
43f9ac0a 1096 execute.probe = true;
27130224 1097 execute.mtu = 0;
758c456d
JR
1098
1099 error = dpif_execute(backer->dpif, &execute);
4b97b70d 1100
cf62fa4c 1101 dp_packet_uninit(&packet);
4b97b70d
BP
1102 ofpbuf_uninit(&actions);
1103
1104 switch (error) {
1105 case 0:
4b97b70d
BP
1106 return true;
1107
1108 case ERANGE:
1109 /* Variable-length userdata is not supported. */
1110 VLOG_WARN("%s: datapath does not support variable-length userdata "
1111 "feature (needs Linux 3.10+ or kernel module from OVS "
1112 "1..11+). The NXAST_SAMPLE action will be ignored.",
1113 dpif_name(backer->dpif));
1114 return false;
1115
1116 default:
1117 /* Something odd happened. We're not sure whether variable-length
1118 * userdata is supported. Default to "yes". */
1119 VLOG_WARN("%s: variable-length userdata feature probe failed (%s)",
1120 dpif_name(backer->dpif), ovs_strerror(error));
1121 return true;
1122 }
1123}
1124
8bfd0fda
BP
1125/* Tests the MPLS label stack depth supported by 'backer''s datapath.
1126 *
1127 * Returns the number of elements in a struct flow's mpls_lse field
1128 * if the datapath supports at least that many entries in an
1129 * MPLS label stack.
1130 * Otherwise returns the number of MPLS push actions supported by
1131 * the datapath. */
1132static size_t
1133check_max_mpls_depth(struct dpif_backer *backer)
1134{
1135 struct flow flow;
1136 int n;
1137
1138 for (n = 0; n < FLOW_MAX_MPLS_LABELS; n++) {
1139 struct odputil_keybuf keybuf;
1140 struct ofpbuf key;
5262eea1
JG
1141 struct odp_flow_key_parms odp_parms = {
1142 .flow = &flow,
1143 };
8bfd0fda
BP
1144
1145 memset(&flow, 0, sizeof flow);
1146 flow.dl_type = htons(ETH_TYPE_MPLS);
1147 flow_set_mpls_bos(&flow, n, 1);
1148
1149 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5262eea1 1150 odp_flow_key_from_flow(&odp_parms, &key);
2c85851f 1151 if (!dpif_probe_feature(backer->dpif, "MPLS", &key, NULL)) {
8bfd0fda
BP
1152 break;
1153 }
8bfd0fda
BP
1154 }
1155
1156 VLOG_INFO("%s: MPLS label stack length probed as %d",
1157 dpif_name(backer->dpif), n);
1158 return n;
1159}
1160
53477c2c
JR
1161/* Tests whether 'backer''s datapath supports masked data in
1162 * OVS_ACTION_ATTR_SET actions. We need to disable some features on older
1163 * datapaths that don't support this feature. */
1164static bool
1165check_masked_set_action(struct dpif_backer *backer)
1166{
1167 struct eth_header *eth;
1168 struct ofpbuf actions;
1169 struct dpif_execute execute;
cf62fa4c 1170 struct dp_packet packet;
1cceb31b 1171 struct flow flow;
53477c2c
JR
1172 int error;
1173 struct ovs_key_ethernet key, mask;
1174
1175 /* Compose a set action that will cause an EINVAL error on older
1176 * datapaths that don't support masked set actions.
1177 * Avoid using a full mask, as it could be translated to a non-masked
1178 * set action instead. */
1179 ofpbuf_init(&actions, 64);
1180 memset(&key, 0x53, sizeof key);
1181 memset(&mask, 0x7f, sizeof mask);
1182 commit_masked_set_action(&actions, OVS_KEY_ATTR_ETHERNET, &key, &mask,
1183 sizeof key);
1184
1185 /* Compose a dummy ethernet packet. */
cf62fa4c
PS
1186 dp_packet_init(&packet, ETH_HEADER_LEN);
1187 eth = dp_packet_put_zeros(&packet, ETH_HEADER_LEN);
53477c2c
JR
1188 eth->eth_type = htons(0x1234);
1189
1cceb31b
DDP
1190 flow_extract(&packet, &flow);
1191
53477c2c
JR
1192 /* Execute the actions. On older datapaths this fails with EINVAL, on
1193 * newer datapaths it succeeds. */
6fd6ed71
PS
1194 execute.actions = actions.data;
1195 execute.actions_len = actions.size;
53477c2c 1196 execute.packet = &packet;
1cceb31b 1197 execute.flow = &flow;
53477c2c 1198 execute.needs_help = false;
43f9ac0a 1199 execute.probe = true;
27130224 1200 execute.mtu = 0;
53477c2c
JR
1201
1202 error = dpif_execute(backer->dpif, &execute);
1203
cf62fa4c 1204 dp_packet_uninit(&packet);
53477c2c
JR
1205 ofpbuf_uninit(&actions);
1206
1207 if (error) {
1208 /* Masked set action is not supported. */
1209 VLOG_INFO("%s: datapath does not support masked set action feature.",
1210 dpif_name(backer->dpif));
1211 }
1212 return !error;
1213}
1214
7b27258c 1215#define CHECK_FEATURE__(NAME, SUPPORT, FIELD, VALUE) \
07659514
JS
1216static bool \
1217check_##NAME(struct dpif_backer *backer) \
1218{ \
1219 struct flow flow; \
1220 struct odputil_keybuf keybuf; \
1221 struct ofpbuf key; \
1222 bool enable; \
1223 struct odp_flow_key_parms odp_parms = { \
1224 .flow = &flow, \
1225 .support = { \
7b27258c 1226 .SUPPORT = true, \
07659514
JS
1227 }, \
1228 }; \
1229 \
1230 memset(&flow, 0, sizeof flow); \
7b27258c 1231 flow.FIELD = VALUE; \
07659514
JS
1232 \
1233 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf); \
1234 odp_flow_key_from_flow(&odp_parms, &key); \
1235 enable = dpif_probe_feature(backer->dpif, #NAME, &key, NULL); \
1236 \
1237 if (enable) { \
1238 VLOG_INFO("%s: Datapath supports "#NAME, dpif_name(backer->dpif)); \
1239 } else { \
1240 VLOG_INFO("%s: Datapath does not support "#NAME, \
1241 dpif_name(backer->dpif)); \
1242 } \
1243 \
1244 return enable; \
1245}
7b27258c 1246#define CHECK_FEATURE(FIELD) CHECK_FEATURE__(FIELD, FIELD, FIELD, 1)
07659514
JS
1247
1248CHECK_FEATURE(ct_state)
1249CHECK_FEATURE(ct_zone)
8e53fe8c 1250CHECK_FEATURE(ct_mark)
7b27258c
DDP
1251CHECK_FEATURE__(ct_label, ct_label, ct_label.u64.lo, 1)
1252CHECK_FEATURE__(ct_state_nat, ct_state, ct_state, CS_TRACKED|CS_SRC_NAT)
07659514
JS
1253
1254#undef CHECK_FEATURE
1255#undef CHECK_FEATURE__
1256
b440dd8c
JS
1257static void
1258check_support(struct dpif_backer *backer)
1259{
1260 /* This feature needs to be tested after udpif threads are set. */
1261 backer->support.variable_length_userdata = false;
1262
2494ccd7
JS
1263 backer->support.odp.recirc = check_recirc(backer);
1264 backer->support.odp.max_mpls_depth = check_max_mpls_depth(backer);
b440dd8c
JS
1265 backer->support.masked_set_action = check_masked_set_action(backer);
1266 backer->support.ufid = check_ufid(backer);
1267 backer->support.tnl_push_pop = dpif_supports_tnl_push_pop(backer->dpif);
07659514
JS
1268
1269 backer->support.odp.ct_state = check_ct_state(backer);
1270 backer->support.odp.ct_zone = check_ct_zone(backer);
8e53fe8c 1271 backer->support.odp.ct_mark = check_ct_mark(backer);
9daf2348 1272 backer->support.odp.ct_label = check_ct_label(backer);
7b27258c
DDP
1273
1274 backer->support.odp.ct_state_nat = check_ct_state_nat(backer);
b440dd8c
JS
1275}
1276
abe529af 1277static int
0f5f95a9 1278construct(struct ofproto *ofproto_)
abe529af
BP
1279{
1280 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 1281 struct shash_node *node, *next;
abe529af 1282 int error;
abe529af 1283
4d9226a7
JR
1284 /* Tunnel module can get used right after the udpif threads are running. */
1285 ofproto_tunnel_init();
1286
acf60855 1287 error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
abe529af 1288 if (error) {
abe529af
BP
1289 return error;
1290 }
1291
290835f9 1292 uuid_generate(&ofproto->uuid);
621b8064 1293 atomic_init(&ofproto->tables_version, CLS_MIN_VERSION);
abe529af
BP
1294 ofproto->netflow = NULL;
1295 ofproto->sflow = NULL;
29089a54 1296 ofproto->ipfix = NULL;
21f7563c 1297 ofproto->stp = NULL;
9efd308e 1298 ofproto->rstp = NULL;
e79a6c83 1299 ofproto->dump_seq = 0;
abe529af 1300 hmap_init(&ofproto->bundles);
e764773c 1301 ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
6d95c4e8 1302 ofproto->ms = NULL;
ec7ceaed 1303 ofproto->mbridge = mbridge_create();
abe529af 1304 ofproto->has_bonded_bundles = false;
e2d13c43 1305 ofproto->lacp_enabled = false;
97ba2d36 1306 ovs_mutex_init_adaptive(&ofproto->stats_mutex);
abe529af 1307
a2b53dec 1308 guarded_list_init(&ofproto->ams);
ada3a58d 1309
acf60855 1310 sset_init(&ofproto->ports);
0a740f48 1311 sset_init(&ofproto->ghost_ports);
acf60855
JP
1312 sset_init(&ofproto->port_poll_set);
1313 ofproto->port_poll_errno = 0;
f23d157c 1314 ofproto->change_seq = 0;
a2b53dec
BP
1315 ofproto->ams_seq = seq_create();
1316 ofproto->ams_seqno = seq_read(ofproto->ams_seq);
cfc50ae5 1317
acf60855
JP
1318
1319 SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
4f9e08a5 1320 struct iface_hint *iface_hint = node->data;
acf60855
JP
1321
1322 if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1323 /* Check if the datapath already has this port. */
1324 if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1325 sset_add(&ofproto->ports, node->name);
1326 }
1327
1328 free(iface_hint->br_name);
1329 free(iface_hint->br_type);
4f9e08a5 1330 free(iface_hint);
acf60855
JP
1331 shash_delete(&init_ofp_ports, node);
1332 }
1333 }
e1b1d06a 1334
b44a10b7
BP
1335 hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1336 hash_string(ofproto->up.name, 0));
6527c598 1337 memset(&ofproto->stats, 0, sizeof ofproto->stats);
0f5f95a9
BP
1338
1339 ofproto_init_tables(ofproto_, N_TABLES);
c57b2226 1340 error = add_internal_flows(ofproto);
adcf00ba 1341
c57b2226
BP
1342 ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1343
1344 return error;
1345}
1346
1347static int
adcf00ba 1348add_internal_miss_flow(struct ofproto_dpif *ofproto, int id,
f25d0cf3 1349 const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
c57b2226 1350{
adcf00ba 1351 struct match match;
c57b2226 1352 int error;
adcf00ba 1353 struct rule *rule;
c57b2226 1354
adcf00ba
AZ
1355 match_init_catchall(&match);
1356 match_set_reg(&match, 0, id);
c57b2226 1357
290ad78a
SH
1358 error = ofproto_dpif_add_internal_flow(ofproto, &match, 0, 0, ofpacts,
1359 &rule);
adcf00ba 1360 *rulep = error ? NULL : rule_dpif_cast(rule);
0f5f95a9 1361
adcf00ba 1362 return error;
abe529af
BP
1363}
1364
c57b2226
BP
1365static int
1366add_internal_flows(struct ofproto_dpif *ofproto)
1367{
f25d0cf3
BP
1368 struct ofpact_controller *controller;
1369 uint64_t ofpacts_stub[128 / 8];
1370 struct ofpbuf ofpacts;
adcf00ba 1371 struct rule *unused_rulep OVS_UNUSED;
adcf00ba 1372 struct match match;
c57b2226
BP
1373 int error;
1374 int id;
1375
f25d0cf3 1376 ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
c57b2226
BP
1377 id = 1;
1378
f25d0cf3
BP
1379 controller = ofpact_put_CONTROLLER(&ofpacts);
1380 controller->max_len = UINT16_MAX;
1381 controller->controller_id = 0;
9bfe9334 1382 controller->reason = OFPR_IMPLICIT_MISS;
ce058104 1383 ofpact_finish_CONTROLLER(&ofpacts, &controller);
f25d0cf3 1384
adcf00ba
AZ
1385 error = add_internal_miss_flow(ofproto, id++, &ofpacts,
1386 &ofproto->miss_rule);
c57b2226
BP
1387 if (error) {
1388 return error;
1389 }
1390
f25d0cf3 1391 ofpbuf_clear(&ofpacts);
adcf00ba 1392 error = add_internal_miss_flow(ofproto, id++, &ofpacts,
dbb7c28f 1393 &ofproto->no_packet_in_rule);
7fd51d39
BP
1394 if (error) {
1395 return error;
1396 }
1397
adcf00ba 1398 error = add_internal_miss_flow(ofproto, id++, &ofpacts,
dbb7c28f 1399 &ofproto->drop_frags_rule);
adcf00ba
AZ
1400 if (error) {
1401 return error;
1402 }
1403
0c7812e5
AW
1404 /* Drop any run away non-recirc rule lookups. Recirc_id has to be
1405 * zero when reaching this rule.
adcf00ba 1406 *
0c7812e5 1407 * (priority=2), recirc_id=0, actions=drop
adcf00ba 1408 */
0c7812e5 1409 ofpbuf_clear(&ofpacts);
adcf00ba
AZ
1410 match_init_catchall(&match);
1411 match_set_recirc_id(&match, 0);
290ad78a 1412 error = ofproto_dpif_add_internal_flow(ofproto, &match, 2, 0, &ofpacts,
adcf00ba 1413 &unused_rulep);
c57b2226
BP
1414 return error;
1415}
1416
abe529af
BP
1417static void
1418destruct(struct ofproto *ofproto_)
1419{
1420 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
a2b53dec 1421 struct ofproto_async_msg *am;
78c8df12 1422 struct rule_dpif *rule;
d0918789 1423 struct oftable *table;
a2b53dec 1424 struct ovs_list ams;
abe529af 1425
875b94ed 1426 ofproto->backer->need_revalidate = REV_RECONFIGURE;
84f0f298 1427 xlate_txn_start();
46c88433 1428 xlate_remove_ofproto(ofproto);
84f0f298 1429 xlate_txn_commit();
46c88433 1430
3f142f59
BP
1431 /* Ensure that the upcall processing threads have no remaining references
1432 * to the ofproto or anything in it. */
1433 udpif_synchronize(ofproto->backer->udpif);
1fe409d5 1434
b44a10b7 1435 hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
7ee20df1 1436
0697b5c3 1437 OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
de4ad4a2 1438 CLS_FOR_EACH (rule, up.cr, &table->cls) {
8b81d1ef 1439 ofproto_rule_delete(&ofproto->up, &rule->up);
0697b5c3 1440 }
7ee20df1 1441 }
daab0ae6 1442 ofproto_group_delete_all(&ofproto->up);
7ee20df1 1443
a2b53dec
BP
1444 guarded_list_pop_all(&ofproto->ams, &ams);
1445 LIST_FOR_EACH_POP (am, list_node, &ams) {
1446 ofproto_async_msg_free(am);
ada3a58d 1447 }
a2b53dec 1448 guarded_list_destroy(&ofproto->ams);
ada3a58d 1449
e672ff9b 1450 recirc_free_ofproto(ofproto, ofproto->up.name);
f9038ef6 1451
ec7ceaed 1452 mbridge_unref(ofproto->mbridge);
abe529af 1453
8e407f27 1454 netflow_unref(ofproto->netflow);
9723bcce 1455 dpif_sflow_unref(ofproto->sflow);
8b7ea2d4 1456 dpif_ipfix_unref(ofproto->ipfix);
abe529af 1457 hmap_destroy(&ofproto->bundles);
5d989517 1458 mac_learning_unref(ofproto->ml);
6d95c4e8 1459 mcast_snooping_unref(ofproto->ms);
abe529af 1460
acf60855 1461 sset_destroy(&ofproto->ports);
0a740f48 1462 sset_destroy(&ofproto->ghost_ports);
acf60855 1463 sset_destroy(&ofproto->port_poll_set);
e1b1d06a 1464
0da3c61b 1465 ovs_mutex_destroy(&ofproto->stats_mutex);
13501305 1466
a2b53dec 1467 seq_destroy(ofproto->ams_seq);
cfc50ae5 1468
acf60855 1469 close_dpif_backer(ofproto->backer);
abe529af
BP
1470}
1471
5fcc0d00
BP
1472static int
1473run(struct ofproto *ofproto_)
1474{
1475 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
e79a6c83 1476 uint64_t new_seq, new_dump_seq;
5fcc0d00 1477
ec7ceaed
EJ
1478 if (mbridge_need_revalidate(ofproto->mbridge)) {
1479 ofproto->backer->need_revalidate = REV_RECONFIGURE;
509c0149 1480 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 1481 mac_learning_flush(ofproto->ml);
509c0149 1482 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 1483 mcast_snooping_mdb_flush(ofproto->ms);
ec7ceaed
EJ
1484 }
1485
a2b53dec 1486 /* Always updates the ofproto->ams_seqno to avoid frequent wakeup during
b53d5c33 1487 * flow restore. Even though nothing is processed during flow restore,
a2b53dec 1488 * all queued 'ams' will be handled immediately when flow restore
b53d5c33 1489 * completes. */
a2b53dec 1490 ofproto->ams_seqno = seq_read(ofproto->ams_seq);
b53d5c33 1491
a6b7506d 1492 /* Do not perform any periodic activity required by 'ofproto' while
40358701 1493 * waiting for flow restore to complete. */
a6b7506d 1494 if (!ofproto_get_flow_restore_wait()) {
a2b53dec
BP
1495 struct ofproto_async_msg *am;
1496 struct ovs_list ams;
1497
1498 guarded_list_pop_all(&ofproto->ams, &ams);
1499 LIST_FOR_EACH_POP (am, list_node, &ams) {
1500 connmgr_send_async_msg(ofproto->up.connmgr, am);
1501 ofproto_async_msg_free(am);
a6b7506d 1502 }
abe529af
BP
1503 }
1504
abe529af 1505 if (ofproto->netflow) {
8bfaca5b 1506 netflow_run(ofproto->netflow);
abe529af
BP
1507 }
1508 if (ofproto->sflow) {
bae473fe 1509 dpif_sflow_run(ofproto->sflow);
abe529af 1510 }
978427a5
RL
1511 if (ofproto->ipfix) {
1512 dpif_ipfix_run(ofproto->ipfix);
1513 }
abe529af 1514
f23d157c
JS
1515 new_seq = seq_read(connectivity_seq_get());
1516 if (ofproto->change_seq != new_seq) {
1517 struct ofport_dpif *ofport;
1518
1519 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1520 port_run(ofport);
1521 }
1522
1523 ofproto->change_seq = new_seq;
abe529af 1524 }
e2d13c43
JS
1525 if (ofproto->lacp_enabled || ofproto->has_bonded_bundles) {
1526 struct ofbundle *bundle;
1527
1528 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1529 bundle_run(bundle);
1530 }
abe529af
BP
1531 }
1532
21f7563c 1533 stp_run(ofproto);
9efd308e 1534 rstp_run(ofproto);
509c0149 1535 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594
EJ
1536 if (mac_learning_run(ofproto->ml)) {
1537 ofproto->backer->need_revalidate = REV_MAC_LEARNING;
1538 }
509c0149 1539 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af 1540
6d95c4e8
FL
1541 if (mcast_snooping_run(ofproto->ms)) {
1542 ofproto->backer->need_revalidate = REV_MCAST_SNOOPING;
1543 }
1544
e79a6c83
EJ
1545 new_dump_seq = seq_read(udpif_dump_seq(ofproto->backer->udpif));
1546 if (ofproto->dump_seq != new_dump_seq) {
1547 struct rule *rule, *next_rule;
1548
1549 /* We know stats are relatively fresh, so now is a good time to do some
1550 * periodic work. */
1551 ofproto->dump_seq = new_dump_seq;
1552
1553 /* Expire OpenFlow flows whose idle_timeout or hard_timeout
1554 * has passed. */
1555 ovs_mutex_lock(&ofproto_mutex);
1556 LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
1557 &ofproto->up.expirable) {
1558 rule_expire(rule_dpif_cast(rule));
1559 }
1560 ovs_mutex_unlock(&ofproto_mutex);
1561
1562 /* All outstanding data in existing flows has been accounted, so it's a
1563 * good time to do bond rebalancing. */
60cda7d6 1564 if (ofproto->has_bonded_bundles) {
e79a6c83
EJ
1565 struct ofbundle *bundle;
1566
1567 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
60cda7d6
AZ
1568 if (bundle->bond) {
1569 bond_rebalance(bundle->bond);
e79a6c83
EJ
1570 }
1571 }
6814e51f
BP
1572 }
1573 }
abe529af
BP
1574 return 0;
1575}
1576
1577static void
f07c97f5 1578ofproto_dpif_wait(struct ofproto *ofproto_)
abe529af
BP
1579{
1580 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
abe529af 1581
40358701
GS
1582 if (ofproto_get_flow_restore_wait()) {
1583 return;
1584 }
1585
abe529af 1586 if (ofproto->sflow) {
bae473fe 1587 dpif_sflow_wait(ofproto->sflow);
abe529af 1588 }
978427a5
RL
1589 if (ofproto->ipfix) {
1590 dpif_ipfix_wait(ofproto->ipfix);
1591 }
e2d13c43
JS
1592 if (ofproto->lacp_enabled || ofproto->has_bonded_bundles) {
1593 struct ofbundle *bundle;
1594
1595 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1596 bundle_wait(bundle);
1597 }
abe529af 1598 }
6fca1ffb
BP
1599 if (ofproto->netflow) {
1600 netflow_wait(ofproto->netflow);
1601 }
509c0149 1602 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
1c313b88 1603 mac_learning_wait(ofproto->ml);
509c0149 1604 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 1605 mcast_snooping_wait(ofproto->ms);
21f7563c 1606 stp_wait(ofproto);
2cc3c58e 1607 if (ofproto->backer->need_revalidate) {
abe529af 1608 poll_immediate_wake();
abe529af 1609 }
abe529af 1610
e79a6c83 1611 seq_wait(udpif_dump_seq(ofproto->backer->udpif), ofproto->dump_seq);
a2b53dec 1612 seq_wait(ofproto->ams_seq, ofproto->ams_seqno);
0d085684
BP
1613}
1614
1c030aa5
EJ
1615static void
1616type_get_memory_usage(const char *type, struct simap *usage)
1617{
1618 struct dpif_backer *backer;
1619
1620 backer = shash_find_data(&all_dpif_backers, type);
1621 if (backer) {
1622 udpif_get_memory_usage(backer->udpif, usage);
1623 }
1624}
1625
abe529af 1626static void
1b5b5071 1627flush(struct ofproto *ofproto_)
abe529af 1628{
1b5b5071
AZ
1629 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1630 struct dpif_backer *backer = ofproto->backer;
1631
1632 if (backer) {
1633 udpif_flush(backer->udpif);
1634 }
abe529af
BP
1635}
1636
6c1491fb 1637static void
3c1bb396
BP
1638query_tables(struct ofproto *ofproto,
1639 struct ofputil_table_features *features,
1640 struct ofputil_table_stats *stats)
6c1491fb 1641{
3c1bb396 1642 strcpy(features->name, "classifier");
6c1491fb 1643
3c1bb396
BP
1644 if (stats) {
1645 int i;
6c1491fb 1646
3c1bb396
BP
1647 for (i = 0; i < ofproto->n_tables; i++) {
1648 unsigned long missed, matched;
d611866c 1649
afcea9ea
JR
1650 atomic_read_relaxed(&ofproto->tables[i].n_matched, &matched);
1651 atomic_read_relaxed(&ofproto->tables[i].n_missed, &missed);
1652
3c1bb396 1653 stats[i].matched_count = matched;
3c1bb396
BP
1654 stats[i].lookup_count = matched + missed;
1655 }
d611866c 1656 }
6c1491fb
BP
1657}
1658
621b8064 1659static void
18721c4a 1660set_tables_version(struct ofproto *ofproto_, cls_version_t version)
621b8064
JR
1661{
1662 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1663
1664 atomic_store_relaxed(&ofproto->tables_version, version);
1665}
1666
1667
abe529af
BP
1668static struct ofport *
1669port_alloc(void)
1670{
3da29e32 1671 struct ofport_dpif *port = xzalloc(sizeof *port);
abe529af
BP
1672 return &port->up;
1673}
1674
1675static void
1676port_dealloc(struct ofport *port_)
1677{
1678 struct ofport_dpif *port = ofport_dpif_cast(port_);
1679 free(port);
1680}
1681
1682static int
1683port_construct(struct ofport *port_)
1684{
1685 struct ofport_dpif *port = ofport_dpif_cast(port_);
1686 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
b9ad7294 1687 const struct netdev *netdev = port->up.netdev;
3aa30359 1688 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
6d9e94b5 1689 const char *dp_port_name;
e1b1d06a
JP
1690 struct dpif_port dpif_port;
1691 int error;
abe529af 1692
2cc3c58e 1693 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
1694 port->bundle = NULL;
1695 port->cfm = NULL;
ccc09689 1696 port->bfd = NULL;
0477baa9 1697 port->lldp = NULL;
f025bcb7 1698 port->may_enable = false;
21f7563c
JP
1699 port->stp_port = NULL;
1700 port->stp_state = STP_DISABLED;
9efd308e
DV
1701 port->rstp_port = NULL;
1702 port->rstp_state = RSTP_DISABLED;
42943cde 1703 port->is_tunnel = false;
6cbbf4fa 1704 port->peer = NULL;
55954f6e
EJ
1705 port->qdscp = NULL;
1706 port->n_qdscp = 0;
b9ad7294 1707 port->carrier_seq = netdev_get_carrier_resets(netdev);
a6363cfd 1708 port->is_layer3 = netdev_vport_is_layer3(netdev);
abe529af 1709
b9ad7294 1710 if (netdev_vport_is_patch(netdev)) {
743cea45 1711 /* By bailing out here, we don't submit the port to the sFlow module
185b4e3a
MG
1712 * to be considered for counter polling export. This is correct
1713 * because the patch port represents an interface that sFlow considers
1714 * to be "internal" to the switch as a whole, and therefore not a
1715 * candidate for counter polling. */
4e022ec0 1716 port->odp_port = ODPP_NONE;
6cbbf4fa 1717 ofport_update_peer(port);
0a740f48
EJ
1718 return 0;
1719 }
1720
6d9e94b5
AZ
1721 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
1722 error = dpif_port_query_by_name(ofproto->backer->dpif, dp_port_name,
e1b1d06a
JP
1723 &dpif_port);
1724 if (error) {
1725 return error;
1726 }
1727
1728 port->odp_port = dpif_port.port_no;
1729
b9ad7294 1730 if (netdev_get_tunnel_config(netdev)) {
a36de779 1731 atomic_count_inc(&ofproto->backer->tnl_count);
ea0797c9 1732 error = tnl_port_add(port, port->up.netdev, port->odp_port,
6d9e94b5 1733 ovs_native_tunneling_is_on(ofproto), dp_port_name);
ea0797c9
BP
1734 if (error) {
1735 atomic_count_dec(&ofproto->backer->tnl_count);
1736 dpif_port_destroy(&dpif_port);
1737 return error;
1738 }
1739
42943cde 1740 port->is_tunnel = true;
8b7ea2d4
WZ
1741 if (ofproto->ipfix) {
1742 dpif_ipfix_add_tunnel_port(ofproto->ipfix, port_, port->odp_port);
1743 }
b9ad7294
EJ
1744 } else {
1745 /* Sanity-check that a mapping doesn't already exist. This
1746 * shouldn't happen for non-tunnel ports. */
1747 if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1748 VLOG_ERR("port %s already has an OpenFlow port number",
1749 dpif_port.name);
da78d43d 1750 dpif_port_destroy(&dpif_port);
b9ad7294
EJ
1751 return EBUSY;
1752 }
e1b1d06a 1753
8449c4d6 1754 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
b9ad7294 1755 hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
f9c0c3ec 1756 hash_odp_port(port->odp_port));
8449c4d6 1757 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
b9ad7294 1758 }
da78d43d 1759 dpif_port_destroy(&dpif_port);
e1b1d06a 1760
abe529af 1761 if (ofproto->sflow) {
e1b1d06a 1762 dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
abe529af
BP
1763 }
1764
1765 return 0;
1766}
1767
1768static void
9aad5a5a 1769port_destruct(struct ofport *port_, bool del)
abe529af
BP
1770{
1771 struct ofport_dpif *port = ofport_dpif_cast(port_);
1772 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
02f8d646 1773 const char *devname = netdev_get_name(port->up.netdev);
3aa30359
BP
1774 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1775 const char *dp_port_name;
abe529af 1776
7894e7da 1777 ofproto->backer->need_revalidate = REV_RECONFIGURE;
84f0f298 1778 xlate_txn_start();
46c88433 1779 xlate_ofport_remove(port);
84f0f298 1780 xlate_txn_commit();
7894e7da 1781
3aa30359
BP
1782 dp_port_name = netdev_vport_get_dpif_port(port->up.netdev, namebuf,
1783 sizeof namebuf);
9aad5a5a 1784 if (del && dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
acf60855
JP
1785 /* The underlying device is still there, so delete it. This
1786 * happens when the ofproto is being destroyed, since the caller
1787 * assumes that removal of attached ports will happen as part of
1788 * destruction. */
42943cde 1789 if (!port->is_tunnel) {
a614d823
KM
1790 dpif_port_del(ofproto->backer->dpif, port->odp_port);
1791 }
acf60855
JP
1792 }
1793
6cbbf4fa
EJ
1794 if (port->peer) {
1795 port->peer->peer = NULL;
1796 port->peer = NULL;
1797 }
1798
42943cde 1799 if (port->odp_port != ODPP_NONE && !port->is_tunnel) {
8449c4d6 1800 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
0a740f48 1801 hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
8449c4d6 1802 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
0a740f48
EJ
1803 }
1804
a36de779
PS
1805 if (port->is_tunnel) {
1806 atomic_count_dec(&ofproto->backer->tnl_count);
1807 }
1808
8b7ea2d4
WZ
1809 if (port->is_tunnel && ofproto->ipfix) {
1810 dpif_ipfix_del_tunnel_port(ofproto->ipfix, port->odp_port);
1811 }
1812
42943cde 1813 tnl_port_del(port);
02f8d646 1814 sset_find_and_delete(&ofproto->ports, devname);
0a740f48 1815 sset_find_and_delete(&ofproto->ghost_ports, devname);
abe529af 1816 bundle_remove(port_);
a5610457 1817 set_cfm(port_, NULL);
8aee94b6 1818 set_bfd(port_, NULL);
0477baa9 1819 set_lldp(port_, NULL);
0c0c32d8
BP
1820 if (port->stp_port) {
1821 stp_port_disable(port->stp_port);
1822 }
f025bcb7 1823 set_rstp_port(port_, NULL);
abe529af 1824 if (ofproto->sflow) {
bae473fe 1825 dpif_sflow_del_port(ofproto->sflow, port->odp_port);
abe529af 1826 }
8b36f51e 1827
55954f6e 1828 free(port->qdscp);
abe529af
BP
1829}
1830
1831static void
1832port_modified(struct ofport *port_)
1833{
1834 struct ofport_dpif *port = ofport_dpif_cast(port_);
a36de779 1835 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
6d9e94b5 1836 const char *dp_port_name;
a36de779 1837 struct netdev *netdev = port->up.netdev;
abe529af
BP
1838
1839 if (port->bundle && port->bundle->bond) {
a36de779 1840 bond_slave_set_netdev(port->bundle->bond, port, netdev);
abe529af 1841 }
9d46b444
EJ
1842
1843 if (port->cfm) {
a36de779 1844 cfm_set_netdev(port->cfm, netdev);
9d46b444 1845 }
f1e78bbd 1846
c1c4e8c7 1847 if (port->bfd) {
a36de779 1848 bfd_set_netdev(port->bfd, netdev);
c1c4e8c7
AW
1849 }
1850
635c5db9 1851 ofproto_dpif_monitor_port_update(port, port->bfd, port->cfm,
74ff3298 1852 port->lldp, &port->up.pp.hw_addr);
635c5db9 1853
6d9e94b5 1854 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
a36de779
PS
1855
1856 if (port->is_tunnel) {
1857 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1858
1859 if (tnl_port_reconfigure(port, netdev, port->odp_port,
6d9e94b5
AZ
1860 ovs_native_tunneling_is_on(ofproto),
1861 dp_port_name)) {
a36de779
PS
1862 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1863 }
f1e78bbd 1864 }
6cbbf4fa
EJ
1865
1866 ofport_update_peer(port);
abe529af
BP
1867}
1868
1869static void
9e1fd49b 1870port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
abe529af
BP
1871{
1872 struct ofport_dpif *port = ofport_dpif_cast(port_);
1873 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
9e1fd49b 1874 enum ofputil_port_config changed = old_config ^ port->up.pp.config;
abe529af 1875
9e1fd49b 1876 if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
c57b2226
BP
1877 OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1878 OFPUTIL_PC_NO_PACKET_IN)) {
2cc3c58e 1879 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7bde8dd8 1880
9e1fd49b 1881 if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
7bde8dd8
JP
1882 bundle_update(port->bundle);
1883 }
abe529af
BP
1884 }
1885}
1886
1887static int
1888set_sflow(struct ofproto *ofproto_,
1889 const struct ofproto_sflow_options *sflow_options)
1890{
1891 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
bae473fe 1892 struct dpif_sflow *ds = ofproto->sflow;
6ff686f2 1893
abe529af 1894 if (sflow_options) {
4fe0f203 1895 uint32_t old_probability = ds ? dpif_sflow_get_probability(ds) : 0;
bae473fe 1896 if (!ds) {
abe529af
BP
1897 struct ofport_dpif *ofport;
1898
4213f19d 1899 ds = ofproto->sflow = dpif_sflow_create();
abe529af 1900 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
e1b1d06a 1901 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
abe529af
BP
1902 }
1903 }
bae473fe 1904 dpif_sflow_set_options(ds, sflow_options);
4fe0f203
BP
1905 if (dpif_sflow_get_probability(ds) != old_probability) {
1906 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1907 }
abe529af 1908 } else {
6ff686f2 1909 if (ds) {
9723bcce 1910 dpif_sflow_unref(ds);
2cc3c58e 1911 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6ff686f2
PS
1912 ofproto->sflow = NULL;
1913 }
abe529af
BP
1914 }
1915 return 0;
1916}
1917
29089a54
RL
1918static int
1919set_ipfix(
1920 struct ofproto *ofproto_,
1921 const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1922 const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
1923 size_t n_flow_exporters_options)
1924{
1925 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1926 struct dpif_ipfix *di = ofproto->ipfix;
978427a5 1927 bool has_options = bridge_exporter_options || flow_exporters_options;
8b7ea2d4 1928 bool new_di = false;
29089a54 1929
978427a5
RL
1930 if (has_options && !di) {
1931 di = ofproto->ipfix = dpif_ipfix_create();
8b7ea2d4 1932 new_di = true;
978427a5
RL
1933 }
1934
1935 if (di) {
1936 /* Call set_options in any case to cleanly flush the flow
1937 * caches in the last exporters that are to be destroyed. */
29089a54
RL
1938 dpif_ipfix_set_options(
1939 di, bridge_exporter_options, flow_exporters_options,
1940 n_flow_exporters_options);
978427a5 1941
8b7ea2d4
WZ
1942 /* Add tunnel ports only when a new ipfix created */
1943 if (new_di == true) {
1944 struct ofport_dpif *ofport;
1945 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1946 if (ofport->is_tunnel == true) {
1947 dpif_ipfix_add_tunnel_port(di, &ofport->up, ofport->odp_port);
1948 }
1949 }
1950 }
1951
978427a5 1952 if (!has_options) {
d857c8aa 1953 dpif_ipfix_unref(di);
29089a54
RL
1954 ofproto->ipfix = NULL;
1955 }
1956 }
978427a5 1957
29089a54
RL
1958 return 0;
1959}
1960
abe529af 1961static int
a5610457 1962set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
abe529af
BP
1963{
1964 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
4e5e44e3
AW
1965 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1966 struct cfm *old = ofport->cfm;
635c5db9 1967 int error = 0;
abe529af 1968
635c5db9 1969 if (s) {
abe529af 1970 if (!ofport->cfm) {
90967e95 1971 ofport->cfm = cfm_create(ofport->up.netdev);
abe529af
BP
1972 }
1973
a5610457 1974 if (cfm_configure(ofport->cfm, s)) {
635c5db9
AW
1975 error = 0;
1976 goto out;
abe529af
BP
1977 }
1978
1979 error = EINVAL;
1980 }
8e9a73fa 1981 cfm_unref(ofport->cfm);
abe529af 1982 ofport->cfm = NULL;
635c5db9 1983out:
4e5e44e3
AW
1984 if (ofport->cfm != old) {
1985 ofproto->backer->need_revalidate = REV_RECONFIGURE;
1986 }
635c5db9 1987 ofproto_dpif_monitor_port_update(ofport, ofport->bfd, ofport->cfm,
74ff3298 1988 ofport->lldp, &ofport->up.pp.hw_addr);
abe529af
BP
1989 return error;
1990}
1991
8f5514fe
AW
1992static bool
1993cfm_status_changed(struct ofport *ofport_)
1994{
1995 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1996
1997 return ofport->cfm ? cfm_check_status_change(ofport->cfm) : true;
1998}
1999
88bf179a 2000static int
9a9e3786 2001get_cfm_status(const struct ofport *ofport_,
685acfd9 2002 struct cfm_status *status)
1de11730
EJ
2003{
2004 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
88bf179a 2005 int ret = 0;
1de11730
EJ
2006
2007 if (ofport->cfm) {
8f5514fe 2008 cfm_get_status(ofport->cfm, status);
1de11730 2009 } else {
88bf179a 2010 ret = ENOENT;
1de11730 2011 }
88bf179a
AW
2012
2013 return ret;
1de11730 2014}
ccc09689
EJ
2015
2016static int
2017set_bfd(struct ofport *ofport_, const struct smap *cfg)
2018{
2019 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2020 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2021 struct bfd *old;
2022
2023 old = ofport->bfd;
c1c4e8c7
AW
2024 ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev),
2025 cfg, ofport->up.netdev);
ccc09689
EJ
2026 if (ofport->bfd != old) {
2027 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2028 }
635c5db9 2029 ofproto_dpif_monitor_port_update(ofport, ofport->bfd, ofport->cfm,
74ff3298 2030 ofport->lldp, &ofport->up.pp.hw_addr);
ccc09689
EJ
2031 return 0;
2032}
2033
8f5514fe
AW
2034static bool
2035bfd_status_changed(struct ofport *ofport_)
2036{
2037 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2038
2039 return ofport->bfd ? bfd_check_status_change(ofport->bfd) : true;
2040}
2041
ccc09689
EJ
2042static int
2043get_bfd_status(struct ofport *ofport_, struct smap *smap)
2044{
2045 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
88bf179a 2046 int ret = 0;
ccc09689
EJ
2047
2048 if (ofport->bfd) {
8f5514fe 2049 bfd_get_status(ofport->bfd, smap);
ccc09689 2050 } else {
88bf179a 2051 ret = ENOENT;
ccc09689 2052 }
88bf179a
AW
2053
2054 return ret;
ccc09689 2055}
0477baa9
DF
2056
2057static int
2058set_lldp(struct ofport *ofport_,
2059 const struct smap *cfg)
2060{
2061 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2062 int error = 0;
2063
2064 if (cfg) {
2065 if (!ofport->lldp) {
2066 struct ofproto_dpif *ofproto;
2067
2068 ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2069 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2070 ofport->lldp = lldp_create(ofport->up.netdev, ofport_->mtu, cfg);
2071 }
2072
19aef6ef
DF
2073 if (!lldp_configure(ofport->lldp, cfg)) {
2074 error = EINVAL;
0477baa9 2075 }
0477baa9 2076 }
19aef6ef
DF
2077 if (error) {
2078 lldp_unref(ofport->lldp);
2079 ofport->lldp = NULL;
2080 }
2081
0477baa9
DF
2082 ofproto_dpif_monitor_port_update(ofport,
2083 ofport->bfd,
2084 ofport->cfm,
2085 ofport->lldp,
74ff3298 2086 &ofport->up.pp.hw_addr);
0477baa9
DF
2087 return error;
2088}
2089
2090static bool
2091get_lldp_status(const struct ofport *ofport_,
2092 struct lldp_status *status OVS_UNUSED)
2093{
2094 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2095
2096 return ofport->lldp ? true : false;
2097}
2098
2099static int
2100set_aa(struct ofproto *ofproto OVS_UNUSED,
2101 const struct aa_settings *s)
2102{
2103 return aa_configure(s);
2104}
2105
2106static int
2107aa_mapping_set(struct ofproto *ofproto_ OVS_UNUSED, void *aux,
2108 const struct aa_mapping_settings *s)
2109{
2110 return aa_mapping_register(aux, s);
2111}
2112
2113static int
2114aa_mapping_unset(struct ofproto *ofproto OVS_UNUSED, void *aux)
2115{
2116 return aa_mapping_unregister(aux);
2117}
2118
2119static int
2120aa_vlan_get_queued(struct ofproto *ofproto OVS_UNUSED, struct ovs_list *list)
2121{
2122 return aa_get_vlan_queued(list);
2123}
2124
2125static unsigned int
2126aa_vlan_get_queue_size(struct ofproto *ofproto OVS_UNUSED)
2127{
2128 return aa_get_vlan_queue_size();
2129}
2130
abe529af 2131\f
21f7563c
JP
2132/* Spanning Tree. */
2133
6b90bc57 2134/* Called while rstp_mutex is held. */
9efd308e 2135static void
cf62fa4c 2136rstp_send_bpdu_cb(struct dp_packet *pkt, void *ofport_, void *ofproto_)
9efd308e
DV
2137{
2138 struct ofproto_dpif *ofproto = ofproto_;
6b90bc57 2139 struct ofport_dpif *ofport = ofport_;
cf62fa4c 2140 struct eth_header *eth = dp_packet_l2(pkt);
6b90bc57 2141
74ff3298 2142 netdev_get_etheraddr(ofport->up.netdev, &eth->eth_src);
6b90bc57
JR
2143 if (eth_addr_is_zero(eth->eth_src)) {
2144 VLOG_WARN_RL(&rl, "%s port %d: cannot send RSTP BPDU on a port which "
2145 "does not have a configured source MAC address.",
2146 ofproto->up.name, ofp_to_u16(ofport->up.ofp_port));
9efd308e 2147 } else {
6b90bc57 2148 ofproto_dpif_send_packet(ofport, pkt);
9efd308e 2149 }
cf62fa4c 2150 dp_packet_delete(pkt);
9efd308e
DV
2151}
2152
21f7563c 2153static void
cf62fa4c 2154send_bpdu_cb(struct dp_packet *pkt, int port_num, void *ofproto_)
21f7563c
JP
2155{
2156 struct ofproto_dpif *ofproto = ofproto_;
2157 struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2158 struct ofport_dpif *ofport;
2159
2160 ofport = stp_port_get_aux(sp);
2161 if (!ofport) {
2162 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2163 ofproto->up.name, port_num);
2164 } else {
cf62fa4c 2165 struct eth_header *eth = dp_packet_l2(pkt);
21f7563c 2166
74ff3298 2167 netdev_get_etheraddr(ofport->up.netdev, &eth->eth_src);
21f7563c
JP
2168 if (eth_addr_is_zero(eth->eth_src)) {
2169 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2170 "with unknown MAC", ofproto->up.name, port_num);
2171 } else {
91d6cd12 2172 ofproto_dpif_send_packet(ofport, pkt);
21f7563c
JP
2173 }
2174 }
cf62fa4c 2175 dp_packet_delete(pkt);
21f7563c
JP
2176}
2177
9efd308e
DV
2178/* Configure RSTP on 'ofproto_' using the settings defined in 's'. */
2179static void
2180set_rstp(struct ofproto *ofproto_, const struct ofproto_rstp_settings *s)
2181{
2182 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2183
2184 /* Only revalidate flows if the configuration changed. */
2185 if (!s != !ofproto->rstp) {
2186 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2187 }
2188
2189 if (s) {
2190 if (!ofproto->rstp) {
2191 ofproto->rstp = rstp_create(ofproto_->name, s->address,
4b30ba05 2192 rstp_send_bpdu_cb, ofproto);
9efd308e
DV
2193 ofproto->rstp_last_tick = time_msec();
2194 }
2195 rstp_set_bridge_address(ofproto->rstp, s->address);
2196 rstp_set_bridge_priority(ofproto->rstp, s->priority);
2197 rstp_set_bridge_ageing_time(ofproto->rstp, s->ageing_time);
2198 rstp_set_bridge_force_protocol_version(ofproto->rstp,
2199 s->force_protocol_version);
2200 rstp_set_bridge_max_age(ofproto->rstp, s->bridge_max_age);
2201 rstp_set_bridge_forward_delay(ofproto->rstp, s->bridge_forward_delay);
2202 rstp_set_bridge_transmit_hold_count(ofproto->rstp,
2203 s->transmit_hold_count);
2204 } else {
2205 struct ofport *ofport;
2206 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2207 set_rstp_port(ofport, NULL);
2208 }
2209 rstp_unref(ofproto->rstp);
2210 ofproto->rstp = NULL;
2211 }
2212}
2213
2214static void
2215get_rstp_status(struct ofproto *ofproto_, struct ofproto_rstp_status *s)
2216{
2217 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2218
2219 if (ofproto->rstp) {
2220 s->enabled = true;
2221 s->root_id = rstp_get_root_id(ofproto->rstp);
2222 s->bridge_id = rstp_get_bridge_id(ofproto->rstp);
2223 s->designated_id = rstp_get_designated_id(ofproto->rstp);
2224 s->root_path_cost = rstp_get_root_path_cost(ofproto->rstp);
2225 s->designated_port_id = rstp_get_designated_port_id(ofproto->rstp);
2226 s->bridge_port_id = rstp_get_bridge_port_id(ofproto->rstp);
2227 } else {
2228 s->enabled = false;
2229 }
2230}
2231
2232static void
2233update_rstp_port_state(struct ofport_dpif *ofport)
2234{
2235 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2236 enum rstp_state state;
2237
2238 /* Figure out new state. */
2239 state = ofport->rstp_port ? rstp_port_get_state(ofport->rstp_port)
2240 : RSTP_DISABLED;
2241
2242 /* Update state. */
2243 if (ofport->rstp_state != state) {
2244 enum ofputil_port_state of_state;
2245 bool fwd_change;
2246
9a0bb428
JR
2247 VLOG_DBG("port %s: RSTP state changed from %s to %s",
2248 netdev_get_name(ofport->up.netdev),
2249 rstp_state_name(ofport->rstp_state),
2250 rstp_state_name(state));
2372c146 2251
9efd308e 2252 if (rstp_learn_in_state(ofport->rstp_state)
66ff280d
JR
2253 != rstp_learn_in_state(state)) {
2254 /* XXX: Learning action flows should also be flushed. */
2255 if (ofport->bundle) {
2372c146
JR
2256 if (!rstp_shift_root_learned_address(ofproto->rstp)
2257 || rstp_get_old_root_aux(ofproto->rstp) != ofport) {
2258 bundle_flush_macs(ofport->bundle, false);
2259 }
66ff280d 2260 }
9efd308e
DV
2261 }
2262 fwd_change = rstp_forward_in_state(ofport->rstp_state)
2263 != rstp_forward_in_state(state);
2264
2265 ofproto->backer->need_revalidate = REV_RSTP;
2266 ofport->rstp_state = state;
2267
2268 if (fwd_change && ofport->bundle) {
2269 bundle_update(ofport->bundle);
2270 }
2271
2272 /* Update the RSTP state bits in the OpenFlow port description. */
2273 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2274 of_state |= (state == RSTP_LEARNING ? OFPUTIL_PS_STP_LEARN
2275 : state == RSTP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2276 : state == RSTP_DISCARDING ? OFPUTIL_PS_STP_LISTEN
2277 : 0);
2278 ofproto_port_set_state(&ofport->up, of_state);
2279 }
2280}
2281
2282static void
2283rstp_run(struct ofproto_dpif *ofproto)
2284{
2285 if (ofproto->rstp) {
2286 long long int now = time_msec();
2287 long long int elapsed = now - ofproto->rstp_last_tick;
2288 struct rstp_port *rp;
f025bcb7 2289 struct ofport_dpif *ofport;
54d3863b 2290
9efd308e
DV
2291 /* Every second, decrease the values of the timers. */
2292 if (elapsed >= 1000) {
2293 rstp_tick_timers(ofproto->rstp);
2294 ofproto->rstp_last_tick = now;
2295 }
f025bcb7
JR
2296 rp = NULL;
2297 while ((ofport = rstp_get_next_changed_port_aux(ofproto->rstp, &rp))) {
2298 update_rstp_port_state(ofport);
9efd308e 2299 }
66ff280d
JR
2300 rp = NULL;
2301 ofport = NULL;
9efd308e
DV
2302 /* FIXME: This check should be done on-event (i.e., when setting
2303 * p->fdb_flush) and not periodically.
2304 */
66ff280d 2305 while ((ofport = rstp_check_and_reset_fdb_flush(ofproto->rstp, &rp))) {
2372c146
JR
2306 if (!rstp_shift_root_learned_address(ofproto->rstp)
2307 || rstp_get_old_root_aux(ofproto->rstp) != ofport) {
2308 bundle_flush_macs(ofport->bundle, false);
2309 }
2310 }
2311
2312 if (rstp_shift_root_learned_address(ofproto->rstp)) {
c7e4f0b2
DV
2313 struct ofport_dpif *old_root_aux =
2314 (struct ofport_dpif *)rstp_get_old_root_aux(ofproto->rstp);
2315 struct ofport_dpif *new_root_aux =
2316 (struct ofport_dpif *)rstp_get_new_root_aux(ofproto->rstp);
2317 if (old_root_aux != NULL && new_root_aux != NULL) {
2318 bundle_move(old_root_aux->bundle, new_root_aux->bundle);
2319 rstp_reset_root_changed(ofproto->rstp);
2320 }
9efd308e
DV
2321 }
2322 }
2323}
2324
21f7563c
JP
2325/* Configures STP on 'ofproto_' using the settings defined in 's'. */
2326static int
2327set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2328{
2329 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2330
2331 /* Only revalidate flows if the configuration changed. */
2332 if (!s != !ofproto->stp) {
2cc3c58e 2333 ofproto->backer->need_revalidate = REV_RECONFIGURE;
21f7563c
JP
2334 }
2335
2336 if (s) {
2337 if (!ofproto->stp) {
2338 ofproto->stp = stp_create(ofproto_->name, s->system_id,
2339 send_bpdu_cb, ofproto);
2340 ofproto->stp_last_tick = time_msec();
2341 }
2342
2343 stp_set_bridge_id(ofproto->stp, s->system_id);
2344 stp_set_bridge_priority(ofproto->stp, s->priority);
2345 stp_set_hello_time(ofproto->stp, s->hello_time);
2346 stp_set_max_age(ofproto->stp, s->max_age);
2347 stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2348 } else {
851bf71d
EJ
2349 struct ofport *ofport;
2350
2351 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2352 set_stp_port(ofport, NULL);
2353 }
2354
bd54dbcd 2355 stp_unref(ofproto->stp);
21f7563c
JP
2356 ofproto->stp = NULL;
2357 }
2358
2359 return 0;
2360}
2361
2362static int
2363get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2364{
2365 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2366
2367 if (ofproto->stp) {
2368 s->enabled = true;
2369 s->bridge_id = stp_get_bridge_id(ofproto->stp);
2370 s->designated_root = stp_get_designated_root(ofproto->stp);
2371 s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2372 } else {
2373 s->enabled = false;
2374 }
2375
2376 return 0;
2377}
2378
2379static void
2380update_stp_port_state(struct ofport_dpif *ofport)
2381{
2382 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2383 enum stp_state state;
2384
2385 /* Figure out new state. */
2386 state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2387 : STP_DISABLED;
2388
2389 /* Update state. */
2390 if (ofport->stp_state != state) {
9e1fd49b 2391 enum ofputil_port_state of_state;
21f7563c
JP
2392 bool fwd_change;
2393
9a0bb428
JR
2394 VLOG_DBG("port %s: STP state changed from %s to %s",
2395 netdev_get_name(ofport->up.netdev),
2396 stp_state_name(ofport->stp_state),
2397 stp_state_name(state));
21f7563c
JP
2398 if (stp_learn_in_state(ofport->stp_state)
2399 != stp_learn_in_state(state)) {
2400 /* xxx Learning action flows should also be flushed. */
509c0149 2401 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 2402 mac_learning_flush(ofproto->ml);
509c0149 2403 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 2404 mcast_snooping_mdb_flush(ofproto->ms);
21f7563c
JP
2405 }
2406 fwd_change = stp_forward_in_state(ofport->stp_state)
2407 != stp_forward_in_state(state);
2408
2cc3c58e 2409 ofproto->backer->need_revalidate = REV_STP;
21f7563c
JP
2410 ofport->stp_state = state;
2411 ofport->stp_state_entered = time_msec();
2412
b308140a 2413 if (fwd_change && ofport->bundle) {
21f7563c
JP
2414 bundle_update(ofport->bundle);
2415 }
2416
2417 /* Update the STP state bits in the OpenFlow port description. */
9e1fd49b
BP
2418 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2419 of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2420 : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2421 : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2422 : state == STP_BLOCKING ? OFPUTIL_PS_STP_BLOCK
2423 : 0);
21f7563c
JP
2424 ofproto_port_set_state(&ofport->up, of_state);
2425 }
2426}
2427
2428/* Configures STP on 'ofport_' using the settings defined in 's'. The
2429 * caller is responsible for assigning STP port numbers and ensuring
2430 * there are no duplicates. */
2431static int
2432set_stp_port(struct ofport *ofport_,
2433 const struct ofproto_port_stp_settings *s)
2434{
2435 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2436 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2437 struct stp_port *sp = ofport->stp_port;
2438
2439 if (!s || !s->enable) {
2440 if (sp) {
2441 ofport->stp_port = NULL;
2442 stp_port_disable(sp);
ecd12731 2443 update_stp_port_state(ofport);
21f7563c
JP
2444 }
2445 return 0;
2446 } else if (sp && stp_port_no(sp) != s->port_num
f025bcb7 2447 && ofport == stp_port_get_aux(sp)) {
21f7563c
JP
2448 /* The port-id changed, so disable the old one if it's not
2449 * already in use by another port. */
2450 stp_port_disable(sp);
2451 }
2452
2453 sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
21f7563c 2454
fb20b0bf
JR
2455 /* Set name before enabling the port so that debugging messages can print
2456 * the name. */
11306274 2457 stp_port_set_name(sp, netdev_get_name(ofport->up.netdev));
fb20b0bf
JR
2458 stp_port_enable(sp);
2459
21f7563c
JP
2460 stp_port_set_aux(sp, ofport);
2461 stp_port_set_priority(sp, s->priority);
2462 stp_port_set_path_cost(sp, s->path_cost);
2463
2464 update_stp_port_state(ofport);
2465
2466 return 0;
2467}
2468
2469static int
2470get_stp_port_status(struct ofport *ofport_,
2471 struct ofproto_port_stp_status *s)
2472{
2473 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2474 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2475 struct stp_port *sp = ofport->stp_port;
2476
2477 if (!ofproto->stp || !sp) {
2478 s->enabled = false;
2479 return 0;
2480 }
2481
2482 s->enabled = true;
2483 s->port_id = stp_port_get_id(sp);
2484 s->state = stp_port_get_state(sp);
2485 s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2486 s->role = stp_port_get_role(sp);
fd28ce3a
JS
2487
2488 return 0;
2489}
2490
2491static int
2492get_stp_port_stats(struct ofport *ofport_,
2493 struct ofproto_port_stp_stats *s)
2494{
2495 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2496 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2497 struct stp_port *sp = ofport->stp_port;
2498
2499 if (!ofproto->stp || !sp) {
2500 s->enabled = false;
2501 return 0;
2502 }
2503
2504 s->enabled = true;
80740385 2505 stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
21f7563c
JP
2506
2507 return 0;
2508}
2509
2510static void
2511stp_run(struct ofproto_dpif *ofproto)
2512{
2513 if (ofproto->stp) {
2514 long long int now = time_msec();
2515 long long int elapsed = now - ofproto->stp_last_tick;
2516 struct stp_port *sp;
2517
2518 if (elapsed > 0) {
2519 stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2520 ofproto->stp_last_tick = now;
2521 }
2522 while (stp_get_changed_port(ofproto->stp, &sp)) {
2523 struct ofport_dpif *ofport = stp_port_get_aux(sp);
2524
2525 if (ofport) {
2526 update_stp_port_state(ofport);
2527 }
2528 }
6ae50723
EJ
2529
2530 if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
509c0149 2531 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 2532 mac_learning_flush(ofproto->ml);
509c0149 2533 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 2534 mcast_snooping_mdb_flush(ofproto->ms);
6ae50723 2535 }
21f7563c
JP
2536 }
2537}
2538
2539static void
2540stp_wait(struct ofproto_dpif *ofproto)
2541{
2542 if (ofproto->stp) {
2543 poll_timer_wait(1000);
2544 }
2545}
9efd308e
DV
2546
2547/* Configures RSTP on 'ofport_' using the settings defined in 's'. The
2548 * caller is responsible for assigning RSTP port numbers and ensuring
2549 * there are no duplicates. */
2550static void
2551set_rstp_port(struct ofport *ofport_,
cc33c223 2552 const struct ofproto_port_rstp_settings *s)
9efd308e
DV
2553{
2554 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2555 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2556 struct rstp_port *rp = ofport->rstp_port;
9efd308e
DV
2557
2558 if (!s || !s->enable) {
2559 if (rp) {
e73e9165
JR
2560 rstp_port_set_aux(rp, NULL);
2561 rstp_port_set_state(rp, RSTP_DISABLED);
2562 rstp_port_set_mac_operational(rp, false);
9efd308e 2563 ofport->rstp_port = NULL;
e73e9165 2564 rstp_port_unref(rp);
9efd308e
DV
2565 update_rstp_port_state(ofport);
2566 }
9efd308e
DV
2567 return;
2568 }
f025bcb7
JR
2569
2570 /* Check if need to add a new port. */
9efd308e
DV
2571 if (!rp) {
2572 rp = ofport->rstp_port = rstp_add_port(ofproto->rstp);
2573 }
9efd308e 2574
f025bcb7 2575 rstp_port_set(rp, s->port_num, s->priority, s->path_cost,
67e8c1ac
JR
2576 s->admin_edge_port, s->auto_edge,
2577 s->admin_p2p_mac_state, s->admin_port_state, s->mcheck,
2578 ofport);
9efd308e 2579 update_rstp_port_state(ofport);
29db47ce
JR
2580 /* Synchronize operational status. */
2581 rstp_port_set_mac_operational(rp, ofport->may_enable);
9efd308e
DV
2582}
2583
2584static void
2585get_rstp_port_status(struct ofport *ofport_,
2586 struct ofproto_port_rstp_status *s)
2587{
2588 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2589 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2590 struct rstp_port *rp = ofport->rstp_port;
2591
2592 if (!ofproto->rstp || !rp) {
2593 s->enabled = false;
2594 return;
2595 }
2596
2597 s->enabled = true;
9c64e6b8
JR
2598 rstp_port_get_status(rp, &s->port_id, &s->state, &s->role,
2599 &s->designated_bridge_id, &s->designated_port_id,
2600 &s->designated_path_cost, &s->tx_count,
f025bcb7 2601 &s->rx_count, &s->error_count, &s->uptime);
9efd308e
DV
2602}
2603
21f7563c 2604\f
8b36f51e 2605static int
55954f6e 2606set_queues(struct ofport *ofport_, const struct ofproto_port_queue *qdscp,
8b36f51e
EJ
2607 size_t n_qdscp)
2608{
2609 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2610 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
8b36f51e 2611
55954f6e
EJ
2612 if (ofport->n_qdscp != n_qdscp
2613 || (n_qdscp && memcmp(ofport->qdscp, qdscp,
2614 n_qdscp * sizeof *qdscp))) {
2cc3c58e 2615 ofproto->backer->need_revalidate = REV_RECONFIGURE;
55954f6e
EJ
2616 free(ofport->qdscp);
2617 ofport->qdscp = n_qdscp
2618 ? xmemdup(qdscp, n_qdscp * sizeof *qdscp)
2619 : NULL;
2620 ofport->n_qdscp = n_qdscp;
8b36f51e
EJ
2621 }
2622
8b36f51e
EJ
2623 return 0;
2624}
2625\f
abe529af
BP
2626/* Bundles. */
2627
b44a10b7
BP
2628/* Expires all MAC learning entries associated with 'bundle' and forces its
2629 * ofproto to revalidate every flow.
2630 *
2631 * Normally MAC learning entries are removed only from the ofproto associated
2632 * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2633 * are removed from every ofproto. When patch ports and SLB bonds are in use
2634 * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2635 * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2636 * with the host from which it migrated. */
abe529af 2637static void
b44a10b7 2638bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
abe529af
BP
2639{
2640 struct ofproto_dpif *ofproto = bundle->ofproto;
2641 struct mac_learning *ml = ofproto->ml;
2642 struct mac_entry *mac, *next_mac;
2643
2cc3c58e 2644 ofproto->backer->need_revalidate = REV_RECONFIGURE;
509c0149 2645 ovs_rwlock_wrlock(&ml->rwlock);
abe529af 2646 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
9d078ec2 2647 if (mac_entry_get_port(ml, mac) == bundle) {
b44a10b7
BP
2648 if (all_ofprotos) {
2649 struct ofproto_dpif *o;
2650
2651 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2652 if (o != ofproto) {
2653 struct mac_entry *e;
2654
509c0149 2655 ovs_rwlock_wrlock(&o->ml->rwlock);
30618594 2656 e = mac_learning_lookup(o->ml, mac->mac, mac->vlan);
b44a10b7 2657 if (e) {
b44a10b7
BP
2658 mac_learning_expire(o->ml, e);
2659 }
509c0149 2660 ovs_rwlock_unlock(&o->ml->rwlock);
b44a10b7
BP
2661 }
2662 }
2663 }
2664
abe529af
BP
2665 mac_learning_expire(ml, mac);
2666 }
2667 }
509c0149 2668 ovs_rwlock_unlock(&ml->rwlock);
abe529af
BP
2669}
2670
2372c146
JR
2671static void
2672bundle_move(struct ofbundle *old, struct ofbundle *new)
2673{
2674 struct ofproto_dpif *ofproto = old->ofproto;
2675 struct mac_learning *ml = ofproto->ml;
2676 struct mac_entry *mac, *next_mac;
2677
2678 ovs_assert(new->ofproto == old->ofproto);
2679
2680 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2681 ovs_rwlock_wrlock(&ml->rwlock);
2682 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
9d078ec2
BP
2683 if (mac_entry_get_port(ml, mac) == old) {
2684 mac_entry_set_port(ml, mac, new);
2372c146
JR
2685 }
2686 }
2687 ovs_rwlock_unlock(&ml->rwlock);
2688}
2689
abe529af
BP
2690static struct ofbundle *
2691bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2692{
2693 struct ofbundle *bundle;
2694
2695 HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2696 &ofproto->bundles) {
2697 if (bundle->aux == aux) {
2698 return bundle;
2699 }
2700 }
2701 return NULL;
2702}
2703
7bde8dd8
JP
2704static void
2705bundle_update(struct ofbundle *bundle)
2706{
2707 struct ofport_dpif *port;
2708
2709 bundle->floodable = true;
2710 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
9e1fd49b 2711 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
a6363cfd 2712 || port->is_layer3
4b5f1996
DV
2713 || (bundle->ofproto->stp && !stp_forward_in_state(port->stp_state))
2714 || (bundle->ofproto->rstp && !rstp_forward_in_state(port->rstp_state))) {
7bde8dd8
JP
2715 bundle->floodable = false;
2716 break;
2717 }
2718 }
2719}
2720
abe529af
BP
2721static void
2722bundle_del_port(struct ofport_dpif *port)
2723{
2724 struct ofbundle *bundle = port->bundle;
2725
2cc3c58e 2726 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
6f77f4ae 2727
417e7e66 2728 ovs_list_remove(&port->bundle_node);
abe529af
BP
2729 port->bundle = NULL;
2730
2731 if (bundle->lacp) {
2732 lacp_slave_unregister(bundle->lacp, port);
2733 }
2734 if (bundle->bond) {
2735 bond_slave_unregister(bundle->bond, port);
2736 }
2737
7bde8dd8 2738 bundle_update(bundle);
abe529af
BP
2739}
2740
2741static bool
4e022ec0 2742bundle_add_port(struct ofbundle *bundle, ofp_port_t ofp_port,
df53d41c 2743 struct lacp_slave_settings *lacp)
abe529af
BP
2744{
2745 struct ofport_dpif *port;
2746
e672ff9b 2747 port = ofp_port_to_ofport(bundle->ofproto, ofp_port);
abe529af
BP
2748 if (!port) {
2749 return false;
2750 }
2751
2752 if (port->bundle != bundle) {
2cc3c58e 2753 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af 2754 if (port->bundle) {
e019a574 2755 bundle_remove(&port->up);
abe529af
BP
2756 }
2757
2758 port->bundle = bundle;
417e7e66 2759 ovs_list_push_back(&bundle->ports, &port->bundle_node);
9e1fd49b 2760 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
a6363cfd 2761 || port->is_layer3
4b5f1996
DV
2762 || (bundle->ofproto->stp && !stp_forward_in_state(port->stp_state))
2763 || (bundle->ofproto->rstp && !rstp_forward_in_state(port->rstp_state))) {
abe529af
BP
2764 bundle->floodable = false;
2765 }
2766 }
2767 if (lacp) {
2cc3c58e 2768 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2769 lacp_slave_register(bundle->lacp, port, lacp);
2770 }
2771
2772 return true;
2773}
2774
2775static void
2776bundle_destroy(struct ofbundle *bundle)
2777{
2778 struct ofproto_dpif *ofproto;
2779 struct ofport_dpif *port, *next_port;
abe529af
BP
2780
2781 if (!bundle) {
2782 return;
2783 }
2784
2785 ofproto = bundle->ofproto;
67912650 2786 mbridge_unregister_bundle(ofproto->mbridge, bundle);
abe529af 2787
84f0f298 2788 xlate_txn_start();
46c88433 2789 xlate_bundle_remove(bundle);
84f0f298 2790 xlate_txn_commit();
46c88433 2791
abe529af
BP
2792 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2793 bundle_del_port(port);
2794 }
2795
b44a10b7 2796 bundle_flush_macs(bundle, true);
abe529af
BP
2797 hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2798 free(bundle->name);
2799 free(bundle->trunks);
91779071 2800 lacp_unref(bundle->lacp);
03366a2d 2801 bond_unref(bundle->bond);
abe529af
BP
2802 free(bundle);
2803}
2804
2805static int
2806bundle_set(struct ofproto *ofproto_, void *aux,
2807 const struct ofproto_bundle_settings *s)
2808{
2809 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2810 bool need_flush = false;
abe529af
BP
2811 struct ofport_dpif *port;
2812 struct ofbundle *bundle;
ecac4ebf
BP
2813 unsigned long *trunks;
2814 int vlan;
abe529af
BP
2815 size_t i;
2816 bool ok;
2817
2818 if (!s) {
2819 bundle_destroy(bundle_lookup(ofproto, aux));
2820 return 0;
2821 }
2822
cb22974d
BP
2823 ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2824 ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
abe529af
BP
2825
2826 bundle = bundle_lookup(ofproto, aux);
2827 if (!bundle) {
2828 bundle = xmalloc(sizeof *bundle);
2829
2830 bundle->ofproto = ofproto;
2831 hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2832 hash_pointer(aux, 0));
2833 bundle->aux = aux;
2834 bundle->name = NULL;
2835
417e7e66 2836 ovs_list_init(&bundle->ports);
ecac4ebf 2837 bundle->vlan_mode = PORT_VLAN_TRUNK;
abe529af
BP
2838 bundle->vlan = -1;
2839 bundle->trunks = NULL;
5e9ceccd 2840 bundle->use_priority_tags = s->use_priority_tags;
abe529af
BP
2841 bundle->lacp = NULL;
2842 bundle->bond = NULL;
2843
2844 bundle->floodable = true;
ec7ceaed 2845 mbridge_register_bundle(ofproto->mbridge, bundle);
abe529af
BP
2846 }
2847
2848 if (!bundle->name || strcmp(s->name, bundle->name)) {
2849 free(bundle->name);
2850 bundle->name = xstrdup(s->name);
2851 }
2852
2853 /* LACP. */
2854 if (s->lacp) {
e2d13c43 2855 ofproto->lacp_enabled = true;
abe529af 2856 if (!bundle->lacp) {
2cc3c58e 2857 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2858 bundle->lacp = lacp_create();
2859 }
2860 lacp_configure(bundle->lacp, s->lacp);
2861 } else {
91779071 2862 lacp_unref(bundle->lacp);
abe529af
BP
2863 bundle->lacp = NULL;
2864 }
2865
2866 /* Update set of ports. */
2867 ok = true;
2868 for (i = 0; i < s->n_slaves; i++) {
2869 if (!bundle_add_port(bundle, s->slaves[i],
df53d41c 2870 s->lacp ? &s->lacp_slaves[i] : NULL)) {
abe529af
BP
2871 ok = false;
2872 }
2873 }
417e7e66 2874 if (!ok || ovs_list_size(&bundle->ports) != s->n_slaves) {
abe529af
BP
2875 struct ofport_dpif *next_port;
2876
2877 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2878 for (i = 0; i < s->n_slaves; i++) {
56c769ab 2879 if (s->slaves[i] == port->up.ofp_port) {
abe529af
BP
2880 goto found;
2881 }
2882 }
2883
2884 bundle_del_port(port);
2885 found: ;
2886 }
2887 }
417e7e66 2888 ovs_assert(ovs_list_size(&bundle->ports) <= s->n_slaves);
abe529af 2889
417e7e66 2890 if (ovs_list_is_empty(&bundle->ports)) {
abe529af
BP
2891 bundle_destroy(bundle);
2892 return EINVAL;
2893 }
2894
ecac4ebf 2895 /* Set VLAN tagging mode */
5e9ceccd
BP
2896 if (s->vlan_mode != bundle->vlan_mode
2897 || s->use_priority_tags != bundle->use_priority_tags) {
ecac4ebf 2898 bundle->vlan_mode = s->vlan_mode;
5e9ceccd 2899 bundle->use_priority_tags = s->use_priority_tags;
ecac4ebf
BP
2900 need_flush = true;
2901 }
2902
abe529af 2903 /* Set VLAN tag. */
ecac4ebf
BP
2904 vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2905 : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2906 : 0);
2907 if (vlan != bundle->vlan) {
2908 bundle->vlan = vlan;
abe529af
BP
2909 need_flush = true;
2910 }
2911
2912 /* Get trunked VLANs. */
ecac4ebf
BP
2913 switch (s->vlan_mode) {
2914 case PORT_VLAN_ACCESS:
2915 trunks = NULL;
2916 break;
2917
2918 case PORT_VLAN_TRUNK:
ebc56baa 2919 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
2920 break;
2921
2922 case PORT_VLAN_NATIVE_UNTAGGED:
2923 case PORT_VLAN_NATIVE_TAGGED:
2924 if (vlan != 0 && (!s->trunks
2925 || !bitmap_is_set(s->trunks, vlan)
2926 || bitmap_is_set(s->trunks, 0))) {
2927 /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2928 if (s->trunks) {
2929 trunks = bitmap_clone(s->trunks, 4096);
2930 } else {
2931 trunks = bitmap_allocate1(4096);
2932 }
2933 bitmap_set1(trunks, vlan);
2934 bitmap_set0(trunks, 0);
2935 } else {
ebc56baa 2936 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
2937 }
2938 break;
2939
2940 default:
428b2edd 2941 OVS_NOT_REACHED();
ecac4ebf 2942 }
abe529af
BP
2943 if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2944 free(bundle->trunks);
ecac4ebf
BP
2945 if (trunks == s->trunks) {
2946 bundle->trunks = vlan_bitmap_clone(trunks);
2947 } else {
2948 bundle->trunks = trunks;
2949 trunks = NULL;
2950 }
abe529af
BP
2951 need_flush = true;
2952 }
ecac4ebf
BP
2953 if (trunks != s->trunks) {
2954 free(trunks);
2955 }
abe529af
BP
2956
2957 /* Bonding. */
417e7e66 2958 if (!ovs_list_is_short(&bundle->ports)) {
abe529af
BP
2959 bundle->ofproto->has_bonded_bundles = true;
2960 if (bundle->bond) {
2961 if (bond_reconfigure(bundle->bond, s->bond)) {
2cc3c58e 2962 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2963 }
2964 } else {
adcf00ba 2965 bundle->bond = bond_create(s->bond, ofproto);
2cc3c58e 2966 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
2967 }
2968
2969 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
adcf00ba
AZ
2970 bond_slave_register(bundle->bond, port,
2971 port->up.ofp_port, port->up.netdev);
abe529af
BP
2972 }
2973 } else {
03366a2d 2974 bond_unref(bundle->bond);
abe529af
BP
2975 bundle->bond = NULL;
2976 }
2977
2978 /* If we changed something that would affect MAC learning, un-learn
2979 * everything on this port and force flow revalidation. */
2980 if (need_flush) {
b44a10b7 2981 bundle_flush_macs(bundle, false);
abe529af
BP
2982 }
2983
2984 return 0;
2985}
2986
2987static void
2988bundle_remove(struct ofport *port_)
2989{
2990 struct ofport_dpif *port = ofport_dpif_cast(port_);
2991 struct ofbundle *bundle = port->bundle;
2992
2993 if (bundle) {
2994 bundle_del_port(port);
417e7e66 2995 if (ovs_list_is_empty(&bundle->ports)) {
abe529af 2996 bundle_destroy(bundle);
417e7e66 2997 } else if (ovs_list_is_short(&bundle->ports)) {
03366a2d 2998 bond_unref(bundle->bond);
abe529af
BP
2999 bundle->bond = NULL;
3000 }
3001 }
3002}
3003
3004static void
5f877369 3005send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
abe529af
BP
3006{
3007 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3008 struct ofport_dpif *port = port_;
74ff3298 3009 struct eth_addr ea;
abe529af
BP
3010 int error;
3011
74ff3298 3012 error = netdev_get_etheraddr(port->up.netdev, &ea);
abe529af 3013 if (!error) {
cf62fa4c 3014 struct dp_packet packet;
5f877369 3015 void *packet_pdu;
abe529af 3016
cf62fa4c 3017 dp_packet_init(&packet, 0);
abe529af 3018 packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
5f877369
EJ
3019 pdu_size);
3020 memcpy(packet_pdu, pdu, pdu_size);
3021
91d6cd12 3022 ofproto_dpif_send_packet(port, &packet);
cf62fa4c 3023 dp_packet_uninit(&packet);
abe529af
BP
3024 } else {
3025 VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
3026 "%s (%s)", port->bundle->name,
10a89ef0 3027 netdev_get_name(port->up.netdev), ovs_strerror(error));
abe529af
BP
3028 }
3029}
3030
3031static void
3032bundle_send_learning_packets(struct ofbundle *bundle)
3033{
3034 struct ofproto_dpif *ofproto = bundle->ofproto;
3035 int error, n_packets, n_errors;
3036 struct mac_entry *e;
8613db65
DDP
3037 struct pkt_list {
3038 struct ovs_list list_node;
3039 struct ofport_dpif *port;
3040 struct dp_packet *pkt;
3041 } *pkt_node;
ca6ba700 3042 struct ovs_list packets;
abe529af 3043
417e7e66 3044 ovs_list_init(&packets);
509c0149 3045 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
abe529af 3046 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
9d078ec2 3047 if (mac_entry_get_port(ofproto->ml, e) != bundle) {
8613db65
DDP
3048 pkt_node = xmalloc(sizeof *pkt_node);
3049 pkt_node->pkt = bond_compose_learning_packet(bundle->bond,
3050 e->mac, e->vlan,
3051 (void **)&pkt_node->port);
417e7e66 3052 ovs_list_push_back(&packets, &pkt_node->list_node);
abe529af
BP
3053 }
3054 }
509c0149 3055 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af 3056
0165217e 3057 error = n_packets = n_errors = 0;
8613db65 3058 LIST_FOR_EACH_POP (pkt_node, list_node, &packets) {
0165217e
EJ
3059 int ret;
3060
8613db65
DDP
3061 ret = ofproto_dpif_send_packet(pkt_node->port, pkt_node->pkt);
3062 dp_packet_delete(pkt_node->pkt);
3063 free(pkt_node);
0165217e
EJ
3064 if (ret) {
3065 error = ret;
3066 n_errors++;
3067 }
3068 n_packets++;
3069 }
0165217e 3070
abe529af
BP
3071 if (n_errors) {
3072 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3073 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3074 "packets, last error was: %s",
10a89ef0 3075 bundle->name, n_errors, n_packets, ovs_strerror(error));
abe529af
BP
3076 } else {
3077 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3078 bundle->name, n_packets);
3079 }
3080}
3081
3082static void
3083bundle_run(struct ofbundle *bundle)
3084{
3085 if (bundle->lacp) {
3086 lacp_run(bundle->lacp, send_pdu_cb);
3087 }
3088 if (bundle->bond) {
3089 struct ofport_dpif *port;
3090
3091 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
015e08bc 3092 bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
abe529af
BP
3093 }
3094
4a1b8f30
EJ
3095 if (bond_run(bundle->bond, lacp_status(bundle->lacp))) {
3096 bundle->ofproto->backer->need_revalidate = REV_BOND;
3097 }
3098
abe529af
BP
3099 if (bond_should_send_learning_packets(bundle->bond)) {
3100 bundle_send_learning_packets(bundle);
3101 }
3102 }
3103}
3104
3105static void
3106bundle_wait(struct ofbundle *bundle)
3107{
3108 if (bundle->lacp) {
3109 lacp_wait(bundle->lacp);
3110 }
3111 if (bundle->bond) {
3112 bond_wait(bundle->bond);
3113 }
3114}
3115\f
3116/* Mirrors. */
3117
3118static int
ec7ceaed
EJ
3119mirror_set__(struct ofproto *ofproto_, void *aux,
3120 const struct ofproto_mirror_settings *s)
abe529af
BP
3121{
3122 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
ec7ceaed
EJ
3123 struct ofbundle **srcs, **dsts;
3124 int error;
3125 size_t i;
abe529af 3126
abe529af 3127 if (!s) {
ec7ceaed 3128 mirror_destroy(ofproto->mbridge, aux);
abe529af
BP
3129 return 0;
3130 }
3131
ec7ceaed
EJ
3132 srcs = xmalloc(s->n_srcs * sizeof *srcs);
3133 dsts = xmalloc(s->n_dsts * sizeof *dsts);
abe529af 3134
ec7ceaed
EJ
3135 for (i = 0; i < s->n_srcs; i++) {
3136 srcs[i] = bundle_lookup(ofproto, s->srcs[i]);
abe529af
BP
3137 }
3138
ec7ceaed
EJ
3139 for (i = 0; i < s->n_dsts; i++) {
3140 dsts[i] = bundle_lookup(ofproto, s->dsts[i]);
abe529af
BP
3141 }
3142
ec7ceaed
EJ
3143 error = mirror_set(ofproto->mbridge, aux, s->name, srcs, s->n_srcs, dsts,
3144 s->n_dsts, s->src_vlans,
3145 bundle_lookup(ofproto, s->out_bundle), s->out_vlan);
3146 free(srcs);
3147 free(dsts);
3148 return error;
abe529af
BP
3149}
3150
9d24de3b 3151static int
ec7ceaed
EJ
3152mirror_get_stats__(struct ofproto *ofproto, void *aux,
3153 uint64_t *packets, uint64_t *bytes)
9d24de3b 3154{
ec7ceaed
EJ
3155 return mirror_get_stats(ofproto_dpif_cast(ofproto)->mbridge, aux, packets,
3156 bytes);
9d24de3b
JP
3157}
3158
abe529af
BP
3159static int
3160set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
3161{
3162 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
509c0149 3163 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
abe529af 3164 if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
30618594 3165 mac_learning_flush(ofproto->ml);
abe529af 3166 }
509c0149 3167 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af
BP
3168 return 0;
3169}
3170
3171static bool
b4affc74 3172is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
abe529af
BP
3173{
3174 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3175 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
ec7ceaed 3176 return bundle && mirror_bundle_out(ofproto->mbridge, bundle) != 0;
abe529af 3177}
8402c74b
SS
3178
3179static void
b53055f4 3180forward_bpdu_changed(struct ofproto *ofproto_)
8402c74b
SS
3181{
3182 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2cc3c58e 3183 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8402c74b 3184}
e764773c
BP
3185
3186static void
c4069512
BP
3187set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
3188 size_t max_entries)
e764773c
BP
3189{
3190 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
509c0149 3191 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
e764773c 3192 mac_learning_set_idle_time(ofproto->ml, idle_time);
c4069512 3193 mac_learning_set_max_entries(ofproto->ml, max_entries);
509c0149 3194 ovs_rwlock_unlock(&ofproto->ml->rwlock);
e764773c 3195}
7c38d0a5
FL
3196
3197/* Configures multicast snooping on 'ofport' using the settings
3198 * defined in 's'. */
3199static int
3200set_mcast_snooping(struct ofproto *ofproto_,
3201 const struct ofproto_mcast_snooping_settings *s)
3202{
3203 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3204
3205 /* Only revalidate flows if the configuration changed. */
3206 if (!s != !ofproto->ms) {
3207 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3208 }
3209
3210 if (s) {
3211 if (!ofproto->ms) {
3212 ofproto->ms = mcast_snooping_create();
3213 }
3214
3215 ovs_rwlock_wrlock(&ofproto->ms->rwlock);
3216 mcast_snooping_set_idle_time(ofproto->ms, s->idle_time);
3217 mcast_snooping_set_max_entries(ofproto->ms, s->max_entries);
3218 if (mcast_snooping_set_flood_unreg(ofproto->ms, s->flood_unreg)) {
3219 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3220 }
3221 ovs_rwlock_unlock(&ofproto->ms->rwlock);
3222 } else {
3223 mcast_snooping_unref(ofproto->ms);
3224 ofproto->ms = NULL;
3225 }
3226
3227 return 0;
3228}
3229
8e04a33f 3230/* Configures multicast snooping port's flood settings on 'ofproto'. */
7c38d0a5 3231static int
8e04a33f
FL
3232set_mcast_snooping_port(struct ofproto *ofproto_, void *aux,
3233 const struct ofproto_mcast_snooping_port_settings *s)
7c38d0a5
FL
3234{
3235 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3236 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
3237
8e04a33f 3238 if (ofproto->ms && s) {
7c38d0a5 3239 ovs_rwlock_wrlock(&ofproto->ms->rwlock);
8e04a33f
FL
3240 mcast_snooping_set_port_flood(ofproto->ms, bundle, s->flood);
3241 mcast_snooping_set_port_flood_reports(ofproto->ms, bundle,
3242 s->flood_reports);
7c38d0a5
FL
3243 ovs_rwlock_unlock(&ofproto->ms->rwlock);
3244 }
3245 return 0;
3246}
3247
abe529af
BP
3248\f
3249/* Ports. */
3250
e672ff9b
JR
3251struct ofport_dpif *
3252ofp_port_to_ofport(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
abe529af 3253{
7df6a8bd
BP
3254 struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
3255 return ofport ? ofport_dpif_cast(ofport) : NULL;
abe529af
BP
3256}
3257
abe529af 3258static void
e1b1d06a
JP
3259ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
3260 struct ofproto_port *ofproto_port,
abe529af
BP
3261 struct dpif_port *dpif_port)
3262{
3263 ofproto_port->name = dpif_port->name;
3264 ofproto_port->type = dpif_port->type;
e1b1d06a 3265 ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
abe529af
BP
3266}
3267
6cbbf4fa
EJ
3268static void
3269ofport_update_peer(struct ofport_dpif *ofport)
0a740f48
EJ
3270{
3271 const struct ofproto_dpif *ofproto;
6cbbf4fa 3272 struct dpif_backer *backer;
161b6042 3273 char *peer_name;
6cbbf4fa
EJ
3274
3275 if (!netdev_vport_is_patch(ofport->up.netdev)) {
3276 return;
3277 }
3278
3279 backer = ofproto_dpif_cast(ofport->up.ofproto)->backer;
7894e7da 3280 backer->need_revalidate = REV_RECONFIGURE;
0a740f48 3281
6cbbf4fa
EJ
3282 if (ofport->peer) {
3283 ofport->peer->peer = NULL;
3284 ofport->peer = NULL;
3285 }
3286
3287 peer_name = netdev_vport_patch_peer(ofport->up.netdev);
3288 if (!peer_name) {
3289 return;
0a740f48
EJ
3290 }
3291
3292 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
6cbbf4fa
EJ
3293 struct ofport *peer_ofport;
3294 struct ofport_dpif *peer;
161b6042 3295 char *peer_peer;
0a740f48 3296
462abef2
EJ
3297 if (ofproto->backer != backer) {
3298 continue;
3299 }
3300
6cbbf4fa
EJ
3301 peer_ofport = shash_find_data(&ofproto->up.port_by_name, peer_name);
3302 if (!peer_ofport) {
3303 continue;
3304 }
3305
3306 peer = ofport_dpif_cast(peer_ofport);
3307 peer_peer = netdev_vport_patch_peer(peer->up.netdev);
3308 if (peer_peer && !strcmp(netdev_get_name(ofport->up.netdev),
3309 peer_peer)) {
3310 ofport->peer = peer;
3311 ofport->peer->peer = ofport;
0a740f48 3312 }
161b6042 3313 free(peer_peer);
6cbbf4fa 3314
161b6042 3315 break;
0a740f48 3316 }
161b6042 3317 free(peer_name);
0a740f48
EJ
3318}
3319
abe529af
BP
3320static void
3321port_run(struct ofport_dpif *ofport)
3322{
3e5b3fdb
EJ
3323 long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
3324 bool carrier_changed = carrier_seq != ofport->carrier_seq;
015e08bc 3325 bool enable = netdev_get_carrier(ofport->up.netdev);
2d344ba5
AW
3326 bool cfm_enable = false;
3327 bool bfd_enable = false;
015e08bc 3328
3e5b3fdb
EJ
3329 ofport->carrier_seq = carrier_seq;
3330
abe529af 3331 if (ofport->cfm) {
4653c558
EJ
3332 int cfm_opup = cfm_get_opup(ofport->cfm);
3333
2d344ba5 3334 cfm_enable = !cfm_get_fault(ofport->cfm);
4653c558
EJ
3335
3336 if (cfm_opup >= 0) {
2d344ba5 3337 cfm_enable = cfm_enable && cfm_opup;
4653c558 3338 }
abe529af 3339 }
015e08bc 3340
ccc09689 3341 if (ofport->bfd) {
2d344ba5
AW
3342 bfd_enable = bfd_forwarding(ofport->bfd);
3343 }
3344
3345 if (ofport->bfd || ofport->cfm) {
3346 enable = enable && (cfm_enable || bfd_enable);
ccc09689
EJ
3347 }
3348
015e08bc
EJ
3349 if (ofport->bundle) {
3350 enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
3e5b3fdb
EJ
3351 if (carrier_changed) {
3352 lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
3353 }
015e08bc
EJ
3354 }
3355
daff3353
EJ
3356 if (ofport->may_enable != enable) {
3357 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
daff3353 3358
f025bcb7 3359 ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
9efd308e 3360
f025bcb7 3361 if (ofport->rstp_port) {
9efd308e
DV
3362 rstp_port_set_mac_operational(ofport->rstp_port, enable);
3363 }
3364 }
f025bcb7
JR
3365
3366 ofport->may_enable = enable;
abe529af
BP
3367}
3368
abe529af
BP
3369static int
3370port_query_by_name(const struct ofproto *ofproto_, const char *devname,
3371 struct ofproto_port *ofproto_port)
3372{
3373 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3374 struct dpif_port dpif_port;
3375 int error;
3376
0a740f48
EJ
3377 if (sset_contains(&ofproto->ghost_ports, devname)) {
3378 const char *type = netdev_get_type_from_name(devname);
3379
3380 /* We may be called before ofproto->up.port_by_name is populated with
3381 * the appropriate ofport. For this reason, we must get the name and
3382 * type from the netdev layer directly. */
3383 if (type) {
3384 const struct ofport *ofport;
3385
3386 ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3387 ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3388 ofproto_port->name = xstrdup(devname);
3389 ofproto_port->type = xstrdup(type);
3390 return 0;
3391 }
3392 return ENODEV;
3393 }
3394
acf60855
JP
3395 if (!sset_contains(&ofproto->ports, devname)) {
3396 return ENODEV;
3397 }
3398 error = dpif_port_query_by_name(ofproto->backer->dpif,
3399 devname, &dpif_port);
abe529af 3400 if (!error) {
e1b1d06a 3401 ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
abe529af
BP
3402 }
3403 return error;
3404}
3405
3406static int
e1b1d06a 3407port_add(struct ofproto *ofproto_, struct netdev *netdev)
abe529af
BP
3408{
3409 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
b9ad7294 3410 const char *devname = netdev_get_name(netdev);
3aa30359
BP
3411 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
3412 const char *dp_port_name;
abe529af 3413
0a740f48
EJ
3414 if (netdev_vport_is_patch(netdev)) {
3415 sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3416 return 0;
3417 }
3418
3aa30359 3419 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
b9ad7294 3420 if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
4e022ec0 3421 odp_port_t port_no = ODPP_NONE;
7d82ab2e
KM
3422 int error;
3423
3424 error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
b9ad7294
EJ
3425 if (error) {
3426 return error;
3427 }
7d82ab2e 3428 if (netdev_get_tunnel_config(netdev)) {
4e022ec0
AW
3429 simap_put(&ofproto->backer->tnl_backers,
3430 dp_port_name, odp_to_u32(port_no));
7d82ab2e 3431 }
acf60855 3432 }
b9ad7294
EJ
3433
3434 if (netdev_get_tunnel_config(netdev)) {
3435 sset_add(&ofproto->ghost_ports, devname);
b9ad7294
EJ
3436 } else {
3437 sset_add(&ofproto->ports, devname);
3438 }
3439 return 0;
3440}
3441
abe529af 3442static int
4e022ec0 3443port_del(struct ofproto *ofproto_, ofp_port_t ofp_port)
abe529af
BP
3444{
3445 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
e672ff9b 3446 struct ofport_dpif *ofport = ofp_port_to_ofport(ofproto, ofp_port);
e1b1d06a 3447 int error = 0;
abe529af 3448
b9ad7294
EJ
3449 if (!ofport) {
3450 return 0;
e1b1d06a 3451 }
b9ad7294
EJ
3452
3453 sset_find_and_delete(&ofproto->ghost_ports,
3454 netdev_get_name(ofport->up.netdev));
a614d823 3455 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8911c674 3456 if (!ofport->is_tunnel && !netdev_vport_is_patch(ofport->up.netdev)) {
b9ad7294
EJ
3457 error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
3458 if (!error) {
abe529af
BP
3459 /* The caller is going to close ofport->up.netdev. If this is a
3460 * bonded port, then the bond is using that netdev, so remove it
3461 * from the bond. The client will need to reconfigure everything
3462 * after deleting ports, so then the slave will get re-added. */
3463 bundle_remove(&ofport->up);
3464 }
3465 }
3466 return error;
3467}
3468
6527c598
PS
3469static int
3470port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3471{
3472 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3473 int error;
3474
3475 error = netdev_get_stats(ofport->up.netdev, stats);
3476
ee382d89 3477 if (!error && ofport_->ofp_port == OFPP_LOCAL) {
6527c598
PS
3478 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3479
0da3c61b 3480 ovs_mutex_lock(&ofproto->stats_mutex);
6527c598
PS
3481 /* ofproto->stats.tx_packets represents packets that we created
3482 * internally and sent to some port (e.g. packets sent with
91d6cd12
AW
3483 * ofproto_dpif_send_packet()). Account for them as if they had
3484 * come from OFPP_LOCAL and got forwarded. */
6527c598
PS
3485
3486 if (stats->rx_packets != UINT64_MAX) {
3487 stats->rx_packets += ofproto->stats.tx_packets;
3488 }
3489
3490 if (stats->rx_bytes != UINT64_MAX) {
3491 stats->rx_bytes += ofproto->stats.tx_bytes;
3492 }
3493
3494 /* ofproto->stats.rx_packets represents packets that were received on
3495 * some port and we processed internally and dropped (e.g. STP).
4e090bc7 3496 * Account for them as if they had been forwarded to OFPP_LOCAL. */
6527c598
PS
3497
3498 if (stats->tx_packets != UINT64_MAX) {
3499 stats->tx_packets += ofproto->stats.rx_packets;
3500 }
3501
3502 if (stats->tx_bytes != UINT64_MAX) {
3503 stats->tx_bytes += ofproto->stats.rx_bytes;
3504 }
0da3c61b 3505 ovs_mutex_unlock(&ofproto->stats_mutex);
6527c598
PS
3506 }
3507
3508 return error;
3509}
3510
50b9699f
NM
3511static int
3512port_get_lacp_stats(const struct ofport *ofport_, struct lacp_slave_stats *stats)
3513{
3514 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3515 if (ofport->bundle && ofport->bundle->lacp) {
3516 if (lacp_get_slave_stats(ofport->bundle->lacp, ofport, stats)) {
3517 return 0;
3518 }
3519 }
3520 return -1;
3521}
3522
abe529af 3523struct port_dump_state {
acf60855
JP
3524 uint32_t bucket;
3525 uint32_t offset;
0a740f48 3526 bool ghost;
da78d43d
BP
3527
3528 struct ofproto_port port;
3529 bool has_port;
abe529af
BP
3530};
3531
3532static int
acf60855 3533port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
abe529af 3534{
0a740f48 3535 *statep = xzalloc(sizeof(struct port_dump_state));
abe529af
BP
3536 return 0;
3537}
3538
3539static int
b9ad7294 3540port_dump_next(const struct ofproto *ofproto_, void *state_,
abe529af
BP
3541 struct ofproto_port *port)
3542{
e1b1d06a 3543 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
abe529af 3544 struct port_dump_state *state = state_;
0a740f48 3545 const struct sset *sset;
acf60855 3546 struct sset_node *node;
abe529af 3547
da78d43d
BP
3548 if (state->has_port) {
3549 ofproto_port_destroy(&state->port);
3550 state->has_port = false;
3551 }
0a740f48
EJ
3552 sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
3553 while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
acf60855
JP
3554 int error;
3555
da78d43d
BP
3556 error = port_query_by_name(ofproto_, node->name, &state->port);
3557 if (!error) {
3558 *port = state->port;
3559 state->has_port = true;
3560 return 0;
3561 } else if (error != ENODEV) {
acf60855
JP
3562 return error;
3563 }
abe529af 3564 }
acf60855 3565
0a740f48
EJ
3566 if (!state->ghost) {
3567 state->ghost = true;
3568 state->bucket = 0;
3569 state->offset = 0;
3570 return port_dump_next(ofproto_, state_, port);
3571 }
3572
acf60855 3573 return EOF;
abe529af
BP
3574}
3575
3576static int
3577port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3578{
3579 struct port_dump_state *state = state_;
3580
da78d43d
BP
3581 if (state->has_port) {
3582 ofproto_port_destroy(&state->port);
3583 }
abe529af
BP
3584 free(state);
3585 return 0;
3586}
3587
3588static int
3589port_poll(const struct ofproto *ofproto_, char **devnamep)
3590{
3591 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855
JP
3592
3593 if (ofproto->port_poll_errno) {
3594 int error = ofproto->port_poll_errno;
3595 ofproto->port_poll_errno = 0;
3596 return error;
3597 }
3598
3599 if (sset_is_empty(&ofproto->port_poll_set)) {
3600 return EAGAIN;
3601 }
3602
3603 *devnamep = sset_pop(&ofproto->port_poll_set);
3604 return 0;
abe529af
BP
3605}
3606
3607static void
3608port_poll_wait(const struct ofproto *ofproto_)
3609{
3610 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 3611 dpif_port_poll_wait(ofproto->backer->dpif);
abe529af
BP
3612}
3613
3614static int
3615port_is_lacp_current(const struct ofport *ofport_)
3616{
3617 const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3618 return (ofport->bundle && ofport->bundle->lacp
3619 ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3620 : -1);
3621}
3622\f
e79a6c83
EJ
3623/* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
3624 * then delete it entirely. */
3625static void
3626rule_expire(struct rule_dpif *rule)
3627 OVS_REQUIRES(ofproto_mutex)
9d6ac44e 3628{
dc437090 3629 uint16_t hard_timeout, idle_timeout;
e79a6c83 3630 long long int now = time_msec();
dc437090 3631 int reason = -1;
9d6ac44e 3632
e79a6c83
EJ
3633 hard_timeout = rule->up.hard_timeout;
3634 idle_timeout = rule->up.idle_timeout;
dc437090
JR
3635
3636 /* Has 'rule' expired? */
3637 if (hard_timeout) {
3638 long long int modified;
3639
3640 ovs_mutex_lock(&rule->up.mutex);
3641 modified = rule->up.modified;
3642 ovs_mutex_unlock(&rule->up.mutex);
3643
3644 if (now > modified + hard_timeout * 1000) {
3645 reason = OFPRR_HARD_TIMEOUT;
3646 }
3647 }
3648
3649 if (reason < 0 && idle_timeout) {
3650 long long int used;
3651
3652 ovs_mutex_lock(&rule->stats_mutex);
1a4ec18d 3653 used = rule->stats.used;
dc437090
JR
3654 ovs_mutex_unlock(&rule->stats_mutex);
3655
3656 if (now > used + idle_timeout * 1000) {
3657 reason = OFPRR_IDLE_TIMEOUT;
3658 }
f9c37233 3659 }
501f8d1f 3660
e79a6c83
EJ
3661 if (reason >= 0) {
3662 COVERAGE_INC(ofproto_dpif_expired);
3663 ofproto_rule_expire(&rule->up, reason);
a41d7bf2 3664 }
e79a6c83 3665}
a41d7bf2 3666
1df7f7aa
NS
3667static void
3668ofproto_dpif_set_packet_odp_port(const struct ofproto_dpif *ofproto,
3669 ofp_port_t in_port, struct dp_packet *packet)
3670{
3671 if (in_port == OFPP_NONE) {
3672 in_port = OFPP_LOCAL;
3673 }
3674 packet->md.in_port.odp_port = ofp_port_to_odp_port(ofproto, in_port);
3675}
3676
e79a6c83 3677int
cdd42eda
JG
3678ofproto_dpif_execute_actions__(struct ofproto_dpif *ofproto,
3679 const struct flow *flow,
3680 struct rule_dpif *rule,
3681 const struct ofpact *ofpacts, size_t ofpacts_len,
790c5d26 3682 int indentation, int depth, int resubmits,
cdd42eda 3683 struct dp_packet *packet)
e79a6c83 3684{
e79a6c83
EJ
3685 struct dpif_flow_stats stats;
3686 struct xlate_out xout;
3687 struct xlate_in xin;
758c456d 3688 struct dpif_execute execute;
e79a6c83 3689 int error;
f9c37233 3690
e79a6c83 3691 ovs_assert((rule != NULL) != (ofpacts != NULL));
501f8d1f 3692
e79a6c83 3693 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
adcf00ba 3694
e79a6c83
EJ
3695 if (rule) {
3696 rule_dpif_credit_stats(rule, &stats);
3697 }
c84451a6 3698
1520ef4f
BP
3699 uint64_t odp_actions_stub[1024 / 8];
3700 struct ofpbuf odp_actions = OFPBUF_STUB_INITIALIZER(odp_actions_stub);
cc377352 3701 xlate_in_init(&xin, ofproto, flow, flow->in_port.ofp_port, rule,
1520ef4f 3702 stats.tcp_flags, packet, NULL, &odp_actions);
e79a6c83
EJ
3703 xin.ofpacts = ofpacts;
3704 xin.ofpacts_len = ofpacts_len;
3705 xin.resubmit_stats = &stats;
9a9b001a 3706 xin.indentation = indentation;
790c5d26 3707 xin.depth = depth;
cdd42eda 3708 xin.resubmits = resubmits;
fff1b9c0
JR
3709 if (xlate_actions(&xin, &xout) != XLATE_OK) {
3710 error = EINVAL;
3711 goto out;
3712 }
d445cc16 3713
1520ef4f
BP
3714 execute.actions = odp_actions.data;
3715 execute.actions_len = odp_actions.size;
a36de779 3716
cf62fa4c 3717 pkt_metadata_from_flow(&packet->md, flow);
08edf837 3718 execute.packet = packet;
1cceb31b 3719 execute.flow = flow;
08edf837 3720 execute.needs_help = (xout.slow & SLOW_ACTION) != 0;
43f9ac0a 3721 execute.probe = false;
27130224 3722 execute.mtu = 0;
08edf837
BP
3723
3724 /* Fix up in_port. */
1df7f7aa 3725 ofproto_dpif_set_packet_odp_port(ofproto, flow->in_port.ofp_port, packet);
758c456d
JR
3726
3727 error = dpif_execute(ofproto->backer->dpif, &execute);
fff1b9c0 3728out:
e79a6c83 3729 xlate_out_uninit(&xout);
1520ef4f 3730 ofpbuf_uninit(&odp_actions);
9d6ac44e 3731
e79a6c83 3732 return error;
9d6ac44e
BP
3733}
3734
cdd42eda
JG
3735/* Executes, within 'ofproto', the actions in 'rule' or 'ofpacts' on 'packet'.
3736 * 'flow' must reflect the data in 'packet'. */
3737int
3738ofproto_dpif_execute_actions(struct ofproto_dpif *ofproto,
3739 const struct flow *flow,
3740 struct rule_dpif *rule,
3741 const struct ofpact *ofpacts, size_t ofpacts_len,
3742 struct dp_packet *packet)
3743{
3744 return ofproto_dpif_execute_actions__(ofproto, flow, rule, ofpacts,
790c5d26 3745 ofpacts_len, 0, 0, 0, packet);
cdd42eda
JG
3746}
3747
e79a6c83
EJ
3748void
3749rule_dpif_credit_stats(struct rule_dpif *rule,
3750 const struct dpif_flow_stats *stats)
8f73d537 3751{
e79a6c83 3752 ovs_mutex_lock(&rule->stats_mutex);
39c94593
JR
3753 if (OVS_UNLIKELY(rule->new_rule)) {
3754 rule_dpif_credit_stats(rule->new_rule, stats);
3755 } else {
3756 rule->stats.n_packets += stats->n_packets;
3757 rule->stats.n_bytes += stats->n_bytes;
3758 rule->stats.used = MAX(rule->stats.used, stats->used);
3759 }
e79a6c83 3760 ovs_mutex_unlock(&rule->stats_mutex);
8f73d537
EJ
3761}
3762
e79a6c83
EJ
3763ovs_be64
3764rule_dpif_get_flow_cookie(const struct rule_dpif *rule)
3765 OVS_REQUIRES(rule->up.mutex)
3766{
3767 return rule->up.flow_cookie;
3768}
cfd5c9eb 3769
e79a6c83
EJ
3770void
3771rule_dpif_reduce_timeouts(struct rule_dpif *rule, uint16_t idle_timeout,
3772 uint16_t hard_timeout)
3773{
3774 ofproto_rule_reduce_timeouts(&rule->up, idle_timeout, hard_timeout);
6a7e895f
BP
3775}
3776
d8227eba
JR
3777/* Returns 'rule''s actions. The returned actions are RCU-protected, and can
3778 * be read until the calling thread quiesces. */
dc723c44 3779const struct rule_actions *
e79a6c83 3780rule_dpif_get_actions(const struct rule_dpif *rule)
6ff686f2 3781{
e79a6c83
EJ
3782 return rule_get_actions(&rule->up);
3783}
abe529af 3784
888ac0d7
SH
3785/* Sets 'rule''s recirculation id. */
3786static void
3787rule_dpif_set_recirc_id(struct rule_dpif *rule, uint32_t id)
3788 OVS_REQUIRES(rule->up.mutex)
3789{
e672ff9b
JR
3790 ovs_assert(!rule->recirc_id || rule->recirc_id == id);
3791 if (rule->recirc_id == id) {
3792 /* Release the new reference to the same id. */
3793 recirc_free_id(id);
3794 } else {
3795 rule->recirc_id = id;
888ac0d7 3796 }
888ac0d7
SH
3797}
3798
3799/* Sets 'rule''s recirculation id. */
3800void
3801rule_set_recirc_id(struct rule *rule_, uint32_t id)
3802{
3803 struct rule_dpif *rule = rule_dpif_cast(rule_);
3804
3805 ovs_mutex_lock(&rule->up.mutex);
3806 rule_dpif_set_recirc_id(rule, id);
3807 ovs_mutex_unlock(&rule->up.mutex);
3808}
3809
18721c4a 3810cls_version_t
39c94593 3811ofproto_dpif_get_tables_version(struct ofproto_dpif *ofproto OVS_UNUSED)
621b8064 3812{
18721c4a 3813 cls_version_t version;
621b8064
JR
3814
3815 atomic_read_relaxed(&ofproto->tables_version, &version);
39c94593 3816
621b8064
JR
3817 return version;
3818}
3819
34dd0d78 3820/* The returned rule (if any) is valid at least until the next RCU quiescent
1e1e1d19
BP
3821 * period. If the rule needs to stay around longer, the caller should take
3822 * a reference.
2e0bded4
BP
3823 *
3824 * 'flow' is non-const to allow for temporary modifications during the lookup.
3825 * Any changes are restored before returning. */
6d328fa2 3826static struct rule_dpif *
18721c4a 3827rule_dpif_lookup_in_table(struct ofproto_dpif *ofproto, cls_version_t version,
621b8064 3828 uint8_t table_id, struct flow *flow,
1e1e1d19 3829 struct flow_wildcards *wc)
abe529af 3830{
6d328fa2 3831 struct classifier *cls = &ofproto->up.tables[table_id].cls;
1e1e1d19
BP
3832 return rule_dpif_cast(rule_from_cls_rule(classifier_lookup(cls, version,
3833 flow, wc)));
6d328fa2
SH
3834}
3835
39c94593
JR
3836/* Look up 'flow' in 'ofproto''s classifier version 'version', starting from
3837 * table '*table_id'. Returns the rule that was found, which may be one of the
3838 * special rules according to packet miss hadling. If 'may_packet_in' is
3839 * false, returning of the miss_rule (which issues packet ins for the
3840 * controller) is avoided. Updates 'wc', if nonnull, to reflect the fields
3841 * that were used during the lookup.
6d328fa2
SH
3842 *
3843 * If 'honor_table_miss' is true, the first lookup occurs in '*table_id', but
3844 * if none is found then the table miss configuration for that table is
3845 * honored, which can result in additional lookups in other OpenFlow tables.
3846 * In this case the function updates '*table_id' to reflect the final OpenFlow
3847 * table that was searched.
3848 *
3849 * If 'honor_table_miss' is false, then only one table lookup occurs, in
3850 * '*table_id'.
3851 *
1a7c0cd7 3852 * The rule is returned in '*rule', which is valid at least until the next
1e1e1d19
BP
3853 * RCU quiescent period. If the '*rule' needs to stay around longer, the
3854 * caller must take a reference.
34dd0d78
JR
3855 *
3856 * 'in_port' allows the lookup to take place as if the in port had the value
2e0bded4
BP
3857 * 'in_port'. This is needed for resubmit action support.
3858 *
3859 * 'flow' is non-const to allow for temporary modifications during the lookup.
3860 * Any changes are restored before returning. */
34dd0d78 3861struct rule_dpif *
18721c4a
JR
3862rule_dpif_lookup_from_table(struct ofproto_dpif *ofproto,
3863 cls_version_t version, struct flow *flow,
1e1e1d19 3864 struct flow_wildcards *wc,
18721c4a 3865 const struct dpif_flow_stats *stats,
34dd0d78
JR
3866 uint8_t *table_id, ofp_port_t in_port,
3867 bool may_packet_in, bool honor_table_miss)
6d328fa2 3868{
d8227eba 3869 ovs_be16 old_tp_src = flow->tp_src, old_tp_dst = flow->tp_dst;
34dd0d78
JR
3870 ofp_port_t old_in_port = flow->in_port.ofp_port;
3871 enum ofputil_table_miss miss_config;
3872 struct rule_dpif *rule;
6d328fa2
SH
3873 uint8_t next_id;
3874
d8227eba
JR
3875 /* We always unwildcard nw_frag (for IP), so they
3876 * need not be unwildcarded here. */
3877 if (flow->nw_frag & FLOW_NW_FRAG_ANY
ad99e2ed
BP
3878 && ofproto->up.frag_handling != OFPUTIL_FRAG_NX_MATCH) {
3879 if (ofproto->up.frag_handling == OFPUTIL_FRAG_NORMAL) {
d8227eba
JR
3880 /* We must pretend that transport ports are unavailable. */
3881 flow->tp_src = htons(0);
3882 flow->tp_dst = htons(0);
3883 } else {
ad99e2ed 3884 /* Must be OFPUTIL_FRAG_DROP (we don't have OFPUTIL_FRAG_REASM).
d8227eba 3885 * Use the drop_frags_rule (which cannot disappear). */
34dd0d78 3886 rule = ofproto->drop_frags_rule;
d8227eba
JR
3887 if (stats) {
3888 struct oftable *tbl = &ofproto->up.tables[*table_id];
3889 unsigned long orig;
3890
3891 atomic_add_relaxed(&tbl->n_matched, stats->n_packets, &orig);
3892 }
34dd0d78 3893 return rule;
d8227eba
JR
3894 }
3895 }
3896
34dd0d78
JR
3897 /* Look up a flow with 'in_port' as the input port. Then restore the
3898 * original input port (otherwise OFPP_NORMAL and OFPP_IN_PORT will
3899 * have surprising behavior). */
3900 flow->in_port.ofp_port = in_port;
3901
3902 /* Our current implementation depends on n_tables == N_TABLES, and
3903 * TBL_INTERNAL being the last table. */
3904 BUILD_ASSERT_DECL(N_TABLES == TBL_INTERNAL + 1);
3905
3906 miss_config = OFPUTIL_TABLE_MISS_CONTINUE;
d8227eba 3907
6d328fa2
SH
3908 for (next_id = *table_id;
3909 next_id < ofproto->up.n_tables;
3910 next_id++, next_id += (next_id == TBL_INTERNAL))
3911 {
3912 *table_id = next_id;
1e1e1d19 3913 rule = rule_dpif_lookup_in_table(ofproto, version, next_id, flow, wc);
d611866c
SH
3914 if (stats) {
3915 struct oftable *tbl = &ofproto->up.tables[next_id];
d611866c 3916 unsigned long orig;
afcea9ea 3917
34dd0d78 3918 atomic_add_relaxed(rule ? &tbl->n_matched : &tbl->n_missed,
afcea9ea 3919 stats->n_packets, &orig);
d611866c 3920 }
34dd0d78
JR
3921 if (rule) {
3922 goto out; /* Match. */
3923 }
3924 if (honor_table_miss) {
3925 miss_config = ofproto_table_get_miss_config(&ofproto->up,
3926 *table_id);
3927 if (miss_config == OFPUTIL_TABLE_MISS_CONTINUE) {
3928 continue;
3929 }
3930 }
3931 break;
3932 }
3933 /* Miss. */
3934 rule = ofproto->no_packet_in_rule;
3935 if (may_packet_in) {
3936 if (miss_config == OFPUTIL_TABLE_MISS_CONTINUE
3937 || miss_config == OFPUTIL_TABLE_MISS_CONTROLLER) {
3938 struct ofport_dpif *port;
3939
e672ff9b 3940 port = ofp_port_to_ofport(ofproto, old_in_port);
34dd0d78
JR
3941 if (!port) {
3942 VLOG_WARN_RL(&rl, "packet-in on unknown OpenFlow port %"PRIu16,
3943 old_in_port);
3944 } else if (!(port->up.pp.config & OFPUTIL_PC_NO_PACKET_IN)) {
3945 rule = ofproto->miss_rule;
6d328fa2 3946 }
34dd0d78
JR
3947 } else if (miss_config == OFPUTIL_TABLE_MISS_DEFAULT &&
3948 connmgr_wants_packet_in_on_miss(ofproto->up.connmgr)) {
3949 rule = ofproto->miss_rule;
6d328fa2
SH
3950 }
3951 }
d8227eba
JR
3952out:
3953 /* Restore port numbers, as they may have been modified above. */
3954 flow->tp_src = old_tp_src;
3955 flow->tp_dst = old_tp_dst;
34dd0d78
JR
3956 /* Restore the old in port. */
3957 flow->in_port.ofp_port = old_in_port;
6d328fa2 3958
34dd0d78 3959 return rule;
a2143702
BP
3960}
3961
7ee20df1
BP
3962static void
3963complete_operation(struct rule_dpif *rule)
15aaf599 3964 OVS_REQUIRES(ofproto_mutex)
7ee20df1
BP
3965{
3966 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3967
a1616063 3968 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
7ee20df1
BP
3969}
3970
70742c7f
EJ
3971static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
3972{
3973 return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
3974}
3975
abe529af
BP
3976static struct rule *
3977rule_alloc(void)
3978{
3da29e32 3979 struct rule_dpif *rule = xzalloc(sizeof *rule);
abe529af
BP
3980 return &rule->up;
3981}
3982
3983static void
3984rule_dealloc(struct rule *rule_)
3985{
3986 struct rule_dpif *rule = rule_dpif_cast(rule_);
3987 free(rule);
3988}
3989
07659514 3990static enum ofperr
1b43cf9e 3991check_mask(struct ofproto_dpif *ofproto, const struct miniflow *flow)
07659514 3992{
95619d8c 3993 const struct odp_support *support;
07659514 3994 uint16_t ct_state, ct_zone;
efba5ae4 3995 ovs_u128 ct_label;
8e53fe8c 3996 uint32_t ct_mark;
07659514 3997
95619d8c 3998 support = &ofproto_dpif_get_support(ofproto)->odp;
1b43cf9e 3999 ct_state = MINIFLOW_GET_U16(flow, ct_state);
11968381 4000 if (support->ct_state && support->ct_zone && support->ct_mark
7b27258c 4001 && support->ct_label && support->ct_state_nat) {
11968381
JS
4002 return ct_state & CS_UNSUPPORTED_MASK ? OFPERR_OFPBMC_BAD_MASK : 0;
4003 }
4004
1b43cf9e
JS
4005 ct_zone = MINIFLOW_GET_U16(flow, ct_zone);
4006 ct_mark = MINIFLOW_GET_U32(flow, ct_mark);
4007 ct_label = MINIFLOW_GET_U128(flow, ct_label);
07659514 4008
95619d8c
JS
4009 if ((ct_state && !support->ct_state)
4010 || (ct_state & CS_UNSUPPORTED_MASK)
7b27258c 4011 || ((ct_state & (CS_SRC_NAT | CS_DST_NAT)) && !support->ct_state_nat)
95619d8c
JS
4012 || (ct_zone && !support->ct_zone)
4013 || (ct_mark && !support->ct_mark)
2ff8484b 4014 || (!ovs_u128_is_zero(ct_label) && !support->ct_label)) {
95619d8c 4015 return OFPERR_OFPBMC_BAD_MASK;
07659514 4016 }
95619d8c 4017
07659514
JS
4018 return 0;
4019}
4020
1b43cf9e
JS
4021static enum ofperr
4022check_actions(const struct ofproto_dpif *ofproto,
4023 const struct rule_actions *const actions)
4024{
4025 const struct ofpact *ofpact;
4026
4027 OFPACT_FOR_EACH (ofpact, actions->ofpacts, actions->ofpacts_len) {
4028 const struct odp_support *support;
4029 const struct ofpact_conntrack *ct;
4030 const struct ofpact *a;
4031
4032 if (ofpact->type != OFPACT_CT) {
4033 continue;
4034 }
4035
4036 ct = CONTAINER_OF(ofpact, struct ofpact_conntrack, ofpact);
4037 support = &ofproto_dpif_get_support(ofproto)->odp;
4038
4039 if (!support->ct_state) {
4040 return OFPERR_OFPBAC_BAD_TYPE;
4041 }
4042 if ((ct->zone_imm || ct->zone_src.field) && !support->ct_zone) {
4043 return OFPERR_OFPBAC_BAD_ARGUMENT;
4044 }
4045
4046 OFPACT_FOR_EACH(a, ct->actions, ofpact_ct_get_action_len(ct)) {
4047 const struct mf_field *dst = ofpact_get_mf_dst(a);
4048
7b27258c
DDP
4049 if (a->type == OFPACT_NAT && !support->ct_state_nat) {
4050 /* The backer doesn't seem to support the NAT bits in
4051 * 'ct_state': assume that it doesn't support the NAT
4052 * action. */
4053 return OFPERR_OFPBAC_BAD_TYPE;
4054 }
1b43cf9e
JS
4055 if (dst && ((dst->id == MFF_CT_MARK && !support->ct_mark)
4056 || (dst->id == MFF_CT_LABEL && !support->ct_label))) {
4057 return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
4058 }
4059 }
4060 }
4061
4062 return 0;
4063}
4064
4065static enum ofperr
4066rule_check(struct rule *rule)
4067{
4068 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->ofproto);
4069 enum ofperr err;
4070
4071 err = check_mask(ofproto, &rule->cr.match.mask->masks);
4072 if (err) {
4073 return err;
4074 }
4075 return check_actions(ofproto, rule->actions);
4076}
4077
90bf1e07 4078static enum ofperr
abe529af 4079rule_construct(struct rule *rule_)
dc437090 4080 OVS_NO_THREAD_SAFETY_ANALYSIS
abe529af
BP
4081{
4082 struct rule_dpif *rule = rule_dpif_cast(rule_);
07659514
JS
4083 int error;
4084
4085 error = rule_check(rule_);
4086 if (error) {
4087 return error;
4088 }
4089
97ba2d36 4090 ovs_mutex_init_adaptive(&rule->stats_mutex);
1a4ec18d
JS
4091 rule->stats.n_packets = 0;
4092 rule->stats.n_bytes = 0;
4093 rule->stats.used = rule->up.modified;
888ac0d7 4094 rule->recirc_id = 0;
39c94593 4095 rule->new_rule = NULL;
888ac0d7 4096
abe529af
BP
4097 return 0;
4098}
4099
39c94593
JR
4100static void
4101rule_insert(struct rule *rule_, struct rule *old_rule_, bool forward_stats)
15aaf599 4102 OVS_REQUIRES(ofproto_mutex)
abe529af 4103{
9fbe253e 4104 struct rule_dpif *rule = rule_dpif_cast(rule_);
39c94593
JR
4105
4106 if (old_rule_ && forward_stats) {
4107 struct rule_dpif *old_rule = rule_dpif_cast(old_rule_);
4108
4109 ovs_assert(!old_rule->new_rule);
4110
4111 /* Take a reference to the new rule, and refer all stats updates from
4112 * the old rule to the new rule. */
4113 rule_dpif_ref(rule);
4114
4115 ovs_mutex_lock(&old_rule->stats_mutex);
4116 ovs_mutex_lock(&rule->stats_mutex);
4117 old_rule->new_rule = rule; /* Forward future stats. */
4118 rule->stats = old_rule->stats; /* Transfer stats to the new rule. */
4119 ovs_mutex_unlock(&rule->stats_mutex);
4120 ovs_mutex_unlock(&old_rule->stats_mutex);
4121 }
4122
9fbe253e 4123 complete_operation(rule);
8037acb4
BP
4124}
4125
4126static void
4127rule_delete(struct rule *rule_)
15aaf599 4128 OVS_REQUIRES(ofproto_mutex)
8037acb4
BP
4129{
4130 struct rule_dpif *rule = rule_dpif_cast(rule_);
4131 complete_operation(rule);
4132}
4133
4134static void
4135rule_destruct(struct rule *rule_)
39c94593 4136 OVS_NO_THREAD_SAFETY_ANALYSIS
8037acb4
BP
4137{
4138 struct rule_dpif *rule = rule_dpif_cast(rule_);
888ac0d7 4139
9fbe253e 4140 ovs_mutex_destroy(&rule->stats_mutex);
39c94593
JR
4141 /* Release reference to the new rule, if any. */
4142 if (rule->new_rule) {
4143 rule_dpif_unref(rule->new_rule);
4144 }
888ac0d7 4145 if (rule->recirc_id) {
e672ff9b 4146 recirc_free_id(rule->recirc_id);
888ac0d7 4147 }
abe529af
BP
4148}
4149
4150static void
dc437090
JR
4151rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes,
4152 long long int *used)
abe529af
BP
4153{
4154 struct rule_dpif *rule = rule_dpif_cast(rule_);
abe529af 4155
9fbe253e 4156 ovs_mutex_lock(&rule->stats_mutex);
39c94593
JR
4157 if (OVS_UNLIKELY(rule->new_rule)) {
4158 rule_get_stats(&rule->new_rule->up, packets, bytes, used);
4159 } else {
4160 *packets = rule->stats.n_packets;
4161 *bytes = rule->stats.n_bytes;
4162 *used = rule->stats.used;
4163 }
9fbe253e 4164 ovs_mutex_unlock(&rule->stats_mutex);
abe529af
BP
4165}
4166
0a740f48
EJ
4167static void
4168rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
cf62fa4c 4169 struct dp_packet *packet)
abe529af 4170{
419460f4
AW
4171 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4172
4173 ofproto_dpif_execute_actions(ofproto, flow, rule, NULL, 0, packet);
0a740f48 4174}
5bf0e941 4175
0a740f48
EJ
4176static enum ofperr
4177rule_execute(struct rule *rule, const struct flow *flow,
cf62fa4c 4178 struct dp_packet *packet)
0a740f48
EJ
4179{
4180 rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
cf62fa4c 4181 dp_packet_delete(packet);
5bf0e941 4182 return 0;
abe529af
BP
4183}
4184
00430a3f
SH
4185static struct group_dpif *group_dpif_cast(const struct ofgroup *group)
4186{
4187 return group ? CONTAINER_OF(group, struct group_dpif, up) : NULL;
4188}
4189
4190static struct ofgroup *
4191group_alloc(void)
4192{
4193 struct group_dpif *group = xzalloc(sizeof *group);
4194 return &group->up;
4195}
4196
4197static void
4198group_dealloc(struct ofgroup *group_)
4199{
4200 struct group_dpif *group = group_dpif_cast(group_);
4201 free(group);
4202}
4203
4204static void
4205group_construct_stats(struct group_dpif *group)
4206 OVS_REQUIRES(group->stats_mutex)
4207{
1e684d7d 4208 struct ofputil_bucket *bucket;
ca6ba700 4209 const struct ovs_list *buckets;
1e684d7d 4210
00430a3f
SH
4211 group->packet_count = 0;
4212 group->byte_count = 0;
1e684d7d
RW
4213
4214 group_dpif_get_buckets(group, &buckets);
4215 LIST_FOR_EACH (bucket, list_node, buckets) {
4216 bucket->stats.packet_count = 0;
4217 bucket->stats.byte_count = 0;
00430a3f
SH
4218 }
4219}
4220
1e684d7d
RW
4221void
4222group_dpif_credit_stats(struct group_dpif *group,
4223 struct ofputil_bucket *bucket,
4224 const struct dpif_flow_stats *stats)
4225{
4226 ovs_mutex_lock(&group->stats_mutex);
4227 group->packet_count += stats->n_packets;
4228 group->byte_count += stats->n_bytes;
4229 if (bucket) {
4230 bucket->stats.packet_count += stats->n_packets;
4231 bucket->stats.byte_count += stats->n_bytes;
4232 } else { /* Credit to all buckets */
ca6ba700 4233 const struct ovs_list *buckets;
1e684d7d
RW
4234
4235 group_dpif_get_buckets(group, &buckets);
4236 LIST_FOR_EACH (bucket, list_node, buckets) {
4237 bucket->stats.packet_count += stats->n_packets;
4238 bucket->stats.byte_count += stats->n_bytes;
4239 }
4240 }
4241 ovs_mutex_unlock(&group->stats_mutex);
4242}
4243
00430a3f
SH
4244static enum ofperr
4245group_construct(struct ofgroup *group_)
4246{
4247 struct group_dpif *group = group_dpif_cast(group_);
5a070238 4248
97ba2d36 4249 ovs_mutex_init_adaptive(&group->stats_mutex);
00430a3f
SH
4250 ovs_mutex_lock(&group->stats_mutex);
4251 group_construct_stats(group);
4252 ovs_mutex_unlock(&group->stats_mutex);
4253 return 0;
4254}
4255
00430a3f
SH
4256static void
4257group_destruct(struct ofgroup *group_)
4258{
4259 struct group_dpif *group = group_dpif_cast(group_);
00430a3f
SH
4260 ovs_mutex_destroy(&group->stats_mutex);
4261}
4262
4263static enum ofperr
809c7548 4264group_modify(struct ofgroup *group_)
00430a3f 4265{
4c9dbc0b 4266 struct ofproto_dpif *ofproto = ofproto_dpif_cast(group_->ofproto);
00430a3f 4267
4c9dbc0b
BP
4268 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
4269
00430a3f
SH
4270 return 0;
4271}
4272
4273static enum ofperr
4274group_get_stats(const struct ofgroup *group_, struct ofputil_group_stats *ogs)
4275{
4276 struct group_dpif *group = group_dpif_cast(group_);
1e684d7d 4277 struct ofputil_bucket *bucket;
ca6ba700 4278 const struct ovs_list *buckets;
1e684d7d 4279 struct bucket_counter *bucket_stats;
00430a3f 4280
00430a3f
SH
4281 ovs_mutex_lock(&group->stats_mutex);
4282 ogs->packet_count = group->packet_count;
4283 ogs->byte_count = group->byte_count;
1e684d7d
RW
4284
4285 group_dpif_get_buckets(group, &buckets);
4286 bucket_stats = ogs->bucket_stats;
4287 LIST_FOR_EACH (bucket, list_node, buckets) {
4288 bucket_stats->packet_count = bucket->stats.packet_count;
4289 bucket_stats->byte_count = bucket->stats.byte_count;
4290 bucket_stats++;
4291 }
00430a3f
SH
4292 ovs_mutex_unlock(&group->stats_mutex);
4293
4294 return 0;
4295}
f4fb341b 4296
809c7548
RW
4297/* If the group exists, this function increments the groups's reference count.
4298 *
4299 * Make sure to call group_dpif_unref() after no longer needing to maintain
4300 * a reference to the group. */
f4fb341b
SH
4301bool
4302group_dpif_lookup(struct ofproto_dpif *ofproto, uint32_t group_id,
4303 struct group_dpif **group)
f4fb341b
SH
4304{
4305 struct ofgroup *ofgroup;
4306 bool found;
4307
f4fb341b
SH
4308 found = ofproto_group_lookup(&ofproto->up, group_id, &ofgroup);
4309 *group = found ? group_dpif_cast(ofgroup) : NULL;
4310
4311 return found;
4312}
4313
f4fb341b
SH
4314void
4315group_dpif_get_buckets(const struct group_dpif *group,
ca6ba700 4316 const struct ovs_list **buckets)
f4fb341b
SH
4317{
4318 *buckets = &group->up.buckets;
4319}
4320
4321enum ofp11_group_type
4322group_dpif_get_type(const struct group_dpif *group)
4323{
4324 return group->up.type;
4325}
7565c3e4
SH
4326
4327const char *
4328group_dpif_get_selection_method(const struct group_dpif *group)
4329{
4330 return group->up.props.selection_method;
4331}
abe529af 4332\f
97d6520b 4333/* Sends 'packet' out 'ofport'.
52a90c29 4334 * May modify 'packet'.
abe529af 4335 * Returns 0 if successful, otherwise a positive errno value. */
91d6cd12 4336int
cf62fa4c 4337ofproto_dpif_send_packet(const struct ofport_dpif *ofport, struct dp_packet *packet)
abe529af 4338{
79e15b78 4339 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
abe529af
BP
4340 int error;
4341
91d6cd12 4342 error = xlate_send_packet(ofport, packet);
79e15b78 4343
0da3c61b 4344 ovs_mutex_lock(&ofproto->stats_mutex);
79e15b78 4345 ofproto->stats.tx_packets++;
cf62fa4c 4346 ofproto->stats.tx_bytes += dp_packet_size(packet);
0da3c61b 4347 ovs_mutex_unlock(&ofproto->stats_mutex);
abe529af
BP
4348 return error;
4349}
0c4b9393
SH
4350
4351uint64_t
4352group_dpif_get_selection_method_param(const struct group_dpif *group)
4353{
4354 return group->up.props.selection_method_param;
4355}
4356
4357const struct field_array *
4358group_dpif_get_fields(const struct group_dpif *group)
4359{
4360 return &group->up.props.fields;
4361}
9583bc14 4362\f
b5cbbcf6
AZ
4363/* Return the version string of the datapath that backs up
4364 * this 'ofproto'.
4365 */
4366static const char *
4367get_datapath_version(const struct ofproto *ofproto_)
4368{
4369 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4370
4371 return ofproto->backer->dp_version_string;
4372}
4373
9583bc14
EJ
4374static bool
4375set_frag_handling(struct ofproto *ofproto_,
ad99e2ed 4376 enum ofputil_frag_handling frag_handling)
abe529af
BP
4377{
4378 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
ad99e2ed 4379 if (frag_handling != OFPUTIL_FRAG_REASM) {
2cc3c58e 4380 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7257b535
BP
4381 return true;
4382 } else {
4383 return false;
4384 }
abe529af
BP
4385}
4386
90bf1e07 4387static enum ofperr
cf62fa4c 4388packet_out(struct ofproto *ofproto_, struct dp_packet *packet,
abe529af 4389 const struct flow *flow,
f25d0cf3 4390 const struct ofpact *ofpacts, size_t ofpacts_len)
abe529af 4391{
419460f4
AW
4392 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4393
4394 ofproto_dpif_execute_actions(ofproto, flow, NULL, ofpacts,
4395 ofpacts_len, packet);
548de4dd 4396 return 0;
abe529af 4397}
77ab5fd2
BP
4398
4399static enum ofperr
4400nxt_resume(struct ofproto *ofproto_,
4401 const struct ofputil_packet_in_private *pin)
4402{
4403 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4404
4405 /* Translate pin into datapath actions. */
4406 uint64_t odp_actions_stub[1024 / 8];
4407 struct ofpbuf odp_actions = OFPBUF_STUB_INITIALIZER(odp_actions_stub);
4408 enum slow_path_reason slow;
4409 enum ofperr error = xlate_resume(ofproto, pin, &odp_actions, &slow);
4410
4411 /* Steal 'pin->packet' and put it into a dp_packet. */
4412 struct dp_packet packet;
4413 dp_packet_init(&packet, pin->public.packet_len);
4414 dp_packet_put(&packet, pin->public.packet, pin->public.packet_len);
4415
1df7f7aa
NS
4416 pkt_metadata_from_flow(&packet.md, &pin->public.flow_metadata.flow);
4417
4418 /* Fix up in_port. */
4419 ofproto_dpif_set_packet_odp_port(ofproto,
4420 pin->public.flow_metadata.flow.in_port.ofp_port,
4421 &packet);
4422
10b3f505
NS
4423 struct flow headers;
4424 flow_extract(&packet, &headers);
4425
77ab5fd2
BP
4426 /* Execute the datapath actions on the packet. */
4427 struct dpif_execute execute = {
4428 .actions = odp_actions.data,
4429 .actions_len = odp_actions.size,
4430 .needs_help = (slow & SLOW_ACTION) != 0,
4431 .packet = &packet,
1cceb31b 4432 .flow = &headers,
77ab5fd2
BP
4433 };
4434 dpif_execute(ofproto->backer->dpif, &execute);
4435
4436 /* Clean up. */
4437 ofpbuf_uninit(&odp_actions);
4438 dp_packet_uninit(&packet);
4439
4440 return error;
4441}
6fca1ffb
BP
4442\f
4443/* NetFlow. */
4444
4445static int
4446set_netflow(struct ofproto *ofproto_,
4447 const struct netflow_options *netflow_options)
4448{
4449 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4450
4451 if (netflow_options) {
4452 if (!ofproto->netflow) {
4453 ofproto->netflow = netflow_create();
7bab1576 4454 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6fca1ffb
BP
4455 }
4456 return netflow_set_options(ofproto->netflow, netflow_options);
7bab1576
EJ
4457 } else if (ofproto->netflow) {
4458 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8e407f27 4459 netflow_unref(ofproto->netflow);
6fca1ffb 4460 ofproto->netflow = NULL;
6fca1ffb 4461 }
7bab1576
EJ
4462
4463 return 0;
6fca1ffb 4464}
abe529af
BP
4465
4466static void
4467get_netflow_ids(const struct ofproto *ofproto_,
4468 uint8_t *engine_type, uint8_t *engine_id)
4469{
4470 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4471
acf60855 4472 dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
abe529af
BP
4473}
4474\f
4475static struct ofproto_dpif *
4476ofproto_dpif_lookup(const char *name)
4477{
b44a10b7
BP
4478 struct ofproto_dpif *ofproto;
4479
4480 HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
4481 hash_string(name, 0), &all_ofproto_dpifs) {
4482 if (!strcmp(ofproto->up.name, name)) {
4483 return ofproto;
4484 }
4485 }
4486 return NULL;
abe529af
BP
4487}
4488
f0a3aa2e 4489static void
96e466a3 4490ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
0e15264f 4491 const char *argv[], void *aux OVS_UNUSED)
f0a3aa2e 4492{
490df1ef 4493 struct ofproto_dpif *ofproto;
f0a3aa2e 4494
96e466a3
EJ
4495 if (argc > 1) {
4496 ofproto = ofproto_dpif_lookup(argv[1]);
4497 if (!ofproto) {
bde9f75d 4498 unixctl_command_reply_error(conn, "no such bridge");
96e466a3
EJ
4499 return;
4500 }
509c0149 4501 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 4502 mac_learning_flush(ofproto->ml);
509c0149 4503 ovs_rwlock_unlock(&ofproto->ml->rwlock);
96e466a3
EJ
4504 } else {
4505 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
509c0149 4506 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 4507 mac_learning_flush(ofproto->ml);
509c0149 4508 ovs_rwlock_unlock(&ofproto->ml->rwlock);
96e466a3 4509 }
f0a3aa2e 4510 }
f0a3aa2e 4511
bde9f75d 4512 unixctl_command_reply(conn, "table successfully flushed");
f0a3aa2e
AA
4513}
4514
08fdcc12
FL
4515static void
4516ofproto_unixctl_mcast_snooping_flush(struct unixctl_conn *conn, int argc,
4517 const char *argv[], void *aux OVS_UNUSED)
4518{
4519 struct ofproto_dpif *ofproto;
4520
4521 if (argc > 1) {
4522 ofproto = ofproto_dpif_lookup(argv[1]);
4523 if (!ofproto) {
4524 unixctl_command_reply_error(conn, "no such bridge");
4525 return;
4526 }
4527
4528 if (!mcast_snooping_enabled(ofproto->ms)) {
4529 unixctl_command_reply_error(conn, "multicast snooping is disabled");
4530 return;
4531 }
4532 mcast_snooping_mdb_flush(ofproto->ms);
4533 } else {
4534 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4535 if (!mcast_snooping_enabled(ofproto->ms)) {
4536 continue;
4537 }
4538 mcast_snooping_mdb_flush(ofproto->ms);
4539 }
4540 }
4541
4542 unixctl_command_reply(conn, "table successfully flushed");
4543}
4544
46c88433
EJ
4545static struct ofport_dpif *
4546ofbundle_get_a_port(const struct ofbundle *bundle)
4547{
417e7e66 4548 return CONTAINER_OF(ovs_list_front(&bundle->ports), struct ofport_dpif,
46c88433
EJ
4549 bundle_node);
4550}
4551
abe529af 4552static void
0e15264f
BP
4553ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
4554 const char *argv[], void *aux OVS_UNUSED)
abe529af
BP
4555{
4556 struct ds ds = DS_EMPTY_INITIALIZER;
4557 const struct ofproto_dpif *ofproto;
4558 const struct mac_entry *e;
4559
0e15264f 4560 ofproto = ofproto_dpif_lookup(argv[1]);
abe529af 4561 if (!ofproto) {
bde9f75d 4562 unixctl_command_reply_error(conn, "no such bridge");
abe529af
BP
4563 return;
4564 }
4565
4566 ds_put_cstr(&ds, " port VLAN MAC Age\n");
509c0149 4567 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
abe529af 4568 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
9d078ec2 4569 struct ofbundle *bundle = mac_entry_get_port(ofproto->ml, e);
ad28062f
BP
4570 char name[OFP_MAX_PORT_NAME_LEN];
4571
4572 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
4573 name, sizeof name);
4574 ds_put_format(&ds, "%5s %4d "ETH_ADDR_FMT" %3d\n",
4575 name, e->vlan, ETH_ADDR_ARGS(e->mac),
e764773c 4576 mac_entry_age(ofproto->ml, e));
abe529af 4577 }
509c0149 4578 ovs_rwlock_unlock(&ofproto->ml->rwlock);
bde9f75d 4579 unixctl_command_reply(conn, ds_cstr(&ds));
abe529af
BP
4580 ds_destroy(&ds);
4581}
4582
08fdcc12
FL
4583static void
4584ofproto_unixctl_mcast_snooping_show(struct unixctl_conn *conn,
4585 int argc OVS_UNUSED,
4586 const char *argv[],
4587 void *aux OVS_UNUSED)
4588{
4589 struct ds ds = DS_EMPTY_INITIALIZER;
4590 const struct ofproto_dpif *ofproto;
4591 const struct ofbundle *bundle;
4592 const struct mcast_group *grp;
4593 struct mcast_group_bundle *b;
4594 struct mcast_mrouter_bundle *mrouter;
4595
4596 ofproto = ofproto_dpif_lookup(argv[1]);
4597 if (!ofproto) {
4598 unixctl_command_reply_error(conn, "no such bridge");
4599 return;
4600 }
4601
4602 if (!mcast_snooping_enabled(ofproto->ms)) {
4603 unixctl_command_reply_error(conn, "multicast snooping is disabled");
4604 return;
4605 }
4606
4607 ds_put_cstr(&ds, " port VLAN GROUP Age\n");
4608 ovs_rwlock_rdlock(&ofproto->ms->rwlock);
4609 LIST_FOR_EACH (grp, group_node, &ofproto->ms->group_lru) {
4610 LIST_FOR_EACH(b, bundle_node, &grp->bundle_lru) {
4611 char name[OFP_MAX_PORT_NAME_LEN];
4612
4613 bundle = b->port;
4614 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
4615 name, sizeof name);
964a4d5f 4616 ds_put_format(&ds, "%5s %4d ", name, grp->vlan);
ac6d120f 4617 ipv6_format_mapped(&grp->addr, &ds);
964a4d5f 4618 ds_put_format(&ds, " %3d\n",
08fdcc12
FL
4619 mcast_bundle_age(ofproto->ms, b));
4620 }
4621 }
4622
4623 /* ports connected to multicast routers */
4624 LIST_FOR_EACH(mrouter, mrouter_node, &ofproto->ms->mrouter_lru) {
4625 char name[OFP_MAX_PORT_NAME_LEN];
4626
4627 bundle = mrouter->port;
4628 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
4629 name, sizeof name);
c4bb1f8b 4630 ds_put_format(&ds, "%5s %4d querier %3d\n",
08fdcc12
FL
4631 name, mrouter->vlan,
4632 mcast_mrouter_age(ofproto->ms, mrouter));
4633 }
4634 ovs_rwlock_unlock(&ofproto->ms->rwlock);
4635 unixctl_command_reply(conn, ds_cstr(&ds));
4636 ds_destroy(&ds);
4637}
4638
6a6455e5 4639struct trace_ctx {
bbafd73b
EJ
4640 struct xlate_out xout;
4641 struct xlate_in xin;
ce58df5b 4642 const struct flow *key;
abe529af
BP
4643 struct flow flow;
4644 struct ds *result;
1520ef4f
BP
4645 struct flow_wildcards wc;
4646 struct ofpbuf odp_actions;
abe529af
BP
4647};
4648
4649static void
4d0acc70 4650trace_format_rule(struct ds *result, int level, const struct rule_dpif *rule)
abe529af 4651{
dc723c44 4652 const struct rule_actions *actions;
15aaf599
BP
4653 ovs_be64 cookie;
4654
abe529af
BP
4655 ds_put_char_multiple(result, '\t', level);
4656 if (!rule) {
4657 ds_put_cstr(result, "No match\n");
4658 return;
4659 }
4660
15aaf599
BP
4661 ovs_mutex_lock(&rule->up.mutex);
4662 cookie = rule->up.flow_cookie;
4663 ovs_mutex_unlock(&rule->up.mutex);
4664
29901626 4665 ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
15aaf599 4666 rule ? rule->up.table_id : 0, ntohll(cookie));
79feb7df 4667 cls_rule_format(&rule->up.cr, result);
abe529af
BP
4668 ds_put_char(result, '\n');
4669
15aaf599
BP
4670 actions = rule_dpif_get_actions(rule);
4671
abe529af 4672 ds_put_char_multiple(result, '\t', level);
455ecd77 4673 ds_put_cstr(result, "OpenFlow actions=");
15aaf599 4674 ofpacts_format(actions->ofpacts, actions->ofpacts_len, result);
abe529af
BP
4675 ds_put_char(result, '\n');
4676}
4677
4678static void
4679trace_format_flow(struct ds *result, int level, const char *title,
bbafd73b 4680 struct trace_ctx *trace)
abe529af
BP
4681{
4682 ds_put_char_multiple(result, '\t', level);
4683 ds_put_format(result, "%s: ", title);
ce58df5b
JR
4684 /* Do not report unchanged flows for resubmits. */
4685 if ((level > 0 && flow_equal(&trace->xin.flow, &trace->flow))
4686 || (level == 0 && flow_equal(&trace->xin.flow, trace->key))) {
abe529af
BP
4687 ds_put_cstr(result, "unchanged");
4688 } else {
bbafd73b
EJ
4689 flow_format(result, &trace->xin.flow);
4690 trace->flow = trace->xin.flow;
abe529af
BP
4691 }
4692 ds_put_char(result, '\n');
4693}
4694
eb9e1c26
EJ
4695static void
4696trace_format_regs(struct ds *result, int level, const char *title,
6a6455e5 4697 struct trace_ctx *trace)
eb9e1c26
EJ
4698{
4699 size_t i;
4700
4701 ds_put_char_multiple(result, '\t', level);
4702 ds_put_format(result, "%s:", title);
4703 for (i = 0; i < FLOW_N_REGS; i++) {
34582733 4704 ds_put_format(result, " reg%"PRIuSIZE"=0x%"PRIx32, i, trace->flow.regs[i]);
eb9e1c26
EJ
4705 }
4706 ds_put_char(result, '\n');
4707}
4708
1ed8d352
EJ
4709static void
4710trace_format_odp(struct ds *result, int level, const char *title,
6a6455e5 4711 struct trace_ctx *trace)
1ed8d352 4712{
1520ef4f 4713 struct ofpbuf *odp_actions = &trace->odp_actions;
1ed8d352
EJ
4714
4715 ds_put_char_multiple(result, '\t', level);
4716 ds_put_format(result, "%s: ", title);
6fd6ed71 4717 format_odp_actions(result, odp_actions->data, odp_actions->size);
1ed8d352
EJ
4718 ds_put_char(result, '\n');
4719}
4720
41a91a0b
AW
4721static void
4722trace_format_megaflow(struct ds *result, int level, const char *title,
4723 struct trace_ctx *trace)
4724{
4725 struct match match;
4726
4727 ds_put_char_multiple(result, '\t', level);
4728 ds_put_format(result, "%s: ", title);
1520ef4f 4729 match_init(&match, trace->key, &trace->wc);
41a91a0b
AW
4730 match_format(&match, result, OFP_DEFAULT_PRIORITY);
4731 ds_put_char(result, '\n');
4732}
4733
9a9b001a 4734static void trace_report(struct xlate_in *, int indentation,
c1b3756c
BP
4735 const char *format, ...)
4736 OVS_PRINTF_FORMAT(3, 4);
9a9b001a 4737static void trace_report_valist(struct xlate_in *, int indentation,
c1b3756c
BP
4738 const char *format, va_list args)
4739 OVS_PRINTF_FORMAT(3, 0);
34dd0d78 4740
abe529af 4741static void
9a9b001a 4742trace_resubmit(struct xlate_in *xin, struct rule_dpif *rule, int indentation)
abe529af 4743{
4d0acc70 4744 struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
abe529af
BP
4745 struct ds *result = trace->result;
4746
9a9b001a 4747 if (!indentation) {
34dd0d78 4748 if (rule == xin->ofproto->miss_rule) {
9a9b001a 4749 trace_report(xin, indentation,
c1b3756c 4750 "No match, flow generates \"packet in\"s.");
34dd0d78 4751 } else if (rule == xin->ofproto->no_packet_in_rule) {
9a9b001a 4752 trace_report(xin, indentation, "No match, packets dropped because "
c1b3756c 4753 "OFPPC_NO_PACKET_IN is set on in_port.");
34dd0d78 4754 } else if (rule == xin->ofproto->drop_frags_rule) {
9a9b001a
BP
4755 trace_report(xin, indentation,
4756 "Packets dropped because they are IP fragments and "
4757 "the fragment handling mode is \"drop\".");
34dd0d78
JR
4758 }
4759 }
4760
abe529af 4761 ds_put_char(result, '\n');
9a9b001a
BP
4762 if (indentation) {
4763 trace_format_flow(result, indentation, "Resubmitted flow", trace);
4764 trace_format_regs(result, indentation, "Resubmitted regs", trace);
4765 trace_format_odp(result, indentation, "Resubmitted odp", trace);
4766 trace_format_megaflow(result, indentation, "Resubmitted megaflow",
4767 trace);
a8c31348 4768 }
9a9b001a 4769 trace_format_rule(result, indentation, rule);
abe529af
BP
4770}
4771
479df176 4772static void
9a9b001a 4773trace_report_valist(struct xlate_in *xin, int indentation,
c1b3756c 4774 const char *format, va_list args)
479df176 4775{
4d0acc70 4776 struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
479df176
BP
4777 struct ds *result = trace->result;
4778
9a9b001a 4779 ds_put_char_multiple(result, '\t', indentation);
c1b3756c 4780 ds_put_format_valist(result, format, args);
479df176
BP
4781 ds_put_char(result, '\n');
4782}
4783
c1b3756c 4784static void
9a9b001a 4785trace_report(struct xlate_in *xin, int indentation, const char *format, ...)
c1b3756c
BP
4786{
4787 va_list args;
4788
4789 va_start(args, format);
9a9b001a 4790 trace_report_valist(xin, indentation, format, args);
c1b3756c
BP
4791 va_end(args);
4792}
4793
b6f00895
BP
4794/* Parses the 'argc' elements of 'argv', ignoring argv[0]. The following
4795 * forms are supported:
4796 *
4797 * - [dpname] odp_flow [-generate | packet]
4798 * - bridge br_flow [-generate | packet]
4799 *
4800 * On success, initializes '*ofprotop' and 'flow' and returns NULL. On failure
316078c7 4801 * returns a nonnull malloced error message. */
cab50449 4802static char * OVS_WARN_UNUSED_RESULT
b6f00895
BP
4803parse_flow_and_packet(int argc, const char *argv[],
4804 struct ofproto_dpif **ofprotop, struct flow *flow,
cf62fa4c 4805 struct dp_packet **packetp)
abe529af 4806{
0a37839c 4807 const struct dpif_backer *backer = NULL;
b6f00895 4808 const char *error = NULL;
316078c7 4809 char *m_err = NULL;
b6f00895 4810 struct simap port_names = SIMAP_INITIALIZER(&port_names);
cf62fa4c 4811 struct dp_packet *packet;
b6f00895
BP
4812 struct ofpbuf odp_key;
4813 struct ofpbuf odp_mask;
abe529af 4814
50aa28fd 4815 ofpbuf_init(&odp_key, 0);
ea5e3887 4816 ofpbuf_init(&odp_mask, 0);
abe529af 4817
50aa28fd
AW
4818 /* Handle "-generate" or a hex string as the last argument. */
4819 if (!strcmp(argv[argc - 1], "-generate")) {
cf62fa4c 4820 packet = dp_packet_new(0);
50aa28fd
AW
4821 argc--;
4822 } else {
b6f00895 4823 error = eth_from_hex(argv[argc - 1], &packet);
50aa28fd
AW
4824 if (!error) {
4825 argc--;
4826 } else if (argc == 4) {
4827 /* The 3-argument form must end in "-generate' or a hex string. */
50aa28fd
AW
4828 goto exit;
4829 }
316078c7 4830 error = NULL;
e84173dc 4831 }
876b0e1c 4832
0a37839c
GS
4833 /* odp_flow can have its in_port specified as a name instead of port no.
4834 * We do not yet know whether a given flow is a odp_flow or a br_flow.
4835 * But, to know whether a flow is odp_flow through odp_flow_from_string(),
4836 * we need to create a simap of name to port no. */
4837 if (argc == 3) {
4838 const char *dp_type;
4839 if (!strncmp(argv[1], "ovs-", 4)) {
4840 dp_type = argv[1] + 4;
4841 } else {
4842 dp_type = argv[1];
4843 }
4844 backer = shash_find_data(&all_dpif_backers, dp_type);
b6f00895 4845 } else if (argc == 2) {
0a37839c
GS
4846 struct shash_node *node;
4847 if (shash_count(&all_dpif_backers) == 1) {
4848 node = shash_first(&all_dpif_backers);
4849 backer = node->data;
4850 }
b6f00895
BP
4851 } else {
4852 error = "Syntax error";
4853 goto exit;
0a37839c
GS
4854 }
4855 if (backer && backer->dpif) {
4856 struct dpif_port dpif_port;
4857 struct dpif_port_dump port_dump;
4858 DPIF_PORT_FOR_EACH (&dpif_port, &port_dump, backer->dpif) {
4859 simap_put(&port_names, dpif_port.name,
4860 odp_to_u32(dpif_port.port_no));
4861 }
4862 }
4863
50aa28fd
AW
4864 /* Parse the flow and determine whether a datapath or
4865 * bridge is specified. If function odp_flow_key_from_string()
4866 * returns 0, the flow is a odp_flow. If function
316078c7 4867 * parse_ofp_exact_flow() returns NULL, the flow is a br_flow. */
b6f00895
BP
4868 if (!odp_flow_from_string(argv[argc - 1], &port_names,
4869 &odp_key, &odp_mask)) {
0a37839c 4870 if (!backer) {
b6f00895 4871 error = "Cannot find the datapath";
0a37839c 4872 goto exit;
876b0e1c 4873 }
8b3b8dd1 4874
6fd6ed71 4875 if (odp_flow_key_to_flow(odp_key.data, odp_key.size, flow) == ODP_FIT_ERROR) {
5dd63cf5 4876 error = "Failed to parse datapath flow key";
cc377352
EJ
4877 goto exit;
4878 }
4879
ef377a58
JR
4880 *ofprotop = xlate_lookup_ofproto(backer, flow,
4881 &flow->in_port.ofp_port);
4882 if (*ofprotop == NULL) {
b6f00895 4883 error = "Invalid datapath flow";
50aa28fd 4884 goto exit;
8b3b8dd1 4885 }
316078c7
JR
4886 } else {
4887 char *err = parse_ofp_exact_flow(flow, NULL, argv[argc - 1], NULL);
876b0e1c 4888
316078c7 4889 if (err) {
5dd63cf5 4890 m_err = xasprintf("Bad openflow flow syntax: %s", err);
316078c7 4891 free(err);
50aa28fd 4892 goto exit;
316078c7
JR
4893 } else {
4894 if (argc != 3) {
4895 error = "Must specify bridge name";
4896 goto exit;
4897 }
4898
4899 *ofprotop = ofproto_dpif_lookup(argv[1]);
4900 if (!*ofprotop) {
4901 error = "Unknown bridge name";
4902 goto exit;
4903 }
50aa28fd 4904 }
abe529af
BP
4905 }
4906
50aa28fd
AW
4907 /* Generate a packet, if requested. */
4908 if (packet) {
cf62fa4c 4909 if (!dp_packet_size(packet)) {
b6f00895 4910 flow_compose(packet, flow);
50aa28fd 4911 } else {
50aa28fd
AW
4912 /* Use the metadata from the flow and the packet argument
4913 * to reconstruct the flow. */
cf62fa4c
PS
4914 pkt_metadata_from_flow(&packet->md, flow);
4915 flow_extract(packet, flow);
50aa28fd
AW
4916 }
4917 }
4918
6a6455e5 4919exit:
316078c7
JR
4920 if (error && !m_err) {
4921 m_err = xstrdup(error);
4922 }
4923 if (m_err) {
cf62fa4c 4924 dp_packet_delete(packet);
b6f00895
BP
4925 packet = NULL;
4926 }
4927 *packetp = packet;
6a6455e5 4928 ofpbuf_uninit(&odp_key);
ea5e3887 4929 ofpbuf_uninit(&odp_mask);
0a37839c 4930 simap_destroy(&port_names);
316078c7 4931 return m_err;
b6f00895
BP
4932}
4933
4934static void
4935ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
4936 void *aux OVS_UNUSED)
4937{
4938 struct ofproto_dpif *ofproto;
cf62fa4c 4939 struct dp_packet *packet;
316078c7 4940 char *error;
b6f00895
BP
4941 struct flow flow;
4942
4943 error = parse_flow_and_packet(argc, argv, &ofproto, &flow, &packet);
4944 if (!error) {
4945 struct ds result;
4946
4947 ds_init(&result);
aee0979b 4948 ofproto_trace(ofproto, &flow, packet, NULL, 0, &result);
b6f00895
BP
4949 unixctl_command_reply(conn, ds_cstr(&result));
4950 ds_destroy(&result);
cf62fa4c 4951 dp_packet_delete(packet);
b6f00895
BP
4952 } else {
4953 unixctl_command_reply_error(conn, error);
316078c7 4954 free(error);
b6f00895 4955 }
6a6455e5
EJ
4956}
4957
aee0979b
BP
4958static void
4959ofproto_unixctl_trace_actions(struct unixctl_conn *conn, int argc,
4960 const char *argv[], void *aux OVS_UNUSED)
4961{
4962 enum ofputil_protocol usable_protocols;
4963 struct ofproto_dpif *ofproto;
4964 bool enforce_consistency;
4965 struct ofpbuf ofpacts;
cf62fa4c 4966 struct dp_packet *packet;
aee0979b
BP
4967 struct ds result;
4968 struct flow flow;
4969 uint16_t in_port;
4970
4971 /* Three kinds of error return values! */
4972 enum ofperr retval;
316078c7 4973 char *error;
aee0979b
BP
4974
4975 packet = NULL;
4976 ds_init(&result);
4977 ofpbuf_init(&ofpacts, 0);
4978
4979 /* Parse actions. */
c2d936a4 4980 error = ofpacts_parse_actions(argv[--argc], &ofpacts, &usable_protocols);
316078c7
JR
4981 if (error) {
4982 unixctl_command_reply_error(conn, error);
4983 free(error);
aee0979b
BP
4984 goto exit;
4985 }
4986
4987 /* OpenFlow 1.1 and later suggest that the switch enforces certain forms of
ba2fe8e9
BP
4988 * consistency between the flow and the actions. With -consistent, we
4989 * enforce consistency even for a flow supported in OpenFlow 1.0. */
aee0979b
BP
4990 if (!strcmp(argv[1], "-consistent")) {
4991 enforce_consistency = true;
4992 argv++;
4993 argc--;
ba2fe8e9
BP
4994 } else {
4995 enforce_consistency = false;
aee0979b
BP
4996 }
4997
4998 error = parse_flow_and_packet(argc, argv, &ofproto, &flow, &packet);
4999 if (error) {
5000 unixctl_command_reply_error(conn, error);
316078c7 5001 free(error);
aee0979b
BP
5002 goto exit;
5003 }
5004
5005 /* Do the same checks as handle_packet_out() in ofproto.c.
5006 *
b8778a0d 5007 * We pass a 'table_id' of 0 to ofpacts_check(), which isn't
aee0979b
BP
5008 * strictly correct because these actions aren't in any table, but it's OK
5009 * because it 'table_id' is used only to check goto_table instructions, but
5010 * packet-outs take a list of actions and therefore it can't include
5011 * instructions.
5012 *
5013 * We skip the "meter" check here because meter is an instruction, not an
5014 * action, and thus cannot appear in ofpacts. */
5015 in_port = ofp_to_u16(flow.in_port.ofp_port);
5016 if (in_port >= ofproto->up.max_ports && in_port < ofp_to_u16(OFPP_MAX)) {
5017 unixctl_command_reply_error(conn, "invalid in_port");
5018 goto exit;
5019 }
ba2fe8e9 5020 if (enforce_consistency) {
89108874
JR
5021 retval = ofpacts_check_consistency(ofpacts.data, ofpacts.size, &flow,
5022 u16_to_ofp(ofproto->up.max_ports),
5023 0, ofproto->up.n_tables,
5024 usable_protocols);
ba2fe8e9 5025 } else {
6fd6ed71 5026 retval = ofpacts_check(ofpacts.data, ofpacts.size, &flow,
89108874
JR
5027 u16_to_ofp(ofproto->up.max_ports), 0,
5028 ofproto->up.n_tables, &usable_protocols);
5029 }
5030 if (!retval) {
5031 retval = ofproto_check_ofpacts(&ofproto->up, ofpacts.data,
5032 ofpacts.size);
ba2fe8e9
BP
5033 }
5034
aee0979b
BP
5035 if (retval) {
5036 ds_clear(&result);
5037 ds_put_format(&result, "Bad actions: %s", ofperr_to_string(retval));
5038 unixctl_command_reply_error(conn, ds_cstr(&result));
5039 goto exit;
5040 }
5041
1f317cb5 5042 ofproto_trace(ofproto, &flow, packet,
6fd6ed71 5043 ofpacts.data, ofpacts.size, &result);
aee0979b
BP
5044 unixctl_command_reply(conn, ds_cstr(&result));
5045
5046exit:
5047 ds_destroy(&result);
cf62fa4c 5048 dp_packet_delete(packet);
aee0979b
BP
5049 ofpbuf_uninit(&ofpacts);
5050}
5051
5052/* Implements a "trace" through 'ofproto''s flow table, appending a textual
5053 * description of the results to 'ds'.
5054 *
5055 * The trace follows a packet with the specified 'flow' through the flow
5056 * table. 'packet' may be nonnull to trace an actual packet, with consequent
5057 * side effects (if it is nonnull then its flow must be 'flow').
5058 *
5059 * If 'ofpacts' is nonnull then its 'ofpacts_len' bytes specify the actions to
5060 * trace, otherwise the actions are determined by a flow table lookup. */
ade6ad9c 5061static void
adcf00ba 5062ofproto_trace(struct ofproto_dpif *ofproto, struct flow *flow,
cf62fa4c 5063 const struct dp_packet *packet,
aee0979b
BP
5064 const struct ofpact ofpacts[], size_t ofpacts_len,
5065 struct ds *ds)
6a6455e5 5066{
41a91a0b 5067 struct trace_ctx trace;
fff1b9c0 5068 enum xlate_error error;
6a6455e5 5069
aee0979b 5070 ds_put_format(ds, "Bridge: %s\n", ofproto->up.name);
6a6455e5
EJ
5071 ds_put_cstr(ds, "Flow: ");
5072 flow_format(ds, flow);
5073 ds_put_char(ds, '\n');
abe529af 5074
1520ef4f
BP
5075 ofpbuf_init(&trace.odp_actions, 0);
5076
a8c31348
BP
5077 trace.result = ds;
5078 trace.key = flow; /* Original flow key, used for megaflow. */
5079 trace.flow = *flow; /* May be modified by actions. */
5080 xlate_in_init(&trace.xin, ofproto, flow, flow->in_port.ofp_port, NULL,
1520ef4f
BP
5081 ntohs(flow->tcp_flags), packet, &trace.wc,
5082 &trace.odp_actions);
a8c31348
BP
5083 trace.xin.ofpacts = ofpacts;
5084 trace.xin.ofpacts_len = ofpacts_len;
5085 trace.xin.resubmit_hook = trace_resubmit;
c1b3756c 5086 trace.xin.report_hook = trace_report_valist;
bcd2633a 5087
fff1b9c0 5088 error = xlate_actions(&trace.xin, &trace.xout);
a8c31348 5089 ds_put_char(ds, '\n');
56de2148 5090 trace.xin.flow.actset_output = 0;
a8c31348
BP
5091 trace_format_flow(ds, 0, "Final flow", &trace);
5092 trace_format_megaflow(ds, 0, "Megaflow", &trace);
bcd2633a 5093
a8c31348 5094 ds_put_cstr(ds, "Datapath actions: ");
1520ef4f 5095 format_odp_actions(ds, trace.odp_actions.data, trace.odp_actions.size);
876b0e1c 5096
fff1b9c0
JR
5097 if (error != XLATE_OK) {
5098 ds_put_format(ds, "\nTranslation failed (%s), packet is dropped.\n",
5099 xlate_strerror(error));
5100 } else if (trace.xout.slow) {
a8c31348 5101 enum slow_path_reason slow;
04594cd5 5102
a8c31348
BP
5103 ds_put_cstr(ds, "\nThis flow is handled by the userspace "
5104 "slow path because it:");
04594cd5 5105
a8c31348
BP
5106 slow = trace.xout.slow;
5107 while (slow) {
5108 enum slow_path_reason bit = rightmost_1bit(slow);
04594cd5 5109
a8c31348
BP
5110 ds_put_format(ds, "\n\t- %s.",
5111 slow_path_reason_to_explanation(bit));
04594cd5 5112
a8c31348 5113 slow &= ~bit;
876b0e1c 5114 }
abe529af 5115 }
a8c31348
BP
5116
5117 xlate_out_uninit(&trace.xout);
1520ef4f 5118 ofpbuf_uninit(&trace.odp_actions);
abe529af
BP
5119}
5120
27022416
JP
5121/* Store the current ofprotos in 'ofproto_shash'. Returns a sorted list
5122 * of the 'ofproto_shash' nodes. It is the responsibility of the caller
5123 * to destroy 'ofproto_shash' and free the returned value. */
5124static const struct shash_node **
5125get_ofprotos(struct shash *ofproto_shash)
5126{
5127 const struct ofproto_dpif *ofproto;
5128
5129 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5130 char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
5131 shash_add_nocopy(ofproto_shash, name, ofproto);
5132 }
5133
5134 return shash_sort(ofproto_shash);
5135}
5136
5137static void
5138ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
5139 const char *argv[] OVS_UNUSED,
5140 void *aux OVS_UNUSED)
5141{
5142 struct ds ds = DS_EMPTY_INITIALIZER;
5143 struct shash ofproto_shash;
5144 const struct shash_node **sorted_ofprotos;
5145 int i;
5146
5147 shash_init(&ofproto_shash);
5148 sorted_ofprotos = get_ofprotos(&ofproto_shash);
5149 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5150 const struct shash_node *node = sorted_ofprotos[i];
5151 ds_put_format(&ds, "%s\n", node->name);
5152 }
5153
5154 shash_destroy(&ofproto_shash);
5155 free(sorted_ofprotos);
5156
5157 unixctl_command_reply(conn, ds_cstr(&ds));
5158 ds_destroy(&ds);
5159}
5160
dc54ef36
EJ
5161static void
5162dpif_show_backer(const struct dpif_backer *backer, struct ds *ds)
27022416 5163{
dc54ef36 5164 const struct shash_node **ofprotos;
e79a6c83 5165 struct dpif_dp_stats dp_stats;
dc54ef36 5166 struct shash ofproto_shash;
09672174 5167 size_t i;
655ab909 5168
e79a6c83 5169 dpif_get_dp_stats(backer->dpif, &dp_stats);
655ab909 5170
dc54ef36 5171 ds_put_format(ds, "%s: hit:%"PRIu64" missed:%"PRIu64"\n",
e79a6c83 5172 dpif_name(backer->dpif), dp_stats.n_hit, dp_stats.n_missed);
dc54ef36 5173
dc54ef36
EJ
5174 shash_init(&ofproto_shash);
5175 ofprotos = get_ofprotos(&ofproto_shash);
5176 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5177 struct ofproto_dpif *ofproto = ofprotos[i]->data;
5178 const struct shash_node **ports;
5179 size_t j;
0a740f48 5180
dc54ef36
EJ
5181 if (ofproto->backer != backer) {
5182 continue;
0a740f48 5183 }
27022416 5184
e79a6c83 5185 ds_put_format(ds, "\t%s:\n", ofproto->up.name);
dc54ef36
EJ
5186
5187 ports = shash_sort(&ofproto->up.port_by_name);
5188 for (j = 0; j < shash_count(&ofproto->up.port_by_name); j++) {
5189 const struct shash_node *node = ports[j];
5190 struct ofport *ofport = node->data;
5191 struct smap config;
4e022ec0 5192 odp_port_t odp_port;
27022416 5193
dc54ef36
EJ
5194 ds_put_format(ds, "\t\t%s %u/", netdev_get_name(ofport->netdev),
5195 ofport->ofp_port);
27022416 5196
dc54ef36 5197 odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
4e022ec0 5198 if (odp_port != ODPP_NONE) {
dc54ef36
EJ
5199 ds_put_format(ds, "%"PRIu32":", odp_port);
5200 } else {
5201 ds_put_cstr(ds, "none:");
5202 }
27022416 5203
dc54ef36 5204 ds_put_format(ds, " (%s", netdev_get_type(ofport->netdev));
27022416 5205
dc54ef36
EJ
5206 smap_init(&config);
5207 if (!netdev_get_config(ofport->netdev, &config)) {
5208 const struct smap_node **nodes;
5209 size_t i;
27022416 5210
dc54ef36
EJ
5211 nodes = smap_sort(&config);
5212 for (i = 0; i < smap_count(&config); i++) {
5213 const struct smap_node *node = nodes[i];
5214 ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
5215 node->key, node->value);
5216 }
5217 free(nodes);
27022416 5218 }
dc54ef36
EJ
5219 smap_destroy(&config);
5220
27022416 5221 ds_put_char(ds, ')');
dc54ef36 5222 ds_put_char(ds, '\n');
27022416 5223 }
dc54ef36 5224 free(ports);
27022416 5225 }
dc54ef36
EJ
5226 shash_destroy(&ofproto_shash);
5227 free(ofprotos);
27022416
JP
5228}
5229
5230static void
dc54ef36
EJ
5231ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5232 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
27022416
JP
5233{
5234 struct ds ds = DS_EMPTY_INITIALIZER;
dc54ef36
EJ
5235 const struct shash_node **backers;
5236 int i;
27022416 5237
dc54ef36
EJ
5238 backers = shash_sort(&all_dpif_backers);
5239 for (i = 0; i < shash_count(&all_dpif_backers); i++) {
5240 dpif_show_backer(backers[i]->data, &ds);
27022416 5241 }
dc54ef36 5242 free(backers);
27022416
JP
5243
5244 unixctl_command_reply(conn, ds_cstr(&ds));
5245 ds_destroy(&ds);
5246}
5247
5248static void
5249ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
5250 int argc OVS_UNUSED, const char *argv[],
5251 void *aux OVS_UNUSED)
5252{
27022416 5253 const struct ofproto_dpif *ofproto;
ac64794a
BP
5254
5255 struct ds ds = DS_EMPTY_INITIALIZER;
04b541df 5256 bool verbosity = false;
ac64794a 5257
04b541df
GS
5258 struct dpif_port dpif_port;
5259 struct dpif_port_dump port_dump;
5260 struct hmap portno_names;
ac64794a
BP
5261
5262 struct dpif_flow_dump *flow_dump;
5263 struct dpif_flow_dump_thread *flow_dump_thread;
5264 struct dpif_flow f;
938eaa50 5265 int error;
27022416 5266
04b541df 5267 ofproto = ofproto_dpif_lookup(argv[argc - 1]);
27022416
JP
5268 if (!ofproto) {
5269 unixctl_command_reply_error(conn, "no such bridge");
5270 return;
5271 }
5272
04b541df
GS
5273 if (argc > 2 && !strcmp(argv[1], "-m")) {
5274 verbosity = true;
5275 }
5276
5277 hmap_init(&portno_names);
5278 DPIF_PORT_FOR_EACH (&dpif_port, &port_dump, ofproto->backer->dpif) {
5279 odp_portno_names_set(&portno_names, dpif_port.port_no, dpif_port.name);
5280 }
5281
1b849273 5282 ds_init(&ds);
64bb477f 5283 flow_dump = dpif_flow_dump_create(ofproto->backer->dpif, false);
ac64794a
BP
5284 flow_dump_thread = dpif_flow_dump_thread_create(flow_dump);
5285 while (dpif_flow_dump_next(flow_dump_thread, &f, 1)) {
ef377a58
JR
5286 struct flow flow;
5287
5288 if (odp_flow_key_to_flow(f.key, f.key_len, &flow) == ODP_FIT_ERROR
5289 || xlate_lookup_ofproto(ofproto->backer, &flow, NULL) != ofproto) {
04d08d54
EJ
5290 continue;
5291 }
5292
70e5ed6f
JS
5293 if (verbosity) {
5294 odp_format_ufid(&f.ufid, &ds);
5295 ds_put_cstr(&ds, " ");
5296 }
ac64794a
BP
5297 odp_flow_format(f.key, f.key_len, f.mask, f.mask_len,
5298 &portno_names, &ds, verbosity);
1b849273 5299 ds_put_cstr(&ds, ", ");
ac64794a 5300 dpif_flow_stats_format(&f.stats, &ds);
27022416 5301 ds_put_cstr(&ds, ", actions:");
ac64794a 5302 format_odp_actions(&ds, f.actions, f.actions_len);
27022416
JP
5303 ds_put_char(&ds, '\n');
5304 }
ac64794a
BP
5305 dpif_flow_dump_thread_destroy(flow_dump_thread);
5306 error = dpif_flow_dump_destroy(flow_dump);
27022416 5307
938eaa50 5308 if (error) {
1b849273
JS
5309 ds_clear(&ds);
5310 ds_put_format(&ds, "dpif/dump_flows failed: %s", ovs_strerror(errno));
5311 unixctl_command_reply_error(conn, ds_cstr(&ds));
5312 } else {
5313 unixctl_command_reply(conn, ds_cstr(&ds));
5314 }
04b541df
GS
5315 odp_portno_names_destroy(&portno_names);
5316 hmap_destroy(&portno_names);
27022416
JP
5317 ds_destroy(&ds);
5318}
5319
abe529af 5320static void
a36de779
PS
5321ofproto_revalidate_all_backers(void)
5322{
5323 const struct shash_node **backers;
5324 int i;
5325
5326 backers = shash_sort(&all_dpif_backers);
5327 for (i = 0; i < shash_count(&all_dpif_backers); i++) {
5328 struct dpif_backer *backer = backers[i]->data;
5329 backer->need_revalidate = REV_RECONFIGURE;
5330 }
5331 free(backers);
5332}
5333
5334static void
5335disable_tnl_push_pop(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5336 const char *argv[], void *aux OVS_UNUSED)
5337{
5338 if (!strcasecmp(argv[1], "off")) {
5339 ofproto_use_tnl_push_pop = false;
5340 unixctl_command_reply(conn, "Tunnel push-pop off");
5341 ofproto_revalidate_all_backers();
5342 } else if (!strcasecmp(argv[1], "on")) {
5343 ofproto_use_tnl_push_pop = true;
5344 unixctl_command_reply(conn, "Tunnel push-pop on");
5345 ofproto_revalidate_all_backers();
a6313b25
IM
5346 } else {
5347 unixctl_command_reply_error(conn, "Invalid argument");
a36de779
PS
5348 }
5349}
5350
5351static void
5352ofproto_unixctl_init(void)
abe529af
BP
5353{
5354 static bool registered;
5355 if (registered) {
5356 return;
5357 }
5358 registered = true;
5359
0e15264f
BP
5360 unixctl_command_register(
5361 "ofproto/trace",
dc8ce81f 5362 "{[dp_name] odp_flow | bridge br_flow} [-generate|packet]",
50aa28fd 5363 1, 3, ofproto_unixctl_trace, NULL);
aee0979b
BP
5364 unixctl_command_register(
5365 "ofproto/trace-packet-out",
5366 "[-consistent] {[dp_name] odp_flow | bridge br_flow} [-generate|packet] actions",
5367 2, 6, ofproto_unixctl_trace_actions, NULL);
96e466a3 5368 unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
0e15264f
BP
5369 ofproto_unixctl_fdb_flush, NULL);
5370 unixctl_command_register("fdb/show", "bridge", 1, 1,
5371 ofproto_unixctl_fdb_show, NULL);
08fdcc12
FL
5372 unixctl_command_register("mdb/flush", "[bridge]", 0, 1,
5373 ofproto_unixctl_mcast_snooping_flush, NULL);
5374 unixctl_command_register("mdb/show", "bridge", 1, 1,
5375 ofproto_unixctl_mcast_snooping_show, NULL);
27022416
JP
5376 unixctl_command_register("dpif/dump-dps", "", 0, 0,
5377 ofproto_unixctl_dpif_dump_dps, NULL);
dc54ef36
EJ
5378 unixctl_command_register("dpif/show", "", 0, 0, ofproto_unixctl_dpif_show,
5379 NULL);
04b541df 5380 unixctl_command_register("dpif/dump-flows", "[-m] bridge", 1, 2,
27022416 5381 ofproto_unixctl_dpif_dump_flows, NULL);
a36de779
PS
5382
5383 unixctl_command_register("ofproto/tnl-push-pop", "[on]|[off]", 1, 1,
5384 disable_tnl_push_pop, NULL);
abe529af 5385}
32260212 5386
56c091ec
SH
5387/* Returns true if 'table' is the table used for internal rules,
5388 * false otherwise. */
5389bool
5390table_is_internal(uint8_t table_id)
5391{
5392 return table_id == TBL_INTERNAL;
5393}
abe529af 5394\f
e1b1d06a 5395
46c88433 5396static odp_port_t
4e022ec0 5397ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
e1b1d06a 5398{
e672ff9b 5399 const struct ofport_dpif *ofport = ofp_port_to_ofport(ofproto, ofp_port);
4e022ec0 5400 return ofport ? ofport->odp_port : ODPP_NONE;
e1b1d06a
JP
5401}
5402
8449c4d6 5403struct ofport_dpif *
4e022ec0 5404odp_port_to_ofport(const struct dpif_backer *backer, odp_port_t odp_port)
e1b1d06a
JP
5405{
5406 struct ofport_dpif *port;
5407
8449c4d6 5408 ovs_rwlock_rdlock(&backer->odp_to_ofport_lock);
f9c0c3ec 5409 HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node, hash_odp_port(odp_port),
acf60855 5410 &backer->odp_to_ofport_map) {
e1b1d06a 5411 if (port->odp_port == odp_port) {
8449c4d6 5412 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
acf60855 5413 return port;
e1b1d06a
JP
5414 }
5415 }
5416
8449c4d6 5417 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
acf60855
JP
5418 return NULL;
5419}
5420
4e022ec0
AW
5421static ofp_port_t
5422odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
acf60855
JP
5423{
5424 struct ofport_dpif *port;
5425
5426 port = odp_port_to_ofport(ofproto->backer, odp_port);
6472ba11 5427 if (port && &ofproto->up == port->up.ofproto) {
acf60855
JP
5428 return port->up.ofp_port;
5429 } else {
5430 return OFPP_NONE;
5431 }
e1b1d06a 5432}
655ab909 5433
adcf00ba
AZ
5434int
5435ofproto_dpif_add_internal_flow(struct ofproto_dpif *ofproto,
fe99c360 5436 const struct match *match, int priority,
290ad78a 5437 uint16_t idle_timeout,
adcf00ba
AZ
5438 const struct ofpbuf *ofpacts,
5439 struct rule **rulep)
5440{
8be00367 5441 struct ofproto_flow_mod ofm;
adcf00ba
AZ
5442 struct rule_dpif *rule;
5443 int error;
5444
39cc5c4a
BP
5445 ofm.fm = (struct ofputil_flow_mod) {
5446 .match = *match,
5447 .priority = priority,
5448 .table_id = TBL_INTERNAL,
5449 .command = OFPFC_ADD,
5450 .idle_timeout = idle_timeout,
5451 .flags = OFPUTIL_FF_HIDDEN_FIELDS | OFPUTIL_FF_NO_READONLY,
5452 .ofpacts = ofpacts->data,
5453 .ofpacts_len = ofpacts->size,
5454 .delete_reason = OVS_OFPRR_NONE,
5455 };
8be00367
JR
5456
5457 error = ofproto_flow_mod(&ofproto->up, &ofm);
adcf00ba
AZ
5458 if (error) {
5459 VLOG_ERR_RL(&rl, "failed to add internal flow (%s)",
5460 ofperr_to_string(error));
5461 *rulep = NULL;
5462 return error;
5463 }
5464
621b8064
JR
5465 rule = rule_dpif_lookup_in_table(ofproto,
5466 ofproto_dpif_get_tables_version(ofproto),
8be00367 5467 TBL_INTERNAL, &ofm.fm.match.flow,
1e1e1d19 5468 &ofm.fm.match.wc);
adcf00ba 5469 if (rule) {
adcf00ba
AZ
5470 *rulep = &rule->up;
5471 } else {
5472 OVS_NOT_REACHED();
5473 }
5474 return 0;
5475}
5476
5477int
5478ofproto_dpif_delete_internal_flow(struct ofproto_dpif *ofproto,
5479 struct match *match, int priority)
5480{
8be00367 5481 struct ofproto_flow_mod ofm;
adcf00ba
AZ
5482 int error;
5483
39cc5c4a
BP
5484 ofm.fm = (struct ofputil_flow_mod) {
5485 .match = *match,
5486 .priority = priority,
5487 .table_id = TBL_INTERNAL,
5488 .flags = OFPUTIL_FF_HIDDEN_FIELDS | OFPUTIL_FF_NO_READONLY,
5489 .command = OFPFC_DELETE_STRICT,
5490 };
8be00367
JR
5491
5492 error = ofproto_flow_mod(&ofproto->up, &ofm);
adcf00ba
AZ
5493 if (error) {
5494 VLOG_ERR_RL(&rl, "failed to delete internal flow (%s)",
5495 ofperr_to_string(error));
5496 return error;
5497 }
5498
5499 return 0;
5500}
5501
290835f9
BP
5502const struct uuid *
5503ofproto_dpif_get_uuid(const struct ofproto_dpif *ofproto)
5504{
5505 return &ofproto->uuid;
5506}
5507
abe529af 5508const struct ofproto_class ofproto_dpif_class = {
b0408fca 5509 init,
abe529af
BP
5510 enumerate_types,
5511 enumerate_names,
5512 del,
0aeaabc8 5513 port_open_type,
acf60855 5514 type_run,
acf60855 5515 type_wait,
abe529af
BP
5516 alloc,
5517 construct,
5518 destruct,
5519 dealloc,
5520 run,
f07c97f5 5521 ofproto_dpif_wait,
e79a6c83 5522 NULL, /* get_memory_usage. */
1c030aa5 5523 type_get_memory_usage,
abe529af 5524 flush,
3c1bb396 5525 query_tables,
621b8064 5526 set_tables_version,
abe529af
BP
5527 port_alloc,
5528 port_construct,
5529 port_destruct,
5530 port_dealloc,
5531 port_modified,
5532 port_reconfigured,
5533 port_query_by_name,
5534 port_add,
5535 port_del,
6527c598 5536 port_get_stats,
abe529af
BP
5537 port_dump_start,
5538 port_dump_next,
5539 port_dump_done,
5540 port_poll,
5541 port_poll_wait,
5542 port_is_lacp_current,
50b9699f 5543 port_get_lacp_stats,
0ab6decf 5544 NULL, /* rule_choose_table */
abe529af
BP
5545 rule_alloc,
5546 rule_construct,
8037acb4
BP
5547 rule_insert,
5548 rule_delete,
abe529af
BP
5549 rule_destruct,
5550 rule_dealloc,
abe529af
BP
5551 rule_get_stats,
5552 rule_execute,
7257b535 5553 set_frag_handling,
abe529af 5554 packet_out,
77ab5fd2 5555 nxt_resume,
abe529af
BP
5556 set_netflow,
5557 get_netflow_ids,
5558 set_sflow,
29089a54 5559 set_ipfix,
abe529af 5560 set_cfm,
8f5514fe 5561 cfm_status_changed,
9a9e3786 5562 get_cfm_status,
0477baa9
DF
5563 set_lldp,
5564 get_lldp_status,
5565 set_aa,
5566 aa_mapping_set,
5567 aa_mapping_unset,
5568 aa_vlan_get_queued,
5569 aa_vlan_get_queue_size,
ccc09689 5570 set_bfd,
8f5514fe 5571 bfd_status_changed,
ccc09689 5572 get_bfd_status,
21f7563c
JP
5573 set_stp,
5574 get_stp_status,
5575 set_stp_port,
5576 get_stp_port_status,
fd28ce3a 5577 get_stp_port_stats,
9efd308e
DV
5578 set_rstp,
5579 get_rstp_status,
5580 set_rstp_port,
5581 get_rstp_port_status,
8b36f51e 5582 set_queues,
abe529af
BP
5583 bundle_set,
5584 bundle_remove,
ec7ceaed
EJ
5585 mirror_set__,
5586 mirror_get_stats__,
abe529af
BP
5587 set_flood_vlans,
5588 is_mirror_output_bundle,
8402c74b 5589 forward_bpdu_changed,
c4069512 5590 set_mac_table_config,
7c38d0a5
FL
5591 set_mcast_snooping,
5592 set_mcast_snooping_port,
9cae45dc
JR
5593 NULL, /* meter_get_features */
5594 NULL, /* meter_set */
5595 NULL, /* meter_get */
5596 NULL, /* meter_del */
00430a3f
SH
5597 group_alloc, /* group_alloc */
5598 group_construct, /* group_construct */
5599 group_destruct, /* group_destruct */
5600 group_dealloc, /* group_dealloc */
5601 group_modify, /* group_modify */
5602 group_get_stats, /* group_get_stats */
b5cbbcf6 5603 get_datapath_version, /* get_datapath_version */
abe529af 5604};