]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/ofproto-dpif.c
ofproto-dpif: Expose datapath capability to ovsdb.
[mirror_ovs.git] / ofproto / ofproto-dpif.c
CommitLineData
abe529af 1/*
abe529af
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <config.h>
abe529af
BP
17#include <errno.h>
18
ccc09689 19#include "bfd.h"
abe529af 20#include "bond.h"
daff3353 21#include "bundle.h"
abe529af 22#include "byte-order.h"
f23d157c 23#include "connectivity.h"
abe529af
BP
24#include "connmgr.h"
25#include "coverage.h"
26#include "cfm.h"
2a7c4805 27#include "ct-dpif.h"
abe529af 28#include "fail-open.h"
05067881 29#include "guarded-list.h"
abe529af
BP
30#include "hmapx.h"
31#include "lacp.h"
75a75043 32#include "learn.h"
abe529af 33#include "mac-learning.h"
2e3fd24c 34#include "math.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"
d13ee228 50#include "ofproto-dpif-trace.h"
e1ec7dd4 51#include "ofproto-dpif-upcall.h"
9583bc14 52#include "ofproto-dpif-xlate.h"
a027899e 53#include "ofproto-dpif-xlate-cache.h"
b598f214
BW
54#include "openvswitch/ofp-actions.h"
55#include "openvswitch/dynamic-string.h"
56#include "openvswitch/meta-flow.h"
25d436fb 57#include "openvswitch/ofp-print.h"
b598f214 58#include "openvswitch/ofpbuf.h"
911b4a7e 59#include "openvswitch/uuid.h"
b598f214
BW
60#include "openvswitch/vlog.h"
61#include "ovs-lldp.h"
dfba2dfc 62#include "ovs-rcu.h"
a36de779 63#include "ovs-router.h"
fd016ae3 64#include "openvswitch/poll-loop.h"
f23d157c 65#include "seq.h"
0d085684 66#include "simap.h"
27022416 67#include "smap.h"
abe529af 68#include "timer.h"
b9ad7294 69#include "tunnel.h"
6c1491fb 70#include "unaligned.h"
abe529af 71#include "unixctl.h"
ee89ea7b 72#include "util.h"
911b4a7e 73#include "uuid.h"
abe529af 74#include "vlan-bitmap.h"
abe529af
BP
75
76VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
77
abe529af 78COVERAGE_DEFINE(ofproto_dpif_expired);
ada3a58d 79COVERAGE_DEFINE(packet_in_overflow);
abe529af 80
a088a1ff 81struct flow_miss;
abe529af 82
dc437090
JR
83static void rule_get_stats(struct rule *, uint64_t *packets, uint64_t *bytes,
84 long long int *used);
70742c7f 85static struct rule_dpif *rule_dpif_cast(const struct rule *);
f5857865 86static void rule_expire(struct rule_dpif *, long long now);
b0f7b9b5 87
46c88433
EJ
88struct ofbundle {
89 struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
90 struct ofproto_dpif *ofproto; /* Owning ofproto. */
91 void *aux; /* Key supplied by ofproto's client. */
92 char *name; /* Identifier for log messages. */
93
94 /* Configuration. */
31f4a577 95 struct ovs_list ports; /* Contains "struct ofport_dpif"s. */
46c88433 96 enum port_vlan_mode vlan_mode; /* VLAN mode */
fed8962a 97 uint16_t qinq_ethtype;
46c88433
EJ
98 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
99 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
100 * NULL if all VLANs are trunked. */
fed8962a 101 unsigned long *cvlans;
46c88433
EJ
102 struct lacp *lacp; /* LACP if LACP is enabled, otherwise NULL. */
103 struct bond *bond; /* Nonnull iff more than one port. */
88f52d7f
EB
104 enum port_priority_tags_mode use_priority_tags;
105 /* Use 802.1p tag for frames in VLAN 0? */
46c88433 106
c005f976
BK
107 bool protected; /* Protected port mode */
108
46c88433
EJ
109 /* Status. */
110 bool floodable; /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
111};
112
abe529af 113static void bundle_remove(struct ofport *);
7bde8dd8 114static void bundle_update(struct ofbundle *);
abe529af
BP
115static void bundle_destroy(struct ofbundle *);
116static void bundle_del_port(struct ofport_dpif *);
117static void bundle_run(struct ofbundle *);
118static void bundle_wait(struct ofbundle *);
66ff280d 119static void bundle_flush_macs(struct ofbundle *, bool);
2372c146 120static void bundle_move(struct ofbundle *, struct ofbundle *);
33158a18 121
21f7563c
JP
122static void stp_run(struct ofproto_dpif *ofproto);
123static void stp_wait(struct ofproto_dpif *ofproto);
851bf71d
EJ
124static int set_stp_port(struct ofport *,
125 const struct ofproto_port_stp_settings *);
21f7563c 126
9efd308e
DV
127static void rstp_run(struct ofproto_dpif *ofproto);
128static void set_rstp_port(struct ofport *,
129 const struct ofproto_port_rstp_settings *);
130
46c88433
EJ
131struct ofport_dpif {
132 struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
133 struct ofport up;
134
135 odp_port_t odp_port;
136 struct ofbundle *bundle; /* Bundle that contains this port, if any. */
ca6ba700 137 struct ovs_list bundle_node;/* In struct ofbundle's "ports" list. */
46c88433
EJ
138 struct cfm *cfm; /* Connectivity Fault Management, if any. */
139 struct bfd *bfd; /* BFD, if any. */
0477baa9 140 struct lldp *lldp; /* lldp, if any. */
46c88433
EJ
141 bool is_tunnel; /* This port is a tunnel. */
142 long long int carrier_seq; /* Carrier status changes. */
143 struct ofport_dpif *peer; /* Peer if patch port. */
144
145 /* Spanning tree. */
146 struct stp_port *stp_port; /* Spanning Tree Protocol, if any. */
147 enum stp_state stp_state; /* Always STP_DISABLED if STP not in use. */
148 long long int stp_state_entered;
149
9efd308e
DV
150 /* Rapid Spanning Tree. */
151 struct rstp_port *rstp_port; /* Rapid Spanning Tree Protocol, if any. */
152 enum rstp_state rstp_state; /* Always RSTP_DISABLED if RSTP not in use. */
153
55954f6e
EJ
154 /* Queue to DSCP mapping. */
155 struct ofproto_port_queue *qdscp;
156 size_t n_qdscp;
46c88433
EJ
157};
158
993cae67
YHW
159struct ct_timeout_policy {
160 int ref_count; /* The number of ct zones that use this
161 * timeout policy. */
162 uint32_t tp_id; /* Timeout policy id in the datapath. */
163 struct simap tp; /* A map from timeout policy attribute to
164 * timeout value. */
165 struct hmap_node node; /* Element in struct dpif_backer's "ct_tps"
166 * cmap. */
167 struct ovs_list list_node; /* Element in struct dpif_backer's
168 * "ct_tp_kill_list" list. */
169};
170
171/* Periodically try to purge deleted timeout policies from the datapath. Retry
172 * may be necessary if the kernel datapath has a non-zero datapath flow
173 * reference count for the timeout policy. */
174#define TIMEOUT_POLICY_CLEANUP_INTERVAL (20000) /* 20 seconds. */
175static long long int timeout_policy_cleanup_timer = LLONG_MIN;
176
177struct ct_zone {
178 uint16_t zone_id;
179 struct ct_timeout_policy *ct_tp;
180 struct cmap_node node; /* Element in struct dpif_backer's
181 * "ct_zones" cmap. */
182};
183
46c88433
EJ
184static odp_port_t ofp_port_to_odp_port(const struct ofproto_dpif *,
185 ofp_port_t);
186
4e022ec0 187static ofp_port_t odp_port_to_ofp_port(const struct ofproto_dpif *,
46c88433 188 odp_port_t);
e1b1d06a 189
abe529af
BP
190static struct ofport_dpif *
191ofport_dpif_cast(const struct ofport *ofport)
192{
abe529af
BP
193 return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
194}
195
196static void port_run(struct ofport_dpif *);
8aee94b6 197static int set_bfd(struct ofport *, const struct smap *);
a5610457 198static int set_cfm(struct ofport *, const struct cfm_settings *);
0477baa9 199static int set_lldp(struct ofport *ofport_, const struct smap *cfg);
6cbbf4fa 200static void ofport_update_peer(struct ofport_dpif *);
abe529af 201
3c4a309c
BP
202COVERAGE_DEFINE(rev_reconfigure);
203COVERAGE_DEFINE(rev_stp);
9efd308e 204COVERAGE_DEFINE(rev_rstp);
4a1b8f30 205COVERAGE_DEFINE(rev_bond);
3c4a309c
BP
206COVERAGE_DEFINE(rev_port_toggled);
207COVERAGE_DEFINE(rev_flow_table);
30618594 208COVERAGE_DEFINE(rev_mac_learning);
6d95c4e8 209COVERAGE_DEFINE(rev_mcast_snooping);
3c4a309c 210
acf60855 211/* All existing ofproto_backer instances, indexed by ofproto->up.type. */
07a3cd5c 212struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
46c88433 213
b44a10b7 214/* All existing ofproto_dpif instances, indexed by ->up.name. */
911b4a7e
JP
215static struct hmap all_ofproto_dpifs_by_name =
216 HMAP_INITIALIZER(&all_ofproto_dpifs_by_name);
217
218/* All existing ofproto_dpif instances, indexed by ->uuid. */
219static struct hmap all_ofproto_dpifs_by_uuid =
220 HMAP_INITIALIZER(&all_ofproto_dpifs_by_uuid);
b44a10b7 221
a36de779
PS
222static bool ofproto_use_tnl_push_pop = true;
223static void ofproto_unixctl_init(void);
993cae67
YHW
224static void ct_zone_config_init(struct dpif_backer *backer);
225static void ct_zone_config_uninit(struct dpif_backer *backer);
226static void ct_zone_timeout_policy_sweep(struct dpif_backer *backer);
abe529af 227
46c88433
EJ
228static inline struct ofproto_dpif *
229ofproto_dpif_cast(const struct ofproto *ofproto)
230{
231 ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
232 return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
233}
234
abe529af
BP
235/* Global variables. */
236static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
acf60855
JP
237
238/* Initial mappings of port to bridge mappings. */
239static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
46c88433 240
2c7ee524
JR
241/* Initialize 'ofm' for a learn action. If the rule already existed, reference
242 * to that rule is taken, otherwise a new rule is created. 'ofm' keeps the
243 * rule reference in both cases. */
244enum ofperr
245ofproto_dpif_flow_mod_init_for_learn(struct ofproto_dpif *ofproto,
246 const struct ofputil_flow_mod *fm,
247 struct ofproto_flow_mod *ofm)
46c88433 248{
2c7ee524
JR
249 /* This will not take the global 'ofproto_mutex'. */
250 return ofproto_flow_mod_init_for_learn(&ofproto->up, fm, ofm);
46c88433
EJ
251}
252
a2b53dec
BP
253/* Appends 'am' to the queue of asynchronous messages to be sent to the
254 * controller. Takes ownership of 'am' and any data it points to. */
46c88433 255void
a2b53dec
BP
256ofproto_dpif_send_async_msg(struct ofproto_dpif *ofproto,
257 struct ofproto_async_msg *am)
46c88433 258{
a2b53dec 259 if (!guarded_list_push_back(&ofproto->ams, &am->list_node, 1024)) {
ada3a58d 260 COVERAGE_INC(packet_in_overflow);
a2b53dec 261 ofproto_async_msg_free(am);
ada3a58d 262 }
cfc50ae5
AW
263
264 /* Wakes up main thread for packet-in I/O. */
a2b53dec 265 seq_change(ofproto->ams_seq);
46c88433 266}
abe529af
BP
267\f
268/* Factory functions. */
269
b0408fca 270static void
acf60855 271init(const struct shash *iface_hints)
b0408fca 272{
acf60855
JP
273 struct shash_node *node;
274
275 /* Make a local copy, since we don't own 'iface_hints' elements. */
276 SHASH_FOR_EACH(node, iface_hints) {
277 const struct iface_hint *orig_hint = node->data;
278 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
279
280 new_hint->br_name = xstrdup(orig_hint->br_name);
281 new_hint->br_type = xstrdup(orig_hint->br_type);
282 new_hint->ofp_port = orig_hint->ofp_port;
283
284 shash_add(&init_ofp_ports, node->name, new_hint);
285 }
0fc1f5c0
HH
286
287 ofproto_unixctl_init();
d13ee228 288 ofproto_dpif_trace_init();
0fc1f5c0 289 udpif_init();
b0408fca
JP
290}
291
abe529af
BP
292static void
293enumerate_types(struct sset *types)
294{
295 dp_enumerate_types(types);
296}
297
298static int
299enumerate_names(const char *type, struct sset *names)
300{
acf60855
JP
301 struct ofproto_dpif *ofproto;
302
303 sset_clear(names);
911b4a7e
JP
304 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
305 &all_ofproto_dpifs_by_name) {
acf60855
JP
306 if (strcmp(type, ofproto->up.type)) {
307 continue;
308 }
309 sset_add(names, ofproto->up.name);
310 }
311
312 return 0;
abe529af
BP
313}
314
315static int
316del(const char *type, const char *name)
317{
318 struct dpif *dpif;
319 int error;
320
321 error = dpif_open(name, type, &dpif);
322 if (!error) {
323 error = dpif_delete(dpif);
324 dpif_close(dpif);
325 }
326 return error;
327}
328\f
0aeaabc8
JP
329static const char *
330port_open_type(const char *datapath_type, const char *port_type)
331{
332 return dpif_port_open_type(datapath_type, port_type);
333}
334
acf60855
JP
335/* Type functions. */
336
36beb9be
BP
337static void process_dpif_port_changes(struct dpif_backer *);
338static void process_dpif_all_ports_changed(struct dpif_backer *);
339static void process_dpif_port_change(struct dpif_backer *,
340 const char *devname);
341static void process_dpif_port_error(struct dpif_backer *, int error);
342
476cb42a
BP
343static struct ofproto_dpif *
344lookup_ofproto_dpif_by_port_name(const char *name)
345{
346 struct ofproto_dpif *ofproto;
347
911b4a7e
JP
348 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
349 &all_ofproto_dpifs_by_name) {
476cb42a
BP
350 if (sset_contains(&ofproto->ports, name)) {
351 return ofproto;
352 }
353 }
354
355 return NULL;
356}
357
acf60855
JP
358static int
359type_run(const char *type)
360{
361 struct dpif_backer *backer;
acf60855
JP
362
363 backer = shash_find_data(&all_dpif_backers, type);
364 if (!backer) {
365 /* This is not necessarily a problem, since backers are only
366 * created on demand. */
367 return 0;
368 }
369
a36de779
PS
370 if (dpif_run(backer->dpif)) {
371 backer->need_revalidate = REV_RECONFIGURE;
372 }
373
27f57736 374 udpif_run(backer->udpif);
acf60855 375
40358701
GS
376 /* If vswitchd started with other_config:flow_restore_wait set as "true",
377 * and the configuration has now changed to "false", enable receiving
378 * packets from the datapath. */
379 if (!backer->recv_set_enable && !ofproto_get_flow_restore_wait()) {
36beb9be
BP
380 int error;
381
40358701
GS
382 backer->recv_set_enable = true;
383
384 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
385 if (error) {
386 VLOG_ERR("Failed to enable receiving packets in dpif.");
387 return error;
388 }
389 dpif_flow_flush(backer->dpif);
390 backer->need_revalidate = REV_RECONFIGURE;
391 }
392
6567010f 393 if (backer->recv_set_enable) {
e79a6c83 394 udpif_set_threads(backer->udpif, n_handlers, n_revalidators);
448a4b2f
AW
395 }
396
a1616063 397 if (backer->need_revalidate) {
2cc3c58e 398 struct ofproto_dpif *ofproto;
a614d823
KM
399 struct simap_node *node;
400 struct simap tmp_backers;
401
402 /* Handle tunnel garbage collection. */
403 simap_init(&tmp_backers);
404 simap_swap(&backer->tnl_backers, &tmp_backers);
405
911b4a7e
JP
406 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
407 &all_ofproto_dpifs_by_name) {
a614d823
KM
408 struct ofport_dpif *iter;
409
410 if (backer != ofproto->backer) {
411 continue;
412 }
413
414 HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
3aa30359 415 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
a614d823 416 const char *dp_port;
c8025aee 417 odp_port_t old_odp_port;
a614d823 418
42943cde 419 if (!iter->is_tunnel) {
a614d823
KM
420 continue;
421 }
422
3aa30359
BP
423 dp_port = netdev_vport_get_dpif_port(iter->up.netdev,
424 namebuf, sizeof namebuf);
c8025aee 425 old_odp_port = iter->odp_port;
a614d823
KM
426 node = simap_find(&tmp_backers, dp_port);
427 if (node) {
428 simap_put(&backer->tnl_backers, dp_port, node->data);
429 simap_delete(&tmp_backers, node);
430 node = simap_find(&backer->tnl_backers, dp_port);
431 } else {
432 node = simap_find(&backer->tnl_backers, dp_port);
433 if (!node) {
4e022ec0 434 odp_port_t odp_port = ODPP_NONE;
a614d823
KM
435
436 if (!dpif_port_add(backer->dpif, iter->up.netdev,
437 &odp_port)) {
4e022ec0
AW
438 simap_put(&backer->tnl_backers, dp_port,
439 odp_to_u32(odp_port));
a614d823
KM
440 node = simap_find(&backer->tnl_backers, dp_port);
441 }
442 }
443 }
444
4e022ec0 445 iter->odp_port = node ? u32_to_odp(node->data) : ODPP_NONE;
42943cde 446 if (tnl_port_reconfigure(iter, iter->up.netdev,
c8025aee 447 iter->odp_port, old_odp_port,
a36de779 448 ovs_native_tunneling_is_on(ofproto), dp_port)) {
a614d823
KM
449 backer->need_revalidate = REV_RECONFIGURE;
450 }
451 }
452 }
453
454 SIMAP_FOR_EACH (node, &tmp_backers) {
97459c2f 455 dpif_port_del(backer->dpif, u32_to_odp(node->data), false);
a614d823
KM
456 }
457 simap_destroy(&tmp_backers);
2cc3c58e
EJ
458
459 switch (backer->need_revalidate) {
1373ee25
FL
460 case REV_RECONFIGURE: COVERAGE_INC(rev_reconfigure); break;
461 case REV_STP: COVERAGE_INC(rev_stp); break;
9efd308e 462 case REV_RSTP: COVERAGE_INC(rev_rstp); break;
1373ee25
FL
463 case REV_BOND: COVERAGE_INC(rev_bond); break;
464 case REV_PORT_TOGGLED: COVERAGE_INC(rev_port_toggled); break;
465 case REV_FLOW_TABLE: COVERAGE_INC(rev_flow_table); break;
466 case REV_MAC_LEARNING: COVERAGE_INC(rev_mac_learning); break;
6d95c4e8 467 case REV_MCAST_SNOOPING: COVERAGE_INC(rev_mcast_snooping); break;
2cc3c58e 468 }
f728af2e
BP
469 backer->need_revalidate = 0;
470
fa7c3899 471 xlate_txn_start();
911b4a7e
JP
472 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
473 &all_ofproto_dpifs_by_name) {
a1616063 474 struct ofport_dpif *ofport;
a1616063 475 struct ofbundle *bundle;
2cc3c58e
EJ
476
477 if (ofproto->backer != backer) {
478 continue;
479 }
480
89a8a7f0 481 xlate_ofproto_set(ofproto, ofproto->up.name,
34dd0d78 482 ofproto->backer->dpif, ofproto->ml,
9efd308e
DV
483 ofproto->stp, ofproto->rstp, ofproto->ms,
484 ofproto->mbridge, ofproto->sflow, ofproto->ipfix,
2f47cdf4 485 ofproto->netflow,
a1616063 486 ofproto->up.forward_bpdu,
4b97b70d 487 connmgr_has_in_band(ofproto->up.connmgr),
88186383 488 &ofproto->backer->rt_support);
46c88433 489
a1616063
EJ
490 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
491 xlate_bundle_set(ofproto, bundle, bundle->name,
fed8962a
EG
492 bundle->vlan_mode, bundle->qinq_ethtype,
493 bundle->vlan, bundle->trunks, bundle->cvlans,
f0fb825a 494 bundle->use_priority_tags,
a1616063 495 bundle->bond, bundle->lacp,
c005f976 496 bundle->floodable, bundle->protected);
a1616063
EJ
497 }
498
499 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
9d189a50
EJ
500 int stp_port = ofport->stp_port
501 ? stp_port_no(ofport->stp_port)
92cf817b 502 : -1;
a1616063
EJ
503 xlate_ofport_set(ofproto, ofport->bundle, ofport,
504 ofport->up.ofp_port, ofport->odp_port,
0477baa9
DF
505 ofport->up.netdev, ofport->cfm, ofport->bfd,
506 ofport->lldp, ofport->peer, stp_port,
f025bcb7
JR
507 ofport->rstp_port, ofport->qdscp,
508 ofport->n_qdscp, ofport->up.pp.config,
509 ofport->up.pp.state, ofport->is_tunnel,
16361b11 510 ofport->up.may_enable);
46c88433 511 }
2cc3c58e 512 }
fa7c3899 513 xlate_txn_commit();
e1ec7dd4
EJ
514
515 udpif_revalidate(backer->udpif);
2cc3c58e
EJ
516 }
517
36beb9be 518 process_dpif_port_changes(backer);
993cae67 519 ct_zone_timeout_policy_sweep(backer);
acf60855
JP
520
521 return 0;
522}
523
36beb9be
BP
524/* Check for and handle port changes in 'backer''s dpif. */
525static void
526process_dpif_port_changes(struct dpif_backer *backer)
527{
528 for (;;) {
529 char *devname;
530 int error;
531
532 error = dpif_port_poll(backer->dpif, &devname);
533 switch (error) {
534 case EAGAIN:
535 return;
536
537 case ENOBUFS:
538 process_dpif_all_ports_changed(backer);
539 break;
540
541 case 0:
542 process_dpif_port_change(backer, devname);
543 free(devname);
544 break;
545
546 default:
547 process_dpif_port_error(backer, error);
548 break;
549 }
550 }
551}
552
553static void
554process_dpif_all_ports_changed(struct dpif_backer *backer)
555{
556 struct ofproto_dpif *ofproto;
557 struct dpif_port dpif_port;
558 struct dpif_port_dump dump;
559 struct sset devnames;
560 const char *devname;
561
562 sset_init(&devnames);
911b4a7e
JP
563 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
564 &all_ofproto_dpifs_by_name) {
36beb9be
BP
565 if (ofproto->backer == backer) {
566 struct ofport *ofport;
567
568 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
569 sset_add(&devnames, netdev_get_name(ofport->netdev));
570 }
571 }
572 }
573 DPIF_PORT_FOR_EACH (&dpif_port, &dump, backer->dpif) {
574 sset_add(&devnames, dpif_port.name);
575 }
576
577 SSET_FOR_EACH (devname, &devnames) {
578 process_dpif_port_change(backer, devname);
579 }
580 sset_destroy(&devnames);
581}
582
583static void
584process_dpif_port_change(struct dpif_backer *backer, const char *devname)
585{
586 struct ofproto_dpif *ofproto;
587 struct dpif_port port;
588
589 /* Don't report on the datapath's device. */
590 if (!strcmp(devname, dpif_base_name(backer->dpif))) {
591 return;
592 }
593
911b4a7e
JP
594 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
595 &all_ofproto_dpifs_by_name) {
36beb9be
BP
596 if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
597 return;
598 }
599 }
600
601 ofproto = lookup_ofproto_dpif_by_port_name(devname);
602 if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
603 /* The port was removed. If we know the datapath,
604 * report it through poll_set(). If we don't, it may be
605 * notifying us of a removal we initiated, so ignore it.
606 * If there's a pending ENOBUFS, let it stand, since
607 * everything will be reevaluated. */
608 if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
609 sset_add(&ofproto->port_poll_set, devname);
610 ofproto->port_poll_errno = 0;
611 }
612 } else if (!ofproto) {
613 /* The port was added, but we don't know with which
614 * ofproto we should associate it. Delete it. */
97459c2f 615 dpif_port_del(backer->dpif, port.port_no, false);
74cc3969
BP
616 } else {
617 struct ofport_dpif *ofport;
618
619 ofport = ofport_dpif_cast(shash_find_data(
620 &ofproto->up.port_by_name, devname));
621 if (ofport
622 && ofport->odp_port != port.port_no
623 && !odp_port_to_ofport(backer, port.port_no))
624 {
625 /* 'ofport''s datapath port number has changed from
626 * 'ofport->odp_port' to 'port.port_no'. Update our internal data
627 * structures to match. */
8449c4d6 628 ovs_rwlock_wrlock(&backer->odp_to_ofport_lock);
74cc3969
BP
629 hmap_remove(&backer->odp_to_ofport_map, &ofport->odp_port_node);
630 ofport->odp_port = port.port_no;
631 hmap_insert(&backer->odp_to_ofport_map, &ofport->odp_port_node,
632 hash_odp_port(port.port_no));
8449c4d6 633 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
74cc3969
BP
634 backer->need_revalidate = REV_RECONFIGURE;
635 }
36beb9be
BP
636 }
637 dpif_port_destroy(&port);
638}
639
640/* Propagate 'error' to all ofprotos based on 'backer'. */
641static void
642process_dpif_port_error(struct dpif_backer *backer, int error)
643{
644 struct ofproto_dpif *ofproto;
645
911b4a7e
JP
646 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
647 &all_ofproto_dpifs_by_name) {
36beb9be
BP
648 if (ofproto->backer == backer) {
649 sset_clear(&ofproto->port_poll_set);
650 ofproto->port_poll_errno = error;
651 }
652 }
653}
654
acf60855
JP
655static void
656type_wait(const char *type)
657{
658 struct dpif_backer *backer;
659
660 backer = shash_find_data(&all_dpif_backers, type);
661 if (!backer) {
662 /* This is not necessarily a problem, since backers are only
663 * created on demand. */
664 return;
665 }
666
c0365fc8 667 dpif_wait(backer->dpif);
acf60855
JP
668}
669\f
abe529af
BP
670/* Basic life-cycle. */
671
c57b2226
BP
672static int add_internal_flows(struct ofproto_dpif *);
673
abe529af
BP
674static struct ofproto *
675alloc(void)
676{
3da29e32 677 struct ofproto_dpif *ofproto = xzalloc(sizeof *ofproto);
abe529af
BP
678 return &ofproto->up;
679}
680
681static void
682dealloc(struct ofproto *ofproto_)
683{
684 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
685 free(ofproto);
686}
687
acf60855 688static void
fe13ccdc 689close_dpif_backer(struct dpif_backer *backer, bool del)
acf60855 690{
bfa90988 691 struct simap_node *node;
692
cb22974d 693 ovs_assert(backer->refcount > 0);
acf60855
JP
694
695 if (--backer->refcount) {
696 return;
697 }
698
b395cf1f
BP
699 udpif_destroy(backer->udpif);
700
bfa90988 701 SIMAP_FOR_EACH (node, &backer->tnl_backers) {
702 dpif_port_del(backer->dpif, u32_to_odp(node->data), false);
703 }
7d82ab2e 704 simap_destroy(&backer->tnl_backers);
8449c4d6 705 ovs_rwlock_destroy(&backer->odp_to_ofport_lock);
acf60855 706 hmap_destroy(&backer->odp_to_ofport_map);
4f7cc3c7 707 shash_find_and_delete(&all_dpif_backers, backer->type);
acf60855 708 free(backer->type);
b5cbbcf6 709 free(backer->dp_version_string);
fe13ccdc
AZ
710 if (del) {
711 dpif_delete(backer->dpif);
712 }
acf60855 713 dpif_close(backer->dpif);
333ad77d 714 id_pool_destroy(backer->meter_ids);
993cae67 715 ct_zone_config_uninit(backer);
acf60855
JP
716 free(backer);
717}
718
719/* Datapath port slated for removal from datapath. */
720struct odp_garbage {
ca6ba700 721 struct ovs_list list_node;
4e022ec0 722 odp_port_t odp_port;
acf60855
JP
723};
724
b440dd8c 725static void check_support(struct dpif_backer *backer);
4b97b70d 726
acf60855
JP
727static int
728open_dpif_backer(const char *type, struct dpif_backer **backerp)
729{
730 struct dpif_backer *backer;
731 struct dpif_port_dump port_dump;
732 struct dpif_port port;
733 struct shash_node *node;
ca6ba700 734 struct ovs_list garbage_list;
5f03c983 735 struct odp_garbage *garbage;
f5374617 736
acf60855
JP
737 struct sset names;
738 char *backer_name;
739 const char *name;
740 int error;
741
742 backer = shash_find_data(&all_dpif_backers, type);
743 if (backer) {
744 backer->refcount++;
745 *backerp = backer;
746 return 0;
747 }
748
749 backer_name = xasprintf("ovs-%s", type);
750
751 /* Remove any existing datapaths, since we assume we're the only
752 * userspace controlling the datapath. */
753 sset_init(&names);
754 dp_enumerate_names(type, &names);
755 SSET_FOR_EACH(name, &names) {
756 struct dpif *old_dpif;
757
758 /* Don't remove our backer if it exists. */
759 if (!strcmp(name, backer_name)) {
760 continue;
761 }
762
763 if (dpif_open(name, type, &old_dpif)) {
764 VLOG_WARN("couldn't open old datapath %s to remove it", name);
765 } else {
766 dpif_delete(old_dpif);
767 dpif_close(old_dpif);
768 }
769 }
770 sset_destroy(&names);
771
772 backer = xmalloc(sizeof *backer);
773
774 error = dpif_create_and_open(backer_name, type, &backer->dpif);
775 free(backer_name);
776 if (error) {
777 VLOG_ERR("failed to open datapath of type %s: %s", type,
10a89ef0 778 ovs_strerror(error));
4c1b1289 779 free(backer);
acf60855
JP
780 return error;
781 }
e1ec7dd4 782 backer->udpif = udpif_create(backer, backer->dpif);
acf60855
JP
783
784 backer->type = xstrdup(type);
785 backer->refcount = 1;
786 hmap_init(&backer->odp_to_ofport_map);
8449c4d6 787 ovs_rwlock_init(&backer->odp_to_ofport_lock);
2cc3c58e 788 backer->need_revalidate = 0;
7d82ab2e 789 simap_init(&backer->tnl_backers);
40358701 790 backer->recv_set_enable = !ofproto_get_flow_restore_wait();
acf60855
JP
791 *backerp = backer;
792
40358701
GS
793 if (backer->recv_set_enable) {
794 dpif_flow_flush(backer->dpif);
795 }
acf60855
JP
796
797 /* Loop through the ports already on the datapath and remove any
798 * that we don't need anymore. */
417e7e66 799 ovs_list_init(&garbage_list);
acf60855
JP
800 dpif_port_dump_start(&port_dump, backer->dpif);
801 while (dpif_port_dump_next(&port_dump, &port)) {
802 node = shash_find(&init_ofp_ports, port.name);
803 if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
804 garbage = xmalloc(sizeof *garbage);
805 garbage->odp_port = port.port_no;
417e7e66 806 ovs_list_push_front(&garbage_list, &garbage->list_node);
acf60855
JP
807 }
808 }
809 dpif_port_dump_done(&port_dump);
810
5f03c983 811 LIST_FOR_EACH_POP (garbage, list_node, &garbage_list) {
97459c2f 812 dpif_port_del(backer->dpif, garbage->odp_port, false);
acf60855
JP
813 free(garbage);
814 }
815
816 shash_add(&all_dpif_backers, type, backer);
817
b440dd8c 818 check_support(backer);
a36de779
PS
819 atomic_count_init(&backer->tnl_count, 0);
820
40358701 821 error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
acf60855
JP
822 if (error) {
823 VLOG_ERR("failed to listen on datapath of type %s: %s",
10a89ef0 824 type, ovs_strerror(error));
fe13ccdc 825 close_dpif_backer(backer, false);
acf60855
JP
826 return error;
827 }
6567010f
EJ
828
829 if (backer->recv_set_enable) {
e79a6c83 830 udpif_set_threads(backer->udpif, n_handlers, n_revalidators);
6567010f 831 }
acf60855 832
b5cbbcf6 833 backer->dp_version_string = dpif_get_dp_version(backer->dpif);
48931b58 834
333ad77d
AZ
835 /* Manage Datapath meter IDs if supported. */
836 struct ofputil_meter_features features;
837 dpif_meter_get_features(backer->dpif, &features);
838 if (features.max_meters) {
839 backer->meter_ids = id_pool_create(0, features.max_meters);
840 } else {
841 backer->meter_ids = NULL;
842 }
843
993cae67
YHW
844 ct_zone_config_init(backer);
845
88186383
AZ
846 /* Make a pristine snapshot of 'support' into 'boottime_support'.
847 * 'boottime_support' can be checked to prevent 'support' to be changed
848 * beyond the datapath capabilities. In case 'support' is changed by
849 * the user, 'boottime_support' can be used to restore it. */
850 backer->bt_support = backer->rt_support;
851
acf60855
JP
852 return error;
853}
854
a36de779
PS
855bool
856ovs_native_tunneling_is_on(struct ofproto_dpif *ofproto)
857{
88186383
AZ
858 return ofproto_use_tnl_push_pop
859 && ofproto->backer->rt_support.tnl_push_pop
860 && atomic_count_get(&ofproto->backer->tnl_count);
a36de779
PS
861}
862
9b2cb971
SH
863/* Tests whether 'backer''s datapath supports recirculation. Only newer
864 * datapaths support OVS_KEY_ATTR_RECIRC_ID in keys. We need to disable some
865 * features on older datapaths that don't support this feature.
adcf00ba
AZ
866 *
867 * Returns false if 'backer' definitely does not support recirculation, true if
868 * it seems to support recirculation or if at least the error we get is
869 * ambiguous. */
870static bool
871check_recirc(struct dpif_backer *backer)
872{
873 struct flow flow;
874 struct odputil_keybuf keybuf;
875 struct ofpbuf key;
2c85851f 876 bool enable_recirc;
5262eea1
JG
877 struct odp_flow_key_parms odp_parms = {
878 .flow = &flow,
2494ccd7
JS
879 .support = {
880 .recirc = true,
881 },
5262eea1 882 };
adcf00ba
AZ
883
884 memset(&flow, 0, sizeof flow);
885 flow.recirc_id = 1;
886 flow.dp_hash = 1;
887
888 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5262eea1 889 odp_flow_key_from_flow(&odp_parms, &key);
2c85851f 890 enable_recirc = dpif_probe_feature(backer->dpif, "recirculation", &key,
bb71c96e 891 NULL, NULL);
adcf00ba 892
adcf00ba
AZ
893 if (enable_recirc) {
894 VLOG_INFO("%s: Datapath supports recirculation",
895 dpif_name(backer->dpif));
896 } else {
897 VLOG_INFO("%s: Datapath does not support recirculation",
898 dpif_name(backer->dpif));
899 }
900
901 return enable_recirc;
902}
903
7915c9d6 904/* Tests whether 'dpif' supports unique flow ids. We can skip serializing
8e1ffd75
JS
905 * some flow attributes for datapaths that support this feature.
906 *
907 * Returns true if 'dpif' supports UFID for flow operations.
908 * Returns false if 'dpif' does not support UFID. */
909static bool
910check_ufid(struct dpif_backer *backer)
911{
912 struct flow flow;
913 struct odputil_keybuf keybuf;
914 struct ofpbuf key;
915 ovs_u128 ufid;
916 bool enable_ufid;
5262eea1
JG
917 struct odp_flow_key_parms odp_parms = {
918 .flow = &flow,
919 };
8e1ffd75
JS
920
921 memset(&flow, 0, sizeof flow);
922 flow.dl_type = htons(0x1234);
923
924 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5262eea1 925 odp_flow_key_from_flow(&odp_parms, &key);
6fd6ed71 926 dpif_flow_hash(backer->dpif, key.data, key.size, &ufid);
8e1ffd75 927
bb71c96e 928 enable_ufid = dpif_probe_feature(backer->dpif, "UFID", &key, NULL, &ufid);
8e1ffd75
JS
929
930 if (enable_ufid) {
7915c9d6 931 VLOG_INFO("%s: Datapath supports unique flow ids",
8e1ffd75
JS
932 dpif_name(backer->dpif));
933 } else {
7915c9d6 934 VLOG_INFO("%s: Datapath does not support unique flow ids",
8e1ffd75
JS
935 dpif_name(backer->dpif));
936 }
937 return enable_ufid;
938}
939
f0fb825a
EG
940/* Tests number of 802.1q VLAN headers supported by 'backer''s datapath.
941 *
942 * Returns the number of elements in a struct flow's vlan
943 * if the datapath supports at least that many VLAN headers. */
944static size_t
945check_max_vlan_headers(struct dpif_backer *backer)
946{
947 struct flow flow;
948 struct odp_flow_key_parms odp_parms = {
949 .flow = &flow,
950 .probe = true,
951 };
952 int n;
953
954 memset(&flow, 0, sizeof flow);
955 flow.dl_type = htons(ETH_TYPE_IP);
956 for (n = 0; n < FLOW_MAX_VLAN_HEADERS; n++) {
957 struct odputil_keybuf keybuf;
958 struct ofpbuf key;
959
960 flow_push_vlan_uninit(&flow, NULL);
961 flow.vlans[0].tpid = htons(ETH_TYPE_VLAN);
962 flow.vlans[0].tci = htons(1) | htons(VLAN_CFI);
963
964 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
965 odp_flow_key_from_flow(&odp_parms, &key);
966 if (!dpif_probe_feature(backer->dpif, "VLAN", &key, NULL, NULL)) {
967 break;
968 }
969 }
970
971 VLOG_INFO("%s: VLAN header stack length probed as %d",
972 dpif_name(backer->dpif), n);
973 return n;
974}
8bfd0fda
BP
975/* Tests the MPLS label stack depth supported by 'backer''s datapath.
976 *
977 * Returns the number of elements in a struct flow's mpls_lse field
978 * if the datapath supports at least that many entries in an
979 * MPLS label stack.
980 * Otherwise returns the number of MPLS push actions supported by
981 * the datapath. */
982static size_t
983check_max_mpls_depth(struct dpif_backer *backer)
984{
985 struct flow flow;
986 int n;
987
988 for (n = 0; n < FLOW_MAX_MPLS_LABELS; n++) {
989 struct odputil_keybuf keybuf;
990 struct ofpbuf key;
5262eea1
JG
991 struct odp_flow_key_parms odp_parms = {
992 .flow = &flow,
993 };
8bfd0fda
BP
994
995 memset(&flow, 0, sizeof flow);
996 flow.dl_type = htons(ETH_TYPE_MPLS);
997 flow_set_mpls_bos(&flow, n, 1);
998
999 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5262eea1 1000 odp_flow_key_from_flow(&odp_parms, &key);
bb71c96e 1001 if (!dpif_probe_feature(backer->dpif, "MPLS", &key, NULL, NULL)) {
8bfd0fda
BP
1002 break;
1003 }
8bfd0fda
BP
1004 }
1005
1006 VLOG_INFO("%s: MPLS label stack length probed as %d",
1007 dpif_name(backer->dpif), n);
1008 return n;
1009}
1010
b52ac659
AZ
1011static void
1012add_sample_actions(struct ofpbuf *actions, int nesting)
1013{
1014 if (nesting == 0) {
1015 nl_msg_put_odp_port(actions, OVS_ACTION_ATTR_OUTPUT, u32_to_odp(1));
1016 return;
1017 }
1018
1019 size_t start, actions_start;
1020
1021 start = nl_msg_start_nested(actions, OVS_ACTION_ATTR_SAMPLE);
1022 actions_start = nl_msg_start_nested(actions, OVS_SAMPLE_ATTR_ACTIONS);
1023 add_sample_actions(actions, nesting - 1);
1024 nl_msg_end_nested(actions, actions_start);
1025 nl_msg_put_u32(actions, OVS_SAMPLE_ATTR_PROBABILITY, UINT32_MAX);
1026 nl_msg_end_nested(actions, start);
1027}
1028
1029/* Tests the nested sample actions levels supported by 'backer''s datapath.
1030 *
1031 * Returns the number of nested sample actions accepted by the datapath. */
1032static size_t
1033check_max_sample_nesting(struct dpif_backer *backer)
1034{
1035 struct odputil_keybuf keybuf;
1036 struct ofpbuf key;
1037 struct flow flow;
1038 int n;
1039
1040 struct odp_flow_key_parms odp_parms = {
1041 .flow = &flow,
1042 };
1043
1044 memset(&flow, 0, sizeof flow);
1045 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1046 odp_flow_key_from_flow(&odp_parms, &key);
1047
1048 /* OVS datapath has always supported at least 3 nested levels. */
1049 for (n = 3; n < FLOW_MAX_SAMPLE_NESTING; n++) {
1050 struct ofpbuf actions;
1051 bool ok;
1052
1053 ofpbuf_init(&actions, 300);
1054 add_sample_actions(&actions, n);
1055 ok = dpif_probe_feature(backer->dpif, "Sample action nesting", &key,
1056 &actions, NULL);
1057 ofpbuf_uninit(&actions);
1058 if (!ok) {
1059 break;
1060 }
1061 }
1062
1063 VLOG_INFO("%s: Max sample nesting level probed as %d",
1064 dpif_name(backer->dpif), n);
1065 return n;
1066}
1067
53477c2c
JR
1068/* Tests whether 'backer''s datapath supports masked data in
1069 * OVS_ACTION_ATTR_SET actions. We need to disable some features on older
1070 * datapaths that don't support this feature. */
1071static bool
1072check_masked_set_action(struct dpif_backer *backer)
1073{
1074 struct eth_header *eth;
1075 struct ofpbuf actions;
1076 struct dpif_execute execute;
cf62fa4c 1077 struct dp_packet packet;
1cceb31b 1078 struct flow flow;
53477c2c
JR
1079 int error;
1080 struct ovs_key_ethernet key, mask;
1081
1082 /* Compose a set action that will cause an EINVAL error on older
1083 * datapaths that don't support masked set actions.
1084 * Avoid using a full mask, as it could be translated to a non-masked
1085 * set action instead. */
1086 ofpbuf_init(&actions, 64);
1087 memset(&key, 0x53, sizeof key);
1088 memset(&mask, 0x7f, sizeof mask);
1089 commit_masked_set_action(&actions, OVS_KEY_ATTR_ETHERNET, &key, &mask,
1090 sizeof key);
1091
1092 /* Compose a dummy ethernet packet. */
cf62fa4c
PS
1093 dp_packet_init(&packet, ETH_HEADER_LEN);
1094 eth = dp_packet_put_zeros(&packet, ETH_HEADER_LEN);
53477c2c
JR
1095 eth->eth_type = htons(0x1234);
1096
1cceb31b
DDP
1097 flow_extract(&packet, &flow);
1098
53477c2c
JR
1099 /* Execute the actions. On older datapaths this fails with EINVAL, on
1100 * newer datapaths it succeeds. */
6fd6ed71
PS
1101 execute.actions = actions.data;
1102 execute.actions_len = actions.size;
53477c2c 1103 execute.packet = &packet;
1cceb31b 1104 execute.flow = &flow;
53477c2c 1105 execute.needs_help = false;
43f9ac0a 1106 execute.probe = true;
27130224 1107 execute.mtu = 0;
53477c2c
JR
1108
1109 error = dpif_execute(backer->dpif, &execute);
1110
cf62fa4c 1111 dp_packet_uninit(&packet);
53477c2c
JR
1112 ofpbuf_uninit(&actions);
1113
1114 if (error) {
1115 /* Masked set action is not supported. */
1116 VLOG_INFO("%s: datapath does not support masked set action feature.",
1117 dpif_name(backer->dpif));
1118 }
1119 return !error;
1120}
1121
aaca4fe0
WT
1122/* Tests whether 'backer''s datapath supports truncation of a packet in
1123 * OVS_ACTION_ATTR_TRUNC. We need to disable some features on older
1124 * datapaths that don't support this feature. */
1125static bool
1126check_trunc_action(struct dpif_backer *backer)
1127{
1128 struct eth_header *eth;
1129 struct ofpbuf actions;
1130 struct dpif_execute execute;
1131 struct dp_packet packet;
1132 struct ovs_action_trunc *trunc;
1133 struct flow flow;
1134 int error;
1135
1136 /* Compose an action with output(port:1,
1137 * max_len:OVS_ACTION_OUTPUT_MIN + 1).
1138 * This translates to one truncate action and one output action. */
1139 ofpbuf_init(&actions, 64);
1140 trunc = nl_msg_put_unspec_uninit(&actions,
1141 OVS_ACTION_ATTR_TRUNC, sizeof *trunc);
1142
1143 trunc->max_len = ETH_HEADER_LEN + 1;
1144 nl_msg_put_odp_port(&actions, OVS_ACTION_ATTR_OUTPUT, u32_to_odp(1));
1145
1146 /* Compose a dummy Ethernet packet. */
1147 dp_packet_init(&packet, ETH_HEADER_LEN);
1148 eth = dp_packet_put_zeros(&packet, ETH_HEADER_LEN);
1149 eth->eth_type = htons(0x1234);
1150
1151 flow_extract(&packet, &flow);
1152
1153 /* Execute the actions. On older datapaths this fails with EINVAL, on
1154 * newer datapaths it succeeds. */
1155 execute.actions = actions.data;
1156 execute.actions_len = actions.size;
1157 execute.packet = &packet;
1158 execute.flow = &flow;
1159 execute.needs_help = false;
1160 execute.probe = true;
1161 execute.mtu = 0;
1162
1163 error = dpif_execute(backer->dpif, &execute);
1164
1165 dp_packet_uninit(&packet);
1166 ofpbuf_uninit(&actions);
1167
1168 if (error) {
1169 VLOG_INFO("%s: Datapath does not support truncate action",
1170 dpif_name(backer->dpif));
1171 } else {
1172 VLOG_INFO("%s: Datapath supports truncate action",
1173 dpif_name(backer->dpif));
1174 }
1175
1176 return !error;
1177}
1178
535e3acf
AZ
1179/* Tests whether 'backer''s datapath supports the clone action
1180 * OVS_ACTION_ATTR_CLONE. */
1181static bool
1182check_clone(struct dpif_backer *backer)
1183{
1184 struct dpif_execute execute;
1185 struct eth_header *eth;
1186 struct flow flow;
1187 struct dp_packet packet;
1188 struct ofpbuf actions;
1189 size_t clone_start;
1190 int error;
1191
1192 /* Compose clone with an empty action list.
1193 * and check if datapath can decode the message. */
1194 ofpbuf_init(&actions, 64);
1195 clone_start = nl_msg_start_nested(&actions, OVS_ACTION_ATTR_CLONE);
1196 nl_msg_end_nested(&actions, clone_start);
1197
1198 /* Compose a dummy Ethernet packet. */
1199 dp_packet_init(&packet, ETH_HEADER_LEN);
1200 eth = dp_packet_put_zeros(&packet, ETH_HEADER_LEN);
1201 eth->eth_type = htons(0x1234);
1202
1203 flow_extract(&packet, &flow);
1204
1205 /* Execute the actions. On older datapaths this fails with EINVAL, on
1206 * newer datapaths it succeeds. */
1207 execute.actions = actions.data;
1208 execute.actions_len = actions.size;
1209 execute.packet = &packet;
1210 execute.flow = &flow;
1211 execute.needs_help = false;
1212 execute.probe = true;
1213 execute.mtu = 0;
1214
1215 error = dpif_execute(backer->dpif, &execute);
1216
1217 dp_packet_uninit(&packet);
1218 ofpbuf_uninit(&actions);
1219
1220 if (error) {
1221 VLOG_INFO("%s: Datapath does not support clone action",
1222 dpif_name(backer->dpif));
1223 } else {
1224 VLOG_INFO("%s: Datapath supports clone action",
1225 dpif_name(backer->dpif));
1226 }
1227
1228 return !error;
1229}
1230
adfe7a0b
JR
1231/* Tests whether 'backer''s datapath supports the OVS_CT_ATTR_EVENTMASK
1232 * attribute in OVS_ACTION_ATTR_CT. */
1233static bool
1234check_ct_eventmask(struct dpif_backer *backer)
1235{
1236 struct dpif_execute execute;
1237 struct dp_packet packet;
1238 struct ofpbuf actions;
1239 struct flow flow = {
1240 .dl_type = CONSTANT_HTONS(ETH_TYPE_IP),
1241 .nw_proto = IPPROTO_UDP,
1242 .nw_ttl = 64,
1243 /* Use the broadcast address on the loopback address range 127/8 to
1244 * avoid hitting any real conntrack entries. We leave the UDP ports to
1245 * zeroes for the same purpose. */
1246 .nw_src = CONSTANT_HTONL(0x7fffffff),
1247 .nw_dst = CONSTANT_HTONL(0x7fffffff),
1248 };
1249 size_t ct_start;
1250 int error;
1251
1252 /* Compose CT action with eventmask attribute and check if datapath can
1253 * decode the message. */
1254 ofpbuf_init(&actions, 64);
1255 ct_start = nl_msg_start_nested(&actions, OVS_ACTION_ATTR_CT);
1256 /* Eventmask has no effect without the commit flag, but currently the
1257 * datapath will accept an eventmask even without commit. This is useful
1258 * as we do not want to persist the probe connection in the conntrack
1259 * table. */
1260 nl_msg_put_u32(&actions, OVS_CT_ATTR_EVENTMASK, ~0);
1261 nl_msg_end_nested(&actions, ct_start);
1262
1263 /* Compose a dummy UDP packet. */
1264 dp_packet_init(&packet, 0);
6f068379 1265 flow_compose(&packet, &flow, NULL, 64);
adfe7a0b
JR
1266
1267 /* Execute the actions. On older datapaths this fails with EINVAL, on
1268 * newer datapaths it succeeds. */
1269 execute.actions = actions.data;
1270 execute.actions_len = actions.size;
1271 execute.packet = &packet;
1272 execute.flow = &flow;
1273 execute.needs_help = false;
1274 execute.probe = true;
1275 execute.mtu = 0;
1276
1277 error = dpif_execute(backer->dpif, &execute);
1278
1279 dp_packet_uninit(&packet);
1280 ofpbuf_uninit(&actions);
1281
1282 if (error) {
1283 VLOG_INFO("%s: Datapath does not support eventmask in conntrack action",
1284 dpif_name(backer->dpif));
1285 } else {
1286 VLOG_INFO("%s: Datapath supports eventmask in conntrack action",
1287 dpif_name(backer->dpif));
1288 }
1289
1290 return !error;
1291}
1292
1fe178d2
EG
1293/* Tests whether 'backer''s datapath supports the OVS_ACTION_ATTR_CT_CLEAR
1294 * action. */
1295static bool
1296check_ct_clear(struct dpif_backer *backer)
1297{
1298 struct odputil_keybuf keybuf;
1299 uint8_t actbuf[NL_A_FLAG_SIZE];
1300 struct ofpbuf actions;
1301 struct ofpbuf key;
1302 struct flow flow;
1303 bool supported;
1304
1305 struct odp_flow_key_parms odp_parms = {
1306 .flow = &flow,
1307 .probe = true,
1308 };
1309
1310 memset(&flow, 0, sizeof flow);
1311 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1312 odp_flow_key_from_flow(&odp_parms, &key);
1313
1314 ofpbuf_use_stack(&actions, &actbuf, sizeof actbuf);
1315 nl_msg_put_flag(&actions, OVS_ACTION_ATTR_CT_CLEAR);
1316
1317 supported = dpif_probe_feature(backer->dpif, "ct_clear", &key,
1318 &actions, NULL);
1319
1320 VLOG_INFO("%s: Datapath %s ct_clear action",
1321 dpif_name(backer->dpif), (supported) ? "supports"
1322 : "does not support");
1323 return supported;
1324}
1325
187bb41f
YHW
1326/* Tests whether 'backer''s datapath supports the OVS_CT_ATTR_TIMEOUT
1327 * attribute in OVS_ACTION_ATTR_CT. */
1328static bool
1329check_ct_timeout_policy(struct dpif_backer *backer)
1330{
1331 struct dpif_execute execute;
1332 struct dp_packet packet;
1333 struct ofpbuf actions;
1334 struct flow flow = {
1335 .dl_type = CONSTANT_HTONS(ETH_TYPE_IP),
1336 .nw_proto = IPPROTO_UDP,
1337 .nw_ttl = 64,
1338 /* Use the broadcast address on the loopback address range 127/8 to
1339 * avoid hitting any real conntrack entries. We leave the UDP ports to
1340 * zeroes for the same purpose. */
1341 .nw_src = CONSTANT_HTONL(0x7fffffff),
1342 .nw_dst = CONSTANT_HTONL(0x7fffffff),
1343 };
1344 size_t ct_start;
1345 int error;
1346
1347 /* Compose CT action with timeout policy attribute and check if datapath
1348 * can decode the message. */
1349 ofpbuf_init(&actions, 64);
1350 ct_start = nl_msg_start_nested(&actions, OVS_ACTION_ATTR_CT);
1351 /* Timeout policy has no effect without the commit flag, but currently the
1352 * datapath will accept a timeout policy even without commit. This is
1353 * useful as we do not want to persist the probe connection in the
1354 * conntrack table. */
1355 nl_msg_put_string(&actions, OVS_CT_ATTR_TIMEOUT, "ovs_test_tp");
1356 nl_msg_end_nested(&actions, ct_start);
1357
1358 /* Compose a dummy UDP packet. */
1359 dp_packet_init(&packet, 0);
1360 flow_compose(&packet, &flow, NULL, 64);
1361
1362 /* Execute the actions. On older datapaths this fails with EINVAL, on
1363 * newer datapaths it succeeds. */
1364 execute.actions = actions.data;
1365 execute.actions_len = actions.size;
1366 execute.packet = &packet;
1367 execute.flow = &flow;
1368 execute.needs_help = false;
1369 execute.probe = true;
1370 execute.mtu = 0;
1371
1372 error = dpif_execute(backer->dpif, &execute);
1373
1374 dp_packet_uninit(&packet);
1375 ofpbuf_uninit(&actions);
1376
1377 if (error) {
1378 VLOG_INFO("%s: Datapath does not support timeout policy in conntrack "
1379 "action", dpif_name(backer->dpif));
1380 } else {
1381 VLOG_INFO("%s: Datapath supports timeout policy in conntrack action",
1382 dpif_name(backer->dpif));
1383 }
1384
1385 return !error;
1386}
5b34f8fc
NS
1387
1388/* Tests whether 'backer''s datapath supports the
1389 * OVS_ACTION_ATTR_CHECK_PKT_LEN action. */
1390static bool
1391check_check_pkt_len(struct dpif_backer *backer)
1392{
1393 struct odputil_keybuf keybuf;
1394 struct ofpbuf actions;
1395 struct ofpbuf key;
1396 struct flow flow;
1397 bool supported;
1398
1399 struct odp_flow_key_parms odp_parms = {
1400 .flow = &flow,
1401 .probe = true,
1402 };
1403
1404 memset(&flow, 0, sizeof flow);
1405 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1406 odp_flow_key_from_flow(&odp_parms, &key);
1407 ofpbuf_init(&actions, 64);
1408 size_t cpl_start;
1409
1410 cpl_start = nl_msg_start_nested(&actions, OVS_ACTION_ATTR_CHECK_PKT_LEN);
1411 nl_msg_put_u16(&actions, OVS_CHECK_PKT_LEN_ATTR_PKT_LEN, 100);
1412
1413 /* Putting these actions without any data is good enough to check
1414 * if check_pkt_len is supported or not. */
1415 nl_msg_put_flag(&actions, OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_GREATER);
1416 nl_msg_put_flag(&actions, OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_LESS_EQUAL);
1417
1418 nl_msg_end_nested(&actions, cpl_start);
1419
1420 supported = dpif_probe_feature(backer->dpif, "check_pkt_len", &key,
1421 &actions, NULL);
1422 ofpbuf_uninit(&actions);
1423 VLOG_INFO("%s: Datapath %s check_pkt_len action",
1424 dpif_name(backer->dpif), supported ? "supports"
1425 : "does not support");
1426 return supported;
1427}
1428
6a0b0d3b
JS
1429/* Probe the highest dp_hash algorithm supported by the datapath. */
1430static size_t
1431check_max_dp_hash_alg(struct dpif_backer *backer)
1432{
1433 struct odputil_keybuf keybuf;
1434 struct ofpbuf key;
1435 struct flow flow;
1436 struct ovs_action_hash *hash;
1437 int max_alg = 0;
1438
1439 struct odp_flow_key_parms odp_parms = {
1440 .flow = &flow,
1441 .probe = true,
1442 };
1443
1444 memset(&flow, 0, sizeof flow);
1445 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1446 odp_flow_key_from_flow(&odp_parms, &key);
1447
1448 /* All datapaths support algortithm 0 (OVS_HASH_ALG_L4). */
1449 for (int alg = 1; alg < __OVS_HASH_MAX; alg++) {
1450 struct ofpbuf actions;
1451 bool ok;
1452
1453 ofpbuf_init(&actions, 300);
1454 hash = nl_msg_put_unspec_uninit(&actions,
1455 OVS_ACTION_ATTR_HASH, sizeof *hash);
1456 hash->hash_basis = 0;
1457 hash->hash_alg = alg;
1458 ok = dpif_probe_feature(backer->dpif, "Max dp_hash algorithm", &key,
1459 &actions, NULL);
1460 ofpbuf_uninit(&actions);
1461 if (ok) {
1462 max_alg = alg;
1463 } else {
1464 break;
1465 }
1466 }
1467
1468 VLOG_INFO("%s: Max dp_hash algorithm probed to be %d",
1469 dpif_name(backer->dpif), max_alg);
1470 return max_alg;
1471}
1472
d77b0d5f 1473#define CHECK_FEATURE__(NAME, SUPPORT, FIELD, VALUE, ETHTYPE) \
07659514
JS
1474static bool \
1475check_##NAME(struct dpif_backer *backer) \
1476{ \
1477 struct flow flow; \
1478 struct odputil_keybuf keybuf; \
1479 struct ofpbuf key; \
1480 bool enable; \
1481 struct odp_flow_key_parms odp_parms = { \
1482 .flow = &flow, \
1483 .support = { \
7b27258c 1484 .SUPPORT = true, \
07659514
JS
1485 }, \
1486 }; \
1487 \
1488 memset(&flow, 0, sizeof flow); \
7b27258c 1489 flow.FIELD = VALUE; \
d77b0d5f 1490 flow.dl_type = htons(ETHTYPE); \
07659514
JS
1491 \
1492 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf); \
1493 odp_flow_key_from_flow(&odp_parms, &key); \
bb71c96e 1494 enable = dpif_probe_feature(backer->dpif, #NAME, &key, NULL, NULL); \
07659514
JS
1495 \
1496 if (enable) { \
1497 VLOG_INFO("%s: Datapath supports "#NAME, dpif_name(backer->dpif)); \
1498 } else { \
1499 VLOG_INFO("%s: Datapath does not support "#NAME, \
1500 dpif_name(backer->dpif)); \
1501 } \
1502 \
1503 return enable; \
1504}
d77b0d5f
SV
1505#define CHECK_FEATURE(FIELD) CHECK_FEATURE__(FIELD, FIELD, FIELD, 1, \
1506 ETH_TYPE_IP)
07659514
JS
1507
1508CHECK_FEATURE(ct_state)
1509CHECK_FEATURE(ct_zone)
8e53fe8c 1510CHECK_FEATURE(ct_mark)
d77b0d5f
SV
1511CHECK_FEATURE__(ct_label, ct_label, ct_label.u64.lo, 1, ETH_TYPE_IP)
1512CHECK_FEATURE__(ct_state_nat, ct_state, ct_state, \
1513 CS_TRACKED|CS_SRC_NAT, ETH_TYPE_IP)
1514CHECK_FEATURE__(ct_orig_tuple, ct_orig_tuple, ct_nw_proto, 1, ETH_TYPE_IP)
7b5bbe5d 1515CHECK_FEATURE__(ct_orig_tuple6, ct_orig_tuple6, ct_nw_proto, 1, ETH_TYPE_IPV6)
07659514
JS
1516
1517#undef CHECK_FEATURE
1518#undef CHECK_FEATURE__
1519
b440dd8c
JS
1520static void
1521check_support(struct dpif_backer *backer)
1522{
535e3acf 1523 /* Actions. */
88186383
AZ
1524 backer->rt_support.odp.recirc = check_recirc(backer);
1525 backer->rt_support.odp.max_vlan_headers = check_max_vlan_headers(backer);
1526 backer->rt_support.odp.max_mpls_depth = check_max_mpls_depth(backer);
1527 backer->rt_support.masked_set_action = check_masked_set_action(backer);
1528 backer->rt_support.trunc = check_trunc_action(backer);
1529 backer->rt_support.ufid = check_ufid(backer);
1530 backer->rt_support.tnl_push_pop = dpif_supports_tnl_push_pop(backer->dpif);
1531 backer->rt_support.clone = check_clone(backer);
1532 backer->rt_support.sample_nesting = check_max_sample_nesting(backer);
1533 backer->rt_support.ct_eventmask = check_ct_eventmask(backer);
1fe178d2 1534 backer->rt_support.ct_clear = check_ct_clear(backer);
6a0b0d3b 1535 backer->rt_support.max_hash_alg = check_max_dp_hash_alg(backer);
5b34f8fc 1536 backer->rt_support.check_pkt_len = check_check_pkt_len(backer);
187bb41f 1537 backer->rt_support.ct_timeout = check_ct_timeout_policy(backer);
07659514 1538
535e3acf 1539 /* Flow fields. */
88186383
AZ
1540 backer->rt_support.odp.ct_state = check_ct_state(backer);
1541 backer->rt_support.odp.ct_zone = check_ct_zone(backer);
1542 backer->rt_support.odp.ct_mark = check_ct_mark(backer);
1543 backer->rt_support.odp.ct_label = check_ct_label(backer);
7b27258c 1544
88186383
AZ
1545 backer->rt_support.odp.ct_state_nat = check_ct_state_nat(backer);
1546 backer->rt_support.odp.ct_orig_tuple = check_ct_orig_tuple(backer);
1547 backer->rt_support.odp.ct_orig_tuple6 = check_ct_orig_tuple6(backer);
b440dd8c
JS
1548}
1549
abe529af 1550static int
0f5f95a9 1551construct(struct ofproto *ofproto_)
abe529af
BP
1552{
1553 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 1554 struct shash_node *node, *next;
abe529af 1555 int error;
abe529af 1556
4d9226a7
JR
1557 /* Tunnel module can get used right after the udpif threads are running. */
1558 ofproto_tunnel_init();
1559
acf60855 1560 error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
abe529af 1561 if (error) {
abe529af
BP
1562 return error;
1563 }
1564
290835f9 1565 uuid_generate(&ofproto->uuid);
44e0c35d 1566 atomic_init(&ofproto->tables_version, OVS_VERSION_MIN);
abe529af
BP
1567 ofproto->netflow = NULL;
1568 ofproto->sflow = NULL;
29089a54 1569 ofproto->ipfix = NULL;
21f7563c 1570 ofproto->stp = NULL;
9efd308e 1571 ofproto->rstp = NULL;
e79a6c83 1572 ofproto->dump_seq = 0;
abe529af 1573 hmap_init(&ofproto->bundles);
e764773c 1574 ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
6d95c4e8 1575 ofproto->ms = NULL;
ec7ceaed 1576 ofproto->mbridge = mbridge_create();
abe529af 1577 ofproto->has_bonded_bundles = false;
e2d13c43 1578 ofproto->lacp_enabled = false;
97ba2d36 1579 ovs_mutex_init_adaptive(&ofproto->stats_mutex);
abe529af 1580
a2b53dec 1581 guarded_list_init(&ofproto->ams);
ada3a58d 1582
acf60855 1583 sset_init(&ofproto->ports);
0a740f48 1584 sset_init(&ofproto->ghost_ports);
acf60855
JP
1585 sset_init(&ofproto->port_poll_set);
1586 ofproto->port_poll_errno = 0;
f23d157c 1587 ofproto->change_seq = 0;
a2b53dec
BP
1588 ofproto->ams_seq = seq_create();
1589 ofproto->ams_seqno = seq_read(ofproto->ams_seq);
cfc50ae5 1590
acf60855
JP
1591
1592 SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
4f9e08a5 1593 struct iface_hint *iface_hint = node->data;
acf60855
JP
1594
1595 if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1596 /* Check if the datapath already has this port. */
1597 if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1598 sset_add(&ofproto->ports, node->name);
1599 }
1600
1601 free(iface_hint->br_name);
1602 free(iface_hint->br_type);
4f9e08a5 1603 free(iface_hint);
acf60855
JP
1604 shash_delete(&init_ofp_ports, node);
1605 }
1606 }
e1b1d06a 1607
911b4a7e
JP
1608 hmap_insert(&all_ofproto_dpifs_by_name,
1609 &ofproto->all_ofproto_dpifs_by_name_node,
b44a10b7 1610 hash_string(ofproto->up.name, 0));
911b4a7e
JP
1611 hmap_insert(&all_ofproto_dpifs_by_uuid,
1612 &ofproto->all_ofproto_dpifs_by_uuid_node,
1613 uuid_hash(&ofproto->uuid));
6527c598 1614 memset(&ofproto->stats, 0, sizeof ofproto->stats);
0f5f95a9
BP
1615
1616 ofproto_init_tables(ofproto_, N_TABLES);
c57b2226 1617 error = add_internal_flows(ofproto);
adcf00ba 1618
c57b2226
BP
1619 ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1620
1621 return error;
1622}
1623
1624static int
adcf00ba 1625add_internal_miss_flow(struct ofproto_dpif *ofproto, int id,
f25d0cf3 1626 const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
c57b2226 1627{
adcf00ba 1628 struct match match;
c57b2226 1629 int error;
adcf00ba 1630 struct rule *rule;
c57b2226 1631
adcf00ba
AZ
1632 match_init_catchall(&match);
1633 match_set_reg(&match, 0, id);
c57b2226 1634
290ad78a
SH
1635 error = ofproto_dpif_add_internal_flow(ofproto, &match, 0, 0, ofpacts,
1636 &rule);
adcf00ba 1637 *rulep = error ? NULL : rule_dpif_cast(rule);
0f5f95a9 1638
adcf00ba 1639 return error;
abe529af
BP
1640}
1641
c57b2226
BP
1642static int
1643add_internal_flows(struct ofproto_dpif *ofproto)
1644{
f25d0cf3
BP
1645 struct ofpact_controller *controller;
1646 uint64_t ofpacts_stub[128 / 8];
1647 struct ofpbuf ofpacts;
adcf00ba 1648 struct rule *unused_rulep OVS_UNUSED;
adcf00ba 1649 struct match match;
c57b2226
BP
1650 int error;
1651 int id;
1652
f25d0cf3 1653 ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
c57b2226
BP
1654 id = 1;
1655
f25d0cf3
BP
1656 controller = ofpact_put_CONTROLLER(&ofpacts);
1657 controller->max_len = UINT16_MAX;
1658 controller->controller_id = 0;
9bfe9334 1659 controller->reason = OFPR_IMPLICIT_MISS;
206ddb9a 1660 controller->meter_id = NX_CTLR_NO_METER;
ce058104 1661 ofpact_finish_CONTROLLER(&ofpacts, &controller);
f25d0cf3 1662
adcf00ba
AZ
1663 error = add_internal_miss_flow(ofproto, id++, &ofpacts,
1664 &ofproto->miss_rule);
c57b2226
BP
1665 if (error) {
1666 return error;
1667 }
1668
f25d0cf3 1669 ofpbuf_clear(&ofpacts);
adcf00ba 1670 error = add_internal_miss_flow(ofproto, id++, &ofpacts,
dbb7c28f 1671 &ofproto->no_packet_in_rule);
7fd51d39
BP
1672 if (error) {
1673 return error;
1674 }
1675
adcf00ba 1676 error = add_internal_miss_flow(ofproto, id++, &ofpacts,
dbb7c28f 1677 &ofproto->drop_frags_rule);
adcf00ba
AZ
1678 if (error) {
1679 return error;
1680 }
1681
0c7812e5
AW
1682 /* Drop any run away non-recirc rule lookups. Recirc_id has to be
1683 * zero when reaching this rule.
adcf00ba 1684 *
0c7812e5 1685 * (priority=2), recirc_id=0, actions=drop
adcf00ba 1686 */
0c7812e5 1687 ofpbuf_clear(&ofpacts);
adcf00ba
AZ
1688 match_init_catchall(&match);
1689 match_set_recirc_id(&match, 0);
290ad78a 1690 error = ofproto_dpif_add_internal_flow(ofproto, &match, 2, 0, &ofpacts,
adcf00ba 1691 &unused_rulep);
c57b2226
BP
1692 return error;
1693}
1694
abe529af 1695static void
fe13ccdc 1696destruct(struct ofproto *ofproto_, bool del)
abe529af
BP
1697{
1698 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
a2b53dec 1699 struct ofproto_async_msg *am;
78c8df12 1700 struct rule_dpif *rule;
d0918789 1701 struct oftable *table;
a2b53dec 1702 struct ovs_list ams;
abe529af 1703
875b94ed 1704 ofproto->backer->need_revalidate = REV_RECONFIGURE;
84f0f298 1705 xlate_txn_start();
46c88433 1706 xlate_remove_ofproto(ofproto);
84f0f298 1707 xlate_txn_commit();
46c88433 1708
3f142f59
BP
1709 /* Ensure that the upcall processing threads have no remaining references
1710 * to the ofproto or anything in it. */
1711 udpif_synchronize(ofproto->backer->udpif);
1fe409d5 1712
911b4a7e
JP
1713 hmap_remove(&all_ofproto_dpifs_by_name,
1714 &ofproto->all_ofproto_dpifs_by_name_node);
1715 hmap_remove(&all_ofproto_dpifs_by_uuid,
1716 &ofproto->all_ofproto_dpifs_by_uuid_node);
7ee20df1 1717
0697b5c3 1718 OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
de4ad4a2 1719 CLS_FOR_EACH (rule, up.cr, &table->cls) {
8b81d1ef 1720 ofproto_rule_delete(&ofproto->up, &rule->up);
0697b5c3 1721 }
7ee20df1 1722 }
daab0ae6 1723 ofproto_group_delete_all(&ofproto->up);
7ee20df1 1724
a2b53dec
BP
1725 guarded_list_pop_all(&ofproto->ams, &ams);
1726 LIST_FOR_EACH_POP (am, list_node, &ams) {
1727 ofproto_async_msg_free(am);
ada3a58d 1728 }
a2b53dec 1729 guarded_list_destroy(&ofproto->ams);
ada3a58d 1730
e672ff9b 1731 recirc_free_ofproto(ofproto, ofproto->up.name);
f9038ef6 1732
ec7ceaed 1733 mbridge_unref(ofproto->mbridge);
abe529af 1734
8e407f27 1735 netflow_unref(ofproto->netflow);
9723bcce 1736 dpif_sflow_unref(ofproto->sflow);
8b7ea2d4 1737 dpif_ipfix_unref(ofproto->ipfix);
abe529af 1738 hmap_destroy(&ofproto->bundles);
5d989517 1739 mac_learning_unref(ofproto->ml);
6d95c4e8 1740 mcast_snooping_unref(ofproto->ms);
7b91e3c8 1741 stp_unref(ofproto->stp);
1742 rstp_unref(ofproto->rstp);
abe529af 1743
acf60855 1744 sset_destroy(&ofproto->ports);
0a740f48 1745 sset_destroy(&ofproto->ghost_ports);
acf60855 1746 sset_destroy(&ofproto->port_poll_set);
e1b1d06a 1747
0da3c61b 1748 ovs_mutex_destroy(&ofproto->stats_mutex);
13501305 1749
a2b53dec 1750 seq_destroy(ofproto->ams_seq);
cfc50ae5 1751
fe13ccdc 1752 close_dpif_backer(ofproto->backer, del);
abe529af
BP
1753}
1754
5fcc0d00
BP
1755static int
1756run(struct ofproto *ofproto_)
1757{
1758 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
e79a6c83 1759 uint64_t new_seq, new_dump_seq;
5fcc0d00 1760
ec7ceaed
EJ
1761 if (mbridge_need_revalidate(ofproto->mbridge)) {
1762 ofproto->backer->need_revalidate = REV_RECONFIGURE;
509c0149 1763 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 1764 mac_learning_flush(ofproto->ml);
509c0149 1765 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 1766 mcast_snooping_mdb_flush(ofproto->ms);
ec7ceaed
EJ
1767 }
1768
a2b53dec 1769 /* Always updates the ofproto->ams_seqno to avoid frequent wakeup during
b53d5c33 1770 * flow restore. Even though nothing is processed during flow restore,
a2b53dec 1771 * all queued 'ams' will be handled immediately when flow restore
b53d5c33 1772 * completes. */
a2b53dec 1773 ofproto->ams_seqno = seq_read(ofproto->ams_seq);
b53d5c33 1774
a6b7506d 1775 /* Do not perform any periodic activity required by 'ofproto' while
40358701 1776 * waiting for flow restore to complete. */
a6b7506d 1777 if (!ofproto_get_flow_restore_wait()) {
a2b53dec
BP
1778 struct ofproto_async_msg *am;
1779 struct ovs_list ams;
1780
1781 guarded_list_pop_all(&ofproto->ams, &ams);
1782 LIST_FOR_EACH_POP (am, list_node, &ams) {
1783 connmgr_send_async_msg(ofproto->up.connmgr, am);
1784 ofproto_async_msg_free(am);
a6b7506d 1785 }
abe529af
BP
1786 }
1787
abe529af 1788 if (ofproto->netflow) {
8bfaca5b 1789 netflow_run(ofproto->netflow);
abe529af
BP
1790 }
1791 if (ofproto->sflow) {
bae473fe 1792 dpif_sflow_run(ofproto->sflow);
abe529af 1793 }
978427a5
RL
1794 if (ofproto->ipfix) {
1795 dpif_ipfix_run(ofproto->ipfix);
1796 }
abe529af 1797
f23d157c
JS
1798 new_seq = seq_read(connectivity_seq_get());
1799 if (ofproto->change_seq != new_seq) {
1800 struct ofport_dpif *ofport;
1801
1802 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1803 port_run(ofport);
1804 }
1805
1806 ofproto->change_seq = new_seq;
abe529af 1807 }
e2d13c43
JS
1808 if (ofproto->lacp_enabled || ofproto->has_bonded_bundles) {
1809 struct ofbundle *bundle;
1810
1811 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1812 bundle_run(bundle);
1813 }
abe529af
BP
1814 }
1815
21f7563c 1816 stp_run(ofproto);
9efd308e 1817 rstp_run(ofproto);
509c0149 1818 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594
EJ
1819 if (mac_learning_run(ofproto->ml)) {
1820 ofproto->backer->need_revalidate = REV_MAC_LEARNING;
1821 }
509c0149 1822 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af 1823
6d95c4e8
FL
1824 if (mcast_snooping_run(ofproto->ms)) {
1825 ofproto->backer->need_revalidate = REV_MCAST_SNOOPING;
1826 }
1827
e79a6c83
EJ
1828 new_dump_seq = seq_read(udpif_dump_seq(ofproto->backer->udpif));
1829 if (ofproto->dump_seq != new_dump_seq) {
1830 struct rule *rule, *next_rule;
f5857865 1831 long long now = time_msec();
e79a6c83
EJ
1832
1833 /* We know stats are relatively fresh, so now is a good time to do some
1834 * periodic work. */
1835 ofproto->dump_seq = new_dump_seq;
1836
1837 /* Expire OpenFlow flows whose idle_timeout or hard_timeout
1838 * has passed. */
1839 ovs_mutex_lock(&ofproto_mutex);
1840 LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
1841 &ofproto->up.expirable) {
f5857865 1842 rule_expire(rule_dpif_cast(rule), now);
e79a6c83
EJ
1843 }
1844 ovs_mutex_unlock(&ofproto_mutex);
1845
1846 /* All outstanding data in existing flows has been accounted, so it's a
1847 * good time to do bond rebalancing. */
60cda7d6 1848 if (ofproto->has_bonded_bundles) {
e79a6c83
EJ
1849 struct ofbundle *bundle;
1850
1851 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
60cda7d6
AZ
1852 if (bundle->bond) {
1853 bond_rebalance(bundle->bond);
e79a6c83
EJ
1854 }
1855 }
6814e51f
BP
1856 }
1857 }
abe529af
BP
1858 return 0;
1859}
1860
1861static void
f07c97f5 1862ofproto_dpif_wait(struct ofproto *ofproto_)
abe529af
BP
1863{
1864 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
abe529af 1865
40358701
GS
1866 if (ofproto_get_flow_restore_wait()) {
1867 return;
1868 }
1869
abe529af 1870 if (ofproto->sflow) {
bae473fe 1871 dpif_sflow_wait(ofproto->sflow);
abe529af 1872 }
978427a5
RL
1873 if (ofproto->ipfix) {
1874 dpif_ipfix_wait(ofproto->ipfix);
1875 }
e2d13c43
JS
1876 if (ofproto->lacp_enabled || ofproto->has_bonded_bundles) {
1877 struct ofbundle *bundle;
1878
1879 HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1880 bundle_wait(bundle);
1881 }
abe529af 1882 }
6fca1ffb
BP
1883 if (ofproto->netflow) {
1884 netflow_wait(ofproto->netflow);
1885 }
509c0149 1886 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
1c313b88 1887 mac_learning_wait(ofproto->ml);
509c0149 1888 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 1889 mcast_snooping_wait(ofproto->ms);
21f7563c 1890 stp_wait(ofproto);
2cc3c58e 1891 if (ofproto->backer->need_revalidate) {
abe529af 1892 poll_immediate_wake();
abe529af 1893 }
abe529af 1894
e79a6c83 1895 seq_wait(udpif_dump_seq(ofproto->backer->udpif), ofproto->dump_seq);
a2b53dec 1896 seq_wait(ofproto->ams_seq, ofproto->ams_seqno);
0d085684
BP
1897}
1898
1c030aa5
EJ
1899static void
1900type_get_memory_usage(const char *type, struct simap *usage)
1901{
1902 struct dpif_backer *backer;
1903
1904 backer = shash_find_data(&all_dpif_backers, type);
1905 if (backer) {
1906 udpif_get_memory_usage(backer->udpif, usage);
1907 }
1908}
1909
abe529af 1910static void
1b5b5071 1911flush(struct ofproto *ofproto_)
abe529af 1912{
1b5b5071
AZ
1913 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1914 struct dpif_backer *backer = ofproto->backer;
1915
1916 if (backer) {
1917 udpif_flush(backer->udpif);
1918 }
abe529af
BP
1919}
1920
6c1491fb 1921static void
3c1bb396 1922query_tables(struct ofproto *ofproto,
4bc938cc 1923 struct ofputil_table_features *features OVS_UNUSED,
3c1bb396 1924 struct ofputil_table_stats *stats)
6c1491fb 1925{
3c1bb396
BP
1926 if (stats) {
1927 int i;
6c1491fb 1928
3c1bb396
BP
1929 for (i = 0; i < ofproto->n_tables; i++) {
1930 unsigned long missed, matched;
d611866c 1931
afcea9ea
JR
1932 atomic_read_relaxed(&ofproto->tables[i].n_matched, &matched);
1933 atomic_read_relaxed(&ofproto->tables[i].n_missed, &missed);
1934
3c1bb396 1935 stats[i].matched_count = matched;
3c1bb396
BP
1936 stats[i].lookup_count = matched + missed;
1937 }
d611866c 1938 }
6c1491fb
BP
1939}
1940
621b8064 1941static void
44e0c35d 1942set_tables_version(struct ofproto *ofproto_, ovs_version_t version)
621b8064
JR
1943{
1944 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1945
f9cf9e57
JR
1946 /* Use memory_order_release to signify that any prior memory accesses can
1947 * not be reordered to happen after this atomic store. This makes sure the
1948 * new version is properly set up when the readers can read this 'version'
1949 * value. */
1950 atomic_store_explicit(&ofproto->tables_version, version,
1951 memory_order_release);
1952 /* 'need_revalidate' can be reordered to happen before the atomic_store
1953 * above, but it does not matter as this variable is not accessed by other
1954 * threads. */
1fc71871 1955 ofproto->backer->need_revalidate = REV_FLOW_TABLE;
621b8064
JR
1956}
1957
abe529af
BP
1958static struct ofport *
1959port_alloc(void)
1960{
3da29e32 1961 struct ofport_dpif *port = xzalloc(sizeof *port);
abe529af
BP
1962 return &port->up;
1963}
1964
1965static void
1966port_dealloc(struct ofport *port_)
1967{
1968 struct ofport_dpif *port = ofport_dpif_cast(port_);
1969 free(port);
1970}
1971
1972static int
1973port_construct(struct ofport *port_)
1974{
1975 struct ofport_dpif *port = ofport_dpif_cast(port_);
1976 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
b9ad7294 1977 const struct netdev *netdev = port->up.netdev;
3aa30359 1978 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
6d9e94b5 1979 const char *dp_port_name;
e1b1d06a
JP
1980 struct dpif_port dpif_port;
1981 int error;
abe529af 1982
2cc3c58e 1983 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
1984 port->bundle = NULL;
1985 port->cfm = NULL;
ccc09689 1986 port->bfd = NULL;
0477baa9 1987 port->lldp = NULL;
21f7563c
JP
1988 port->stp_port = NULL;
1989 port->stp_state = STP_DISABLED;
9efd308e
DV
1990 port->rstp_port = NULL;
1991 port->rstp_state = RSTP_DISABLED;
42943cde 1992 port->is_tunnel = false;
6cbbf4fa 1993 port->peer = NULL;
55954f6e
EJ
1994 port->qdscp = NULL;
1995 port->n_qdscp = 0;
b9ad7294 1996 port->carrier_seq = netdev_get_carrier_resets(netdev);
abe529af 1997
b9ad7294 1998 if (netdev_vport_is_patch(netdev)) {
743cea45 1999 /* By bailing out here, we don't submit the port to the sFlow module
185b4e3a
MG
2000 * to be considered for counter polling export. This is correct
2001 * because the patch port represents an interface that sFlow considers
2002 * to be "internal" to the switch as a whole, and therefore not a
2003 * candidate for counter polling. */
4e022ec0 2004 port->odp_port = ODPP_NONE;
6cbbf4fa 2005 ofport_update_peer(port);
0a740f48
EJ
2006 return 0;
2007 }
2008
6d9e94b5
AZ
2009 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
2010 error = dpif_port_query_by_name(ofproto->backer->dpif, dp_port_name,
e1b1d06a
JP
2011 &dpif_port);
2012 if (error) {
2013 return error;
2014 }
2015
2016 port->odp_port = dpif_port.port_no;
2017
b9ad7294 2018 if (netdev_get_tunnel_config(netdev)) {
a36de779 2019 atomic_count_inc(&ofproto->backer->tnl_count);
ea0797c9 2020 error = tnl_port_add(port, port->up.netdev, port->odp_port,
6d9e94b5 2021 ovs_native_tunneling_is_on(ofproto), dp_port_name);
ea0797c9
BP
2022 if (error) {
2023 atomic_count_dec(&ofproto->backer->tnl_count);
2024 dpif_port_destroy(&dpif_port);
2025 return error;
2026 }
2027
42943cde 2028 port->is_tunnel = true;
b9ad7294
EJ
2029 } else {
2030 /* Sanity-check that a mapping doesn't already exist. This
2031 * shouldn't happen for non-tunnel ports. */
2032 if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
2033 VLOG_ERR("port %s already has an OpenFlow port number",
2034 dpif_port.name);
da78d43d 2035 dpif_port_destroy(&dpif_port);
b9ad7294
EJ
2036 return EBUSY;
2037 }
e1b1d06a 2038
8449c4d6 2039 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
b9ad7294 2040 hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
f9c0c3ec 2041 hash_odp_port(port->odp_port));
8449c4d6 2042 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
b9ad7294 2043 }
da78d43d 2044 dpif_port_destroy(&dpif_port);
e1b1d06a 2045
abe529af 2046 if (ofproto->sflow) {
e1b1d06a 2047 dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
abe529af 2048 }
cd32509e
MW
2049 if (ofproto->ipfix) {
2050 dpif_ipfix_add_port(ofproto->ipfix, port_, port->odp_port);
2051 }
abe529af
BP
2052
2053 return 0;
2054}
2055
2056static void
9aad5a5a 2057port_destruct(struct ofport *port_, bool del)
abe529af
BP
2058{
2059 struct ofport_dpif *port = ofport_dpif_cast(port_);
2060 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
02f8d646 2061 const char *devname = netdev_get_name(port->up.netdev);
f87c1357 2062 const char *netdev_type = netdev_get_type(port->up.netdev);
3aa30359
BP
2063 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
2064 const char *dp_port_name;
abe529af 2065
7894e7da 2066 ofproto->backer->need_revalidate = REV_RECONFIGURE;
84f0f298 2067 xlate_txn_start();
46c88433 2068 xlate_ofport_remove(port);
84f0f298 2069 xlate_txn_commit();
7894e7da 2070
f87c1357
IM
2071 if (!del && strcmp(netdev_type,
2072 ofproto_port_open_type(port->up.ofproto, "internal"))) {
2073 /* Check if datapath requires removal of attached ports. Avoid
2074 * removal of 'internal' ports to preserve user ip/route settings. */
2075 del = dpif_cleanup_required(ofproto->backer->dpif);
2076 }
2077
3aa30359
BP
2078 dp_port_name = netdev_vport_get_dpif_port(port->up.netdev, namebuf,
2079 sizeof namebuf);
9aad5a5a 2080 if (del && dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
acf60855
JP
2081 /* The underlying device is still there, so delete it. This
2082 * happens when the ofproto is being destroyed, since the caller
2083 * assumes that removal of attached ports will happen as part of
2084 * destruction. */
42943cde 2085 if (!port->is_tunnel) {
97459c2f
AV
2086 dpif_port_del(ofproto->backer->dpif, port->odp_port, false);
2087 }
2088 } else if (del) {
2089 /* The underlying device is already deleted (e.g. tunctl -d).
2090 * Calling dpif_port_remove to do local cleanup for the netdev */
2091 if (!port->is_tunnel) {
2092 dpif_port_del(ofproto->backer->dpif, port->odp_port, true);
a614d823 2093 }
acf60855
JP
2094 }
2095
6cbbf4fa
EJ
2096 if (port->peer) {
2097 port->peer->peer = NULL;
2098 port->peer = NULL;
2099 }
2100
42943cde 2101 if (port->odp_port != ODPP_NONE && !port->is_tunnel) {
8449c4d6 2102 ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
0a740f48 2103 hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
8449c4d6 2104 ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
0a740f48
EJ
2105 }
2106
a36de779
PS
2107 if (port->is_tunnel) {
2108 atomic_count_dec(&ofproto->backer->tnl_count);
2109 }
2110
c8025aee 2111 tnl_port_del(port, port->odp_port);
02f8d646 2112 sset_find_and_delete(&ofproto->ports, devname);
0a740f48 2113 sset_find_and_delete(&ofproto->ghost_ports, devname);
abe529af 2114 bundle_remove(port_);
a5610457 2115 set_cfm(port_, NULL);
8aee94b6 2116 set_bfd(port_, NULL);
0477baa9 2117 set_lldp(port_, NULL);
0c0c32d8
BP
2118 if (port->stp_port) {
2119 stp_port_disable(port->stp_port);
2120 }
f025bcb7 2121 set_rstp_port(port_, NULL);
abe529af 2122 if (ofproto->sflow) {
bae473fe 2123 dpif_sflow_del_port(ofproto->sflow, port->odp_port);
abe529af 2124 }
cd32509e
MW
2125 if (ofproto->ipfix) {
2126 dpif_ipfix_del_port(ofproto->ipfix, port->odp_port);
2127 }
8b36f51e 2128
55954f6e 2129 free(port->qdscp);
abe529af
BP
2130}
2131
2132static void
2133port_modified(struct ofport *port_)
2134{
2135 struct ofport_dpif *port = ofport_dpif_cast(port_);
a36de779 2136 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
6d9e94b5 2137 const char *dp_port_name;
a36de779 2138 struct netdev *netdev = port->up.netdev;
abe529af
BP
2139
2140 if (port->bundle && port->bundle->bond) {
a36de779 2141 bond_slave_set_netdev(port->bundle->bond, port, netdev);
abe529af 2142 }
9d46b444
EJ
2143
2144 if (port->cfm) {
a36de779 2145 cfm_set_netdev(port->cfm, netdev);
9d46b444 2146 }
f1e78bbd 2147
c1c4e8c7 2148 if (port->bfd) {
a36de779 2149 bfd_set_netdev(port->bfd, netdev);
c1c4e8c7
AW
2150 }
2151
635c5db9 2152 ofproto_dpif_monitor_port_update(port, port->bfd, port->cfm,
74ff3298 2153 port->lldp, &port->up.pp.hw_addr);
635c5db9 2154
6d9e94b5 2155 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
a36de779
PS
2156
2157 if (port->is_tunnel) {
2158 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
2159
c8025aee 2160 if (tnl_port_reconfigure(port, netdev, port->odp_port, port->odp_port,
6d9e94b5
AZ
2161 ovs_native_tunneling_is_on(ofproto),
2162 dp_port_name)) {
a36de779
PS
2163 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2164 }
f1e78bbd 2165 }
6cbbf4fa
EJ
2166
2167 ofport_update_peer(port);
abe529af
BP
2168}
2169
2170static void
9e1fd49b 2171port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
abe529af
BP
2172{
2173 struct ofport_dpif *port = ofport_dpif_cast(port_);
2174 struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
9e1fd49b 2175 enum ofputil_port_config changed = old_config ^ port->up.pp.config;
abe529af 2176
9e1fd49b 2177 if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
c57b2226
BP
2178 OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
2179 OFPUTIL_PC_NO_PACKET_IN)) {
2cc3c58e 2180 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7bde8dd8 2181
9e1fd49b 2182 if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
7bde8dd8
JP
2183 bundle_update(port->bundle);
2184 }
abe529af 2185 }
6d57dea9 2186 port_run(port);
abe529af
BP
2187}
2188
2189static int
2190set_sflow(struct ofproto *ofproto_,
2191 const struct ofproto_sflow_options *sflow_options)
2192{
2193 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
bae473fe 2194 struct dpif_sflow *ds = ofproto->sflow;
6ff686f2 2195
abe529af 2196 if (sflow_options) {
4fe0f203 2197 uint32_t old_probability = ds ? dpif_sflow_get_probability(ds) : 0;
bae473fe 2198 if (!ds) {
abe529af
BP
2199 struct ofport_dpif *ofport;
2200
4213f19d 2201 ds = ofproto->sflow = dpif_sflow_create();
abe529af 2202 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
e1b1d06a 2203 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
abe529af
BP
2204 }
2205 }
bae473fe 2206 dpif_sflow_set_options(ds, sflow_options);
4fe0f203
BP
2207 if (dpif_sflow_get_probability(ds) != old_probability) {
2208 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2209 }
abe529af 2210 } else {
6ff686f2 2211 if (ds) {
9723bcce 2212 dpif_sflow_unref(ds);
2cc3c58e 2213 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6ff686f2
PS
2214 ofproto->sflow = NULL;
2215 }
abe529af
BP
2216 }
2217 return 0;
2218}
2219
29089a54
RL
2220static int
2221set_ipfix(
2222 struct ofproto *ofproto_,
2223 const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
2224 const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
2225 size_t n_flow_exporters_options)
2226{
2227 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2228 struct dpif_ipfix *di = ofproto->ipfix;
978427a5 2229 bool has_options = bridge_exporter_options || flow_exporters_options;
8b7ea2d4 2230 bool new_di = false;
29089a54 2231
978427a5
RL
2232 if (has_options && !di) {
2233 di = ofproto->ipfix = dpif_ipfix_create();
8b7ea2d4 2234 new_di = true;
978427a5
RL
2235 }
2236
2237 if (di) {
2238 /* Call set_options in any case to cleanly flush the flow
2239 * caches in the last exporters that are to be destroyed. */
29089a54
RL
2240 dpif_ipfix_set_options(
2241 di, bridge_exporter_options, flow_exporters_options,
2242 n_flow_exporters_options);
978427a5 2243
cd32509e 2244 /* Add ports only when a new ipfix created */
8b7ea2d4
WZ
2245 if (new_di == true) {
2246 struct ofport_dpif *ofport;
2247 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
cd32509e 2248 dpif_ipfix_add_port(di, &ofport->up, ofport->odp_port);
8b7ea2d4
WZ
2249 }
2250 }
2251
978427a5 2252 if (!has_options) {
d857c8aa 2253 dpif_ipfix_unref(di);
29089a54
RL
2254 ofproto->ipfix = NULL;
2255 }
2256 }
978427a5 2257
29089a54
RL
2258 return 0;
2259}
2260
fb8f22c1
BY
2261static int
2262get_ipfix_stats(const struct ofproto *ofproto_,
2263 bool bridge_ipfix,
2264 struct ovs_list *replies)
2265{
2266 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2267 struct dpif_ipfix *di = ofproto->ipfix;
2268
2269 if (!di) {
2270 return OFPERR_NXST_NOT_CONFIGURED;
2271 }
2272
2273 return dpif_ipfix_get_stats(di, bridge_ipfix, replies);
2274}
2275
abe529af 2276static int
a5610457 2277set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
abe529af
BP
2278{
2279 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
4e5e44e3
AW
2280 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2281 struct cfm *old = ofport->cfm;
635c5db9 2282 int error = 0;
abe529af 2283
635c5db9 2284 if (s) {
abe529af 2285 if (!ofport->cfm) {
90967e95 2286 ofport->cfm = cfm_create(ofport->up.netdev);
abe529af
BP
2287 }
2288
a5610457 2289 if (cfm_configure(ofport->cfm, s)) {
635c5db9
AW
2290 error = 0;
2291 goto out;
abe529af
BP
2292 }
2293
2294 error = EINVAL;
2295 }
8e9a73fa 2296 cfm_unref(ofport->cfm);
abe529af 2297 ofport->cfm = NULL;
635c5db9 2298out:
4e5e44e3
AW
2299 if (ofport->cfm != old) {
2300 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2301 }
635c5db9 2302 ofproto_dpif_monitor_port_update(ofport, ofport->bfd, ofport->cfm,
74ff3298 2303 ofport->lldp, &ofport->up.pp.hw_addr);
abe529af
BP
2304 return error;
2305}
2306
8f5514fe
AW
2307static bool
2308cfm_status_changed(struct ofport *ofport_)
2309{
2310 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2311
2312 return ofport->cfm ? cfm_check_status_change(ofport->cfm) : true;
2313}
2314
88bf179a 2315static int
9a9e3786 2316get_cfm_status(const struct ofport *ofport_,
685acfd9 2317 struct cfm_status *status)
1de11730
EJ
2318{
2319 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
88bf179a 2320 int ret = 0;
1de11730
EJ
2321
2322 if (ofport->cfm) {
8f5514fe 2323 cfm_get_status(ofport->cfm, status);
1de11730 2324 } else {
88bf179a 2325 ret = ENOENT;
1de11730 2326 }
88bf179a
AW
2327
2328 return ret;
1de11730 2329}
ccc09689
EJ
2330
2331static int
2332set_bfd(struct ofport *ofport_, const struct smap *cfg)
2333{
2334 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2335 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2336 struct bfd *old;
2337
2338 old = ofport->bfd;
c1c4e8c7
AW
2339 ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev),
2340 cfg, ofport->up.netdev);
ccc09689
EJ
2341 if (ofport->bfd != old) {
2342 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2343 }
635c5db9 2344 ofproto_dpif_monitor_port_update(ofport, ofport->bfd, ofport->cfm,
74ff3298 2345 ofport->lldp, &ofport->up.pp.hw_addr);
ccc09689
EJ
2346 return 0;
2347}
2348
8f5514fe
AW
2349static bool
2350bfd_status_changed(struct ofport *ofport_)
2351{
2352 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2353
2354 return ofport->bfd ? bfd_check_status_change(ofport->bfd) : true;
2355}
2356
ccc09689
EJ
2357static int
2358get_bfd_status(struct ofport *ofport_, struct smap *smap)
2359{
2360 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
88bf179a 2361 int ret = 0;
ccc09689
EJ
2362
2363 if (ofport->bfd) {
8f5514fe 2364 bfd_get_status(ofport->bfd, smap);
ccc09689 2365 } else {
88bf179a 2366 ret = ENOENT;
ccc09689 2367 }
88bf179a
AW
2368
2369 return ret;
ccc09689 2370}
0477baa9
DF
2371
2372static int
2373set_lldp(struct ofport *ofport_,
2374 const struct smap *cfg)
2375{
2376 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
f0497750 2377 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
0477baa9
DF
2378 int error = 0;
2379
2380 if (cfg) {
2381 if (!ofport->lldp) {
0477baa9
DF
2382 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2383 ofport->lldp = lldp_create(ofport->up.netdev, ofport_->mtu, cfg);
2384 }
2385
19aef6ef 2386 if (!lldp_configure(ofport->lldp, cfg)) {
f0497750
SR
2387 lldp_unref(ofport->lldp);
2388 ofport->lldp = NULL;
19aef6ef 2389 error = EINVAL;
0477baa9 2390 }
f0497750 2391 } else if (ofport->lldp) {
19aef6ef
DF
2392 lldp_unref(ofport->lldp);
2393 ofport->lldp = NULL;
f0497750 2394 ofproto->backer->need_revalidate = REV_RECONFIGURE;
19aef6ef
DF
2395 }
2396
0477baa9
DF
2397 ofproto_dpif_monitor_port_update(ofport,
2398 ofport->bfd,
2399 ofport->cfm,
2400 ofport->lldp,
74ff3298 2401 &ofport->up.pp.hw_addr);
0477baa9
DF
2402 return error;
2403}
2404
2405static bool
2406get_lldp_status(const struct ofport *ofport_,
2407 struct lldp_status *status OVS_UNUSED)
2408{
2409 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2410
2411 return ofport->lldp ? true : false;
2412}
2413
2414static int
2415set_aa(struct ofproto *ofproto OVS_UNUSED,
2416 const struct aa_settings *s)
2417{
2418 return aa_configure(s);
2419}
2420
2421static int
2422aa_mapping_set(struct ofproto *ofproto_ OVS_UNUSED, void *aux,
2423 const struct aa_mapping_settings *s)
2424{
2425 return aa_mapping_register(aux, s);
2426}
2427
2428static int
2429aa_mapping_unset(struct ofproto *ofproto OVS_UNUSED, void *aux)
2430{
2431 return aa_mapping_unregister(aux);
2432}
2433
2434static int
2435aa_vlan_get_queued(struct ofproto *ofproto OVS_UNUSED, struct ovs_list *list)
2436{
2437 return aa_get_vlan_queued(list);
2438}
2439
2440static unsigned int
2441aa_vlan_get_queue_size(struct ofproto *ofproto OVS_UNUSED)
2442{
2443 return aa_get_vlan_queue_size();
2444}
2445
abe529af 2446\f
21f7563c
JP
2447/* Spanning Tree. */
2448
6b90bc57 2449/* Called while rstp_mutex is held. */
9efd308e 2450static void
cf62fa4c 2451rstp_send_bpdu_cb(struct dp_packet *pkt, void *ofport_, void *ofproto_)
9efd308e
DV
2452{
2453 struct ofproto_dpif *ofproto = ofproto_;
6b90bc57 2454 struct ofport_dpif *ofport = ofport_;
2482b0b0 2455 struct eth_header *eth = dp_packet_eth(pkt);
6b90bc57 2456
74ff3298 2457 netdev_get_etheraddr(ofport->up.netdev, &eth->eth_src);
6b90bc57
JR
2458 if (eth_addr_is_zero(eth->eth_src)) {
2459 VLOG_WARN_RL(&rl, "%s port %d: cannot send RSTP BPDU on a port which "
2460 "does not have a configured source MAC address.",
2461 ofproto->up.name, ofp_to_u16(ofport->up.ofp_port));
9efd308e 2462 } else {
2eb79142 2463 ofproto_dpif_send_packet(ofport, false, pkt);
9efd308e 2464 }
cf62fa4c 2465 dp_packet_delete(pkt);
9efd308e
DV
2466}
2467
21f7563c 2468static void
cf62fa4c 2469send_bpdu_cb(struct dp_packet *pkt, int port_num, void *ofproto_)
21f7563c
JP
2470{
2471 struct ofproto_dpif *ofproto = ofproto_;
2472 struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2473 struct ofport_dpif *ofport;
2474
2475 ofport = stp_port_get_aux(sp);
2476 if (!ofport) {
2477 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2478 ofproto->up.name, port_num);
2479 } else {
2482b0b0 2480 struct eth_header *eth = dp_packet_eth(pkt);
21f7563c 2481
74ff3298 2482 netdev_get_etheraddr(ofport->up.netdev, &eth->eth_src);
21f7563c
JP
2483 if (eth_addr_is_zero(eth->eth_src)) {
2484 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2485 "with unknown MAC", ofproto->up.name, port_num);
2486 } else {
2eb79142 2487 ofproto_dpif_send_packet(ofport, false, pkt);
21f7563c
JP
2488 }
2489 }
cf62fa4c 2490 dp_packet_delete(pkt);
21f7563c
JP
2491}
2492
9efd308e
DV
2493/* Configure RSTP on 'ofproto_' using the settings defined in 's'. */
2494static void
2495set_rstp(struct ofproto *ofproto_, const struct ofproto_rstp_settings *s)
2496{
2497 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2498
2499 /* Only revalidate flows if the configuration changed. */
2500 if (!s != !ofproto->rstp) {
2501 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2502 }
2503
2504 if (s) {
2505 if (!ofproto->rstp) {
2506 ofproto->rstp = rstp_create(ofproto_->name, s->address,
4b30ba05 2507 rstp_send_bpdu_cb, ofproto);
9efd308e
DV
2508 ofproto->rstp_last_tick = time_msec();
2509 }
2510 rstp_set_bridge_address(ofproto->rstp, s->address);
2511 rstp_set_bridge_priority(ofproto->rstp, s->priority);
2512 rstp_set_bridge_ageing_time(ofproto->rstp, s->ageing_time);
2513 rstp_set_bridge_force_protocol_version(ofproto->rstp,
2514 s->force_protocol_version);
2515 rstp_set_bridge_max_age(ofproto->rstp, s->bridge_max_age);
2516 rstp_set_bridge_forward_delay(ofproto->rstp, s->bridge_forward_delay);
2517 rstp_set_bridge_transmit_hold_count(ofproto->rstp,
2518 s->transmit_hold_count);
2519 } else {
2520 struct ofport *ofport;
2521 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2522 set_rstp_port(ofport, NULL);
2523 }
2524 rstp_unref(ofproto->rstp);
2525 ofproto->rstp = NULL;
2526 }
2527}
2528
2529static void
2530get_rstp_status(struct ofproto *ofproto_, struct ofproto_rstp_status *s)
2531{
2532 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2533
2534 if (ofproto->rstp) {
2535 s->enabled = true;
2536 s->root_id = rstp_get_root_id(ofproto->rstp);
2537 s->bridge_id = rstp_get_bridge_id(ofproto->rstp);
2538 s->designated_id = rstp_get_designated_id(ofproto->rstp);
2539 s->root_path_cost = rstp_get_root_path_cost(ofproto->rstp);
2540 s->designated_port_id = rstp_get_designated_port_id(ofproto->rstp);
2541 s->bridge_port_id = rstp_get_bridge_port_id(ofproto->rstp);
2542 } else {
2543 s->enabled = false;
2544 }
2545}
2546
2547static void
2548update_rstp_port_state(struct ofport_dpif *ofport)
2549{
2550 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2551 enum rstp_state state;
2552
2553 /* Figure out new state. */
2554 state = ofport->rstp_port ? rstp_port_get_state(ofport->rstp_port)
2555 : RSTP_DISABLED;
2556
2557 /* Update state. */
2558 if (ofport->rstp_state != state) {
2559 enum ofputil_port_state of_state;
2560 bool fwd_change;
2561
9a0bb428
JR
2562 VLOG_DBG("port %s: RSTP state changed from %s to %s",
2563 netdev_get_name(ofport->up.netdev),
2564 rstp_state_name(ofport->rstp_state),
2565 rstp_state_name(state));
2372c146 2566
9efd308e 2567 if (rstp_learn_in_state(ofport->rstp_state)
66ff280d
JR
2568 != rstp_learn_in_state(state)) {
2569 /* XXX: Learning action flows should also be flushed. */
2570 if (ofport->bundle) {
2372c146
JR
2571 if (!rstp_shift_root_learned_address(ofproto->rstp)
2572 || rstp_get_old_root_aux(ofproto->rstp) != ofport) {
2573 bundle_flush_macs(ofport->bundle, false);
2574 }
66ff280d 2575 }
9efd308e
DV
2576 }
2577 fwd_change = rstp_forward_in_state(ofport->rstp_state)
2578 != rstp_forward_in_state(state);
2579
2580 ofproto->backer->need_revalidate = REV_RSTP;
2581 ofport->rstp_state = state;
2582
2583 if (fwd_change && ofport->bundle) {
2584 bundle_update(ofport->bundle);
2585 }
2586
2587 /* Update the RSTP state bits in the OpenFlow port description. */
2588 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2589 of_state |= (state == RSTP_LEARNING ? OFPUTIL_PS_STP_LEARN
2590 : state == RSTP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2591 : state == RSTP_DISCARDING ? OFPUTIL_PS_STP_LISTEN
2592 : 0);
2593 ofproto_port_set_state(&ofport->up, of_state);
2594 }
2595}
2596
2597static void
2598rstp_run(struct ofproto_dpif *ofproto)
2599{
2600 if (ofproto->rstp) {
2601 long long int now = time_msec();
2602 long long int elapsed = now - ofproto->rstp_last_tick;
2603 struct rstp_port *rp;
f025bcb7 2604 struct ofport_dpif *ofport;
54d3863b 2605
9efd308e
DV
2606 /* Every second, decrease the values of the timers. */
2607 if (elapsed >= 1000) {
2608 rstp_tick_timers(ofproto->rstp);
2609 ofproto->rstp_last_tick = now;
2610 }
f025bcb7
JR
2611 rp = NULL;
2612 while ((ofport = rstp_get_next_changed_port_aux(ofproto->rstp, &rp))) {
2613 update_rstp_port_state(ofport);
9efd308e 2614 }
66ff280d
JR
2615 rp = NULL;
2616 ofport = NULL;
9efd308e
DV
2617 /* FIXME: This check should be done on-event (i.e., when setting
2618 * p->fdb_flush) and not periodically.
2619 */
66ff280d 2620 while ((ofport = rstp_check_and_reset_fdb_flush(ofproto->rstp, &rp))) {
2372c146
JR
2621 if (!rstp_shift_root_learned_address(ofproto->rstp)
2622 || rstp_get_old_root_aux(ofproto->rstp) != ofport) {
2623 bundle_flush_macs(ofport->bundle, false);
2624 }
2625 }
2626
2627 if (rstp_shift_root_learned_address(ofproto->rstp)) {
c7e4f0b2
DV
2628 struct ofport_dpif *old_root_aux =
2629 (struct ofport_dpif *)rstp_get_old_root_aux(ofproto->rstp);
2630 struct ofport_dpif *new_root_aux =
2631 (struct ofport_dpif *)rstp_get_new_root_aux(ofproto->rstp);
2632 if (old_root_aux != NULL && new_root_aux != NULL) {
2633 bundle_move(old_root_aux->bundle, new_root_aux->bundle);
2634 rstp_reset_root_changed(ofproto->rstp);
2635 }
9efd308e
DV
2636 }
2637 }
2638}
2639
21f7563c
JP
2640/* Configures STP on 'ofproto_' using the settings defined in 's'. */
2641static int
2642set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2643{
2644 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2645
2646 /* Only revalidate flows if the configuration changed. */
2647 if (!s != !ofproto->stp) {
2cc3c58e 2648 ofproto->backer->need_revalidate = REV_RECONFIGURE;
21f7563c
JP
2649 }
2650
2651 if (s) {
2652 if (!ofproto->stp) {
2653 ofproto->stp = stp_create(ofproto_->name, s->system_id,
2654 send_bpdu_cb, ofproto);
2655 ofproto->stp_last_tick = time_msec();
2656 }
2657
2658 stp_set_bridge_id(ofproto->stp, s->system_id);
2659 stp_set_bridge_priority(ofproto->stp, s->priority);
2660 stp_set_hello_time(ofproto->stp, s->hello_time);
2661 stp_set_max_age(ofproto->stp, s->max_age);
2662 stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2663 } else {
851bf71d
EJ
2664 struct ofport *ofport;
2665
2666 HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2667 set_stp_port(ofport, NULL);
2668 }
2669
bd54dbcd 2670 stp_unref(ofproto->stp);
21f7563c
JP
2671 ofproto->stp = NULL;
2672 }
2673
2674 return 0;
2675}
2676
2677static int
2678get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2679{
2680 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2681
2682 if (ofproto->stp) {
2683 s->enabled = true;
2684 s->bridge_id = stp_get_bridge_id(ofproto->stp);
2685 s->designated_root = stp_get_designated_root(ofproto->stp);
2686 s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2687 } else {
2688 s->enabled = false;
2689 }
2690
2691 return 0;
2692}
2693
2694static void
2695update_stp_port_state(struct ofport_dpif *ofport)
2696{
2697 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2698 enum stp_state state;
2699
2700 /* Figure out new state. */
2701 state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2702 : STP_DISABLED;
2703
2704 /* Update state. */
2705 if (ofport->stp_state != state) {
9e1fd49b 2706 enum ofputil_port_state of_state;
21f7563c
JP
2707 bool fwd_change;
2708
9a0bb428
JR
2709 VLOG_DBG("port %s: STP state changed from %s to %s",
2710 netdev_get_name(ofport->up.netdev),
2711 stp_state_name(ofport->stp_state),
2712 stp_state_name(state));
21f7563c
JP
2713 if (stp_learn_in_state(ofport->stp_state)
2714 != stp_learn_in_state(state)) {
2715 /* xxx Learning action flows should also be flushed. */
509c0149 2716 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 2717 mac_learning_flush(ofproto->ml);
509c0149 2718 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 2719 mcast_snooping_mdb_flush(ofproto->ms);
21f7563c
JP
2720 }
2721 fwd_change = stp_forward_in_state(ofport->stp_state)
2722 != stp_forward_in_state(state);
2723
2cc3c58e 2724 ofproto->backer->need_revalidate = REV_STP;
21f7563c
JP
2725 ofport->stp_state = state;
2726 ofport->stp_state_entered = time_msec();
2727
b308140a 2728 if (fwd_change && ofport->bundle) {
21f7563c
JP
2729 bundle_update(ofport->bundle);
2730 }
2731
2732 /* Update the STP state bits in the OpenFlow port description. */
9e1fd49b
BP
2733 of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2734 of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2735 : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2736 : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2737 : state == STP_BLOCKING ? OFPUTIL_PS_STP_BLOCK
2738 : 0);
21f7563c
JP
2739 ofproto_port_set_state(&ofport->up, of_state);
2740 }
2741}
2742
52182c5f 2743static void
2744stp_check_and_update_link_state(struct ofproto_dpif *ofproto)
2745{
2746 struct ofport_dpif *ofport;
2747
2748 HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
2749 bool up = netdev_get_carrier(ofport->up.netdev);
2750
2751 if (ofport->stp_port &&
2752 up != (stp_port_get_state(ofport->stp_port) != STP_DISABLED)) {
2753
2754 VLOG_DBG("bridge %s, port %s is %s, %s it.",
2755 ofproto->up.name, netdev_get_name(ofport->up.netdev),
2756 up ? "up" : "down",
2757 up ? "enabling" : "disabling");
2758
2759 if (up) {
2760 stp_port_enable(ofport->stp_port);
2761 stp_port_set_aux(ofport->stp_port, ofport);
2762 } else {
2763 stp_port_disable(ofport->stp_port);
2764 }
2765
2766 update_stp_port_state(ofport);
2767 }
2768 }
2769}
2770
21f7563c
JP
2771/* Configures STP on 'ofport_' using the settings defined in 's'. The
2772 * caller is responsible for assigning STP port numbers and ensuring
2773 * there are no duplicates. */
2774static int
2775set_stp_port(struct ofport *ofport_,
2776 const struct ofproto_port_stp_settings *s)
2777{
2778 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2779 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2780 struct stp_port *sp = ofport->stp_port;
2781
2782 if (!s || !s->enable) {
2783 if (sp) {
2784 ofport->stp_port = NULL;
2785 stp_port_disable(sp);
ecd12731 2786 update_stp_port_state(ofport);
21f7563c
JP
2787 }
2788 return 0;
2789 } else if (sp && stp_port_no(sp) != s->port_num
f025bcb7 2790 && ofport == stp_port_get_aux(sp)) {
21f7563c
JP
2791 /* The port-id changed, so disable the old one if it's not
2792 * already in use by another port. */
2793 stp_port_disable(sp);
2794 }
2795
2796 sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
21f7563c 2797
fb20b0bf
JR
2798 /* Set name before enabling the port so that debugging messages can print
2799 * the name. */
11306274 2800 stp_port_set_name(sp, netdev_get_name(ofport->up.netdev));
52182c5f 2801
2802 if (netdev_get_carrier(ofport_->netdev)) {
2803 stp_port_enable(sp);
2804 } else {
2805 stp_port_disable(sp);
2806 }
fb20b0bf 2807
21f7563c
JP
2808 stp_port_set_aux(sp, ofport);
2809 stp_port_set_priority(sp, s->priority);
2810 stp_port_set_path_cost(sp, s->path_cost);
2811
2812 update_stp_port_state(ofport);
2813
2814 return 0;
2815}
2816
2817static int
2818get_stp_port_status(struct ofport *ofport_,
2819 struct ofproto_port_stp_status *s)
2820{
2821 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2822 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2823 struct stp_port *sp = ofport->stp_port;
2824
2825 if (!ofproto->stp || !sp) {
2826 s->enabled = false;
2827 return 0;
2828 }
2829
2830 s->enabled = true;
926c9a4a 2831 stp_port_get_status(sp, &s->port_id, &s->state, &s->role);
21f7563c 2832 s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
fd28ce3a
JS
2833
2834 return 0;
2835}
2836
2837static int
2838get_stp_port_stats(struct ofport *ofport_,
2839 struct ofproto_port_stp_stats *s)
2840{
2841 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2842 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2843 struct stp_port *sp = ofport->stp_port;
2844
2845 if (!ofproto->stp || !sp) {
2846 s->enabled = false;
2847 return 0;
2848 }
2849
2850 s->enabled = true;
80740385 2851 stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
21f7563c
JP
2852
2853 return 0;
2854}
2855
2856static void
2857stp_run(struct ofproto_dpif *ofproto)
2858{
2859 if (ofproto->stp) {
2860 long long int now = time_msec();
2861 long long int elapsed = now - ofproto->stp_last_tick;
2862 struct stp_port *sp;
2863
2864 if (elapsed > 0) {
2865 stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2866 ofproto->stp_last_tick = now;
2867 }
52182c5f 2868
2869 stp_check_and_update_link_state(ofproto);
2870
21f7563c
JP
2871 while (stp_get_changed_port(ofproto->stp, &sp)) {
2872 struct ofport_dpif *ofport = stp_port_get_aux(sp);
2873
2874 if (ofport) {
2875 update_stp_port_state(ofport);
2876 }
2877 }
6ae50723
EJ
2878
2879 if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
509c0149 2880 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 2881 mac_learning_flush(ofproto->ml);
509c0149 2882 ovs_rwlock_unlock(&ofproto->ml->rwlock);
6d95c4e8 2883 mcast_snooping_mdb_flush(ofproto->ms);
6ae50723 2884 }
21f7563c
JP
2885 }
2886}
2887
2888static void
2889stp_wait(struct ofproto_dpif *ofproto)
2890{
2891 if (ofproto->stp) {
2892 poll_timer_wait(1000);
2893 }
2894}
9efd308e
DV
2895
2896/* Configures RSTP on 'ofport_' using the settings defined in 's'. The
2897 * caller is responsible for assigning RSTP port numbers and ensuring
2898 * there are no duplicates. */
2899static void
2900set_rstp_port(struct ofport *ofport_,
cc33c223 2901 const struct ofproto_port_rstp_settings *s)
9efd308e
DV
2902{
2903 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2904 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2905 struct rstp_port *rp = ofport->rstp_port;
9efd308e
DV
2906
2907 if (!s || !s->enable) {
2908 if (rp) {
e73e9165
JR
2909 rstp_port_set_aux(rp, NULL);
2910 rstp_port_set_state(rp, RSTP_DISABLED);
2911 rstp_port_set_mac_operational(rp, false);
9efd308e 2912 ofport->rstp_port = NULL;
e73e9165 2913 rstp_port_unref(rp);
9efd308e
DV
2914 update_rstp_port_state(ofport);
2915 }
9efd308e
DV
2916 return;
2917 }
f025bcb7
JR
2918
2919 /* Check if need to add a new port. */
9efd308e
DV
2920 if (!rp) {
2921 rp = ofport->rstp_port = rstp_add_port(ofproto->rstp);
2922 }
9efd308e 2923
f025bcb7 2924 rstp_port_set(rp, s->port_num, s->priority, s->path_cost,
67e8c1ac
JR
2925 s->admin_edge_port, s->auto_edge,
2926 s->admin_p2p_mac_state, s->admin_port_state, s->mcheck,
8d2f8375 2927 ofport, netdev_get_name(ofport->up.netdev));
9efd308e 2928 update_rstp_port_state(ofport);
29db47ce 2929 /* Synchronize operational status. */
16361b11 2930 rstp_port_set_mac_operational(rp, ofport->up.may_enable);
9efd308e
DV
2931}
2932
2933static void
2934get_rstp_port_status(struct ofport *ofport_,
2935 struct ofproto_port_rstp_status *s)
2936{
2937 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2938 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2939 struct rstp_port *rp = ofport->rstp_port;
2940
2941 if (!ofproto->rstp || !rp) {
2942 s->enabled = false;
2943 return;
2944 }
2945
2946 s->enabled = true;
9c64e6b8
JR
2947 rstp_port_get_status(rp, &s->port_id, &s->state, &s->role,
2948 &s->designated_bridge_id, &s->designated_port_id,
2949 &s->designated_path_cost, &s->tx_count,
f025bcb7 2950 &s->rx_count, &s->error_count, &s->uptime);
9efd308e
DV
2951}
2952
21f7563c 2953\f
8b36f51e 2954static int
55954f6e 2955set_queues(struct ofport *ofport_, const struct ofproto_port_queue *qdscp,
8b36f51e
EJ
2956 size_t n_qdscp)
2957{
2958 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2959 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
8b36f51e 2960
55954f6e
EJ
2961 if (ofport->n_qdscp != n_qdscp
2962 || (n_qdscp && memcmp(ofport->qdscp, qdscp,
2963 n_qdscp * sizeof *qdscp))) {
2cc3c58e 2964 ofproto->backer->need_revalidate = REV_RECONFIGURE;
55954f6e
EJ
2965 free(ofport->qdscp);
2966 ofport->qdscp = n_qdscp
2967 ? xmemdup(qdscp, n_qdscp * sizeof *qdscp)
2968 : NULL;
2969 ofport->n_qdscp = n_qdscp;
8b36f51e
EJ
2970 }
2971
8b36f51e
EJ
2972 return 0;
2973}
2974\f
abe529af
BP
2975/* Bundles. */
2976
b44a10b7
BP
2977/* Expires all MAC learning entries associated with 'bundle' and forces its
2978 * ofproto to revalidate every flow.
2979 *
2980 * Normally MAC learning entries are removed only from the ofproto associated
2981 * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2982 * are removed from every ofproto. When patch ports and SLB bonds are in use
2983 * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2984 * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2985 * with the host from which it migrated. */
abe529af 2986static void
b44a10b7 2987bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
abe529af
BP
2988{
2989 struct ofproto_dpif *ofproto = bundle->ofproto;
2990 struct mac_learning *ml = ofproto->ml;
2991 struct mac_entry *mac, *next_mac;
2992
2cc3c58e 2993 ofproto->backer->need_revalidate = REV_RECONFIGURE;
509c0149 2994 ovs_rwlock_wrlock(&ml->rwlock);
abe529af 2995 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
9d078ec2 2996 if (mac_entry_get_port(ml, mac) == bundle) {
b44a10b7
BP
2997 if (all_ofprotos) {
2998 struct ofproto_dpif *o;
2999
911b4a7e
JP
3000 HMAP_FOR_EACH (o, all_ofproto_dpifs_by_name_node,
3001 &all_ofproto_dpifs_by_name) {
b44a10b7
BP
3002 if (o != ofproto) {
3003 struct mac_entry *e;
3004
509c0149 3005 ovs_rwlock_wrlock(&o->ml->rwlock);
30618594 3006 e = mac_learning_lookup(o->ml, mac->mac, mac->vlan);
b44a10b7 3007 if (e) {
b44a10b7
BP
3008 mac_learning_expire(o->ml, e);
3009 }
509c0149 3010 ovs_rwlock_unlock(&o->ml->rwlock);
b44a10b7
BP
3011 }
3012 }
3013 }
3014
abe529af
BP
3015 mac_learning_expire(ml, mac);
3016 }
3017 }
509c0149 3018 ovs_rwlock_unlock(&ml->rwlock);
abe529af
BP
3019}
3020
2372c146
JR
3021static void
3022bundle_move(struct ofbundle *old, struct ofbundle *new)
3023{
3024 struct ofproto_dpif *ofproto = old->ofproto;
3025 struct mac_learning *ml = ofproto->ml;
3026 struct mac_entry *mac, *next_mac;
3027
3028 ovs_assert(new->ofproto == old->ofproto);
3029
3030 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3031 ovs_rwlock_wrlock(&ml->rwlock);
3032 LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
9d078ec2
BP
3033 if (mac_entry_get_port(ml, mac) == old) {
3034 mac_entry_set_port(ml, mac, new);
2372c146
JR
3035 }
3036 }
3037 ovs_rwlock_unlock(&ml->rwlock);
3038}
3039
abe529af
BP
3040static struct ofbundle *
3041bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
3042{
3043 struct ofbundle *bundle;
3044
3045 HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
3046 &ofproto->bundles) {
3047 if (bundle->aux == aux) {
3048 return bundle;
3049 }
3050 }
3051 return NULL;
3052}
3053
7bde8dd8
JP
3054static void
3055bundle_update(struct ofbundle *bundle)
3056{
3057 struct ofport_dpif *port;
3058
3059 bundle->floodable = true;
3060 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
9e1fd49b 3061 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
875ab130 3062 || netdev_get_pt_mode(port->up.netdev) == NETDEV_PT_LEGACY_L3
4b5f1996
DV
3063 || (bundle->ofproto->stp && !stp_forward_in_state(port->stp_state))
3064 || (bundle->ofproto->rstp && !rstp_forward_in_state(port->rstp_state))) {
7bde8dd8
JP
3065 bundle->floodable = false;
3066 break;
3067 }
3068 }
3069}
3070
abe529af
BP
3071static void
3072bundle_del_port(struct ofport_dpif *port)
3073{
3074 struct ofbundle *bundle = port->bundle;
3075
2cc3c58e 3076 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
6f77f4ae 3077
417e7e66 3078 ovs_list_remove(&port->bundle_node);
abe529af
BP
3079 port->bundle = NULL;
3080
3081 if (bundle->lacp) {
3082 lacp_slave_unregister(bundle->lacp, port);
3083 }
3084 if (bundle->bond) {
3085 bond_slave_unregister(bundle->bond, port);
3086 }
3087
7bde8dd8 3088 bundle_update(bundle);
abe529af
BP
3089}
3090
3091static bool
4e022ec0 3092bundle_add_port(struct ofbundle *bundle, ofp_port_t ofp_port,
df53d41c 3093 struct lacp_slave_settings *lacp)
abe529af
BP
3094{
3095 struct ofport_dpif *port;
3096
e672ff9b 3097 port = ofp_port_to_ofport(bundle->ofproto, ofp_port);
abe529af
BP
3098 if (!port) {
3099 return false;
3100 }
3101
3102 if (port->bundle != bundle) {
2cc3c58e 3103 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af 3104 if (port->bundle) {
e019a574 3105 bundle_remove(&port->up);
abe529af
BP
3106 }
3107
3108 port->bundle = bundle;
417e7e66 3109 ovs_list_push_back(&bundle->ports, &port->bundle_node);
9e1fd49b 3110 if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
875ab130 3111 || netdev_get_pt_mode(port->up.netdev) == NETDEV_PT_LEGACY_L3
4b5f1996
DV
3112 || (bundle->ofproto->stp && !stp_forward_in_state(port->stp_state))
3113 || (bundle->ofproto->rstp && !rstp_forward_in_state(port->rstp_state))) {
abe529af
BP
3114 bundle->floodable = false;
3115 }
3116 }
3117 if (lacp) {
2cc3c58e 3118 bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
3119 lacp_slave_register(bundle->lacp, port, lacp);
3120 }
3121
3122 return true;
3123}
3124
3125static void
3126bundle_destroy(struct ofbundle *bundle)
3127{
3128 struct ofproto_dpif *ofproto;
3129 struct ofport_dpif *port, *next_port;
abe529af
BP
3130
3131 if (!bundle) {
3132 return;
3133 }
3134
3135 ofproto = bundle->ofproto;
67912650 3136 mbridge_unregister_bundle(ofproto->mbridge, bundle);
abe529af 3137
84f0f298 3138 xlate_txn_start();
46c88433 3139 xlate_bundle_remove(bundle);
84f0f298 3140 xlate_txn_commit();
46c88433 3141
abe529af
BP
3142 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
3143 bundle_del_port(port);
3144 }
3145
b44a10b7 3146 bundle_flush_macs(bundle, true);
b077575e 3147 mcast_snooping_flush_bundle(ofproto->ms, bundle);
abe529af
BP
3148 hmap_remove(&ofproto->bundles, &bundle->hmap_node);
3149 free(bundle->name);
3150 free(bundle->trunks);
fed8962a 3151 free(bundle->cvlans);
91779071 3152 lacp_unref(bundle->lacp);
03366a2d 3153 bond_unref(bundle->bond);
abe529af
BP
3154 free(bundle);
3155}
3156
3157static int
3158bundle_set(struct ofproto *ofproto_, void *aux,
3159 const struct ofproto_bundle_settings *s)
3160{
3161 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3162 bool need_flush = false;
abe529af
BP
3163 struct ofport_dpif *port;
3164 struct ofbundle *bundle;
f0fb825a 3165 unsigned long *trunks = NULL;
fed8962a 3166 unsigned long *cvlans = NULL;
ecac4ebf 3167 int vlan;
abe529af
BP
3168 size_t i;
3169 bool ok;
3170
afea2e89
DJ
3171 bundle = bundle_lookup(ofproto, aux);
3172
abe529af 3173 if (!s) {
afea2e89 3174 bundle_destroy(bundle);
abe529af
BP
3175 return 0;
3176 }
3177
cb22974d
BP
3178 ovs_assert(s->n_slaves == 1 || s->bond != NULL);
3179 ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
abe529af 3180
abe529af
BP
3181 if (!bundle) {
3182 bundle = xmalloc(sizeof *bundle);
3183
3184 bundle->ofproto = ofproto;
3185 hmap_insert(&ofproto->bundles, &bundle->hmap_node,
3186 hash_pointer(aux, 0));
3187 bundle->aux = aux;
3188 bundle->name = NULL;
3189
417e7e66 3190 ovs_list_init(&bundle->ports);
ecac4ebf 3191 bundle->vlan_mode = PORT_VLAN_TRUNK;
fed8962a 3192 bundle->qinq_ethtype = ETH_TYPE_VLAN_8021AD;
abe529af
BP
3193 bundle->vlan = -1;
3194 bundle->trunks = NULL;
fed8962a 3195 bundle->cvlans = NULL;
5e9ceccd 3196 bundle->use_priority_tags = s->use_priority_tags;
abe529af
BP
3197 bundle->lacp = NULL;
3198 bundle->bond = NULL;
3199
3200 bundle->floodable = true;
c005f976 3201 bundle->protected = false;
ec7ceaed 3202 mbridge_register_bundle(ofproto->mbridge, bundle);
abe529af
BP
3203 }
3204
3205 if (!bundle->name || strcmp(s->name, bundle->name)) {
3206 free(bundle->name);
3207 bundle->name = xstrdup(s->name);
3208 }
3209
3210 /* LACP. */
3211 if (s->lacp) {
e2d13c43 3212 ofproto->lacp_enabled = true;
abe529af 3213 if (!bundle->lacp) {
2cc3c58e 3214 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
3215 bundle->lacp = lacp_create();
3216 }
3217 lacp_configure(bundle->lacp, s->lacp);
3218 } else {
91779071 3219 lacp_unref(bundle->lacp);
abe529af
BP
3220 bundle->lacp = NULL;
3221 }
3222
3223 /* Update set of ports. */
3224 ok = true;
3225 for (i = 0; i < s->n_slaves; i++) {
3226 if (!bundle_add_port(bundle, s->slaves[i],
df53d41c 3227 s->lacp ? &s->lacp_slaves[i] : NULL)) {
abe529af
BP
3228 ok = false;
3229 }
3230 }
417e7e66 3231 if (!ok || ovs_list_size(&bundle->ports) != s->n_slaves) {
abe529af
BP
3232 struct ofport_dpif *next_port;
3233
3234 LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
3235 for (i = 0; i < s->n_slaves; i++) {
56c769ab 3236 if (s->slaves[i] == port->up.ofp_port) {
abe529af
BP
3237 goto found;
3238 }
3239 }
3240
3241 bundle_del_port(port);
3242 found: ;
3243 }
3244 }
417e7e66 3245 ovs_assert(ovs_list_size(&bundle->ports) <= s->n_slaves);
abe529af 3246
417e7e66 3247 if (ovs_list_is_empty(&bundle->ports)) {
abe529af
BP
3248 bundle_destroy(bundle);
3249 return EINVAL;
3250 }
3251
ecac4ebf 3252 /* Set VLAN tagging mode */
5e9ceccd
BP
3253 if (s->vlan_mode != bundle->vlan_mode
3254 || s->use_priority_tags != bundle->use_priority_tags) {
ecac4ebf 3255 bundle->vlan_mode = s->vlan_mode;
5e9ceccd 3256 bundle->use_priority_tags = s->use_priority_tags;
ecac4ebf
BP
3257 need_flush = true;
3258 }
3259
fed8962a
EG
3260 if (s->qinq_ethtype != bundle->qinq_ethtype) {
3261 bundle->qinq_ethtype = s->qinq_ethtype;
3262 need_flush = true;
3263 }
3264
abe529af 3265 /* Set VLAN tag. */
ecac4ebf
BP
3266 vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
3267 : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
3268 : 0);
3269 if (vlan != bundle->vlan) {
3270 bundle->vlan = vlan;
abe529af
BP
3271 need_flush = true;
3272 }
3273
3274 /* Get trunked VLANs. */
ecac4ebf
BP
3275 switch (s->vlan_mode) {
3276 case PORT_VLAN_ACCESS:
3277 trunks = NULL;
3278 break;
3279
3280 case PORT_VLAN_TRUNK:
ebc56baa 3281 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
3282 break;
3283
3284 case PORT_VLAN_NATIVE_UNTAGGED:
3285 case PORT_VLAN_NATIVE_TAGGED:
3286 if (vlan != 0 && (!s->trunks
3287 || !bitmap_is_set(s->trunks, vlan)
3288 || bitmap_is_set(s->trunks, 0))) {
3289 /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
3290 if (s->trunks) {
3291 trunks = bitmap_clone(s->trunks, 4096);
3292 } else {
3293 trunks = bitmap_allocate1(4096);
3294 }
3295 bitmap_set1(trunks, vlan);
3296 bitmap_set0(trunks, 0);
3297 } else {
ebc56baa 3298 trunks = CONST_CAST(unsigned long *, s->trunks);
ecac4ebf
BP
3299 }
3300 break;
3301
fed8962a
EG
3302 case PORT_VLAN_DOT1Q_TUNNEL:
3303 cvlans = CONST_CAST(unsigned long *, s->cvlans);
3304 break;
3305
ecac4ebf 3306 default:
428b2edd 3307 OVS_NOT_REACHED();
ecac4ebf 3308 }
abe529af
BP
3309 if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
3310 free(bundle->trunks);
ecac4ebf
BP
3311 if (trunks == s->trunks) {
3312 bundle->trunks = vlan_bitmap_clone(trunks);
3313 } else {
3314 bundle->trunks = trunks;
3315 trunks = NULL;
3316 }
abe529af
BP
3317 need_flush = true;
3318 }
ecac4ebf
BP
3319 if (trunks != s->trunks) {
3320 free(trunks);
3321 }
abe529af 3322
fed8962a
EG
3323 if (!vlan_bitmap_equal(cvlans, bundle->cvlans)) {
3324 free(bundle->cvlans);
3325 if (cvlans == s->cvlans) {
3326 bundle->cvlans = vlan_bitmap_clone(cvlans);
3327 } else {
3328 bundle->cvlans = cvlans;
3329 cvlans = NULL;
3330 }
3331 need_flush = true;
3332 }
3333 if (cvlans != s->cvlans) {
3334 free(cvlans);
3335 }
3336
abe529af 3337 /* Bonding. */
417e7e66 3338 if (!ovs_list_is_short(&bundle->ports)) {
abe529af
BP
3339 bundle->ofproto->has_bonded_bundles = true;
3340 if (bundle->bond) {
3341 if (bond_reconfigure(bundle->bond, s->bond)) {
2cc3c58e 3342 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
3343 }
3344 } else {
adcf00ba 3345 bundle->bond = bond_create(s->bond, ofproto);
2cc3c58e 3346 ofproto->backer->need_revalidate = REV_RECONFIGURE;
abe529af
BP
3347 }
3348
3349 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
adcf00ba
AZ
3350 bond_slave_register(bundle->bond, port,
3351 port->up.ofp_port, port->up.netdev);
abe529af
BP
3352 }
3353 } else {
03366a2d 3354 bond_unref(bundle->bond);
abe529af
BP
3355 bundle->bond = NULL;
3356 }
3357
c005f976
BK
3358 /* Set proteced port mode */
3359 if (s->protected != bundle->protected) {
3360 bundle->protected = s->protected;
3361 need_flush = true;
3362 }
3363
abe529af
BP
3364 /* If we changed something that would affect MAC learning, un-learn
3365 * everything on this port and force flow revalidation. */
3366 if (need_flush) {
b44a10b7 3367 bundle_flush_macs(bundle, false);
4fbbf862 3368 mcast_snooping_flush_bundle(ofproto->ms, bundle);
abe529af
BP
3369 }
3370
3371 return 0;
3372}
3373
3374static void
3375bundle_remove(struct ofport *port_)
3376{
3377 struct ofport_dpif *port = ofport_dpif_cast(port_);
3378 struct ofbundle *bundle = port->bundle;
3379
3380 if (bundle) {
3381 bundle_del_port(port);
417e7e66 3382 if (ovs_list_is_empty(&bundle->ports)) {
abe529af 3383 bundle_destroy(bundle);
417e7e66 3384 } else if (ovs_list_is_short(&bundle->ports)) {
03366a2d 3385 bond_unref(bundle->bond);
abe529af
BP
3386 bundle->bond = NULL;
3387 }
3388 }
3389}
3390
3391static void
5f877369 3392send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
abe529af 3393{
abe529af 3394 struct ofport_dpif *port = port_;
74ff3298 3395 struct eth_addr ea;
abe529af
BP
3396 int error;
3397
74ff3298 3398 error = netdev_get_etheraddr(port->up.netdev, &ea);
abe529af 3399 if (!error) {
cf62fa4c 3400 struct dp_packet packet;
5f877369 3401 void *packet_pdu;
abe529af 3402
cf62fa4c 3403 dp_packet_init(&packet, 0);
abe529af 3404 packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
5f877369
EJ
3405 pdu_size);
3406 memcpy(packet_pdu, pdu, pdu_size);
3407
a773a5c9
GM
3408 error = ofproto_dpif_send_packet(port, false, &packet);
3409 if (error) {
3410 VLOG_WARN_RL(&rl, "port %s: cannot transmit LACP PDU (%s).",
3411 port->bundle->name, ovs_strerror(error));
3412 }
cf62fa4c 3413 dp_packet_uninit(&packet);
abe529af 3414 } else {
7ed58d4a
JP
3415 static struct vlog_rate_limit rll = VLOG_RATE_LIMIT_INIT(1, 10);
3416 VLOG_ERR_RL(&rll, "port %s: cannot obtain Ethernet address of iface "
abe529af 3417 "%s (%s)", port->bundle->name,
10a89ef0 3418 netdev_get_name(port->up.netdev), ovs_strerror(error));
abe529af
BP
3419 }
3420}
3421
3422static void
3423bundle_send_learning_packets(struct ofbundle *bundle)
3424{
3425 struct ofproto_dpif *ofproto = bundle->ofproto;
3426 int error, n_packets, n_errors;
3427 struct mac_entry *e;
8613db65
DDP
3428 struct pkt_list {
3429 struct ovs_list list_node;
3430 struct ofport_dpif *port;
3431 struct dp_packet *pkt;
3432 } *pkt_node;
ca6ba700 3433 struct ovs_list packets;
abe529af 3434
417e7e66 3435 ovs_list_init(&packets);
509c0149 3436 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
abe529af 3437 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
9d078ec2 3438 if (mac_entry_get_port(ofproto->ml, e) != bundle) {
8613db65
DDP
3439 pkt_node = xmalloc(sizeof *pkt_node);
3440 pkt_node->pkt = bond_compose_learning_packet(bundle->bond,
3441 e->mac, e->vlan,
3442 (void **)&pkt_node->port);
417e7e66 3443 ovs_list_push_back(&packets, &pkt_node->list_node);
abe529af
BP
3444 }
3445 }
509c0149 3446 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af 3447
0165217e 3448 error = n_packets = n_errors = 0;
8613db65 3449 LIST_FOR_EACH_POP (pkt_node, list_node, &packets) {
0165217e
EJ
3450 int ret;
3451
2eb79142 3452 ret = ofproto_dpif_send_packet(pkt_node->port, false, pkt_node->pkt);
8613db65
DDP
3453 dp_packet_delete(pkt_node->pkt);
3454 free(pkt_node);
0165217e
EJ
3455 if (ret) {
3456 error = ret;
3457 n_errors++;
3458 }
3459 n_packets++;
3460 }
0165217e 3461
abe529af 3462 if (n_errors) {
7ed58d4a
JP
3463 static struct vlog_rate_limit rll = VLOG_RATE_LIMIT_INIT(1, 5);
3464 VLOG_WARN_RL(&rll, "bond %s: %d errors sending %d gratuitous learning "
abe529af 3465 "packets, last error was: %s",
10a89ef0 3466 bundle->name, n_errors, n_packets, ovs_strerror(error));
abe529af
BP
3467 } else {
3468 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3469 bundle->name, n_packets);
3470 }
3471}
3472
3473static void
3474bundle_run(struct ofbundle *bundle)
3475{
3476 if (bundle->lacp) {
3477 lacp_run(bundle->lacp, send_pdu_cb);
3478 }
3479 if (bundle->bond) {
3480 struct ofport_dpif *port;
3481
3482 LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
16361b11 3483 bond_slave_set_may_enable(bundle->bond, port, port->up.may_enable);
abe529af
BP
3484 }
3485
4a1b8f30
EJ
3486 if (bond_run(bundle->bond, lacp_status(bundle->lacp))) {
3487 bundle->ofproto->backer->need_revalidate = REV_BOND;
3488 }
3489
abe529af
BP
3490 if (bond_should_send_learning_packets(bundle->bond)) {
3491 bundle_send_learning_packets(bundle);
3492 }
3493 }
3494}
3495
3496static void
3497bundle_wait(struct ofbundle *bundle)
3498{
3499 if (bundle->lacp) {
3500 lacp_wait(bundle->lacp);
3501 }
3502 if (bundle->bond) {
3503 bond_wait(bundle->bond);
3504 }
3505}
3506\f
3507/* Mirrors. */
3508
3509static int
ec7ceaed
EJ
3510mirror_set__(struct ofproto *ofproto_, void *aux,
3511 const struct ofproto_mirror_settings *s)
abe529af
BP
3512{
3513 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
ec7ceaed
EJ
3514 struct ofbundle **srcs, **dsts;
3515 int error;
3516 size_t i;
abe529af 3517
abe529af 3518 if (!s) {
ec7ceaed 3519 mirror_destroy(ofproto->mbridge, aux);
abe529af
BP
3520 return 0;
3521 }
3522
ec7ceaed
EJ
3523 srcs = xmalloc(s->n_srcs * sizeof *srcs);
3524 dsts = xmalloc(s->n_dsts * sizeof *dsts);
abe529af 3525
ec7ceaed
EJ
3526 for (i = 0; i < s->n_srcs; i++) {
3527 srcs[i] = bundle_lookup(ofproto, s->srcs[i]);
abe529af
BP
3528 }
3529
ec7ceaed
EJ
3530 for (i = 0; i < s->n_dsts; i++) {
3531 dsts[i] = bundle_lookup(ofproto, s->dsts[i]);
abe529af
BP
3532 }
3533
ec7ceaed
EJ
3534 error = mirror_set(ofproto->mbridge, aux, s->name, srcs, s->n_srcs, dsts,
3535 s->n_dsts, s->src_vlans,
1356dbd1
WT
3536 bundle_lookup(ofproto, s->out_bundle),
3537 s->snaplen, s->out_vlan);
ec7ceaed
EJ
3538 free(srcs);
3539 free(dsts);
3540 return error;
abe529af
BP
3541}
3542
9d24de3b 3543static int
ec7ceaed
EJ
3544mirror_get_stats__(struct ofproto *ofproto, void *aux,
3545 uint64_t *packets, uint64_t *bytes)
9d24de3b 3546{
ec7ceaed
EJ
3547 return mirror_get_stats(ofproto_dpif_cast(ofproto)->mbridge, aux, packets,
3548 bytes);
9d24de3b
JP
3549}
3550
abe529af
BP
3551static int
3552set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
3553{
3554 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
509c0149 3555 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
abe529af 3556 if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
30618594 3557 mac_learning_flush(ofproto->ml);
abe529af 3558 }
509c0149 3559 ovs_rwlock_unlock(&ofproto->ml->rwlock);
abe529af
BP
3560 return 0;
3561}
3562
3563static bool
b4affc74 3564is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
abe529af
BP
3565{
3566 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3567 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
ec7ceaed 3568 return bundle && mirror_bundle_out(ofproto->mbridge, bundle) != 0;
abe529af 3569}
8402c74b
SS
3570
3571static void
b53055f4 3572forward_bpdu_changed(struct ofproto *ofproto_)
8402c74b
SS
3573{
3574 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2cc3c58e 3575 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8402c74b 3576}
e764773c
BP
3577
3578static void
c4069512
BP
3579set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
3580 size_t max_entries)
e764773c
BP
3581{
3582 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
509c0149 3583 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
e764773c 3584 mac_learning_set_idle_time(ofproto->ml, idle_time);
c4069512 3585 mac_learning_set_max_entries(ofproto->ml, max_entries);
509c0149 3586 ovs_rwlock_unlock(&ofproto->ml->rwlock);
e764773c 3587}
7c38d0a5
FL
3588
3589/* Configures multicast snooping on 'ofport' using the settings
3590 * defined in 's'. */
3591static int
3592set_mcast_snooping(struct ofproto *ofproto_,
3593 const struct ofproto_mcast_snooping_settings *s)
3594{
3595 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3596
3597 /* Only revalidate flows if the configuration changed. */
3598 if (!s != !ofproto->ms) {
3599 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3600 }
3601
3602 if (s) {
3603 if (!ofproto->ms) {
3604 ofproto->ms = mcast_snooping_create();
3605 }
3606
3607 ovs_rwlock_wrlock(&ofproto->ms->rwlock);
3608 mcast_snooping_set_idle_time(ofproto->ms, s->idle_time);
3609 mcast_snooping_set_max_entries(ofproto->ms, s->max_entries);
3610 if (mcast_snooping_set_flood_unreg(ofproto->ms, s->flood_unreg)) {
3611 ofproto->backer->need_revalidate = REV_RECONFIGURE;
3612 }
3613 ovs_rwlock_unlock(&ofproto->ms->rwlock);
3614 } else {
3615 mcast_snooping_unref(ofproto->ms);
3616 ofproto->ms = NULL;
3617 }
3618
3619 return 0;
3620}
3621
8e04a33f 3622/* Configures multicast snooping port's flood settings on 'ofproto'. */
7c38d0a5 3623static int
8e04a33f
FL
3624set_mcast_snooping_port(struct ofproto *ofproto_, void *aux,
3625 const struct ofproto_mcast_snooping_port_settings *s)
7c38d0a5
FL
3626{
3627 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3628 struct ofbundle *bundle = bundle_lookup(ofproto, aux);
3629
8e04a33f 3630 if (ofproto->ms && s) {
7c38d0a5 3631 ovs_rwlock_wrlock(&ofproto->ms->rwlock);
8e04a33f
FL
3632 mcast_snooping_set_port_flood(ofproto->ms, bundle, s->flood);
3633 mcast_snooping_set_port_flood_reports(ofproto->ms, bundle,
3634 s->flood_reports);
7c38d0a5
FL
3635 ovs_rwlock_unlock(&ofproto->ms->rwlock);
3636 }
3637 return 0;
3638}
3639
abe529af
BP
3640\f
3641/* Ports. */
3642
e672ff9b
JR
3643struct ofport_dpif *
3644ofp_port_to_ofport(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
abe529af 3645{
7df6a8bd
BP
3646 struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
3647 return ofport ? ofport_dpif_cast(ofport) : NULL;
abe529af
BP
3648}
3649
abe529af 3650static void
e1b1d06a
JP
3651ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
3652 struct ofproto_port *ofproto_port,
abe529af
BP
3653 struct dpif_port *dpif_port)
3654{
3655 ofproto_port->name = dpif_port->name;
3656 ofproto_port->type = dpif_port->type;
e1b1d06a 3657 ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
abe529af
BP
3658}
3659
6cbbf4fa
EJ
3660static void
3661ofport_update_peer(struct ofport_dpif *ofport)
0a740f48
EJ
3662{
3663 const struct ofproto_dpif *ofproto;
6cbbf4fa 3664 struct dpif_backer *backer;
161b6042 3665 char *peer_name;
6cbbf4fa
EJ
3666
3667 if (!netdev_vport_is_patch(ofport->up.netdev)) {
3668 return;
3669 }
3670
3671 backer = ofproto_dpif_cast(ofport->up.ofproto)->backer;
7894e7da 3672 backer->need_revalidate = REV_RECONFIGURE;
0a740f48 3673
6cbbf4fa
EJ
3674 if (ofport->peer) {
3675 ofport->peer->peer = NULL;
3676 ofport->peer = NULL;
3677 }
3678
3679 peer_name = netdev_vport_patch_peer(ofport->up.netdev);
3680 if (!peer_name) {
3681 return;
0a740f48
EJ
3682 }
3683
911b4a7e
JP
3684 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
3685 &all_ofproto_dpifs_by_name) {
6cbbf4fa
EJ
3686 struct ofport *peer_ofport;
3687 struct ofport_dpif *peer;
161b6042 3688 char *peer_peer;
0a740f48 3689
462abef2
EJ
3690 if (ofproto->backer != backer) {
3691 continue;
3692 }
3693
6cbbf4fa
EJ
3694 peer_ofport = shash_find_data(&ofproto->up.port_by_name, peer_name);
3695 if (!peer_ofport) {
3696 continue;
3697 }
3698
3699 peer = ofport_dpif_cast(peer_ofport);
3700 peer_peer = netdev_vport_patch_peer(peer->up.netdev);
3701 if (peer_peer && !strcmp(netdev_get_name(ofport->up.netdev),
3702 peer_peer)) {
3703 ofport->peer = peer;
3704 ofport->peer->peer = ofport;
0a740f48 3705 }
161b6042 3706 free(peer_peer);
6cbbf4fa 3707
161b6042 3708 break;
0a740f48 3709 }
161b6042 3710 free(peer_name);
0a740f48
EJ
3711}
3712
1273c573
BP
3713static bool
3714may_enable_port(struct ofport_dpif *ofport)
abe529af 3715{
1273c573
BP
3716 /* If CFM or BFD is enabled, then at least one of them must report that the
3717 * port is up. */
3718 if ((ofport->bfd || ofport->cfm)
3719 && !(ofport->cfm
3720 && !cfm_get_fault(ofport->cfm)
3721 && cfm_get_opup(ofport->cfm) != 0)
3722 && !(ofport->bfd
3723 && bfd_forwarding(ofport->bfd))) {
3724 return false;
2d344ba5
AW
3725 }
3726
1273c573
BP
3727 /* If LACP is enabled, it must report that the link is enabled. */
3728 if (ofport->bundle
3729 && !lacp_slave_may_enable(ofport->bundle->lacp, ofport)) {
3730 return false;
ccc09689
EJ
3731 }
3732
1273c573
BP
3733 return true;
3734}
3735
3736static void
3737port_run(struct ofport_dpif *ofport)
3738{
3739 long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
3740 bool carrier_changed = carrier_seq != ofport->carrier_seq;
b3e8cd6b
NK
3741 bool enable = netdev_get_carrier(ofport->up.netdev);
3742
1273c573
BP
3743 ofport->carrier_seq = carrier_seq;
3744 if (carrier_changed && ofport->bundle) {
b3e8cd6b
NK
3745 lacp_slave_carrier_changed(ofport->bundle->lacp, ofport, enable);
3746 }
3747
3748 if (enable) {
3749 enable = may_enable_port(ofport);
015e08bc
EJ
3750 }
3751
16361b11 3752 if (ofport->up.may_enable != enable) {
6d57dea9 3753 ofproto_port_set_enable(&ofport->up, enable);
daff3353 3754
1273c573 3755 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
f025bcb7 3756 ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
9efd308e 3757
f025bcb7 3758 if (ofport->rstp_port) {
9efd308e
DV
3759 rstp_port_set_mac_operational(ofport->rstp_port, enable);
3760 }
3761 }
abe529af
BP
3762}
3763
abe529af
BP
3764static int
3765port_query_by_name(const struct ofproto *ofproto_, const char *devname,
3766 struct ofproto_port *ofproto_port)
3767{
3768 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3769 struct dpif_port dpif_port;
3770 int error;
3771
0a740f48
EJ
3772 if (sset_contains(&ofproto->ghost_ports, devname)) {
3773 const char *type = netdev_get_type_from_name(devname);
3774
3775 /* We may be called before ofproto->up.port_by_name is populated with
3776 * the appropriate ofport. For this reason, we must get the name and
3777 * type from the netdev layer directly. */
3778 if (type) {
3779 const struct ofport *ofport;
3780
3781 ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3782 ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3783 ofproto_port->name = xstrdup(devname);
3784 ofproto_port->type = xstrdup(type);
3785 return 0;
3786 }
3787 return ENODEV;
3788 }
3789
acf60855
JP
3790 if (!sset_contains(&ofproto->ports, devname)) {
3791 return ENODEV;
3792 }
3793 error = dpif_port_query_by_name(ofproto->backer->dpif,
3794 devname, &dpif_port);
abe529af 3795 if (!error) {
e1b1d06a 3796 ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
abe529af
BP
3797 }
3798 return error;
3799}
3800
3801static int
e1b1d06a 3802port_add(struct ofproto *ofproto_, struct netdev *netdev)
abe529af
BP
3803{
3804 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
b9ad7294 3805 const char *devname = netdev_get_name(netdev);
3aa30359
BP
3806 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
3807 const char *dp_port_name;
abe529af 3808
0a740f48
EJ
3809 if (netdev_vport_is_patch(netdev)) {
3810 sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3811 return 0;
3812 }
3813
3aa30359 3814 dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
9da3207a
FL
3815 if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
3816 odp_port_t port_no = ODPP_NONE;
3817 int error;
7d82ab2e 3818
9da3207a 3819 error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
b9ad7294
EJ
3820 if (error) {
3821 return error;
3822 }
7d82ab2e 3823 if (netdev_get_tunnel_config(netdev)) {
4e022ec0
AW
3824 simap_put(&ofproto->backer->tnl_backers,
3825 dp_port_name, odp_to_u32(port_no));
7d82ab2e 3826 }
acf60855 3827 }
b9ad7294
EJ
3828
3829 if (netdev_get_tunnel_config(netdev)) {
3830 sset_add(&ofproto->ghost_ports, devname);
b9ad7294
EJ
3831 } else {
3832 sset_add(&ofproto->ports, devname);
3833 }
3834 return 0;
3835}
3836
abe529af 3837static int
4e022ec0 3838port_del(struct ofproto *ofproto_, ofp_port_t ofp_port)
abe529af
BP
3839{
3840 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
e672ff9b 3841 struct ofport_dpif *ofport = ofp_port_to_ofport(ofproto, ofp_port);
e1b1d06a 3842 int error = 0;
abe529af 3843
b9ad7294
EJ
3844 if (!ofport) {
3845 return 0;
e1b1d06a 3846 }
b9ad7294
EJ
3847
3848 sset_find_and_delete(&ofproto->ghost_ports,
3849 netdev_get_name(ofport->up.netdev));
a614d823 3850 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8911c674 3851 if (!ofport->is_tunnel && !netdev_vport_is_patch(ofport->up.netdev)) {
97459c2f 3852 error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port, false);
b9ad7294 3853 if (!error) {
abe529af
BP
3854 /* The caller is going to close ofport->up.netdev. If this is a
3855 * bonded port, then the bond is using that netdev, so remove it
3856 * from the bond. The client will need to reconfigure everything
3857 * after deleting ports, so then the slave will get re-added. */
3858 bundle_remove(&ofport->up);
3859 }
3860 }
3861 return error;
3862}
3863
91364d18
IM
3864static int
3865port_set_config(const struct ofport *ofport_, const struct smap *cfg)
3866{
3867 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3868 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3869
3870 if (sset_contains(&ofproto->ghost_ports,
3871 netdev_get_name(ofport->up.netdev))) {
3872 return 0;
3873 }
3874
3875 return dpif_port_set_config(ofproto->backer->dpif, ofport->odp_port, cfg);
3876}
3877
6527c598
PS
3878static int
3879port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3880{
3881 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3882 int error;
3883
3884 error = netdev_get_stats(ofport->up.netdev, stats);
3885
ee382d89 3886 if (!error && ofport_->ofp_port == OFPP_LOCAL) {
6527c598
PS
3887 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3888
0da3c61b 3889 ovs_mutex_lock(&ofproto->stats_mutex);
6527c598
PS
3890 /* ofproto->stats.tx_packets represents packets that we created
3891 * internally and sent to some port (e.g. packets sent with
91d6cd12
AW
3892 * ofproto_dpif_send_packet()). Account for them as if they had
3893 * come from OFPP_LOCAL and got forwarded. */
6527c598
PS
3894
3895 if (stats->rx_packets != UINT64_MAX) {
3896 stats->rx_packets += ofproto->stats.tx_packets;
3897 }
3898
3899 if (stats->rx_bytes != UINT64_MAX) {
3900 stats->rx_bytes += ofproto->stats.tx_bytes;
3901 }
3902
3903 /* ofproto->stats.rx_packets represents packets that were received on
3904 * some port and we processed internally and dropped (e.g. STP).
4e090bc7 3905 * Account for them as if they had been forwarded to OFPP_LOCAL. */
6527c598
PS
3906
3907 if (stats->tx_packets != UINT64_MAX) {
3908 stats->tx_packets += ofproto->stats.rx_packets;
3909 }
3910
3911 if (stats->tx_bytes != UINT64_MAX) {
3912 stats->tx_bytes += ofproto->stats.rx_bytes;
3913 }
0da3c61b 3914 ovs_mutex_unlock(&ofproto->stats_mutex);
6527c598
PS
3915 }
3916
3917 return error;
3918}
3919
723b6ab2
IM
3920static int
3921vport_get_status(const struct ofport *ofport_, char **errp)
3922{
3923 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3924 char *peer_name;
3925
3926 if (!netdev_vport_is_patch(ofport->up.netdev) || ofport->peer) {
3927 return 0;
3928 }
3929
3930 peer_name = netdev_vport_patch_peer(ofport->up.netdev);
3931 if (!peer_name) {
3932 return 0;
3933 }
3934 *errp = xasprintf("No usable peer '%s' exists in '%s' datapath.",
3935 peer_name, ofport->up.ofproto->type);
3936 free(peer_name);
3937 return EINVAL;
3938}
3939
50b9699f
NM
3940static int
3941port_get_lacp_stats(const struct ofport *ofport_, struct lacp_slave_stats *stats)
3942{
3943 struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3944 if (ofport->bundle && ofport->bundle->lacp) {
3945 if (lacp_get_slave_stats(ofport->bundle->lacp, ofport, stats)) {
3946 return 0;
3947 }
3948 }
3949 return -1;
3950}
3951
abe529af 3952struct port_dump_state {
bfbcebc2 3953 struct sset_position pos;
0a740f48 3954 bool ghost;
da78d43d
BP
3955
3956 struct ofproto_port port;
3957 bool has_port;
abe529af
BP
3958};
3959
3960static int
acf60855 3961port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
abe529af 3962{
0a740f48 3963 *statep = xzalloc(sizeof(struct port_dump_state));
abe529af
BP
3964 return 0;
3965}
3966
3967static int
b9ad7294 3968port_dump_next(const struct ofproto *ofproto_, void *state_,
abe529af
BP
3969 struct ofproto_port *port)
3970{
e1b1d06a 3971 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
abe529af 3972 struct port_dump_state *state = state_;
0a740f48 3973 const struct sset *sset;
acf60855 3974 struct sset_node *node;
abe529af 3975
da78d43d
BP
3976 if (state->has_port) {
3977 ofproto_port_destroy(&state->port);
3978 state->has_port = false;
3979 }
0a740f48 3980 sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
bfbcebc2 3981 while ((node = sset_at_position(sset, &state->pos))) {
acf60855
JP
3982 int error;
3983
da78d43d
BP
3984 error = port_query_by_name(ofproto_, node->name, &state->port);
3985 if (!error) {
3986 *port = state->port;
3987 state->has_port = true;
3988 return 0;
3989 } else if (error != ENODEV) {
acf60855
JP
3990 return error;
3991 }
abe529af 3992 }
acf60855 3993
0a740f48
EJ
3994 if (!state->ghost) {
3995 state->ghost = true;
bfbcebc2 3996 memset(&state->pos, 0, sizeof state->pos);
0a740f48
EJ
3997 return port_dump_next(ofproto_, state_, port);
3998 }
3999
acf60855 4000 return EOF;
abe529af
BP
4001}
4002
4003static int
4004port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
4005{
4006 struct port_dump_state *state = state_;
4007
da78d43d
BP
4008 if (state->has_port) {
4009 ofproto_port_destroy(&state->port);
4010 }
abe529af
BP
4011 free(state);
4012 return 0;
4013}
4014
4015static int
4016port_poll(const struct ofproto *ofproto_, char **devnamep)
4017{
4018 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855
JP
4019
4020 if (ofproto->port_poll_errno) {
4021 int error = ofproto->port_poll_errno;
4022 ofproto->port_poll_errno = 0;
4023 return error;
4024 }
4025
4026 if (sset_is_empty(&ofproto->port_poll_set)) {
4027 return EAGAIN;
4028 }
4029
4030 *devnamep = sset_pop(&ofproto->port_poll_set);
4031 return 0;
abe529af
BP
4032}
4033
4034static void
4035port_poll_wait(const struct ofproto *ofproto_)
4036{
4037 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
acf60855 4038 dpif_port_poll_wait(ofproto->backer->dpif);
abe529af
BP
4039}
4040
4041static int
4042port_is_lacp_current(const struct ofport *ofport_)
4043{
4044 const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
4045 return (ofport->bundle && ofport->bundle->lacp
4046 ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
4047 : -1);
4048}
4049\f
e79a6c83
EJ
4050/* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
4051 * then delete it entirely. */
4052static void
f5857865 4053rule_expire(struct rule_dpif *rule, long long now)
e79a6c83 4054 OVS_REQUIRES(ofproto_mutex)
9d6ac44e 4055{
dc437090 4056 uint16_t hard_timeout, idle_timeout;
dc437090 4057 int reason = -1;
9d6ac44e 4058
e79a6c83
EJ
4059 hard_timeout = rule->up.hard_timeout;
4060 idle_timeout = rule->up.idle_timeout;
dc437090
JR
4061
4062 /* Has 'rule' expired? */
4063 if (hard_timeout) {
4064 long long int modified;
4065
4066 ovs_mutex_lock(&rule->up.mutex);
4067 modified = rule->up.modified;
4068 ovs_mutex_unlock(&rule->up.mutex);
4069
4070 if (now > modified + hard_timeout * 1000) {
4071 reason = OFPRR_HARD_TIMEOUT;
4072 }
4073 }
4074
4075 if (reason < 0 && idle_timeout) {
4076 long long int used;
4077
4078 ovs_mutex_lock(&rule->stats_mutex);
1a4ec18d 4079 used = rule->stats.used;
dc437090
JR
4080 ovs_mutex_unlock(&rule->stats_mutex);
4081
4082 if (now > used + idle_timeout * 1000) {
4083 reason = OFPRR_IDLE_TIMEOUT;
4084 }
f9c37233 4085 }
501f8d1f 4086
e79a6c83
EJ
4087 if (reason >= 0) {
4088 COVERAGE_INC(ofproto_dpif_expired);
4089 ofproto_rule_expire(&rule->up, reason);
a41d7bf2 4090 }
e79a6c83 4091}
a41d7bf2 4092
1df7f7aa
NS
4093static void
4094ofproto_dpif_set_packet_odp_port(const struct ofproto_dpif *ofproto,
4095 ofp_port_t in_port, struct dp_packet *packet)
4096{
4097 if (in_port == OFPP_NONE) {
4098 in_port = OFPP_LOCAL;
4099 }
4100 packet->md.in_port.odp_port = ofp_port_to_odp_port(ofproto, in_port);
4101}
4102
e79a6c83 4103int
cdd42eda 4104ofproto_dpif_execute_actions__(struct ofproto_dpif *ofproto,
1f4a8933 4105 ovs_version_t version, const struct flow *flow,
cdd42eda
JG
4106 struct rule_dpif *rule,
4107 const struct ofpact *ofpacts, size_t ofpacts_len,
2d9b49dd 4108 int depth, int resubmits,
cdd42eda 4109 struct dp_packet *packet)
e79a6c83 4110{
e79a6c83
EJ
4111 struct dpif_flow_stats stats;
4112 struct xlate_out xout;
4113 struct xlate_in xin;
758c456d 4114 struct dpif_execute execute;
e79a6c83 4115 int error;
f9c37233 4116
e79a6c83 4117 ovs_assert((rule != NULL) != (ofpacts != NULL));
501f8d1f 4118
e79a6c83 4119 dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
adcf00ba 4120
e79a6c83
EJ
4121 if (rule) {
4122 rule_dpif_credit_stats(rule, &stats);
4123 }
c84451a6 4124
1520ef4f
BP
4125 uint64_t odp_actions_stub[1024 / 8];
4126 struct ofpbuf odp_actions = OFPBUF_STUB_INITIALIZER(odp_actions_stub);
1f4a8933 4127 xlate_in_init(&xin, ofproto, version, flow, flow->in_port.ofp_port, rule,
1520ef4f 4128 stats.tcp_flags, packet, NULL, &odp_actions);
e79a6c83
EJ
4129 xin.ofpacts = ofpacts;
4130 xin.ofpacts_len = ofpacts_len;
4131 xin.resubmit_stats = &stats;
790c5d26 4132 xin.depth = depth;
cdd42eda 4133 xin.resubmits = resubmits;
fff1b9c0
JR
4134 if (xlate_actions(&xin, &xout) != XLATE_OK) {
4135 error = EINVAL;
4136 goto out;
4137 }
d445cc16 4138
1520ef4f
BP
4139 execute.actions = odp_actions.data;
4140 execute.actions_len = odp_actions.size;
a36de779 4141
cf62fa4c 4142 pkt_metadata_from_flow(&packet->md, flow);
08edf837 4143 execute.packet = packet;
1cceb31b 4144 execute.flow = flow;
08edf837 4145 execute.needs_help = (xout.slow & SLOW_ACTION) != 0;
43f9ac0a 4146 execute.probe = false;
27130224 4147 execute.mtu = 0;
08edf837
BP
4148
4149 /* Fix up in_port. */
1df7f7aa 4150 ofproto_dpif_set_packet_odp_port(ofproto, flow->in_port.ofp_port, packet);
758c456d
JR
4151
4152 error = dpif_execute(ofproto->backer->dpif, &execute);
fff1b9c0 4153out:
e79a6c83 4154 xlate_out_uninit(&xout);
1520ef4f 4155 ofpbuf_uninit(&odp_actions);
9d6ac44e 4156
e79a6c83 4157 return error;
9d6ac44e
BP
4158}
4159
cdd42eda
JG
4160/* Executes, within 'ofproto', the actions in 'rule' or 'ofpacts' on 'packet'.
4161 * 'flow' must reflect the data in 'packet'. */
4162int
4163ofproto_dpif_execute_actions(struct ofproto_dpif *ofproto,
1f4a8933 4164 ovs_version_t version, const struct flow *flow,
cdd42eda
JG
4165 struct rule_dpif *rule,
4166 const struct ofpact *ofpacts, size_t ofpacts_len,
4167 struct dp_packet *packet)
4168{
1f4a8933 4169 return ofproto_dpif_execute_actions__(ofproto, version, flow, rule,
2d9b49dd 4170 ofpacts, ofpacts_len, 0, 0, packet);
cdd42eda
JG
4171}
4172
748eb2f5
JR
4173static void
4174rule_dpif_credit_stats__(struct rule_dpif *rule,
4175 const struct dpif_flow_stats *stats,
4176 bool credit_counts)
4177 OVS_REQUIRES(rule->stats_mutex)
4178{
4179 if (credit_counts) {
4180 rule->stats.n_packets += stats->n_packets;
4181 rule->stats.n_bytes += stats->n_bytes;
4182 }
4183 rule->stats.used = MAX(rule->stats.used, stats->used);
4184}
4185
e79a6c83
EJ
4186void
4187rule_dpif_credit_stats(struct rule_dpif *rule,
4188 const struct dpif_flow_stats *stats)
8f73d537 4189{
e79a6c83 4190 ovs_mutex_lock(&rule->stats_mutex);
39c94593 4191 if (OVS_UNLIKELY(rule->new_rule)) {
748eb2f5
JR
4192 ovs_mutex_lock(&rule->new_rule->stats_mutex);
4193 rule_dpif_credit_stats__(rule->new_rule, stats, rule->forward_counts);
4194 ovs_mutex_unlock(&rule->new_rule->stats_mutex);
39c94593 4195 } else {
748eb2f5 4196 rule_dpif_credit_stats__(rule, stats, true);
39c94593 4197 }
e79a6c83 4198 ovs_mutex_unlock(&rule->stats_mutex);
8f73d537
EJ
4199}
4200
888ac0d7
SH
4201/* Sets 'rule''s recirculation id. */
4202static void
4203rule_dpif_set_recirc_id(struct rule_dpif *rule, uint32_t id)
4204 OVS_REQUIRES(rule->up.mutex)
4205{
e672ff9b
JR
4206 ovs_assert(!rule->recirc_id || rule->recirc_id == id);
4207 if (rule->recirc_id == id) {
4208 /* Release the new reference to the same id. */
4209 recirc_free_id(id);
4210 } else {
4211 rule->recirc_id = id;
888ac0d7 4212 }
888ac0d7
SH
4213}
4214
4215/* Sets 'rule''s recirculation id. */
4216void
4217rule_set_recirc_id(struct rule *rule_, uint32_t id)
4218{
4219 struct rule_dpif *rule = rule_dpif_cast(rule_);
4220
4221 ovs_mutex_lock(&rule->up.mutex);
4222 rule_dpif_set_recirc_id(rule, id);
4223 ovs_mutex_unlock(&rule->up.mutex);
4224}
4225
44e0c35d 4226ovs_version_t
1f4a8933 4227ofproto_dpif_get_tables_version(struct ofproto_dpif *ofproto)
621b8064 4228{
44e0c35d 4229 ovs_version_t version;
621b8064 4230
f9cf9e57
JR
4231 /* Use memory_order_acquire to signify that any following memory accesses
4232 * can not be reordered to happen before this atomic read. This makes sure
4233 * all following reads relate to this or a newer version, but never to an
4234 * older version. */
4235 atomic_read_explicit(&ofproto->tables_version, &version,
4236 memory_order_acquire);
621b8064
JR
4237 return version;
4238}
4239
34dd0d78 4240/* The returned rule (if any) is valid at least until the next RCU quiescent
1e1e1d19
BP
4241 * period. If the rule needs to stay around longer, the caller should take
4242 * a reference.
2e0bded4
BP
4243 *
4244 * 'flow' is non-const to allow for temporary modifications during the lookup.
4245 * Any changes are restored before returning. */
6d328fa2 4246static struct rule_dpif *
44e0c35d 4247rule_dpif_lookup_in_table(struct ofproto_dpif *ofproto, ovs_version_t version,
621b8064 4248 uint8_t table_id, struct flow *flow,
1e1e1d19 4249 struct flow_wildcards *wc)
abe529af 4250{
6d328fa2 4251 struct classifier *cls = &ofproto->up.tables[table_id].cls;
1e1e1d19
BP
4252 return rule_dpif_cast(rule_from_cls_rule(classifier_lookup(cls, version,
4253 flow, wc)));
6d328fa2
SH
4254}
4255
a027899e
JR
4256void
4257ofproto_dpif_credit_table_stats(struct ofproto_dpif *ofproto, uint8_t table_id,
4258 uint64_t n_matches, uint64_t n_misses)
4259{
4260 struct oftable *tbl = &ofproto->up.tables[table_id];
4261 unsigned long orig;
4262
4263 if (n_matches) {
4264 atomic_add_relaxed(&tbl->n_matched, n_matches, &orig);
4265 }
4266 if (n_misses) {
4267 atomic_add_relaxed(&tbl->n_missed, n_misses, &orig);
4268 }
4269}
4270
39c94593
JR
4271/* Look up 'flow' in 'ofproto''s classifier version 'version', starting from
4272 * table '*table_id'. Returns the rule that was found, which may be one of the
4273 * special rules according to packet miss hadling. If 'may_packet_in' is
4274 * false, returning of the miss_rule (which issues packet ins for the
4275 * controller) is avoided. Updates 'wc', if nonnull, to reflect the fields
4276 * that were used during the lookup.
6d328fa2
SH
4277 *
4278 * If 'honor_table_miss' is true, the first lookup occurs in '*table_id', but
4279 * if none is found then the table miss configuration for that table is
4280 * honored, which can result in additional lookups in other OpenFlow tables.
4281 * In this case the function updates '*table_id' to reflect the final OpenFlow
4282 * table that was searched.
4283 *
4284 * If 'honor_table_miss' is false, then only one table lookup occurs, in
4285 * '*table_id'.
4286 *
1a7c0cd7 4287 * The rule is returned in '*rule', which is valid at least until the next
1e1e1d19
BP
4288 * RCU quiescent period. If the '*rule' needs to stay around longer, the
4289 * caller must take a reference.
34dd0d78
JR
4290 *
4291 * 'in_port' allows the lookup to take place as if the in port had the value
2e0bded4
BP
4292 * 'in_port'. This is needed for resubmit action support.
4293 *
4294 * 'flow' is non-const to allow for temporary modifications during the lookup.
4295 * Any changes are restored before returning. */
34dd0d78 4296struct rule_dpif *
18721c4a 4297rule_dpif_lookup_from_table(struct ofproto_dpif *ofproto,
44e0c35d 4298 ovs_version_t version, struct flow *flow,
1e1e1d19 4299 struct flow_wildcards *wc,
18721c4a 4300 const struct dpif_flow_stats *stats,
34dd0d78 4301 uint8_t *table_id, ofp_port_t in_port,
a027899e
JR
4302 bool may_packet_in, bool honor_table_miss,
4303 struct xlate_cache *xcache)
6d328fa2 4304{
d8227eba 4305 ovs_be16 old_tp_src = flow->tp_src, old_tp_dst = flow->tp_dst;
34dd0d78
JR
4306 ofp_port_t old_in_port = flow->in_port.ofp_port;
4307 enum ofputil_table_miss miss_config;
4308 struct rule_dpif *rule;
6d328fa2
SH
4309 uint8_t next_id;
4310
d8227eba
JR
4311 /* We always unwildcard nw_frag (for IP), so they
4312 * need not be unwildcarded here. */
4313 if (flow->nw_frag & FLOW_NW_FRAG_ANY
ad99e2ed
BP
4314 && ofproto->up.frag_handling != OFPUTIL_FRAG_NX_MATCH) {
4315 if (ofproto->up.frag_handling == OFPUTIL_FRAG_NORMAL) {
d8227eba
JR
4316 /* We must pretend that transport ports are unavailable. */
4317 flow->tp_src = htons(0);
4318 flow->tp_dst = htons(0);
4319 } else {
ad99e2ed 4320 /* Must be OFPUTIL_FRAG_DROP (we don't have OFPUTIL_FRAG_REASM).
d8227eba 4321 * Use the drop_frags_rule (which cannot disappear). */
34dd0d78 4322 rule = ofproto->drop_frags_rule;
d8227eba
JR
4323 if (stats) {
4324 struct oftable *tbl = &ofproto->up.tables[*table_id];
4325 unsigned long orig;
4326
4327 atomic_add_relaxed(&tbl->n_matched, stats->n_packets, &orig);
4328 }
a027899e
JR
4329 if (xcache) {
4330 struct xc_entry *entry;
4331
4332 entry = xlate_cache_add_entry(xcache, XC_TABLE);
4333 entry->table.ofproto = ofproto;
4334 entry->table.id = *table_id;
4335 entry->table.match = true;
4336 }
34dd0d78 4337 return rule;
d8227eba
JR
4338 }
4339 }
4340
34dd0d78
JR
4341 /* Look up a flow with 'in_port' as the input port. Then restore the
4342 * original input port (otherwise OFPP_NORMAL and OFPP_IN_PORT will
4343 * have surprising behavior). */
4344 flow->in_port.ofp_port = in_port;
4345
4346 /* Our current implementation depends on n_tables == N_TABLES, and
4347 * TBL_INTERNAL being the last table. */
4348 BUILD_ASSERT_DECL(N_TABLES == TBL_INTERNAL + 1);
4349
4350 miss_config = OFPUTIL_TABLE_MISS_CONTINUE;
d8227eba 4351
6d328fa2
SH
4352 for (next_id = *table_id;
4353 next_id < ofproto->up.n_tables;
4354 next_id++, next_id += (next_id == TBL_INTERNAL))
4355 {
4356 *table_id = next_id;
1e1e1d19 4357 rule = rule_dpif_lookup_in_table(ofproto, version, next_id, flow, wc);
d611866c
SH
4358 if (stats) {
4359 struct oftable *tbl = &ofproto->up.tables[next_id];
d611866c 4360 unsigned long orig;
afcea9ea 4361
34dd0d78 4362 atomic_add_relaxed(rule ? &tbl->n_matched : &tbl->n_missed,
afcea9ea 4363 stats->n_packets, &orig);
d611866c 4364 }
a027899e
JR
4365 if (xcache) {
4366 struct xc_entry *entry;
4367
4368 entry = xlate_cache_add_entry(xcache, XC_TABLE);
4369 entry->table.ofproto = ofproto;
4370 entry->table.id = next_id;
4371 entry->table.match = (rule != NULL);
4372 }
34dd0d78
JR
4373 if (rule) {
4374 goto out; /* Match. */
4375 }
4376 if (honor_table_miss) {
4377 miss_config = ofproto_table_get_miss_config(&ofproto->up,
4378 *table_id);
4379 if (miss_config == OFPUTIL_TABLE_MISS_CONTINUE) {
4380 continue;
4381 }
4382 }
4383 break;
4384 }
4385 /* Miss. */
4386 rule = ofproto->no_packet_in_rule;
4387 if (may_packet_in) {
4388 if (miss_config == OFPUTIL_TABLE_MISS_CONTINUE
4389 || miss_config == OFPUTIL_TABLE_MISS_CONTROLLER) {
4390 struct ofport_dpif *port;
4391
e672ff9b 4392 port = ofp_port_to_ofport(ofproto, old_in_port);
34dd0d78 4393 if (!port) {
94783c7c 4394 VLOG_WARN_RL(&rl, "packet-in on unknown OpenFlow port %"PRIu32,
34dd0d78
JR
4395 old_in_port);
4396 } else if (!(port->up.pp.config & OFPUTIL_PC_NO_PACKET_IN)) {
4397 rule = ofproto->miss_rule;
6d328fa2 4398 }
34dd0d78
JR
4399 } else if (miss_config == OFPUTIL_TABLE_MISS_DEFAULT &&
4400 connmgr_wants_packet_in_on_miss(ofproto->up.connmgr)) {
4401 rule = ofproto->miss_rule;
6d328fa2
SH
4402 }
4403 }
d8227eba
JR
4404out:
4405 /* Restore port numbers, as they may have been modified above. */
4406 flow->tp_src = old_tp_src;
4407 flow->tp_dst = old_tp_dst;
34dd0d78
JR
4408 /* Restore the old in port. */
4409 flow->in_port.ofp_port = old_in_port;
6d328fa2 4410
34dd0d78 4411 return rule;
a2143702
BP
4412}
4413
70742c7f
EJ
4414static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
4415{
4416 return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
4417}
4418
abe529af
BP
4419static struct rule *
4420rule_alloc(void)
4421{
3da29e32 4422 struct rule_dpif *rule = xzalloc(sizeof *rule);
abe529af
BP
4423 return &rule->up;
4424}
4425
4426static void
4427rule_dealloc(struct rule *rule_)
4428{
4429 struct rule_dpif *rule = rule_dpif_cast(rule_);
4430 free(rule);
4431}
4432
07659514 4433static enum ofperr
1b43cf9e 4434check_mask(struct ofproto_dpif *ofproto, const struct miniflow *flow)
07659514 4435{
95619d8c 4436 const struct odp_support *support;
07659514 4437 uint16_t ct_state, ct_zone;
efba5ae4 4438 ovs_u128 ct_label;
8e53fe8c 4439 uint32_t ct_mark;
07659514 4440
88186383 4441 support = &ofproto->backer->rt_support.odp;
2a28ccc8 4442 ct_state = MINIFLOW_GET_U8(flow, ct_state);
d73ccab1 4443
19be6c52
BP
4444 if (ct_state & CS_UNSUPPORTED_MASK) {
4445 return OFPERR_OFPBMC_BAD_MASK;
4446 }
4447
d73ccab1
JR
4448 /* Do not bother dissecting the flow further if the datapath supports all
4449 * the features we know of. */
11968381 4450 if (support->ct_state && support->ct_zone && support->ct_mark
d73ccab1 4451 && support->ct_label && support->ct_state_nat
7b5bbe5d 4452 && support->ct_orig_tuple && support->ct_orig_tuple6) {
19be6c52 4453 return 0;
11968381
JS
4454 }
4455
1b43cf9e
JS
4456 ct_zone = MINIFLOW_GET_U16(flow, ct_zone);
4457 ct_mark = MINIFLOW_GET_U32(flow, ct_mark);
4458 ct_label = MINIFLOW_GET_U128(flow, ct_label);
07659514 4459
95619d8c 4460 if ((ct_state && !support->ct_state)
7b27258c 4461 || ((ct_state & (CS_SRC_NAT | CS_DST_NAT)) && !support->ct_state_nat)
95619d8c
JS
4462 || (ct_zone && !support->ct_zone)
4463 || (ct_mark && !support->ct_mark)
2ff8484b 4464 || (!ovs_u128_is_zero(ct_label) && !support->ct_label)) {
19be6c52 4465 return OFPERR_NXBMC_CT_DATAPATH_SUPPORT;
07659514 4466 }
95619d8c 4467
7b5bbe5d
JS
4468 if (!support->ct_orig_tuple && !support->ct_orig_tuple6
4469 && (MINIFLOW_GET_U8(flow, ct_nw_proto)
4470 || MINIFLOW_GET_U16(flow, ct_tp_src)
4471 || MINIFLOW_GET_U16(flow, ct_tp_dst))) {
19be6c52 4472 return OFPERR_NXBMC_CT_DATAPATH_SUPPORT;
7b5bbe5d
JS
4473 }
4474
4475 if (!support->ct_orig_tuple
4476 && (MINIFLOW_GET_U32(flow, ct_nw_src)
4477 || MINIFLOW_GET_U32(flow, ct_nw_dst))) {
19be6c52 4478 return OFPERR_NXBMC_CT_DATAPATH_SUPPORT;
7b5bbe5d
JS
4479 }
4480
4481 if (!support->ct_orig_tuple6
4482 && (!ovs_u128_is_zero(MINIFLOW_GET_U128(flow, ct_ipv6_src))
4483 || !ovs_u128_is_zero(MINIFLOW_GET_U128(flow, ct_ipv6_dst)))) {
19be6c52 4484 return OFPERR_NXBMC_CT_DATAPATH_SUPPORT;
d73ccab1
JR
4485 }
4486
07659514
JS
4487 return 0;
4488}
4489
caa5c156 4490static void
76c62d19 4491report_unsupported_act(const char *action, const char *detail)
caa5c156 4492{
7ed58d4a
JP
4493 static struct vlog_rate_limit rll = VLOG_RATE_LIMIT_INIT(1, 5);
4494 VLOG_WARN_RL(&rll, "Rejecting %s action because datapath does not support"
76c62d19
JR
4495 "%s%s (your kernel module may be out of date)",
4496 action, detail ? " " : "", detail ? detail : "");
caa5c156
BP
4497}
4498
1b43cf9e
JS
4499static enum ofperr
4500check_actions(const struct ofproto_dpif *ofproto,
4501 const struct rule_actions *const actions)
4502{
4503 const struct ofpact *ofpact;
88186383 4504 const struct odp_support *support = &ofproto->backer->rt_support.odp;
1b43cf9e
JS
4505
4506 OFPACT_FOR_EACH (ofpact, actions->ofpacts, actions->ofpacts_len) {
76c62d19
JR
4507 if (ofpact->type == OFPACT_CT) {
4508 const struct ofpact_conntrack *ct;
4509 const struct ofpact *a;
1b43cf9e 4510
76c62d19 4511 ct = CONTAINER_OF(ofpact, struct ofpact_conntrack, ofpact);
1b43cf9e 4512
76c62d19
JR
4513 if (!support->ct_state) {
4514 report_unsupported_act("ct", "ct action");
19be6c52 4515 return OFPERR_NXBAC_CT_DATAPATH_SUPPORT;
76c62d19
JR
4516 }
4517 if ((ct->zone_imm || ct->zone_src.field) && !support->ct_zone) {
4518 report_unsupported_act("ct", "ct zones");
19be6c52 4519 return OFPERR_NXBAC_CT_DATAPATH_SUPPORT;
76c62d19
JR
4520 }
4521 /* So far the force commit feature is implemented together with the
4522 * original direction tuple feature by all datapaths, so we use the
4523 * support flag for the 'ct_orig_tuple' to indicate support for the
4524 * force commit feature as well. */
4525 if ((ct->flags & NX_CT_F_FORCE) && !support->ct_orig_tuple) {
4526 report_unsupported_act("ct", "force commit");
19be6c52 4527 return OFPERR_NXBAC_CT_DATAPATH_SUPPORT;
76c62d19 4528 }
1b43cf9e 4529
76c62d19
JR
4530 OFPACT_FOR_EACH(a, ct->actions, ofpact_ct_get_action_len(ct)) {
4531 const struct mf_field *dst = ofpact_get_mf_dst(a);
1b43cf9e 4532
76c62d19
JR
4533 if (a->type == OFPACT_NAT && !support->ct_state_nat) {
4534 /* The backer doesn't seem to support the NAT bits in
4535 * 'ct_state': assume that it doesn't support the NAT
4536 * action. */
4537 report_unsupported_act("ct", "nat");
19be6c52 4538 return OFPERR_NXBAC_CT_DATAPATH_SUPPORT;
76c62d19
JR
4539 }
4540 if (dst && ((dst->id == MFF_CT_MARK && !support->ct_mark) ||
4541 (dst->id == MFF_CT_LABEL && !support->ct_label))) {
4542 report_unsupported_act("ct", "setting mark and/or label");
19be6c52 4543 return OFPERR_NXBAC_CT_DATAPATH_SUPPORT;
76c62d19
JR
4544 }
4545 }
4546 } else if (ofpact->type == OFPACT_RESUBMIT) {
4547 struct ofpact_resubmit *resubmit = ofpact_get_RESUBMIT(ofpact);
1b43cf9e 4548
76c62d19
JR
4549 if (resubmit->with_ct_orig && !support->ct_orig_tuple) {
4550 report_unsupported_act("resubmit",
4551 "ct original direction tuple");
19be6c52 4552 return OFPERR_NXBAC_CT_DATAPATH_SUPPORT;
7b27258c 4553 }
1b43cf9e
JS
4554 }
4555 }
4556
4557 return 0;
4558}
4559
4560static enum ofperr
4561rule_check(struct rule *rule)
4562{
4563 struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->ofproto);
4564 enum ofperr err;
4565
4566 err = check_mask(ofproto, &rule->cr.match.mask->masks);
4567 if (err) {
4568 return err;
4569 }
4570 return check_actions(ofproto, rule->actions);
4571}
4572
90bf1e07 4573static enum ofperr
abe529af 4574rule_construct(struct rule *rule_)
dc437090 4575 OVS_NO_THREAD_SAFETY_ANALYSIS
abe529af
BP
4576{
4577 struct rule_dpif *rule = rule_dpif_cast(rule_);
07659514
JS
4578 int error;
4579
4580 error = rule_check(rule_);
4581 if (error) {
4582 return error;
4583 }
4584
97ba2d36 4585 ovs_mutex_init_adaptive(&rule->stats_mutex);
1a4ec18d
JS
4586 rule->stats.n_packets = 0;
4587 rule->stats.n_bytes = 0;
4588 rule->stats.used = rule->up.modified;
888ac0d7 4589 rule->recirc_id = 0;
39c94593 4590 rule->new_rule = NULL;
748eb2f5 4591 rule->forward_counts = false;
888ac0d7 4592
abe529af
BP
4593 return 0;
4594}
4595
146ee626 4596static enum ofperr
748eb2f5 4597rule_insert(struct rule *rule_, struct rule *old_rule_, bool forward_counts)
15aaf599 4598 OVS_REQUIRES(ofproto_mutex)
abe529af 4599{
9fbe253e 4600 struct rule_dpif *rule = rule_dpif_cast(rule_);
39c94593 4601
748eb2f5 4602 if (old_rule_) {
39c94593
JR
4603 struct rule_dpif *old_rule = rule_dpif_cast(old_rule_);
4604
4605 ovs_assert(!old_rule->new_rule);
4606
4607 /* Take a reference to the new rule, and refer all stats updates from
4608 * the old rule to the new rule. */
07a3cd5c 4609 ofproto_rule_ref(&rule->up);
39c94593
JR
4610
4611 ovs_mutex_lock(&old_rule->stats_mutex);
4612 ovs_mutex_lock(&rule->stats_mutex);
4613 old_rule->new_rule = rule; /* Forward future stats. */
748eb2f5
JR
4614 old_rule->forward_counts = forward_counts;
4615
4616 if (forward_counts) {
4617 rule->stats = old_rule->stats; /* Transfer stats to the new
4618 * rule. */
4619 } else {
4620 /* Used timestamp must be forwarded whenever a rule is modified. */
4621 rule->stats.used = old_rule->stats.used;
4622 }
39c94593
JR
4623 ovs_mutex_unlock(&rule->stats_mutex);
4624 ovs_mutex_unlock(&old_rule->stats_mutex);
4625 }
146ee626
AP
4626
4627 return 0;
8037acb4
BP
4628}
4629
4630static void
4631rule_destruct(struct rule *rule_)
39c94593 4632 OVS_NO_THREAD_SAFETY_ANALYSIS
8037acb4
BP
4633{
4634 struct rule_dpif *rule = rule_dpif_cast(rule_);
888ac0d7 4635
9fbe253e 4636 ovs_mutex_destroy(&rule->stats_mutex);
39c94593
JR
4637 /* Release reference to the new rule, if any. */
4638 if (rule->new_rule) {
07a3cd5c 4639 ofproto_rule_unref(&rule->new_rule->up);
39c94593 4640 }
888ac0d7 4641 if (rule->recirc_id) {
e672ff9b 4642 recirc_free_id(rule->recirc_id);
888ac0d7 4643 }
abe529af
BP
4644}
4645
4646static void
dc437090
JR
4647rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes,
4648 long long int *used)
abe529af
BP
4649{
4650 struct rule_dpif *rule = rule_dpif_cast(rule_);
abe529af 4651
9fbe253e 4652 ovs_mutex_lock(&rule->stats_mutex);
39c94593
JR
4653 if (OVS_UNLIKELY(rule->new_rule)) {
4654 rule_get_stats(&rule->new_rule->up, packets, bytes, used);
4655 } else {
4656 *packets = rule->stats.n_packets;
4657 *bytes = rule->stats.n_bytes;
4658 *used = rule->stats.used;
4659 }
9fbe253e 4660 ovs_mutex_unlock(&rule->stats_mutex);
abe529af
BP
4661}
4662
1f4a8933
JR
4663struct ofproto_dpif_packet_out {
4664 struct xlate_cache xcache;
4665 struct ofpbuf odp_actions;
4666 struct recirc_refs rr;
4667 bool needs_help;
4668};
4669
4670
4671static struct ofproto_dpif_packet_out *
4672ofproto_dpif_packet_out_new(void)
4673{
4674 struct ofproto_dpif_packet_out *aux = xmalloc(sizeof *aux);
4675 xlate_cache_init(&aux->xcache);
4676 ofpbuf_init(&aux->odp_actions, 64);
4677 aux->rr = RECIRC_REFS_EMPTY_INITIALIZER;
4678 aux->needs_help = false;
4679
4680 return aux;
4681}
4682
4683static void
4684ofproto_dpif_packet_out_delete(struct ofproto_dpif_packet_out *aux)
4685{
4686 if (aux) {
4687 xlate_cache_uninit(&aux->xcache);
4688 ofpbuf_uninit(&aux->odp_actions);
4689 recirc_refs_unref(&aux->rr);
4690 free(aux);
4691 }
4692}
4693
4694static enum ofperr
4695packet_xlate(struct ofproto *ofproto_, struct ofproto_packet_out *opo)
4696 OVS_REQUIRES(ofproto_mutex)
4697{
4698 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4699 struct xlate_out xout;
4700 struct xlate_in xin;
4701 enum ofperr error = 0;
4702
4703 struct ofproto_dpif_packet_out *aux = ofproto_dpif_packet_out_new();
4704
4705 xlate_in_init(&xin, ofproto, opo->version, opo->flow,
4706 opo->flow->in_port.ofp_port, NULL, 0, opo->packet, NULL,
4707 &aux->odp_actions);
4708 xin.ofpacts = opo->ofpacts;
4709 xin.ofpacts_len = opo->ofpacts_len;
4710 /* No learning or stats, but collect side effects to xcache. */
4711 xin.allow_side_effects = false;
4712 xin.resubmit_stats = NULL;
4713 xin.xcache = &aux->xcache;
331c07ac 4714 xin.in_packet_out = true;
1f4a8933
JR
4715
4716 if (xlate_actions(&xin, &xout) != XLATE_OK) {
4717 error = OFPERR_OFPFMFC_UNKNOWN; /* Error processing actions. */
4718 goto error_out;
4719 } else {
4720 /* Prepare learn actions. */
4721 struct xc_entry *entry;
4722 struct ofpbuf entries = aux->xcache.entries;
4723
4724 XC_ENTRY_FOR_EACH (entry, &entries) {
4725 if (entry->type == XC_LEARN) {
4726 struct ofproto_flow_mod *ofm = entry->learn.ofm;
4727
4728 error = ofproto_flow_mod_learn_refresh(ofm);
4729 if (error) {
4730 goto error_out;
4731 }
4732 struct rule *rule = ofm->temp_rule;
4733 ofm->learn_adds_rule = (rule->state == RULE_INITIALIZED);
4734 if (ofm->learn_adds_rule) {
4735 /* If learning on a different bridge, must use its next
4736 * version number. */
4737 ofm->version = (rule->ofproto == ofproto_)
4738 ? opo->version : rule->ofproto->tables_version + 1;
4739 error = ofproto_flow_mod_learn_start(ofm);
4740 if (error) {
4741 goto error_out;
4742 }
4743 }
4744 }
4745 }
4746
4747 /* Success. */
4748 aux->needs_help = (xout.slow & SLOW_ACTION) != 0;
4749 recirc_refs_swap(&aux->rr, &xout.recircs); /* Hold recirc refs. */
4750 }
4751 xlate_out_uninit(&xout);
4752 opo->aux = aux;
4753 return 0;
4754
4755error_out:
4756 xlate_out_uninit(&xout);
4757 ofproto_dpif_packet_out_delete(aux);
4758 opo->aux = NULL;
4759 return error;
4760}
4761
6dd3c787
JR
4762static void
4763packet_xlate_revert(struct ofproto *ofproto OVS_UNUSED,
4764 struct ofproto_packet_out *opo)
4765 OVS_REQUIRES(ofproto_mutex)
4766{
4767 struct ofproto_dpif_packet_out *aux = opo->aux;
4768 ovs_assert(aux);
4769
4770 /* Revert the learned flows. */
4771 struct xc_entry *entry;
4772 struct ofpbuf entries = aux->xcache.entries;
4773
4774 XC_ENTRY_FOR_EACH (entry, &entries) {
4775 if (entry->type == XC_LEARN && entry->learn.ofm->learn_adds_rule) {
4776 ofproto_flow_mod_learn_revert(entry->learn.ofm);
4777 }
4778 }
4779
4780 ofproto_dpif_packet_out_delete(aux);
4781 opo->aux = NULL;
4782}
4783
1f4a8933
JR
4784/* Push stats and perform side effects of flow translation. */
4785static void
4786ofproto_dpif_xcache_execute(struct ofproto_dpif *ofproto,
4787 struct xlate_cache *xcache,
7c12dfc5 4788 struct dpif_flow_stats *stats)
1f4a8933
JR
4789 OVS_REQUIRES(ofproto_mutex)
4790{
4791 struct xc_entry *entry;
4792 struct ofpbuf entries = xcache->entries;
4793
4794 XC_ENTRY_FOR_EACH (entry, &entries) {
4795 switch (entry->type) {
4796 case XC_LEARN:
4797 /* Finish the learned flows. */
4798 if (entry->learn.ofm->learn_adds_rule) {
4799 ofproto_flow_mod_learn_finish(entry->learn.ofm, &ofproto->up);
4800 }
4801 break;
4802 case XC_FIN_TIMEOUT:
4803 if (stats->tcp_flags & (TCP_FIN | TCP_RST)) {
4804 /* 'ofproto_mutex' already held */
4805 ofproto_rule_reduce_timeouts__(&entry->fin.rule->up,
4806 entry->fin.idle,
4807 entry->fin.hard);
4808 }
4809 break;
4810 /* All the rest can be dealt with by the xlate layer. */
4811 case XC_TABLE:
4812 case XC_RULE:
4813 case XC_BOND:
4814 case XC_NETDEV:
4815 case XC_NETFLOW:
4816 case XC_MIRROR:
4817 case XC_NORMAL:
4818 case XC_GROUP:
4819 case XC_TNL_NEIGH:
7c12dfc5 4820 case XC_TUNNEL_HEADER:
1f4a8933
JR
4821 xlate_push_stats_entry(entry, stats);
4822 break;
4823 default:
4824 OVS_NOT_REACHED();
4825 }
4826 }
4827}
4828
4829static void
4830packet_execute(struct ofproto *ofproto_, struct ofproto_packet_out *opo)
4831 OVS_REQUIRES(ofproto_mutex)
4832{
4833 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
4834 struct dpif_flow_stats stats;
4835 struct dpif_execute execute;
4836
4837 struct ofproto_dpif_packet_out *aux = opo->aux;
4838 ovs_assert(aux);
4839
4840 /* Run the side effects from the xcache. */
4841 dpif_flow_stats_extract(opo->flow, opo->packet, time_msec(), &stats);
4842 ofproto_dpif_xcache_execute(ofproto, &aux->xcache, &stats);
4843
4844 execute.actions = aux->odp_actions.data;
4845 execute.actions_len = aux->odp_actions.size;
4846
4847 pkt_metadata_from_flow(&opo->packet->md, opo->flow);
4848 execute.packet = opo->packet;
4849 execute.flow = opo->flow;
4850 execute.needs_help = aux->needs_help;
4851 execute.probe = false;
4852 execute.mtu = 0;
4853
4854 /* Fix up in_port. */
4855 ofproto_dpif_set_packet_odp_port(ofproto, opo->flow->in_port.ofp_port,
4856 opo->packet);
4857
4858 dpif_execute(ofproto->backer->dpif, &execute);
4859 ofproto_dpif_packet_out_delete(aux);
4860 opo->aux = NULL;
4861}
4862
00430a3f
SH
4863static struct group_dpif *group_dpif_cast(const struct ofgroup *group)
4864{
4865 return group ? CONTAINER_OF(group, struct group_dpif, up) : NULL;
4866}
4867
4868static struct ofgroup *
4869group_alloc(void)
4870{
4871 struct group_dpif *group = xzalloc(sizeof *group);
4872 return &group->up;
4873}
4874
4875static void
4876group_dealloc(struct ofgroup *group_)
4877{
4878 struct group_dpif *group = group_dpif_cast(group_);
4879 free(group);
4880}
4881
4882static void
4883group_construct_stats(struct group_dpif *group)
4884 OVS_REQUIRES(group->stats_mutex)
4885{
4886 group->packet_count = 0;
4887 group->byte_count = 0;
1e684d7d 4888
07a3cd5c
BP
4889 struct ofputil_bucket *bucket;
4890 LIST_FOR_EACH (bucket, list_node, &group->up.buckets) {
1e684d7d
RW
4891 bucket->stats.packet_count = 0;
4892 bucket->stats.byte_count = 0;
00430a3f
SH
4893 }
4894}
4895
1e684d7d
RW
4896void
4897group_dpif_credit_stats(struct group_dpif *group,
4898 struct ofputil_bucket *bucket,
4899 const struct dpif_flow_stats *stats)
4900{
4901 ovs_mutex_lock(&group->stats_mutex);
4902 group->packet_count += stats->n_packets;
4903 group->byte_count += stats->n_bytes;
4904 if (bucket) {
4905 bucket->stats.packet_count += stats->n_packets;
4906 bucket->stats.byte_count += stats->n_bytes;
4907 } else { /* Credit to all buckets */
07a3cd5c 4908 LIST_FOR_EACH (bucket, list_node, &group->up.buckets) {
1e684d7d
RW
4909 bucket->stats.packet_count += stats->n_packets;
4910 bucket->stats.byte_count += stats->n_bytes;
4911 }
4912 }
4913 ovs_mutex_unlock(&group->stats_mutex);
4914}
4915
2e3fd24c
JS
4916/* Calculate the dp_hash mask needed to provide the least weighted bucket
4917 * with at least one hash value and construct a mapping table from masked
4918 * dp_hash value to group bucket using the Webster method.
4919 * If the caller specifies a non-zero max_hash value, abort and return false
4920 * if more hash values would be required. The absolute maximum number of
4921 * hash values supported is 256. */
4922
4923#define MAX_SELECT_GROUP_HASH_VALUES 256
4924
4925static bool
4926group_setup_dp_hash_table(struct group_dpif *group, size_t max_hash)
4927{
4928 struct ofputil_bucket *bucket;
4929 uint32_t n_buckets = group->up.n_buckets;
4930 uint64_t total_weight = 0;
4931 uint16_t min_weight = UINT16_MAX;
4932 struct webster {
4933 struct ofputil_bucket *bucket;
4934 uint32_t divisor;
4935 double value;
4936 int hits;
4937 } *webster;
4938
4939 if (n_buckets == 0) {
06db81cc 4940 VLOG_DBG(" Don't apply dp_hash method without buckets.");
2e3fd24c
JS
4941 return false;
4942 }
4943
4944 webster = xcalloc(n_buckets, sizeof(struct webster));
4945 int i = 0;
4946 LIST_FOR_EACH (bucket, list_node, &group->up.buckets) {
4947 if (bucket->weight > 0 && bucket->weight < min_weight) {
4948 min_weight = bucket->weight;
4949 }
4950 total_weight += bucket->weight;
4951 webster[i].bucket = bucket;
4952 webster[i].divisor = 1;
4953 webster[i].value = bucket->weight;
4954 webster[i].hits = 0;
4955 i++;
4956 }
4957
4958 if (total_weight == 0) {
4959 VLOG_DBG(" Total weight is zero. No active buckets.");
4960 free(webster);
4961 return false;
4962 }
4963 VLOG_DBG(" Minimum weight: %d, total weight: %"PRIu64,
4964 min_weight, total_weight);
4965
4966 uint64_t min_slots = DIV_ROUND_UP(total_weight, min_weight);
4967 uint64_t min_slots2 = ROUND_UP_POW2(min_slots);
4968 uint64_t n_hash = MAX(16, min_slots2);
4969 if (n_hash > MAX_SELECT_GROUP_HASH_VALUES ||
4970 (max_hash != 0 && n_hash > max_hash)) {
4971 VLOG_DBG(" Too many hash values required: %"PRIu64, n_hash);
51e6215e 4972 free(webster);
2e3fd24c
JS
4973 return false;
4974 }
4975
4976 VLOG_DBG(" Using %"PRIu64" hash values:", n_hash);
4977 group->hash_mask = n_hash - 1;
4978 if (group->hash_map) {
4979 free(group->hash_map);
4980 }
4981 group->hash_map = xcalloc(n_hash, sizeof(struct ofputil_bucket *));
4982
4983 /* Use Webster method to distribute hash values over buckets. */
4984 for (int hash = 0; hash < n_hash; hash++) {
4985 struct webster *winner = &webster[0];
4986 for (i = 1; i < n_buckets; i++) {
4987 if (webster[i].value > winner->value) {
4988 winner = &webster[i];
4989 }
4990 }
4991 winner->hits++;
4992 winner->divisor += 2;
4993 winner->value = (double) winner->bucket->weight / winner->divisor;
4994 group->hash_map[hash] = winner->bucket;
4995 }
4996
4997 i = 0;
4998 LIST_FOR_EACH (bucket, list_node, &group->up.buckets) {
4999 double target = (n_hash * bucket->weight) / (double) total_weight;
5000 VLOG_DBG(" Bucket %d: weight=%d, target=%.2f hits=%d",
5001 bucket->bucket_id, bucket->weight,
5002 target, webster[i].hits);
5003 i++;
5004 }
5005
5006 free(webster);
5007 return true;
5008}
5009
5010static void
5011group_set_selection_method(struct group_dpif *group)
5012{
5013 const struct ofputil_group_props *props = &group->up.props;
5014 const char *selection_method = props->selection_method;
5015
06db81cc 5016 VLOG_DBG("Constructing select group %"PRIu32, group->up.group_id);
2e3fd24c 5017 if (selection_method[0] == '\0') {
06db81cc
JS
5018 VLOG_DBG("No selection method specified. Trying dp_hash.");
5019 /* If the controller has not specified a selection method, check if
5020 * the dp_hash selection method with max 64 hash values is appropriate
5021 * for the given bucket configuration. */
5022 if (group_setup_dp_hash_table(group, 64)) {
5023 /* Use dp_hash selection method with symmetric L4 hash. */
5024 group->selection_method = SEL_METHOD_DP_HASH;
5025 group->hash_alg = OVS_HASH_ALG_SYM_L4;
5026 group->hash_basis = 0;
5027 VLOG_DBG("Use dp_hash with %d hash values using algorithm %d.",
5028 group->hash_mask + 1, group->hash_alg);
5029 } else {
5030 /* Fall back to original default hashing in slow path. */
5031 VLOG_DBG("Falling back to default hash method.");
5032 group->selection_method = SEL_METHOD_DEFAULT;
5033 }
2e3fd24c
JS
5034 } else if (!strcmp(selection_method, "dp_hash")) {
5035 VLOG_DBG("Selection method specified: dp_hash.");
5036 /* Try to use dp_hash if possible at all. */
5037 if (group_setup_dp_hash_table(group, 0)) {
5038 group->selection_method = SEL_METHOD_DP_HASH;
5039 group->hash_alg = props->selection_method_param >> 32;
5040 if (group->hash_alg >= __OVS_HASH_MAX) {
06db81cc 5041 VLOG_DBG("Invalid dp_hash algorithm %d. "
2e3fd24c
JS
5042 "Defaulting to OVS_HASH_ALG_L4", group->hash_alg);
5043 group->hash_alg = OVS_HASH_ALG_L4;
5044 }
5045 group->hash_basis = (uint32_t) props->selection_method_param;
5046 VLOG_DBG("Use dp_hash with %d hash values using algorithm %d.",
5047 group->hash_mask + 1, group->hash_alg);
5048 } else {
5049 /* Fall back to original default hashing in slow path. */
06db81cc 5050 VLOG_DBG("Falling back to default hash method.");
2e3fd24c
JS
5051 group->selection_method = SEL_METHOD_DEFAULT;
5052 }
5053 } else if (!strcmp(selection_method, "hash")) {
5054 VLOG_DBG("Selection method specified: hash.");
5055 if (props->fields.values_size > 0) {
5056 /* Controller has specified hash fields. */
5057 struct ds s = DS_EMPTY_INITIALIZER;
5058 oxm_format_field_array(&s, &props->fields);
06db81cc 5059 VLOG_DBG("Hash fields: %s", ds_cstr(&s));
2e3fd24c
JS
5060 ds_destroy(&s);
5061 group->selection_method = SEL_METHOD_HASH;
5062 } else {
5063 /* No hash fields. Fall back to original default hashing. */
06db81cc 5064 VLOG_DBG("No hash fields. Falling back to default hash method.");
2e3fd24c
JS
5065 group->selection_method = SEL_METHOD_DEFAULT;
5066 }
5067 } else {
5068 /* Parsing of groups should ensure this never happens */
5069 OVS_NOT_REACHED();
5070 }
5071}
5072
00430a3f
SH
5073static enum ofperr
5074group_construct(struct ofgroup *group_)
5075{
5076 struct group_dpif *group = group_dpif_cast(group_);
5a070238 5077
97ba2d36 5078 ovs_mutex_init_adaptive(&group->stats_mutex);
00430a3f
SH
5079 ovs_mutex_lock(&group->stats_mutex);
5080 group_construct_stats(group);
2e3fd24c
JS
5081 group->hash_map = NULL;
5082 if (group->up.type == OFPGT11_SELECT) {
5083 group_set_selection_method(group);
5084 }
00430a3f
SH
5085 ovs_mutex_unlock(&group->stats_mutex);
5086 return 0;
5087}
5088
00430a3f
SH
5089static void
5090group_destruct(struct ofgroup *group_)
5091{
5092 struct group_dpif *group = group_dpif_cast(group_);
00430a3f 5093 ovs_mutex_destroy(&group->stats_mutex);
2e3fd24c
JS
5094 if (group->hash_map) {
5095 free(group->hash_map);
5096 group->hash_map = NULL;
5097 }
00430a3f
SH
5098}
5099
00430a3f
SH
5100static enum ofperr
5101group_get_stats(const struct ofgroup *group_, struct ofputil_group_stats *ogs)
5102{
5103 struct group_dpif *group = group_dpif_cast(group_);
5104
00430a3f
SH
5105 ovs_mutex_lock(&group->stats_mutex);
5106 ogs->packet_count = group->packet_count;
5107 ogs->byte_count = group->byte_count;
1e684d7d 5108
07a3cd5c
BP
5109 struct bucket_counter *bucket_stats = ogs->bucket_stats;
5110 struct ofputil_bucket *bucket;
5111 LIST_FOR_EACH (bucket, list_node, &group->up.buckets) {
1e684d7d
RW
5112 bucket_stats->packet_count = bucket->stats.packet_count;
5113 bucket_stats->byte_count = bucket->stats.byte_count;
5114 bucket_stats++;
5115 }
00430a3f
SH
5116 ovs_mutex_unlock(&group->stats_mutex);
5117
5118 return 0;
5119}
f4fb341b 5120
809c7548
RW
5121/* If the group exists, this function increments the groups's reference count.
5122 *
07a3cd5c 5123 * Make sure to call ofproto_group_unref() after no longer needing to maintain
809c7548 5124 * a reference to the group. */
db88b35c 5125struct group_dpif *
76973237 5126group_dpif_lookup(struct ofproto_dpif *ofproto, uint32_t group_id,
5d08a275 5127 ovs_version_t version, bool take_ref)
f4fb341b 5128{
76973237 5129 struct ofgroup *ofgroup = ofproto_group_lookup(&ofproto->up, group_id,
5d08a275 5130 version, take_ref);
db88b35c 5131 return ofgroup ? group_dpif_cast(ofgroup) : NULL;
f4fb341b 5132}
abe529af 5133\f
2eb79142
JG
5134/* Sends 'packet' out 'ofport'. If 'port' is a tunnel and that tunnel type
5135 * supports a notion of an OAM flag, sets it if 'oam' is true.
52a90c29 5136 * May modify 'packet'.
abe529af 5137 * Returns 0 if successful, otherwise a positive errno value. */
91d6cd12 5138int
2eb79142
JG
5139ofproto_dpif_send_packet(const struct ofport_dpif *ofport, bool oam,
5140 struct dp_packet *packet)
abe529af 5141{
79e15b78 5142 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
abe529af
BP
5143 int error;
5144
2eb79142 5145 error = xlate_send_packet(ofport, oam, packet);
79e15b78 5146
0da3c61b 5147 ovs_mutex_lock(&ofproto->stats_mutex);
79e15b78 5148 ofproto->stats.tx_packets++;
cf62fa4c 5149 ofproto->stats.tx_bytes += dp_packet_size(packet);
0da3c61b 5150 ovs_mutex_unlock(&ofproto->stats_mutex);
abe529af
BP
5151 return error;
5152}
9583bc14 5153\f
b5cbbcf6
AZ
5154/* Return the version string of the datapath that backs up
5155 * this 'ofproto'.
5156 */
5157static const char *
5158get_datapath_version(const struct ofproto *ofproto_)
5159{
5160 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5161
5162 return ofproto->backer->dp_version_string;
5163}
5164
d4f6865c
DDP
5165static void
5166type_set_config(const char *type, const struct smap *other_config)
5167{
5168 struct dpif_backer *backer;
5169
5170 backer = shash_find_data(&all_dpif_backers, type);
5171 if (!backer) {
5172 /* This is not necessarily a problem, since backers are only
5173 * created on demand. */
5174 return;
5175 }
5176
5177 dpif_set_config(backer->dpif, other_config);
5178}
5179
2a7c4805
JP
5180static void
5181ct_flush(const struct ofproto *ofproto_, const uint16_t *zone)
5182{
5183 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5184
817a7657 5185 ct_dpif_flush(ofproto->backer->dpif, zone, NULL);
2a7c4805
JP
5186}
5187
993cae67
YHW
5188static struct ct_timeout_policy *
5189ct_timeout_policy_lookup(const struct hmap *ct_tps, struct simap *tp)
5190{
5191 struct ct_timeout_policy *ct_tp;
5192
5193 HMAP_FOR_EACH_WITH_HASH (ct_tp, node, simap_hash(tp), ct_tps) {
5194 if (simap_equal(&ct_tp->tp, tp)) {
5195 return ct_tp;
5196 }
5197 }
5198 return NULL;
5199}
5200
5201static struct ct_timeout_policy *
5202ct_timeout_policy_alloc__(void)
5203{
5204 struct ct_timeout_policy *ct_tp = xzalloc(sizeof *ct_tp);
5205 simap_init(&ct_tp->tp);
5206 return ct_tp;
5207}
5208
5209static struct ct_timeout_policy *
5210ct_timeout_policy_alloc(struct simap *tp, struct id_pool *tp_ids)
5211{
5212 struct simap_node *node;
5213
5214 struct ct_timeout_policy *ct_tp = ct_timeout_policy_alloc__();
5215 SIMAP_FOR_EACH (node, tp) {
5216 simap_put(&ct_tp->tp, node->name, node->data);
5217 }
5218
5219 if (!id_pool_alloc_id(tp_ids, &ct_tp->tp_id)) {
5220 VLOG_ERR_RL(&rl, "failed to allocate timeout policy id.");
5221 simap_destroy(&ct_tp->tp);
5222 free(ct_tp);
5223 return NULL;
5224 }
5225
5226 return ct_tp;
5227}
5228
5229static void
5230ct_timeout_policy_destroy__(struct ct_timeout_policy *ct_tp)
5231{
5232 simap_destroy(&ct_tp->tp);
5233 free(ct_tp);
5234}
5235
5236static void
5237ct_timeout_policy_destroy(struct ct_timeout_policy *ct_tp,
5238 struct id_pool *tp_ids)
5239{
5240 id_pool_free_id(tp_ids, ct_tp->tp_id);
5241 ovsrcu_postpone(ct_timeout_policy_destroy__, ct_tp);
5242}
5243
5244static void
5245ct_timeout_policy_unref(struct dpif_backer *backer,
5246 struct ct_timeout_policy *ct_tp)
5247{
5248 if (ct_tp) {
5249 ct_tp->ref_count--;
5250
5251 if (!ct_tp->ref_count) {
5252 hmap_remove(&backer->ct_tps, &ct_tp->node);
5253 ovs_list_push_back(&backer->ct_tp_kill_list, &ct_tp->list_node);
5254 }
5255 }
5256}
5257
5258static struct ct_zone *
5259ct_zone_lookup(const struct cmap *ct_zones, uint16_t zone_id)
5260{
5261 struct ct_zone *ct_zone;
5262
5263 CMAP_FOR_EACH_WITH_HASH (ct_zone, node, hash_int(zone_id, 0), ct_zones) {
5264 if (ct_zone->zone_id == zone_id) {
5265 return ct_zone;
5266 }
5267 }
5268 return NULL;
5269}
5270
5271static struct ct_zone *
5272ct_zone_alloc(uint16_t zone_id)
5273{
5274 struct ct_zone *ct_zone = xzalloc(sizeof *ct_zone);
5275 ct_zone->zone_id = zone_id;
5276 return ct_zone;
5277}
5278
5279static void
5280ct_zone_destroy(struct ct_zone *ct_zone)
5281{
5282 ovsrcu_postpone(free, ct_zone);
5283}
5284
5285static void
5286ct_zone_remove_and_destroy(struct dpif_backer *backer, struct ct_zone *ct_zone)
5287{
5288 cmap_remove(&backer->ct_zones, &ct_zone->node,
5289 hash_int(ct_zone->zone_id, 0));
5290 ct_zone_destroy(ct_zone);
5291}
5292
5293static void
5294ct_add_timeout_policy_to_dpif(struct dpif *dpif,
5295 struct ct_timeout_policy *ct_tp)
5296{
5297 struct ct_dpif_timeout_policy cdtp;
5298 struct simap_node *node;
5299
5300 cdtp.id = ct_tp->tp_id;
5301 SIMAP_FOR_EACH (node, &ct_tp->tp) {
5302 ct_dpif_set_timeout_policy_attr_by_name(&cdtp, node->name, node->data);
5303 }
5304
5305 int err = ct_dpif_set_timeout_policy(dpif, &cdtp);
5306 if (err) {
5307 VLOG_ERR_RL(&rl, "failed to set timeout policy %"PRIu32" (%s)",
5308 ct_tp->tp_id, ovs_strerror(err));
5309 }
5310}
5311
5312static void
5313clear_existing_ct_timeout_policies(struct dpif_backer *backer)
5314{
5315 /* In kernel datapath, when OVS starts, there may be some pre-existing
5316 * timeout policies in the kernel. To avoid reassigning the same timeout
5317 * policy ids, we dump all the pre-existing timeout policies and keep
5318 * the ids in the pool. Since OVS will not use those timeout policies
5319 * for new datapath flow, we add them to the kill list and remove
5320 * them later on. */
5321 struct ct_dpif_timeout_policy cdtp;
5322 void *state;
5323
5324 if (ct_dpif_timeout_policy_dump_start(backer->dpif, &state)) {
5325 return;
5326 }
5327
5328 while (!ct_dpif_timeout_policy_dump_next(backer->dpif, state, &cdtp)) {
5329 struct ct_timeout_policy *ct_tp = ct_timeout_policy_alloc__();
5330 ct_tp->tp_id = cdtp.id;
5331 id_pool_add(backer->tp_ids, cdtp.id);
5332 ovs_list_push_back(&backer->ct_tp_kill_list, &ct_tp->list_node);
5333 }
5334
5335 ct_dpif_timeout_policy_dump_done(backer->dpif, state);
5336}
5337
5338#define MAX_TIMEOUT_POLICY_ID UINT32_MAX
5339
5340static void
5341ct_zone_config_init(struct dpif_backer *backer)
5342{
5343 backer->tp_ids = id_pool_create(0, MAX_TIMEOUT_POLICY_ID);
5344 cmap_init(&backer->ct_zones);
5345 hmap_init(&backer->ct_tps);
5346 ovs_list_init(&backer->ct_tp_kill_list);
5347 clear_existing_ct_timeout_policies(backer);
5348}
5349
5350static void
5351ct_zone_config_uninit(struct dpif_backer *backer)
5352{
5353 struct ct_zone *ct_zone;
5354 CMAP_FOR_EACH (ct_zone, node, &backer->ct_zones) {
5355 ct_zone_remove_and_destroy(backer, ct_zone);
5356 }
5357
5358 struct ct_timeout_policy *ct_tp;
5359 HMAP_FOR_EACH_POP (ct_tp, node, &backer->ct_tps) {
5360 ct_timeout_policy_destroy(ct_tp, backer->tp_ids);
5361 }
5362
5363 LIST_FOR_EACH_POP (ct_tp, list_node, &backer->ct_tp_kill_list) {
5364 ct_timeout_policy_destroy(ct_tp, backer->tp_ids);
5365 }
5366
5367 id_pool_destroy(backer->tp_ids);
5368 cmap_destroy(&backer->ct_zones);
5369 hmap_destroy(&backer->ct_tps);
5370}
5371
5372static void
5373ct_zone_timeout_policy_sweep(struct dpif_backer *backer)
5374{
5375 if (!ovs_list_is_empty(&backer->ct_tp_kill_list)
5376 && time_msec() >= timeout_policy_cleanup_timer) {
5377 struct ct_timeout_policy *ct_tp, *next;
5378
5379 LIST_FOR_EACH_SAFE (ct_tp, next, list_node, &backer->ct_tp_kill_list) {
5380 if (!ct_dpif_del_timeout_policy(backer->dpif, ct_tp->tp_id)) {
5381 ovs_list_remove(&ct_tp->list_node);
5382 ct_timeout_policy_destroy(ct_tp, backer->tp_ids);
5383 } else {
5384 /* INFO log raised by 'dpif' layer. */
5385 }
5386 }
5387 timeout_policy_cleanup_timer = time_msec() +
5388 TIMEOUT_POLICY_CLEANUP_INTERVAL;
5389 }
5390}
5391
5392static void
5393ct_set_zone_timeout_policy(const char *datapath_type, uint16_t zone_id,
5394 struct simap *timeout_policy)
5395{
5396 struct dpif_backer *backer = shash_find_data(&all_dpif_backers,
5397 datapath_type);
5398 if (!backer) {
5399 return;
5400 }
5401
5402 struct ct_timeout_policy *ct_tp = ct_timeout_policy_lookup(&backer->ct_tps,
5403 timeout_policy);
5404 if (!ct_tp) {
5405 ct_tp = ct_timeout_policy_alloc(timeout_policy, backer->tp_ids);
5406 if (ct_tp) {
5407 hmap_insert(&backer->ct_tps, &ct_tp->node, simap_hash(&ct_tp->tp));
5408 ct_add_timeout_policy_to_dpif(backer->dpif, ct_tp);
5409 } else {
5410 return;
5411 }
5412 }
5413
5414 struct ct_zone *ct_zone = ct_zone_lookup(&backer->ct_zones, zone_id);
5415 if (ct_zone) {
5416 if (ct_zone->ct_tp != ct_tp) {
5417 /* Update the zone timeout policy. */
5418 ct_timeout_policy_unref(backer, ct_zone->ct_tp);
5419 ct_zone->ct_tp = ct_tp;
5420 ct_tp->ref_count++;
5421 }
5422 } else {
5423 struct ct_zone *new_ct_zone = ct_zone_alloc(zone_id);
5424 new_ct_zone->ct_tp = ct_tp;
5425 cmap_insert(&backer->ct_zones, &new_ct_zone->node,
5426 hash_int(zone_id, 0));
5427 ct_tp->ref_count++;
5428 }
5429}
5430
5431static void
5432ct_del_zone_timeout_policy(const char *datapath_type, uint16_t zone_id)
5433{
5434 struct dpif_backer *backer = shash_find_data(&all_dpif_backers,
5435 datapath_type);
5436 if (!backer) {
5437 return;
5438 }
5439
5440 struct ct_zone *ct_zone = ct_zone_lookup(&backer->ct_zones, zone_id);
5441 if (ct_zone) {
5442 ct_timeout_policy_unref(backer, ct_zone->ct_tp);
5443 ct_zone_remove_and_destroy(backer, ct_zone);
5444 }
5445}
5446
27501802
WT
5447static void
5448get_datapath_cap(const char *datapath_type, struct smap *cap)
5449{
5450 char *str_value;
5451 struct odp_support odp;
5452 struct dpif_backer_support s;
5453 struct dpif_backer *backer = shash_find_data(&all_dpif_backers,
5454 datapath_type);
5455 if (!backer) {
5456 return;
5457 }
5458 s = backer->rt_support;
5459 odp = s.odp;
5460
5461 /* ODP_SUPPORT_FIELDS */
5462 str_value = xasprintf("%"PRIuSIZE, odp.max_vlan_headers);
5463 smap_add(cap, "max_vlan_headers", str_value);
5464 free(str_value);
5465
5466 str_value = xasprintf("%"PRIuSIZE, odp.max_mpls_depth);
5467 smap_add(cap, "max_mpls_depth", str_value);
5468 free(str_value);
5469
5470 smap_add(cap, "recirc", odp.recirc ? "true" : "false");
5471 smap_add(cap, "ct_state", odp.ct_state ? "true" : "false");
5472 smap_add(cap, "ct_zone", odp.ct_zone ? "true" : "false");
5473 smap_add(cap, "ct_mark", odp.ct_mark ? "true" : "false");
5474 smap_add(cap, "ct_label", odp.ct_label ? "true" : "false");
5475 smap_add(cap, "ct_state_nat", odp.ct_state_nat ? "true" : "false");
5476 smap_add(cap, "ct_orig_tuple", odp.ct_orig_tuple ? "true" : "false");
5477 smap_add(cap, "ct_orig_tuple6", odp.ct_orig_tuple6 ? "true" : "false");
5478
5479 /* DPIF_SUPPORT_FIELDS */
5480 smap_add(cap, "masked_set_action", s.masked_set_action ? "true" : "false");
5481 smap_add(cap, "tnl_push_pop", s.tnl_push_pop ? "true" : "false");
5482 smap_add(cap, "ufid", s.ufid ? "true" : "false");
5483 smap_add(cap, "trunc", s.trunc ? "true" : "false");
5484 smap_add(cap, "clone", s.clone ? "true" : "false");
5485 smap_add(cap, "sample_nesting", s.sample_nesting ? "true" : "false");
5486 smap_add(cap, "ct_eventmask", s.ct_eventmask ? "true" : "false");
5487 smap_add(cap, "ct_clear", s.ct_clear ? "true" : "false");
5488
5489 str_value = xasprintf("%"PRIuSIZE, s.max_hash_alg);
5490 smap_add(cap, "max_hash_alg", str_value);
5491 free(str_value);
5492
5493 smap_add(cap, "check_pkt_len", s.check_pkt_len ? "true" : "false");
5494 smap_add(cap, "ct_timeout", s.ct_timeout ? "true" : "false");
5495}
5496
187bb41f
YHW
5497/* Gets timeout policy name in 'backer' based on 'zone', 'dl_type' and
5498 * 'nw_proto'. Returns true if the zone-based timeout policy is configured.
5499 * On success, stores the timeout policy name in 'tp_name', and sets
5500 * 'unwildcard' based on the dpif implementation. If 'unwildcard' is true,
5501 * the returned timeout policy is 'dl_type' and 'nw_proto' specific, and OVS
5502 * needs to unwildcard the datapath flow for this timeout policy in flow
5503 * translation.
5504 *
5505 * The caller is responsible for freeing 'tp_name'. */
5506bool
5507ofproto_dpif_ct_zone_timeout_policy_get_name(
5508 const struct dpif_backer *backer, uint16_t zone, uint16_t dl_type,
5509 uint8_t nw_proto, char **tp_name, bool *unwildcard)
5510{
5511 if (!ct_dpif_timeout_policy_support_ipproto(nw_proto)) {
5512 return false;
5513 }
5514
5515 struct ct_zone *ct_zone = ct_zone_lookup(&backer->ct_zones, zone);
5516 if (!ct_zone) {
5517 return false;
5518 }
5519
5520 bool is_generic;
5521 if (ct_dpif_get_timeout_policy_name(backer->dpif,
5522 ct_zone->ct_tp->tp_id, dl_type,
5523 nw_proto, tp_name, &is_generic)) {
5524 return false;
5525 }
5526
5527 /* Unwildcard datapath flow if it is not a generic timeout policy. */
5528 *unwildcard = !is_generic;
5529 return true;
5530}
5531
9583bc14
EJ
5532static bool
5533set_frag_handling(struct ofproto *ofproto_,
ad99e2ed 5534 enum ofputil_frag_handling frag_handling)
abe529af
BP
5535{
5536 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
ad99e2ed 5537 if (frag_handling != OFPUTIL_FRAG_REASM) {
2cc3c58e 5538 ofproto->backer->need_revalidate = REV_RECONFIGURE;
7257b535
BP
5539 return true;
5540 } else {
5541 return false;
5542 }
abe529af
BP
5543}
5544
77ab5fd2
BP
5545static enum ofperr
5546nxt_resume(struct ofproto *ofproto_,
5547 const struct ofputil_packet_in_private *pin)
5548{
5549 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2f355bff
YHW
5550 struct dpif_flow_stats stats;
5551 struct xlate_cache xcache;
5552 struct flow flow;
5553 xlate_cache_init(&xcache);
77ab5fd2
BP
5554
5555 /* Translate pin into datapath actions. */
5556 uint64_t odp_actions_stub[1024 / 8];
5557 struct ofpbuf odp_actions = OFPBUF_STUB_INITIALIZER(odp_actions_stub);
5558 enum slow_path_reason slow;
2f355bff
YHW
5559 enum ofperr error = xlate_resume(ofproto, pin, &odp_actions, &slow,
5560 &flow, &xcache);
77ab5fd2
BP
5561
5562 /* Steal 'pin->packet' and put it into a dp_packet. */
5563 struct dp_packet packet;
4d617a87
BP
5564 dp_packet_init(&packet, pin->base.packet_len);
5565 dp_packet_put(&packet, pin->base.packet, pin->base.packet_len);
77ab5fd2 5566
2f355bff
YHW
5567 /* Run the side effects from the xcache. */
5568 dpif_flow_stats_extract(&flow, &packet, time_msec(), &stats);
5569 ovs_mutex_lock(&ofproto_mutex);
5570 ofproto_dpif_xcache_execute(ofproto, &xcache, &stats);
5571 ovs_mutex_unlock(&ofproto_mutex);
5572
4d617a87 5573 pkt_metadata_from_flow(&packet.md, &pin->base.flow_metadata.flow);
1df7f7aa
NS
5574
5575 /* Fix up in_port. */
88d2ac50 5576 packet.md.in_port.odp_port = pin->odp_port;
1df7f7aa 5577
10b3f505
NS
5578 struct flow headers;
5579 flow_extract(&packet, &headers);
5580
77ab5fd2
BP
5581 /* Execute the datapath actions on the packet. */
5582 struct dpif_execute execute = {
5583 .actions = odp_actions.data,
5584 .actions_len = odp_actions.size,
5585 .needs_help = (slow & SLOW_ACTION) != 0,
5586 .packet = &packet,
1cceb31b 5587 .flow = &headers,
77ab5fd2
BP
5588 };
5589 dpif_execute(ofproto->backer->dpif, &execute);
5590
5591 /* Clean up. */
5592 ofpbuf_uninit(&odp_actions);
5593 dp_packet_uninit(&packet);
584992d0 5594 xlate_cache_uninit(&xcache);
77ab5fd2
BP
5595
5596 return error;
5597}
6fca1ffb
BP
5598\f
5599/* NetFlow. */
5600
5601static int
5602set_netflow(struct ofproto *ofproto_,
5603 const struct netflow_options *netflow_options)
5604{
5605 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5606
5607 if (netflow_options) {
5608 if (!ofproto->netflow) {
5609 ofproto->netflow = netflow_create();
7bab1576 5610 ofproto->backer->need_revalidate = REV_RECONFIGURE;
6fca1ffb
BP
5611 }
5612 return netflow_set_options(ofproto->netflow, netflow_options);
7bab1576
EJ
5613 } else if (ofproto->netflow) {
5614 ofproto->backer->need_revalidate = REV_RECONFIGURE;
8e407f27 5615 netflow_unref(ofproto->netflow);
6fca1ffb 5616 ofproto->netflow = NULL;
6fca1ffb 5617 }
7bab1576
EJ
5618
5619 return 0;
6fca1ffb 5620}
abe529af
BP
5621
5622static void
5623get_netflow_ids(const struct ofproto *ofproto_,
5624 uint8_t *engine_type, uint8_t *engine_id)
5625{
5626 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5627
acf60855 5628 dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
abe529af
BP
5629}
5630\f
d13ee228 5631struct ofproto_dpif *
911b4a7e 5632ofproto_dpif_lookup_by_name(const char *name)
abe529af 5633{
b44a10b7
BP
5634 struct ofproto_dpif *ofproto;
5635
911b4a7e
JP
5636 HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_by_name_node,
5637 hash_string(name, 0),
5638 &all_ofproto_dpifs_by_name) {
b44a10b7
BP
5639 if (!strcmp(ofproto->up.name, name)) {
5640 return ofproto;
5641 }
5642 }
5643 return NULL;
abe529af
BP
5644}
5645
911b4a7e
JP
5646struct ofproto_dpif *
5647ofproto_dpif_lookup_by_uuid(const struct uuid *uuid)
5648{
5649 struct ofproto_dpif *ofproto;
5650
5651 HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_by_uuid_node,
5652 uuid_hash(uuid), &all_ofproto_dpifs_by_uuid) {
5653 if (uuid_equals(&ofproto->uuid, uuid)) {
5654 return ofproto;
5655 }
5656 }
5657 return NULL;
5658}
5659
f0a3aa2e 5660static void
96e466a3 5661ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
0e15264f 5662 const char *argv[], void *aux OVS_UNUSED)
f0a3aa2e 5663{
490df1ef 5664 struct ofproto_dpif *ofproto;
f0a3aa2e 5665
96e466a3 5666 if (argc > 1) {
911b4a7e 5667 ofproto = ofproto_dpif_lookup_by_name(argv[1]);
96e466a3 5668 if (!ofproto) {
bde9f75d 5669 unixctl_command_reply_error(conn, "no such bridge");
96e466a3
EJ
5670 return;
5671 }
509c0149 5672 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 5673 mac_learning_flush(ofproto->ml);
509c0149 5674 ovs_rwlock_unlock(&ofproto->ml->rwlock);
96e466a3 5675 } else {
911b4a7e
JP
5676 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
5677 &all_ofproto_dpifs_by_name) {
509c0149 5678 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
30618594 5679 mac_learning_flush(ofproto->ml);
509c0149 5680 ovs_rwlock_unlock(&ofproto->ml->rwlock);
96e466a3 5681 }
f0a3aa2e 5682 }
f0a3aa2e 5683
bde9f75d 5684 unixctl_command_reply(conn, "table successfully flushed");
f0a3aa2e
AA
5685}
5686
08fdcc12
FL
5687static void
5688ofproto_unixctl_mcast_snooping_flush(struct unixctl_conn *conn, int argc,
5689 const char *argv[], void *aux OVS_UNUSED)
5690{
5691 struct ofproto_dpif *ofproto;
5692
5693 if (argc > 1) {
911b4a7e 5694 ofproto = ofproto_dpif_lookup_by_name(argv[1]);
08fdcc12
FL
5695 if (!ofproto) {
5696 unixctl_command_reply_error(conn, "no such bridge");
5697 return;
5698 }
5699
5700 if (!mcast_snooping_enabled(ofproto->ms)) {
5701 unixctl_command_reply_error(conn, "multicast snooping is disabled");
5702 return;
5703 }
5704 mcast_snooping_mdb_flush(ofproto->ms);
5705 } else {
911b4a7e
JP
5706 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
5707 &all_ofproto_dpifs_by_name) {
08fdcc12
FL
5708 if (!mcast_snooping_enabled(ofproto->ms)) {
5709 continue;
5710 }
5711 mcast_snooping_mdb_flush(ofproto->ms);
5712 }
5713 }
5714
5715 unixctl_command_reply(conn, "table successfully flushed");
5716}
5717
46c88433
EJ
5718static struct ofport_dpif *
5719ofbundle_get_a_port(const struct ofbundle *bundle)
5720{
417e7e66 5721 return CONTAINER_OF(ovs_list_front(&bundle->ports), struct ofport_dpif,
46c88433
EJ
5722 bundle_node);
5723}
5724
abe529af 5725static void
0e15264f
BP
5726ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5727 const char *argv[], void *aux OVS_UNUSED)
abe529af
BP
5728{
5729 struct ds ds = DS_EMPTY_INITIALIZER;
5730 const struct ofproto_dpif *ofproto;
5731 const struct mac_entry *e;
5732
911b4a7e 5733 ofproto = ofproto_dpif_lookup_by_name(argv[1]);
abe529af 5734 if (!ofproto) {
bde9f75d 5735 unixctl_command_reply_error(conn, "no such bridge");
abe529af
BP
5736 return;
5737 }
5738
5739 ds_put_cstr(&ds, " port VLAN MAC Age\n");
509c0149 5740 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
abe529af 5741 LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
9d078ec2 5742 struct ofbundle *bundle = mac_entry_get_port(ofproto->ml, e);
29718ad4 5743 char name[OFP_MAX_PORT_NAME_LEN];
ad28062f
BP
5744
5745 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
50f96b10 5746 NULL, name, sizeof name);
ad28062f
BP
5747 ds_put_format(&ds, "%5s %4d "ETH_ADDR_FMT" %3d\n",
5748 name, e->vlan, ETH_ADDR_ARGS(e->mac),
e764773c 5749 mac_entry_age(ofproto->ml, e));
abe529af 5750 }
509c0149 5751 ovs_rwlock_unlock(&ofproto->ml->rwlock);
bde9f75d 5752 unixctl_command_reply(conn, ds_cstr(&ds));
abe529af
BP
5753 ds_destroy(&ds);
5754}
5755
95dcecc5
EC
5756static void
5757ofproto_unixctl_fdb_stats_clear(struct unixctl_conn *conn, int argc,
5758 const char *argv[], void *aux OVS_UNUSED)
5759{
5760 struct ofproto_dpif *ofproto;
5761
5762 if (argc > 1) {
5763 ofproto = ofproto_dpif_lookup_by_name(argv[1]);
5764 if (!ofproto) {
5765 unixctl_command_reply_error(conn, "no such bridge");
5766 return;
5767 }
5768 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
5769 mac_learning_clear_statistics(ofproto->ml);
5770 ovs_rwlock_unlock(&ofproto->ml->rwlock);
5771 } else {
5772 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
5773 &all_ofproto_dpifs_by_name) {
5774 ovs_rwlock_wrlock(&ofproto->ml->rwlock);
5775 mac_learning_clear_statistics(ofproto->ml);
5776 ovs_rwlock_unlock(&ofproto->ml->rwlock);
5777 }
5778 }
5779
5780 unixctl_command_reply(conn, "statistics successfully cleared");
5781}
5782
5783static void
5784ofproto_unixctl_fdb_stats_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5785 const char *argv[], void *aux OVS_UNUSED)
5786{
5787 struct ds ds = DS_EMPTY_INITIALIZER;
5788 const struct ofproto_dpif *ofproto;
5789 ofproto = ofproto_dpif_lookup_by_name(argv[1]);
5790 if (!ofproto) {
5791 unixctl_command_reply_error(conn, "no such bridge");
5792 return;
5793 }
5794
5795 ds_put_format(&ds, "Statistics for bridge \"%s\":\n", argv[1]);
5796 ovs_rwlock_rdlock(&ofproto->ml->rwlock);
5797
5798 ds_put_format(&ds, " Current/maximum MAC entries in the table: %"
5799 PRIuSIZE"/%"PRIuSIZE"\n",
5800 hmap_count(&ofproto->ml->table), ofproto->ml->max_entries);
5801 ds_put_format(&ds,
5802 " Total number of learned MAC entries : %"PRIu64"\n",
5803 ofproto->ml->total_learned);
5804 ds_put_format(&ds,
5805 " Total number of expired MAC entries : %"PRIu64"\n",
5806 ofproto->ml->total_expired);
5807 ds_put_format(&ds,
5808 " Total number of evicted MAC entries : %"PRIu64"\n",
5809 ofproto->ml->total_evicted);
5810 ds_put_format(&ds,
5811 " Total number of port moved MAC entries : %"PRIu64"\n",
5812 ofproto->ml->total_moved);
5813
5814 ovs_rwlock_unlock(&ofproto->ml->rwlock);
5815 unixctl_command_reply(conn, ds_cstr(&ds));
5816 ds_destroy(&ds);
5817}
5818
08fdcc12
FL
5819static void
5820ofproto_unixctl_mcast_snooping_show(struct unixctl_conn *conn,
5821 int argc OVS_UNUSED,
5822 const char *argv[],
5823 void *aux OVS_UNUSED)
5824{
5825 struct ds ds = DS_EMPTY_INITIALIZER;
5826 const struct ofproto_dpif *ofproto;
5827 const struct ofbundle *bundle;
5828 const struct mcast_group *grp;
5829 struct mcast_group_bundle *b;
5830 struct mcast_mrouter_bundle *mrouter;
5831
911b4a7e 5832 ofproto = ofproto_dpif_lookup_by_name(argv[1]);
08fdcc12
FL
5833 if (!ofproto) {
5834 unixctl_command_reply_error(conn, "no such bridge");
5835 return;
5836 }
5837
5838 if (!mcast_snooping_enabled(ofproto->ms)) {
5839 unixctl_command_reply_error(conn, "multicast snooping is disabled");
5840 return;
5841 }
5842
5843 ds_put_cstr(&ds, " port VLAN GROUP Age\n");
5844 ovs_rwlock_rdlock(&ofproto->ms->rwlock);
5845 LIST_FOR_EACH (grp, group_node, &ofproto->ms->group_lru) {
5846 LIST_FOR_EACH(b, bundle_node, &grp->bundle_lru) {
29718ad4 5847 char name[OFP_MAX_PORT_NAME_LEN];
08fdcc12
FL
5848
5849 bundle = b->port;
5850 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
50f96b10 5851 NULL, name, sizeof name);
964a4d5f 5852 ds_put_format(&ds, "%5s %4d ", name, grp->vlan);
ac6d120f 5853 ipv6_format_mapped(&grp->addr, &ds);
964a4d5f 5854 ds_put_format(&ds, " %3d\n",
08fdcc12
FL
5855 mcast_bundle_age(ofproto->ms, b));
5856 }
5857 }
5858
5859 /* ports connected to multicast routers */
5860 LIST_FOR_EACH(mrouter, mrouter_node, &ofproto->ms->mrouter_lru) {
29718ad4 5861 char name[OFP_MAX_PORT_NAME_LEN];
08fdcc12
FL
5862
5863 bundle = mrouter->port;
5864 ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
50f96b10 5865 NULL, name, sizeof name);
c4bb1f8b 5866 ds_put_format(&ds, "%5s %4d querier %3d\n",
08fdcc12
FL
5867 name, mrouter->vlan,
5868 mcast_mrouter_age(ofproto->ms, mrouter));
5869 }
5870 ovs_rwlock_unlock(&ofproto->ms->rwlock);
5871 unixctl_command_reply(conn, ds_cstr(&ds));
5872 ds_destroy(&ds);
5873}
5874
27022416
JP
5875/* Store the current ofprotos in 'ofproto_shash'. Returns a sorted list
5876 * of the 'ofproto_shash' nodes. It is the responsibility of the caller
5877 * to destroy 'ofproto_shash' and free the returned value. */
5878static const struct shash_node **
5879get_ofprotos(struct shash *ofproto_shash)
5880{
5881 const struct ofproto_dpif *ofproto;
5882
911b4a7e
JP
5883 HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_by_name_node,
5884 &all_ofproto_dpifs_by_name) {
27022416
JP
5885 char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
5886 shash_add_nocopy(ofproto_shash, name, ofproto);
5887 }
5888
5889 return shash_sort(ofproto_shash);
5890}
5891
5892static void
5893ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
5894 const char *argv[] OVS_UNUSED,
5895 void *aux OVS_UNUSED)
5896{
5897 struct ds ds = DS_EMPTY_INITIALIZER;
5898 struct shash ofproto_shash;
5899 const struct shash_node **sorted_ofprotos;
5900 int i;
5901
5902 shash_init(&ofproto_shash);
5903 sorted_ofprotos = get_ofprotos(&ofproto_shash);
5904 for (i = 0; i < shash_count(&ofproto_shash); i++) {
5905 const struct shash_node *node = sorted_ofprotos[i];
5906 ds_put_format(&ds, "%s\n", node->name);
5907 }
5908
5909 shash_destroy(&ofproto_shash);
5910 free(sorted_ofprotos);
5911
5912 unixctl_command_reply(conn, ds_cstr(&ds));
5913 ds_destroy(&ds);
5914}
5915
a98b700d 5916static void
1c2f091b 5917show_dp_feature_bool(struct ds *ds, const char *feature, bool b)
a98b700d
AZ
5918{
5919 ds_put_format(ds, "%s: %s\n", feature, b ? "Yes" : "No");
5920}
5921
5922static void
1c2f091b 5923show_dp_feature_size_t(struct ds *ds, const char *feature, size_t s)
a98b700d
AZ
5924{
5925 ds_put_format(ds, "%s: %"PRIuSIZE"\n", feature, s);
5926}
5927
18e5d1a8
AZ
5928enum dpif_support_field_type {
5929 DPIF_SUPPORT_FIELD_bool,
5930 DPIF_SUPPORT_FIELD_size_t,
5931};
5932
5933struct dpif_support_field {
88186383
AZ
5934 void *rt_ptr; /* Points to the 'rt_support' field. */
5935 const void *bt_ptr; /* Points to the 'bt_support' field. */
18e5d1a8
AZ
5936 const char *title;
5937 enum dpif_support_field_type type;
5938};
5939
88186383
AZ
5940#define DPIF_SUPPORT_FIELD_INTIALIZER(RT_PTR, BT_PTR, TITLE, TYPE) \
5941 (struct dpif_support_field) {RT_PTR, BT_PTR, TITLE, TYPE}
18e5d1a8 5942
a98b700d
AZ
5943static void
5944dpif_show_support(const struct dpif_backer_support *support, struct ds *ds)
5945{
1c2f091b
AZ
5946#define DPIF_SUPPORT_FIELD(TYPE, NAME, TITLE) \
5947 show_dp_feature_##TYPE (ds, TITLE, support->NAME);
5948 DPIF_SUPPORT_FIELDS
5949#undef DPIF_SUPPORT_FIELD
5950
5951#define ODP_SUPPORT_FIELD(TYPE, NAME, TITLE) \
5952 show_dp_feature_##TYPE (ds, TITLE, support->odp.NAME );
5953 ODP_SUPPORT_FIELDS
5954#undef ODP_SUPPORT_FIELD
a98b700d
AZ
5955}
5956
18e5d1a8
AZ
5957static void
5958display_support_field(const char *name,
5959 const struct dpif_support_field *field,
5960 struct ds *ds)
5961{
5962 switch (field->type) {
5963 case DPIF_SUPPORT_FIELD_bool: {
88186383
AZ
5964 bool v = *(bool *)field->rt_ptr;
5965 bool b = *(bool *)field->bt_ptr;
5966 ds_put_format(ds, "%s (%s) : [run time]:%s, [boot time]:%s\n", name,
5967 field->title, v ? "true" : "false",
5968 b ? "true" : "false");
18e5d1a8
AZ
5969 break;
5970 }
5971 case DPIF_SUPPORT_FIELD_size_t:
88186383
AZ
5972 ds_put_format(ds, "%s (%s) : [run time]:%"PRIuSIZE
5973 ", [boot time]:%"PRIuSIZE"\n", name,
5974 field->title, *(size_t *)field->rt_ptr,
5975 *(size_t *)field->bt_ptr);
18e5d1a8
AZ
5976 break;
5977 default:
5978 OVS_NOT_REACHED();
5979 }
5980}
5981
88186383
AZ
5982/* Set a field of 'rt_support' to a new value.
5983 *
5984 * Returns 'true' if the value is actually set. */
5985static bool
5986dpif_set_support(struct dpif_backer_support *rt_support,
5987 struct dpif_backer_support *bt_support,
18e5d1a8
AZ
5988 const char *name, const char *value, struct ds *ds)
5989{
5990 struct shash all_fields = SHASH_INITIALIZER(&all_fields);
5991 struct dpif_support_field *field;
5992 struct shash_node *node;
88186383 5993 bool changed = false;
18e5d1a8
AZ
5994
5995#define DPIF_SUPPORT_FIELD(TYPE, NAME, TITLE) \
5996 {\
5997 struct dpif_support_field *f = xmalloc(sizeof *f); \
88186383
AZ
5998 *f = DPIF_SUPPORT_FIELD_INTIALIZER(&rt_support->NAME, \
5999 &bt_support->NAME, \
6000 TITLE, \
6001 DPIF_SUPPORT_FIELD_##TYPE);\
18e5d1a8
AZ
6002 shash_add_once(&all_fields, #NAME, f); \
6003 }
6004 DPIF_SUPPORT_FIELDS;
6005#undef DPIF_SUPPORT_FIELD
6006
6007#define ODP_SUPPORT_FIELD(TYPE, NAME, TITLE) \
6008 {\
6009 struct dpif_support_field *f = xmalloc(sizeof *f); \
88186383
AZ
6010 *f = DPIF_SUPPORT_FIELD_INTIALIZER(&rt_support->odp.NAME, \
6011 &bt_support->odp.NAME, \
6012 TITLE, \
6013 DPIF_SUPPORT_FIELD_##TYPE);\
18e5d1a8
AZ
6014 shash_add_once(&all_fields, #NAME, f); \
6015 }
6016 ODP_SUPPORT_FIELDS;
6017#undef ODP_SUPPORT_FIELD
6018
6019 if (!name) {
18e5d1a8
AZ
6020 SHASH_FOR_EACH (node, &all_fields) {
6021 display_support_field(node->name, node->data, ds);
6022 }
6023 goto done;
6024 }
6025
6026 node = shash_find(&all_fields, name);
6027 if (!node) {
6028 ds_put_cstr(ds, "Unexpected support field");
6029 goto done;
6030 }
6031 field = node->data;
6032
6033 if (!value) {
6034 display_support_field(node->name, field, ds);
6035 goto done;
6036 }
6037
6038 if (field->type == DPIF_SUPPORT_FIELD_bool) {
88186383
AZ
6039 if (!strcasecmp(value, "true")) {
6040 if (*(bool *)field->bt_ptr) {
6041 *(bool *)field->rt_ptr = true;
6042 changed = true;
6043 } else {
6044 ds_put_cstr(ds, "Can not enable features not supported by the datapth");
6045 }
6046 } else if (!strcasecmp(value, "false")) {
6047 *(bool *)field->rt_ptr = false;
6048 changed = true;
18e5d1a8
AZ
6049 } else {
6050 ds_put_cstr(ds, "Boolean value expected");
6051 }
6052 } else if (field->type == DPIF_SUPPORT_FIELD_size_t) {
6053 int v;
6054 if (str_to_int(value, 10, &v)) {
6055 if (v >= 0) {
88186383
AZ
6056 if (v <= *(size_t *)field->bt_ptr) {
6057 *(size_t *)field->rt_ptr = v;
6058 changed = true;
6059 } else {
6060 ds_put_cstr(ds, "Can not set value beyond the datapath capability");
6061 }
18e5d1a8
AZ
6062 } else {
6063 ds_put_format(ds, "Negative number not expected");
6064 }
6065 } else {
6066 ds_put_cstr(ds, "Integer number expected");
6067 }
6068 }
6069
6070done:
6071 shash_destroy_free_data(&all_fields);
88186383 6072 return changed;
18e5d1a8
AZ
6073}
6074
dc54ef36
EJ
6075static void
6076dpif_show_backer(const struct dpif_backer *backer, struct ds *ds)
27022416 6077{
dc54ef36 6078 const struct shash_node **ofprotos;
e79a6c83 6079 struct dpif_dp_stats dp_stats;
dc54ef36 6080 struct shash ofproto_shash;
09672174 6081 size_t i;
655ab909 6082
e79a6c83 6083 dpif_get_dp_stats(backer->dpif, &dp_stats);
dc54ef36 6084 ds_put_format(ds, "%s: hit:%"PRIu64" missed:%"PRIu64"\n",
e79a6c83 6085 dpif_name(backer->dpif), dp_stats.n_hit, dp_stats.n_missed);
dc54ef36 6086
dc54ef36
EJ
6087 shash_init(&ofproto_shash);
6088 ofprotos = get_ofprotos(&ofproto_shash);
6089 for (i = 0; i < shash_count(&ofproto_shash); i++) {
6090 struct ofproto_dpif *ofproto = ofprotos[i]->data;
6091 const struct shash_node **ports;
6092 size_t j;
0a740f48 6093
dc54ef36
EJ
6094 if (ofproto->backer != backer) {
6095 continue;
0a740f48 6096 }
27022416 6097
7be29a47 6098 ds_put_format(ds, " %s:\n", ofproto->up.name);
dc54ef36
EJ
6099
6100 ports = shash_sort(&ofproto->up.port_by_name);
6101 for (j = 0; j < shash_count(&ofproto->up.port_by_name); j++) {
6102 const struct shash_node *node = ports[j];
6103 struct ofport *ofport = node->data;
6104 struct smap config;
4e022ec0 6105 odp_port_t odp_port;
27022416 6106
7be29a47 6107 ds_put_format(ds, " %s %u/", netdev_get_name(ofport->netdev),
dc54ef36 6108 ofport->ofp_port);
27022416 6109
dc54ef36 6110 odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
4e022ec0 6111 if (odp_port != ODPP_NONE) {
dc54ef36
EJ
6112 ds_put_format(ds, "%"PRIu32":", odp_port);
6113 } else {
6114 ds_put_cstr(ds, "none:");
6115 }
27022416 6116
dc54ef36 6117 ds_put_format(ds, " (%s", netdev_get_type(ofport->netdev));
27022416 6118
dc54ef36
EJ
6119 smap_init(&config);
6120 if (!netdev_get_config(ofport->netdev, &config)) {
71f21279
BP
6121 const struct smap_node **nodes = smap_sort(&config);
6122 for (size_t k = 0; k < smap_count(&config); k++) {
6123 ds_put_format(ds, "%c %s=%s", k ? ',' : ':',
6124 nodes[k]->key, nodes[k]->value);
dc54ef36
EJ
6125 }
6126 free(nodes);
27022416 6127 }
dc54ef36
EJ
6128 smap_destroy(&config);
6129
27022416 6130 ds_put_char(ds, ')');
dc54ef36 6131 ds_put_char(ds, '\n');
27022416 6132 }
dc54ef36 6133 free(ports);
27022416 6134 }
dc54ef36
EJ
6135 shash_destroy(&ofproto_shash);
6136 free(ofprotos);
27022416
JP
6137}
6138
6139static void
dc54ef36
EJ
6140ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
6141 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
27022416
JP
6142{
6143 struct ds ds = DS_EMPTY_INITIALIZER;
dc54ef36
EJ
6144 const struct shash_node **backers;
6145 int i;
27022416 6146
dc54ef36
EJ
6147 backers = shash_sort(&all_dpif_backers);
6148 for (i = 0; i < shash_count(&all_dpif_backers); i++) {
6149 dpif_show_backer(backers[i]->data, &ds);
27022416 6150 }
dc54ef36 6151 free(backers);
27022416
JP
6152
6153 unixctl_command_reply(conn, ds_cstr(&ds));
6154 ds_destroy(&ds);
6155}
6156
6157static void
6158ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
6159 int argc OVS_UNUSED, const char *argv[],
6160 void *aux OVS_UNUSED)
6161{
27022416 6162 const struct ofproto_dpif *ofproto;
ac64794a
BP
6163
6164 struct ds ds = DS_EMPTY_INITIALIZER;
ac64794a
BP
6165
6166 struct dpif_flow_dump *flow_dump;
6167 struct dpif_flow_dump_thread *flow_dump_thread;
6168 struct dpif_flow f;
938eaa50 6169 int error;
27022416 6170
911b4a7e 6171 ofproto = ofproto_dpif_lookup_by_name(argv[argc - 1]);
27022416
JP
6172 if (!ofproto) {
6173 unixctl_command_reply_error(conn, "no such bridge");
6174 return;
6175 }
6176
d1fd1ea9
BP
6177 bool verbosity = false;
6178 bool names = false;
6179 bool set_names = false;
6180 for (int i = 1; i < argc - 1; i++) {
6181 if (!strcmp(argv[i], "-m")) {
6182 verbosity = true;
6183 } else if (!strcmp(argv[i], "--names")) {
6184 names = true;
6185 set_names = true;
6186 } else if (!strcmp(argv[i], "--no-names")) {
6187 names = false;
6188 set_names = true;
6189 }
6190 }
6191 if (!set_names) {
6192 names = verbosity;
04b541df
GS
6193 }
6194
d1fd1ea9
BP
6195 struct hmap *portno_names = NULL;
6196 if (names) {
6197 portno_names = xmalloc(sizeof *portno_names);
6198 hmap_init(portno_names);
6199
6200 struct dpif_port dpif_port;
6201 struct dpif_port_dump port_dump;
6202 DPIF_PORT_FOR_EACH (&dpif_port, &port_dump, ofproto->backer->dpif) {
6203 odp_portno_names_set(portno_names, dpif_port.port_no,
6204 dpif_port.name);
6205 }
04b541df
GS
6206 }
6207
1b849273 6208 ds_init(&ds);
7e8b7199 6209 flow_dump = dpif_flow_dump_create(ofproto->backer->dpif, false, NULL);
ac64794a
BP
6210 flow_dump_thread = dpif_flow_dump_thread_create(flow_dump);
6211 while (dpif_flow_dump_next(flow_dump_thread, &f, 1)) {
ef377a58
JR
6212 struct flow flow;
6213
d40533fc
BP
6214 if ((odp_flow_key_to_flow(f.key, f.key_len, &flow, NULL)
6215 == ODP_FIT_ERROR)
6216 || (xlate_lookup_ofproto(ofproto->backer, &flow, NULL, NULL)
6217 != ofproto)) {
04d08d54
EJ
6218 continue;
6219 }
6220
70e5ed6f
JS
6221 if (verbosity) {
6222 odp_format_ufid(&f.ufid, &ds);
6223 ds_put_cstr(&ds, " ");
6224 }
ac64794a 6225 odp_flow_format(f.key, f.key_len, f.mask, f.mask_len,
d1fd1ea9 6226 portno_names, &ds, verbosity);
1b849273 6227 ds_put_cstr(&ds, ", ");
ac64794a 6228 dpif_flow_stats_format(&f.stats, &ds);
27022416 6229 ds_put_cstr(&ds, ", actions:");
0722f341 6230 format_odp_actions(&ds, f.actions, f.actions_len, portno_names);
27022416
JP
6231 ds_put_char(&ds, '\n');
6232 }
ac64794a
BP
6233 dpif_flow_dump_thread_destroy(flow_dump_thread);
6234 error = dpif_flow_dump_destroy(flow_dump);
27022416 6235
938eaa50 6236 if (error) {
1b849273
JS
6237 ds_clear(&ds);
6238 ds_put_format(&ds, "dpif/dump_flows failed: %s", ovs_strerror(errno));
6239 unixctl_command_reply_error(conn, ds_cstr(&ds));
6240 } else {
6241 unixctl_command_reply(conn, ds_cstr(&ds));
6242 }
d1fd1ea9
BP
6243 if (portno_names) {
6244 odp_portno_names_destroy(portno_names);
6245 hmap_destroy(portno_names);
6246 free(portno_names);
6247 }
27022416
JP
6248 ds_destroy(&ds);
6249}
6250
a98b700d
AZ
6251static void
6252ofproto_unixctl_dpif_show_dp_features(struct unixctl_conn *conn,
6253 int argc, const char *argv[],
6254 void *aux OVS_UNUSED)
6255{
6256 struct ds ds = DS_EMPTY_INITIALIZER;
6257 const char *br = argv[argc -1];
911b4a7e 6258 struct ofproto_dpif *ofproto = ofproto_dpif_lookup_by_name(br);
a98b700d
AZ
6259
6260 if (!ofproto) {
6261 unixctl_command_reply_error(conn, "no such bridge");
6262 return;
6263 }
6264
88186383 6265 dpif_show_support(&ofproto->backer->bt_support, &ds);
a98b700d
AZ
6266 unixctl_command_reply(conn, ds_cstr(&ds));
6267}
6268
18e5d1a8
AZ
6269static void
6270ofproto_unixctl_dpif_set_dp_features(struct unixctl_conn *conn,
6271 int argc, const char *argv[],
6272 void *aux OVS_UNUSED)
6273{
6274 struct ds ds = DS_EMPTY_INITIALIZER;
6275 const char *br = argv[1];
6276 const char *name, *value;
911b4a7e 6277 struct ofproto_dpif *ofproto = ofproto_dpif_lookup_by_name(br);
88186383 6278 bool changed;
18e5d1a8
AZ
6279
6280 if (!ofproto) {
6281 unixctl_command_reply_error(conn, "no such bridge");
6282 return;
6283 }
6284
6285 name = argc > 2 ? argv[2] : NULL;
6286 value = argc > 3 ? argv[3] : NULL;
88186383
AZ
6287 changed = dpif_set_support(&ofproto->backer->rt_support,
6288 &ofproto->backer->bt_support,
6289 name, value, &ds);
6290 if (changed) {
6291 xlate_set_support(ofproto, &ofproto->backer->rt_support);
6292 udpif_flush(ofproto->backer->udpif);
6293 }
18e5d1a8 6294 unixctl_command_reply(conn, ds_cstr(&ds));
88186383 6295 ds_destroy(&ds);
18e5d1a8
AZ
6296}
6297
a36de779
PS
6298static void
6299ofproto_unixctl_init(void)
abe529af
BP
6300{
6301 static bool registered;
6302 if (registered) {
6303 return;
6304 }
6305 registered = true;
6306
96e466a3 6307 unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
0e15264f
BP
6308 ofproto_unixctl_fdb_flush, NULL);
6309 unixctl_command_register("fdb/show", "bridge", 1, 1,
6310 ofproto_unixctl_fdb_show, NULL);
95dcecc5
EC
6311 unixctl_command_register("fdb/stats-clear", "[bridge]", 0, 1,
6312 ofproto_unixctl_fdb_stats_clear, NULL);
6313 unixctl_command_register("fdb/stats-show", "bridge", 1, 1,
6314 ofproto_unixctl_fdb_stats_show, NULL);
08fdcc12
FL
6315 unixctl_command_register("mdb/flush", "[bridge]", 0, 1,
6316 ofproto_unixctl_mcast_snooping_flush, NULL);
6317 unixctl_command_register("mdb/show", "bridge", 1, 1,
6318 ofproto_unixctl_mcast_snooping_show, NULL);
27022416
JP
6319 unixctl_command_register("dpif/dump-dps", "", 0, 0,
6320 ofproto_unixctl_dpif_dump_dps, NULL);
dc54ef36
EJ
6321 unixctl_command_register("dpif/show", "", 0, 0, ofproto_unixctl_dpif_show,
6322 NULL);
a98b700d
AZ
6323 unixctl_command_register("dpif/show-dp-features", "bridge", 1, 1,
6324 ofproto_unixctl_dpif_show_dp_features, NULL);
9ec4eddb
AGS
6325 unixctl_command_register("dpif/dump-flows",
6326 "[-m] [--names | --no-names] bridge", 1, INT_MAX,
27022416 6327 ofproto_unixctl_dpif_dump_flows, NULL);
18e5d1a8
AZ
6328 unixctl_command_register("dpif/set-dp-features", "bridge", 1, 3 ,
6329 ofproto_unixctl_dpif_set_dp_features, NULL);
abe529af
BP
6330}
6331\f
46c88433 6332static odp_port_t
4e022ec0 6333ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
e1b1d06a 6334{
e672ff9b 6335 const struct ofport_dpif *ofport = ofp_port_to_ofport(ofproto, ofp_port);
4e022ec0 6336 return ofport ? ofport->odp_port : ODPP_NONE;
e1b1d06a
JP
6337}
6338
8449c4d6 6339struct ofport_dpif *
4e022ec0 6340odp_port_to_ofport(const struct dpif_backer *backer, odp_port_t odp_port)
e1b1d06a
JP
6341{
6342 struct ofport_dpif *port;
6343
8449c4d6 6344 ovs_rwlock_rdlock(&backer->odp_to_ofport_lock);
f9c0c3ec 6345 HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node, hash_odp_port(odp_port),
acf60855 6346 &backer->odp_to_ofport_map) {
e1b1d06a 6347 if (port->odp_port == odp_port) {
8449c4d6 6348 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
acf60855 6349 return port;
e1b1d06a
JP
6350 }
6351 }
6352
8449c4d6 6353 ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
acf60855
JP
6354 return NULL;
6355}
6356
4e022ec0
AW
6357static ofp_port_t
6358odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
acf60855
JP
6359{
6360 struct ofport_dpif *port;
6361
6362 port = odp_port_to_ofport(ofproto->backer, odp_port);
6472ba11 6363 if (port && &ofproto->up == port->up.ofproto) {
acf60855
JP
6364 return port->up.ofp_port;
6365 } else {
6366 return OFPP_NONE;
6367 }
e1b1d06a 6368}
655ab909 6369
6a6b7060
BP
6370/* 'match' is non-const to allow for temporary modifications. Any changes are
6371 * restored before returning. */
adcf00ba
AZ
6372int
6373ofproto_dpif_add_internal_flow(struct ofproto_dpif *ofproto,
6a6b7060 6374 struct match *match, int priority,
290ad78a 6375 uint16_t idle_timeout,
adcf00ba
AZ
6376 const struct ofpbuf *ofpacts,
6377 struct rule **rulep)
6378{
7338102b 6379 struct ofputil_flow_mod fm;
adcf00ba
AZ
6380 struct rule_dpif *rule;
6381 int error;
6382
7338102b 6383 fm = (struct ofputil_flow_mod) {
c184807c 6384 .buffer_id = UINT32_MAX,
39cc5c4a
BP
6385 .priority = priority,
6386 .table_id = TBL_INTERNAL,
6387 .command = OFPFC_ADD,
6388 .idle_timeout = idle_timeout,
6389 .flags = OFPUTIL_FF_HIDDEN_FIELDS | OFPUTIL_FF_NO_READONLY,
6390 .ofpacts = ofpacts->data,
6391 .ofpacts_len = ofpacts->size,
39cc5c4a 6392 };
6a6b7060 6393 minimatch_init(&fm.match, match);
7338102b 6394 error = ofproto_flow_mod(&ofproto->up, &fm);
6a6b7060
BP
6395 minimatch_destroy(&fm.match);
6396
adcf00ba
AZ
6397 if (error) {
6398 VLOG_ERR_RL(&rl, "failed to add internal flow (%s)",
6399 ofperr_to_string(error));
6400 *rulep = NULL;
6401 return error;
6402 }
6403
621b8064
JR
6404 rule = rule_dpif_lookup_in_table(ofproto,
6405 ofproto_dpif_get_tables_version(ofproto),
6a6b7060 6406 TBL_INTERNAL, &match->flow, &match->wc);
adcf00ba 6407 if (rule) {
adcf00ba
AZ
6408 *rulep = &rule->up;
6409 } else {
6410 OVS_NOT_REACHED();
6411 }
6412 return 0;
6413}
6414
6415int
6416ofproto_dpif_delete_internal_flow(struct ofproto_dpif *ofproto,
6417 struct match *match, int priority)
6418{
7338102b 6419 struct ofputil_flow_mod fm;
adcf00ba
AZ
6420 int error;
6421
7338102b 6422 fm = (struct ofputil_flow_mod) {
c184807c 6423 .buffer_id = UINT32_MAX,
39cc5c4a
BP
6424 .priority = priority,
6425 .table_id = TBL_INTERNAL,
02a9757e
HH
6426 .out_port = OFPP_ANY,
6427 .out_group = OFPG_ANY,
39cc5c4a
BP
6428 .flags = OFPUTIL_FF_HIDDEN_FIELDS | OFPUTIL_FF_NO_READONLY,
6429 .command = OFPFC_DELETE_STRICT,
6430 };
6a6b7060 6431 minimatch_init(&fm.match, match);
7338102b 6432 error = ofproto_flow_mod(&ofproto->up, &fm);
6a6b7060
BP
6433 minimatch_destroy(&fm.match);
6434
adcf00ba
AZ
6435 if (error) {
6436 VLOG_ERR_RL(&rl, "failed to delete internal flow (%s)",
6437 ofperr_to_string(error));
6438 return error;
6439 }
6440
6441 return 0;
6442}
6443
5dddf960
JR
6444static void
6445meter_get_features(const struct ofproto *ofproto_,
6446 struct ofputil_meter_features *features)
6447{
6448 const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
6449
6450 dpif_meter_get_features(ofproto->backer->dpif, features);
6451}
6452
6453static enum ofperr
6454meter_set(struct ofproto *ofproto_, ofproto_meter_id *meter_id,
6455 struct ofputil_meter_config *config)
6456{
6457 struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
6458
333ad77d
AZ
6459 /* Provider ID unknown. Use backer to allocate a new DP meter */
6460 if (meter_id->uint32 == UINT32_MAX) {
6461 if (!ofproto->backer->meter_ids) {
22205481 6462 return OFPERR_OFPMMFC_OUT_OF_METERS; /* Meters not supported. */
333ad77d
AZ
6463 }
6464
6465 if(!id_pool_alloc_id(ofproto->backer->meter_ids, &meter_id->uint32)) {
22205481 6466 return OFPERR_OFPMMFC_OUT_OF_METERS; /* Can't allocate meter. */
333ad77d
AZ
6467 }
6468 }
6469
8101f03f 6470 switch (dpif_meter_set(ofproto->backer->dpif, *meter_id, config)) {
5dddf960
JR
6471 case 0:
6472 return 0;
6473 case EFBIG: /* meter_id out of range */
6474 case ENOMEM: /* Cannot allocate meter */
6475 return OFPERR_OFPMMFC_OUT_OF_METERS;
6476 case EBADF: /* Unsupported flags */
6477 return OFPERR_OFPMMFC_BAD_FLAGS;
6478 case EINVAL: /* Too many bands */
6479 return OFPERR_OFPMMFC_OUT_OF_BANDS;
6480 case ENODEV: /* Unsupported band type */
6481 return OFPERR_OFPMMFC_BAD_BAND;
66a396d4 6482 case EDOM: /* Rate must be non-zero */
2029ce9a 6483 return OFPERR_OFPMMFC_BAD_RATE;
5dddf960
JR
6484 default:
6485 return OFPERR_OFPMMFC_UNKNOWN;
6486 }
6487}
6488
6489static enum ofperr
6490meter_get(const struct ofproto *ofproto_, ofproto_meter_id meter_id,
6491 struct ofputil_meter_stats *stats, uint16_t n_bands)
6492{
6493 const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
6494
6495 if (!dpif_meter_get(ofproto->backer->dpif, meter_id, stats, n_bands)) {
6496 return 0;
6497 }
6498 return OFPERR_OFPMMFC_UNKNOWN_METER;
6499}
6500
333ad77d
AZ
6501struct free_meter_id_args {
6502 struct ofproto_dpif *ofproto;
6503 ofproto_meter_id meter_id;
6504};
6505
6506static void
6507free_meter_id(struct free_meter_id_args *args)
6508{
6509 struct ofproto_dpif *ofproto = args->ofproto;
6510
6511 dpif_meter_del(ofproto->backer->dpif, args->meter_id, NULL, 0);
6512 id_pool_free_id(ofproto->backer->meter_ids, args->meter_id.uint32);
6513 free(args);
6514}
6515
5dddf960
JR
6516static void
6517meter_del(struct ofproto *ofproto_, ofproto_meter_id meter_id)
6518{
333ad77d
AZ
6519 struct free_meter_id_args *arg = xmalloc(sizeof *arg);
6520
6521 /* Before a meter can be deleted, Openflow spec requires all rules
6522 * referring to the meter to be (automatically) removed before the
6523 * meter is deleted. However, since vswitchd is multi-threaded,
6524 * those rules and their actions remain accessible by other threads,
6525 * especially by the handler and revalidator threads.
6526 * Postpone meter deletion after RCU grace period, so that ongoing
6527 * upcall translation or flow revalidation can complete. */
6528 arg->ofproto = ofproto_dpif_cast(ofproto_);
6529 arg->meter_id = meter_id;
6530 ovsrcu_postpone(free_meter_id, arg);
5dddf960
JR
6531}
6532
abe529af 6533const struct ofproto_class ofproto_dpif_class = {
b0408fca 6534 init,
abe529af
BP
6535 enumerate_types,
6536 enumerate_names,
6537 del,
0aeaabc8 6538 port_open_type,
acf60855 6539 type_run,
acf60855 6540 type_wait,
abe529af
BP
6541 alloc,
6542 construct,
6543 destruct,
6544 dealloc,
6545 run,
f07c97f5 6546 ofproto_dpif_wait,
e79a6c83 6547 NULL, /* get_memory_usage. */
1c030aa5 6548 type_get_memory_usage,
abe529af 6549 flush,
3c1bb396 6550 query_tables,
4e413ac8 6551 NULL, /* modify_tables */
621b8064 6552 set_tables_version,
abe529af
BP
6553 port_alloc,
6554 port_construct,
6555 port_destruct,
6556 port_dealloc,
6557 port_modified,
6558 port_reconfigured,
6559 port_query_by_name,
6560 port_add,
6561 port_del,
91364d18 6562 port_set_config,
6527c598 6563 port_get_stats,
723b6ab2 6564 vport_get_status,
abe529af
BP
6565 port_dump_start,
6566 port_dump_next,
6567 port_dump_done,
6568 port_poll,
6569 port_poll_wait,
6570 port_is_lacp_current,
50b9699f 6571 port_get_lacp_stats,
0ab6decf 6572 NULL, /* rule_choose_table */
abe529af
BP
6573 rule_alloc,
6574 rule_construct,
8037acb4 6575 rule_insert,
1fc71871 6576 NULL, /* rule_delete */
abe529af
BP
6577 rule_destruct,
6578 rule_dealloc,
abe529af 6579 rule_get_stats,
1f4a8933 6580 packet_xlate,
6dd3c787 6581 packet_xlate_revert,
1f4a8933 6582 packet_execute,
7257b535 6583 set_frag_handling,
77ab5fd2 6584 nxt_resume,
abe529af
BP
6585 set_netflow,
6586 get_netflow_ids,
6587 set_sflow,
29089a54 6588 set_ipfix,
fb8f22c1 6589 get_ipfix_stats,
abe529af 6590 set_cfm,
8f5514fe 6591 cfm_status_changed,
9a9e3786 6592 get_cfm_status,
0477baa9
DF
6593 set_lldp,
6594 get_lldp_status,
6595 set_aa,
6596 aa_mapping_set,
6597 aa_mapping_unset,
6598 aa_vlan_get_queued,
6599 aa_vlan_get_queue_size,
ccc09689 6600 set_bfd,
8f5514fe 6601 bfd_status_changed,
ccc09689 6602 get_bfd_status,
21f7563c
JP
6603 set_stp,
6604 get_stp_status,
6605 set_stp_port,
6606 get_stp_port_status,
fd28ce3a 6607 get_stp_port_stats,
9efd308e
DV
6608 set_rstp,
6609 get_rstp_status,
6610 set_rstp_port,
6611 get_rstp_port_status,
8b36f51e 6612 set_queues,
abe529af
BP
6613 bundle_set,
6614 bundle_remove,
ec7ceaed
EJ
6615 mirror_set__,
6616 mirror_get_stats__,
abe529af
BP
6617 set_flood_vlans,
6618 is_mirror_output_bundle,
8402c74b 6619 forward_bpdu_changed,
c4069512 6620 set_mac_table_config,
7c38d0a5
FL
6621 set_mcast_snooping,
6622 set_mcast_snooping_port,
5dddf960
JR
6623 meter_get_features,
6624 meter_set,
6625 meter_get,
6626 meter_del,
00430a3f
SH
6627 group_alloc, /* group_alloc */
6628 group_construct, /* group_construct */
6629 group_destruct, /* group_destruct */
6630 group_dealloc, /* group_dealloc */
ccb3bc08 6631 NULL, /* group_modify */
00430a3f 6632 group_get_stats, /* group_get_stats */
b5cbbcf6 6633 get_datapath_version, /* get_datapath_version */
d4f6865c 6634 type_set_config,
2a7c4805 6635 ct_flush, /* ct_flush */
993cae67
YHW
6636 ct_set_zone_timeout_policy,
6637 ct_del_zone_timeout_policy,
27501802 6638 get_datapath_cap,
abe529af 6639};