]> git.proxmox.com Git - ovs.git/blame - ofproto/ofproto-provider.h
tnl-neigh-cache: Purge learnt neighbors when port/bridge is deleted
[ovs.git] / ofproto / ofproto-provider.h
CommitLineData
d08a2e92 1/*
04f48a68 2 * Copyright (c) 2009-2017 Nicira, Inc.
d08a2e92
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
5bee6e26
JP
17#ifndef OFPROTO_OFPROTO_PROVIDER_H
18#define OFPROTO_OFPROTO_PROVIDER_H 1
d08a2e92 19
15aaf599
BP
20/* Definitions for use within ofproto.
21 *
22 *
23 * Thread-safety
24 * =============
25 *
26 * Lots of ofproto data structures are only accessed from a single thread.
27 * Those data structures are generally not thread-safe.
28 *
29 * The ofproto-dpif ofproto implementation accesses the flow table from
30 * multiple threads, including modifying the flow table from multiple threads
31 * via the "learn" action, so the flow table and various structures that index
32 * it have been made thread-safe. Refer to comments on individual data
33 * structures for details.
34 */
d08a2e92 35
1de11730 36#include "cfm.h"
abe529af 37#include "classifier.h"
35412852 38#include "guarded-list.h"
254750ce 39#include "heap.h"
98eaac36 40#include "hindex.h"
fe59694b 41#include "object-collection.h"
b598f214 42#include "ofproto/ofproto.h"
b19bab5b 43#include "openvswitch/list.h"
b598f214 44#include "openvswitch/ofp-actions.h"
e03c096d 45#include "openvswitch/ofp-errors.h"
0d71302e
BP
46#include "openvswitch/ofp-flow.h"
47#include "openvswitch/ofp-group.h"
48#include "openvswitch/ofp-meter.h"
49#include "openvswitch/ofp-port.h"
50#include "openvswitch/ofp-switch.h"
51#include "openvswitch/ofp-table.h"
a2143702 52#include "ovs-atomic.h"
06a0f3e2 53#include "ovs-rcu.h"
a3779dbc 54#include "ovs-thread.h"
ee89ea7b 55#include "openvswitch/shash.h"
e1b1d06a 56#include "simap.h"
abe529af 57#include "timeval.h"
8d8ab6c2 58#include "tun-metadata.h"
5d08a275 59#include "versions.h"
aafee638 60#include "vl-mff-map.h"
abe529af 61
81a76618 62struct match;
75a75043 63struct ofputil_flow_mod;
0d71302e 64struct ofputil_packet_in_private;
ccc09689 65struct bfd_cfg;
9cae45dc 66struct meter;
b20f4073 67struct ofoperation;
1f4a8933 68struct ofproto_packet_out;
d4f6865c 69struct smap;
75a75043 70
abe7b10f
BP
71extern struct ovs_mutex ofproto_mutex;
72
abe529af
BP
73/* An OpenFlow switch.
74 *
75 * With few exceptions, ofproto implementations may look at these fields but
76 * should not modify them. */
77struct ofproto {
6e492d81 78 struct hmap_node hmap_node; /* In global 'all_ofprotos' hmap. */
abe529af
BP
79 const struct ofproto_class *ofproto_class;
80 char *type; /* Datapath type. */
81 char *name; /* Datapath name. */
abe529af
BP
82
83 /* Settings. */
84 uint64_t fallback_dpid; /* Datapath ID if no better choice found. */
85 uint64_t datapath_id; /* Datapath ID. */
8402c74b
SS
86 bool forward_bpdu; /* Option to allow forwarding of BPDU frames
87 * when NORMAL action is invoked. */
71dab241 88 char *mfr_desc; /* Manufacturer (NULL for default). */
061bfea4
BP
89 char *hw_desc; /* Hardware (NULL for default). */
90 char *sw_desc; /* Software version (NULL for default). */
91 char *serial_desc; /* Serial number (NULL for default). */
92 char *dp_desc; /* Datapath description (NULL for default). */
ad99e2ed 93 enum ofputil_frag_handling frag_handling;
abe529af
BP
94
95 /* Datapath. */
abe529af
BP
96 struct hmap ports; /* Contains "struct ofport"s. */
97 struct shash port_by_name;
e1b1d06a 98 struct simap ofp_requests; /* OpenFlow port number requests. */
430dbb14
AW
99 uint16_t alloc_port_no; /* Last allocated OpenFlow port number. */
100 uint16_t max_ports; /* Max possible OpenFlow port num, plus one. */
fdcea803 101 struct hmap ofport_usage; /* Map ofport to last used time. */
da4a6191 102 uint64_t change_seq; /* Change sequence for netdev status. */
abe529af 103
6c1491fb 104 /* Flow tables. */
448c2fa8 105 long long int eviction_group_timer; /* For rate limited reheapification. */
d0918789 106 struct oftable *tables;
6c1491fb 107 int n_tables;
44e0c35d 108 ovs_version_t tables_version; /* Controls which rules are visible to
1c38055d 109 * table lookups. */
abe529af 110
2c916028
BP
111 /* Rules indexed on their cookie values, in all flow tables. */
112 struct hindex cookies OVS_GUARDED_BY(ofproto_mutex);
35f48b8b 113 struct hmap learned_cookies OVS_GUARDED_BY(ofproto_mutex);
98eaac36 114
abe7b10f 115 /* List of expirable flows, in all flow tables. */
ca6ba700 116 struct ovs_list expirable OVS_GUARDED_BY(ofproto_mutex);
e503cc19 117
ba8cff36 118 /* Meter table. */
9cae45dc 119 struct ofputil_meter_features meter_features;
ba8cff36 120 struct hmap meters; /* uint32_t indexed 'struct meter *'. */
9e638f22
AZ
121 uint32_t slowpath_meter_id; /* Datapath slowpath meter. UINT32_MAX
122 if not defined. */
123 uint32_t controller_meter_id; /* Datapath controller meter. UINT32_MAX
124 if not defined. */
9cae45dc 125
abe529af
BP
126 /* OpenFlow connections. */
127 struct connmgr *connmgr;
7ee20df1 128
ada3428f 129 int min_mtu; /* Current MTU of non-internal ports. */
7395c052
NZ
130
131 /* Groups. */
db88b35c 132 struct cmap groups; /* Contains "struct ofgroup"s. */
7395c052
NZ
133 uint32_t n_groups[4] OVS_GUARDED; /* # of existing groups of each type. */
134 struct ofputil_group_features ogf;
8d8ab6c2
JG
135
136 /* Tunnel TLV mapping table. */
137 OVSRCU_TYPE(struct tun_table *) metadata_tab;
04f48a68
YHW
138
139 /* Variable length mf_field mapping. Stores all configured variable length
140 * meta-flow fields (struct mf_field) in a switch. */
141 struct vl_mff_map vl_mff_map;
abe529af
BP
142};
143
0f5f95a9 144void ofproto_init_tables(struct ofproto *, int n_tables);
430dbb14 145void ofproto_init_max_ports(struct ofproto *, uint16_t max_ports);
0f5f95a9 146
abe529af 147struct ofproto *ofproto_lookup(const char *name);
4e022ec0 148struct ofport *ofproto_get_port(const struct ofproto *, ofp_port_t ofp_port);
abe529af
BP
149
150/* An OpenFlow port within a "struct ofproto".
1a6495b5
BP
151 *
152 * The port's name is netdev_get_name(port->netdev).
abe529af
BP
153 *
154 * With few exceptions, ofproto implementations may look at these fields but
155 * should not modify them. */
156struct ofport {
abe529af 157 struct hmap_node hmap_node; /* In struct ofproto's "ports" hmap. */
6e492d81 158 struct ofproto *ofproto; /* The ofproto that contains this port. */
abe529af 159 struct netdev *netdev;
9e1fd49b 160 struct ofputil_phy_port pp;
4e022ec0 161 ofp_port_t ofp_port; /* OpenFlow port number. */
61501798 162 uint64_t change_seq;
65e0be10 163 long long int created; /* Time created, in msec. */
9197df76 164 int mtu;
16361b11 165 bool may_enable; /* May be live (OFPPS_LIVE) if link is up. */
abe529af
BP
166};
167
6d57dea9 168void ofproto_port_set_enable(struct ofport *, bool enable);
9e1fd49b 169void ofproto_port_set_state(struct ofport *, enum ofputil_port_state);
5a2dfd47 170
c2f0373a
BP
171/* OpenFlow table flags:
172 *
173 * - "Hidden" tables are not included in OpenFlow operations that operate on
174 * "all tables". For example, a request for flow stats on all tables will
175 * omit flows in hidden tables, table stats requests will omit the table
176 * entirely, and the switch features reply will not count the hidden table.
177 *
178 * However, operations that specifically name the particular table still
179 * operate on it. For example, flow_mods and flow stats requests on a
180 * hidden table work.
181 *
182 * To avoid gaps in table IDs (which have unclear validity in OpenFlow),
183 * hidden tables must be the highest-numbered tables that a provider
184 * implements.
185 *
186 * - "Read-only" tables can't be changed through OpenFlow operations. (At
187 * the moment all flow table operations go effectively through OpenFlow, so
188 * this means that read-only tables can't be changed at all after the
189 * read-only flag is set.)
190 *
191 * The generic ofproto layer never sets these flags. An ofproto provider can
192 * set them if it is appropriate.
193 */
5c67e4af
BP
194enum oftable_flags {
195 OFTABLE_HIDDEN = 1 << 0, /* Hide from most OpenFlow operations. */
adcf00ba
AZ
196 OFTABLE_READONLY = 1 << 1 /* Don't allow OpenFlow controller to change
197 this table. */
5c67e4af
BP
198};
199
15aaf599
BP
200/* A flow table within a "struct ofproto".
201 *
202 *
203 * Thread-safety
204 * =============
205 *
afae68b1 206 * Adding or removing rules requires holding ofproto_mutex.
15aaf599 207 *
afae68b1
JR
208 * Rules in 'cls' are RCU protected. For extended access to a rule, try
209 * incrementing its ref_count with ofproto_rule_try_ref(), or
210 * ofproto_rule_ref(), if the rule is still known to be in 'cls'. A rule
211 * will be freed using ovsrcu_postpone() once its 'ref_count' reaches zero.
15aaf599 212 *
afae68b1 213 * Modifying a rule requires the rule's own mutex.
15aaf599 214 *
afae68b1
JR
215 * Freeing a rule requires ofproto_mutex. After removing the rule from the
216 * classifier, release a ref_count from the rule ('cls''s reference to the
217 * rule).
15aaf599
BP
218 *
219 * Refer to the thread-safety notes on struct rule for more information.*/
d0918789 220struct oftable {
5c67e4af 221 enum oftable_flags flags;
d0918789 222 struct classifier cls; /* Contains "struct rule"s. */
254750ce 223 char *name; /* Table name exposed via OpenFlow, or NULL. */
4e413ac8 224 int name_level; /* 0=name unset, 1=via OF, 2=via OVSDB. */
254750ce
BP
225
226 /* Maximum number of flows or UINT_MAX if there is no limit besides any
227 * limit imposed by resource limitations. */
228 unsigned int max_flows;
d79e3d70
JR
229 /* Current number of flows, not counting temporary duplicates nor deferred
230 * deletions. */
231 unsigned int n_flows;
254750ce
BP
232
233 /* These members determine the handling of an attempt to add a flow that
234 * would cause the table to have more than 'max_flows' flows.
235 *
236 * If 'eviction_fields' is NULL, overflows will be rejected with an error.
237 *
238 * If 'eviction_fields' is nonnull (regardless of whether n_eviction_fields
239 * is nonzero), an overflow will cause a flow to be removed. The flow to
240 * be removed is chosen to give fairness among groups distinguished by
241 * different values for the subfields within 'groups'. */
242 struct mf_subfield *eviction_fields;
243 size_t n_eviction_fields;
244
245 /* Eviction groups.
246 *
247 * When a flow is added that would cause the table to have more than
248 * 'max_flows' flows, and 'eviction_fields' is nonnull, these groups are
249 * used to decide which rule to evict: the rule is chosen from the eviction
250 * group that contains the greatest number of rules.*/
251 uint32_t eviction_group_id_basis;
252 struct hmap eviction_groups_by_id;
253 struct heap eviction_groups_by_size;
67761761 254
82c22d34 255 /* Flow table miss handling configuration. */
3c1bb396 256 ATOMIC(enum ofputil_table_miss) miss_config;
d611866c 257
82c22d34
BP
258 /* Eviction is enabled if either the client (vswitchd) enables it or an
259 * OpenFlow controller enables it; thus, a nonzero value indicates that
260 * eviction is enabled. */
261#define EVICTION_CLIENT (1 << 0) /* Set to 1 if client enables eviction. */
262#define EVICTION_OPENFLOW (1 << 1) /* Set to 1 if OpenFlow enables eviction. */
263 unsigned int eviction;
264
6c6eedc5
SJ
265 /* If zero, vacancy events are disabled. If nonzero, this is the type of
266 vacancy event that is enabled: either OFPTR_VACANCY_DOWN or
267 OFPTR_VACANCY_UP. Only one type of vacancy event can be enabled at a
268 time. */
269 enum ofp14_table_reason vacancy_event;
de7d3c07
SJ
270
271 /* Non-zero values for vacancy_up and vacancy_down indicates that vacancy
272 * is enabled by table-mod, else these values are set to zero when
273 * vacancy is disabled */
274 uint8_t vacancy_down; /* Vacancy threshold when space decreases (%). */
275 uint8_t vacancy_up; /* Vacancy threshold when space increases (%). */
276
d611866c
SH
277 atomic_ulong n_matched;
278 atomic_ulong n_missed;
d0918789
BP
279};
280
281/* Assigns TABLE to each oftable, in turn, in OFPROTO.
282 *
283 * All parameters are evaluated multiple times. */
284#define OFPROTO_FOR_EACH_TABLE(TABLE, OFPROTO) \
285 for ((TABLE) = (OFPROTO)->tables; \
286 (TABLE) < &(OFPROTO)->tables[(OFPROTO)->n_tables]; \
287 (TABLE)++)
288
abe529af
BP
289/* An OpenFlow flow within a "struct ofproto".
290 *
291 * With few exceptions, ofproto implementations may look at these fields but
15aaf599
BP
292 * should not modify them.
293 *
294 *
295 * Thread-safety
296 * =============
297 *
298 * Except near the beginning or ending of its lifespan, rule 'rule' belongs to
299 * the classifier rule->ofproto->tables[rule->table_id].cls. The text below
300 * calls this classifier 'cls'.
301 *
302 * Motivation
303 * ----------
304 *
305 * The thread safety rules described here for "struct rule" are motivated by
306 * two goals:
307 *
308 * - Prevent threads that read members of "struct rule" from reading bad
309 * data due to changes by some thread concurrently modifying those
310 * members.
311 *
312 * - Prevent two threads making changes to members of a given "struct rule"
313 * from interfering with each other.
314 *
315 *
316 * Rules
317 * -----
318 *
afae68b1
JR
319 * A rule 'rule' may be accessed without a risk of being freed by a thread
320 * until the thread quiesces (i.e., rules are RCU protected and destructed
321 * using ovsrcu_postpone()). Code that needs to hold onto a rule for a
322 * while should increment 'rule->ref_count' either with ofproto_rule_ref()
323 * (if 'ofproto_mutex' is held), or with ofproto_rule_try_ref() (when some
324 * other thread might remove the rule from 'cls'). ofproto_rule_try_ref()
325 * will fail if the rule has already been scheduled for destruction.
15aaf599
BP
326 *
327 * 'rule->ref_count' protects 'rule' from being freed. It doesn't protect the
afae68b1 328 * rule from being deleted from 'cls' (that's 'ofproto_mutex') and it doesn't
7ea33f75 329 * protect members of 'rule' from modification (that's 'rule->mutex').
15aaf599
BP
330 *
331 * 'rule->mutex' protects the members of 'rule' from modification. It doesn't
afae68b1
JR
332 * protect the rule from being deleted from 'cls' (that's 'ofproto_mutex') and
333 * it doesn't prevent the rule from being freed (that's 'rule->ref_count').
15aaf599
BP
334 *
335 * Regarding thread safety, the members of a rule fall into the following
336 * categories:
337 *
338 * - Immutable. These members are marked 'const'.
339 *
340 * - Members that may be safely read or written only by code holding
341 * ofproto_mutex. These are marked OVS_GUARDED_BY(ofproto_mutex).
342 *
343 * - Members that may be safely read only by code holding ofproto_mutex or
344 * 'rule->mutex', and safely written only by coding holding ofproto_mutex
345 * AND 'rule->mutex'. These are marked OVS_GUARDED.
346 */
30d0452c
JR
347enum OVS_PACKED_ENUM rule_state {
348 RULE_INITIALIZED, /* Rule has been initialized, but not inserted to the
349 * ofproto data structures. Versioning makes sure the
350 * rule is not visible to lookups by other threads, even
351 * if the rule is added to a classifier. */
352 RULE_INSERTED, /* Rule has been inserted to ofproto data structures and
353 * may be visible to lookups by other threads. */
354 RULE_REMOVED, /* Rule has been removed from ofproto data structures,
355 * and may still be visible to lookups by other threads
356 * until they quiesce, after which the rule will be
357 * removed from the classifier as well. */
358};
359
abe529af 360struct rule {
49a0e0eb
BP
361 /* Where this rule resides in an OpenFlow switch.
362 *
363 * These are immutable once the rule is constructed, hence 'const'. */
364 struct ofproto *const ofproto; /* The ofproto that contains this rule. */
365 const struct cls_rule cr; /* In owning ofproto's classifier. */
366 const uint8_t table_id; /* Index in ofproto's 'tables' array. */
30d0452c
JR
367
368 enum rule_state state;
49a0e0eb 369
15aaf599
BP
370 /* Protects members marked OVS_GUARDED.
371 * Readers only need to hold this mutex.
b90d6ee5
JR
372 * Writers must hold both this mutex AND ofproto_mutex.
373 * By implication writers can read *without* taking this mutex while they
374 * hold ofproto_mutex. */
15aaf599
BP
375 struct ovs_mutex mutex OVS_ACQ_AFTER(ofproto_mutex);
376
377 /* Number of references.
378 * The classifier owns one reference.
379 * Any thread trying to keep a rule from being freed should hold its own
380 * reference. */
37bec3d3 381 struct ovs_refcount ref_count;
abe529af 382
15aaf599 383 /* A "flow cookie" is the OpenFlow name for a 64-bit value associated with
82a3160e
BP
384 * a flow. */
385 const ovs_be64 flow_cookie; /* Immutable once rule is constructed. */
2c916028 386 struct hindex_node cookie_node OVS_GUARDED_BY(ofproto_mutex);
abe529af 387
15aaf599 388 enum ofputil_flow_mod_flags flags OVS_GUARDED;
abe529af 389
15aaf599 390 /* Timeouts. */
a3779dbc
EJ
391 uint16_t hard_timeout OVS_GUARDED; /* In seconds from ->modified. */
392 uint16_t idle_timeout OVS_GUARDED; /* In seconds from ->used. */
393
ca26eb44 394 /* Eviction precedence. */
cf119e09 395 const uint16_t importance;
ca26eb44 396
f695ebfa
JR
397 /* Removal reason for sending flow removed message.
398 * Used only if 'flags' has OFPUTIL_FF_SEND_FLOW_REM set and if the
399 * value is not OVS_OFPRR_NONE. */
400 uint8_t removed_reason;
401
15aaf599 402 /* Eviction groups (see comment on struct eviction_group for explanation) .
884e1dc4 403 *
15aaf599
BP
404 * 'eviction_group' is this rule's eviction group, or NULL if it is not in
405 * any eviction group. When 'eviction_group' is nonnull, 'evg_node' is in
406 * the ->eviction_group->rules hmap. */
407 struct eviction_group *eviction_group OVS_GUARDED_BY(ofproto_mutex);
408 struct heap_node evg_node OVS_GUARDED_BY(ofproto_mutex);
ad3efdcb 409
15aaf599
BP
410 /* OpenFlow actions. See struct rule_actions for more thread-safety
411 * notes. */
39c94593 412 const struct rule_actions * const actions;
2b07c8b1 413
15aaf599 414 /* In owning meter's 'rules' list. An empty list if there is no meter. */
ca6ba700 415 struct ovs_list meter_list_node OVS_GUARDED_BY(ofproto_mutex);
9cae45dc 416
15aaf599
BP
417 /* Flow monitors (e.g. for NXST_FLOW_MONITOR, related to struct ofmonitor).
418 *
419 * 'add_seqno' is the sequence number when this rule was created.
420 * 'modify_seqno' is the sequence number when this rule was last modified.
421 * See 'monitor_seqno' in connmgr.c for more information. */
422 enum nx_flow_monitor_flags monitor_flags OVS_GUARDED_BY(ofproto_mutex);
423 uint64_t add_seqno OVS_GUARDED_BY(ofproto_mutex);
424 uint64_t modify_seqno OVS_GUARDED_BY(ofproto_mutex);
e503cc19 425
abe7b10f
BP
426 /* Optimisation for flow expiry. In ofproto's 'expirable' list if this
427 * rule is expirable, otherwise empty. */
ca6ba700 428 struct ovs_list expirable OVS_GUARDED_BY(ofproto_mutex);
b90d6ee5
JR
429
430 /* Times. Last so that they are more likely close to the stats managed
431 * by the provider. */
432 long long int created OVS_GUARDED; /* Creation time. */
433
434 /* Must hold 'mutex' for both read/write, 'ofproto_mutex' not needed. */
435 long long int modified OVS_GUARDED; /* Time of last modification. */
5c7c16d8
YHW
436
437 /* 1-bit for each present TLV in flow match / action. */
438 uint64_t match_tlv_bitmap;
439 uint64_t ofpacts_tlv_bitmap;
abe529af
BP
440};
441
a2143702 442void ofproto_rule_ref(struct rule *);
f5d16e55 443bool ofproto_rule_try_ref(struct rule *);
a2143702
BP
444void ofproto_rule_unref(struct rule *);
445
003ce655
JR
446static inline const struct rule_actions * rule_get_actions(const struct rule *);
447static inline bool rule_is_table_miss(const struct rule *);
5e8b38b0 448static inline bool rule_is_hidden(const struct rule *);
cfa955b0 449
6f00e29b
BP
450/* A set of actions within a "struct rule".
451 *
452 *
453 * Thread-safety
454 * =============
455 *
afae68b1
JR
456 * A struct rule_actions may be accessed without a risk of being freed by
457 * code that holds 'rule->mutex' (where 'rule' is the rule for which
458 * 'rule->actions == actions') or during the RCU active period.
4c7562c5 459 *
39c94593 460 * All members are immutable: they do not change during the rule's
4c7562c5 461 * lifetime. */
6f00e29b 462struct rule_actions {
4c7562c5
BP
463 /* Flags.
464 *
35f48b8b
BP
465 * 'has_meter' is true if 'ofpacts' contains an OFPACT_METER action.
466 *
467 * 'has_learn_with_delete' is true if 'ofpacts' contains an OFPACT_LEARN
468 * action whose flags include NX_LEARN_F_DELETE_LEARNED. */
4c7562c5 469 bool has_meter;
35f48b8b 470 bool has_learn_with_delete;
cc099268 471 bool has_groups;
4c7562c5
BP
472
473 /* Actions. */
dc723c44 474 uint32_t ofpacts_len; /* Size of 'ofpacts', in bytes. */
dc723c44 475 struct ofpact ofpacts[]; /* Sequence of "struct ofpacts". */
6f00e29b 476};
dc723c44 477BUILD_ASSERT_DECL(offsetof(struct rule_actions, ofpacts) % OFPACT_ALIGNTO == 0);
6f00e29b 478
4c7562c5 479const struct rule_actions *rule_actions_create(const struct ofpact *, size_t);
dc723c44 480void rule_actions_destroy(const struct rule_actions *);
cdbdeeda
SH
481bool ofproto_rule_has_out_port(const struct rule *, ofp_port_t port)
482 OVS_REQUIRES(ofproto_mutex);
6f00e29b 483
fe59694b
JR
484#define DECL_OFPROTO_COLLECTION(TYPE, NAME) \
485 DECL_OBJECT_COLLECTION(TYPE, NAME) \
486static inline void NAME##_collection_ref(struct NAME##_collection *coll) \
487{ \
488 for (size_t i = 0; i < coll->collection.n; i++) { \
489 ofproto_##NAME##_ref((TYPE)coll->collection.objs[i]); \
490 } \
491} \
492 \
493static inline void NAME##_collection_unref(struct NAME##_collection *coll) \
494{ \
495 for (size_t i = 0; i < coll->collection.n; i++) { \
496 ofproto_##NAME##_unref((TYPE)coll->collection.objs[i]); \
497 } \
498}
499
500DECL_OFPROTO_COLLECTION (struct rule *, rule)
501
502#define RULE_COLLECTION_FOR_EACH(RULE, RULES) \
503 for (size_t i__ = 0; \
504 i__ < rule_collection_n(RULES) \
505 ? (RULE = rule_collection_rules(RULES)[i__]) != NULL : false; \
506 i__++)
507
508/* Pairwise iteration through two rule collections that must be of the same
509 * size. */
510#define RULE_COLLECTIONS_FOR_EACH(RULE1, RULE2, RULES1, RULES2) \
511 for (size_t i__ = 0; \
512 i__ < rule_collection_n(RULES1) \
513 ? ((RULE1 = rule_collection_rules(RULES1)[i__]), \
514 (RULE2 = rule_collection_rules(RULES2)[i__]) != NULL) \
515 : false; \
516 i__++)
a8e547c1 517
e79a6c83
EJ
518/* Limits the number of flows allowed in the datapath. Only affects the
519 * ofproto-dpif implementation. */
520extern unsigned ofproto_flow_limit;
380f49c4 521
72310b04
JS
522/* Maximum idle time (in ms) for flows to be cached in the datapath.
523 * Revalidators may expire flows more quickly than the configured value based
524 * on system load and other factors. This variable is subject to change. */
525extern unsigned ofproto_max_idle;
526
e79a6c83
EJ
527/* Number of upcall handler and revalidator threads. Only affects the
528 * ofproto-dpif implementation. */
529extern size_t n_handlers, n_revalidators;
448a4b2f 530
003ce655 531static inline struct rule *rule_from_cls_rule(const struct cls_rule *);
abe529af 532
15aaf599
BP
533void ofproto_rule_expire(struct rule *rule, uint8_t reason)
534 OVS_REQUIRES(ofproto_mutex);
8b81d1ef 535void ofproto_rule_delete(struct ofproto *, struct rule *)
15aaf599 536 OVS_EXCLUDED(ofproto_mutex);
1f4a8933
JR
537void ofproto_rule_reduce_timeouts__(struct rule *rule, uint16_t idle_timeout,
538 uint16_t hard_timeout)
539 OVS_REQUIRES(ofproto_mutex) OVS_EXCLUDED(rule->mutex);
994c9973
BP
540void ofproto_rule_reduce_timeouts(struct rule *rule, uint16_t idle_timeout,
541 uint16_t hard_timeout)
15aaf599 542 OVS_EXCLUDED(ofproto_mutex);
abe529af 543
db88b35c 544/* A group within a "struct ofproto", RCU-protected.
7395c052
NZ
545 *
546 * With few exceptions, ofproto implementations may look at these fields but
547 * should not modify them. */
548struct ofgroup {
db88b35c 549 struct cmap_node cmap_node; /* In ofproto's "groups" cmap. */
809c7548 550
5d08a275
JR
551 /* Group versioning. */
552 struct versions versions;
553
809c7548
RW
554 /* Number of references.
555 *
556 * This is needed to keep track of references to the group in the xlate
557 * module.
558 *
559 * If the main thread removes the group from an ofproto, we need to
560 * guarantee that the group remains accessible to users of
561 * xlate_group_actions and the xlate_cache, as the xlate_cache will not be
562 * cleaned up until the corresponding datapath flows are revalidated. */
563 struct ovs_refcount ref_count;
564
565 /* No lock is needed to protect the fields below since they are not
566 * modified after construction. */
5d08a275 567 struct ofproto * const ofproto; /* The ofproto that contains this group. */
eaf004bd
AZ
568 const uint32_t group_id;
569 const enum ofp11_group_type type; /* One of OFPGT_*. */
cc099268 570 bool being_deleted; /* Group removal has begun. */
7395c052 571
eaf004bd
AZ
572 const long long int created; /* Creation time. */
573 const long long int modified; /* Time of last modification. */
7395c052 574
db88b35c 575 const struct ovs_list buckets; /* Contains "struct ofputil_bucket"s. */
eaf004bd 576 const uint32_t n_buckets;
bc65c25a 577
06db81cc 578 struct ofputil_group_props props;
cc099268
JR
579
580 struct rule_collection rules OVS_GUARDED; /* Referring rules. */
7395c052
NZ
581};
582
db88b35c 583struct ofgroup *ofproto_group_lookup(const struct ofproto *ofproto,
5d08a275
JR
584 uint32_t group_id, ovs_version_t version,
585 bool take_ref);
7395c052 586
809c7548 587void ofproto_group_ref(struct ofgroup *);
db88b35c 588bool ofproto_group_try_ref(struct ofgroup *);
809c7548 589void ofproto_group_unref(struct ofgroup *);
7395c052 590
cc099268
JR
591void ofproto_group_delete_all(struct ofproto *)
592 OVS_EXCLUDED(ofproto_mutex);
daab0ae6 593
2b0b0b80
JR
594DECL_OFPROTO_COLLECTION (struct ofgroup *, group)
595
596#define GROUP_COLLECTION_FOR_EACH(GROUP, GROUPS) \
597 for (size_t i__ = 0; \
598 i__ < group_collection_n(GROUPS) \
599 ? (GROUP = group_collection_groups(GROUPS)[i__]) != NULL: false; \
600 i__++)
601
602/* Pairwise iteration through two group collections that must be of the same
603 * size. */
604#define GROUP_COLLECTIONS_FOR_EACH(GROUP1, GROUP2, GROUPS1, GROUPS2) \
605 for (size_t i__ = 0; \
606 i__ < group_collection_n(GROUPS1) \
607 ? ((GROUP1 = group_collection_groups(GROUPS1)[i__]), \
608 (GROUP2 = group_collection_groups(GROUPS2)[i__]) != NULL) \
609 : false; \
610 i__++)
611
abe529af
BP
612/* ofproto class structure, to be defined by each ofproto implementation.
613 *
614 *
615 * Data Structures
616 * ===============
617 *
7395c052 618 * These functions work primarily with four different kinds of data
abe529af
BP
619 * structures:
620 *
621 * - "struct ofproto", which represents an OpenFlow switch.
622 *
623 * - "struct ofport", which represents a port within an ofproto.
624 *
625 * - "struct rule", which represents an OpenFlow flow within an ofproto.
626 *
7395c052
NZ
627 * - "struct ofgroup", which represents an OpenFlow 1.1+ group within an
628 * ofproto.
629 *
abe529af
BP
630 * Each of these data structures contains all of the implementation-independent
631 * generic state for the respective concept, called the "base" state. None of
632 * them contains any extra space for ofproto implementations to use. Instead,
633 * each implementation is expected to declare its own data structure that
634 * contains an instance of the generic data structure plus additional
635 * implementation-specific members, called the "derived" state. The
636 * implementation can use casts or (preferably) the CONTAINER_OF macro to
637 * obtain access to derived state given only a pointer to the embedded generic
638 * data structure.
639 *
640 *
641 * Life Cycle
642 * ==========
643 *
644 * Four stylized functions accompany each of these data structures:
645 *
646 * "alloc" "construct" "destruct" "dealloc"
647 * ------------ ---------------- --------------- --------------
648 * ofproto ->alloc ->construct ->destruct ->dealloc
649 * ofport ->port_alloc ->port_construct ->port_destruct ->port_dealloc
650 * rule ->rule_alloc ->rule_construct ->rule_destruct ->rule_dealloc
7395c052 651 * group ->group_alloc ->group_construct ->group_destruct ->group_dealloc
abe529af 652 *
7395c052
NZ
653 * "ofproto", "ofport", and "group" have this exact life cycle. The "rule"
654 * data structure also follow this life cycle with some additional elaborations
8037acb4
BP
655 * described under "Rule Life Cycle" below.
656 *
abe529af
BP
657 * Any instance of a given data structure goes through the following life
658 * cycle:
659 *
660 * 1. The client calls the "alloc" function to obtain raw memory. If "alloc"
661 * fails, skip all the other steps.
662 *
663 * 2. The client initializes all of the data structure's base state. If this
664 * fails, skip to step 7.
665 *
666 * 3. The client calls the "construct" function. The implementation
667 * initializes derived state. It may refer to the already-initialized
668 * base state. If "construct" fails, skip to step 6.
669 *
670 * 4. The data structure is now initialized and in use.
671 *
672 * 5. When the data structure is no longer needed, the client calls the
673 * "destruct" function. The implementation uninitializes derived state.
674 * The base state has not been uninitialized yet, so the implementation
675 * may still refer to it.
676 *
677 * 6. The client uninitializes all of the data structure's base state.
678 *
679 * 7. The client calls the "dealloc" to free the raw memory. The
680 * implementation must not refer to base or derived state in the data
681 * structure, because it has already been uninitialized.
682 *
683 * Each "alloc" function allocates and returns a new instance of the respective
684 * data structure. The "alloc" function is not given any information about the
685 * use of the new data structure, so it cannot perform much initialization.
686 * Its purpose is just to ensure that the new data structure has enough room
687 * for base and derived state. It may return a null pointer if memory is not
688 * available, in which case none of the other functions is called.
689 *
690 * Each "construct" function initializes derived state in its respective data
691 * structure. When "construct" is called, all of the base state has already
692 * been initialized, so the "construct" function may refer to it. The
693 * "construct" function is allowed to fail, in which case the client calls the
694 * "dealloc" function (but not the "destruct" function).
695 *
696 * Each "destruct" function uninitializes and frees derived state in its
697 * respective data structure. When "destruct" is called, the base state has
698 * not yet been uninitialized, so the "destruct" function may refer to it. The
699 * "destruct" function is not allowed to fail.
700 *
898dcef1 701 * Each "dealloc" function frees raw memory that was allocated by the
abe529af
BP
702 * "alloc" function. The memory's base and derived members might not have ever
703 * been initialized (but if "construct" returned successfully, then it has been
704 * "destruct"ed already). The "dealloc" function is not allowed to fail.
705 *
706 *
707 * Conventions
708 * ===========
709 *
710 * Most of these functions return 0 if they are successful or a positive error
711 * code on failure. Depending on the function, valid error codes are either
90bf1e07 712 * errno values or OFPERR_* OpenFlow error codes.
abe529af
BP
713 *
714 * Most of these functions are expected to execute synchronously, that is, to
715 * block as necessary to obtain a result. Thus, these functions may return
716 * EAGAIN (or EWOULDBLOCK or EINPROGRESS) only where the function descriptions
717 * explicitly say those errors are a possibility. We may relax this
718 * requirement in the future if and when we encounter performance problems. */
719struct ofproto_class {
720/* ## ----------------- ## */
721/* ## Factory Functions ## */
722/* ## ----------------- ## */
723
b0408fca
JP
724 /* Initializes provider. The caller may pass in 'iface_hints',
725 * which contains an shash of "struct iface_hint" elements indexed
726 * by the interface's name. The provider may use these hints to
727 * describe the startup configuration in order to reinitialize its
728 * state. The caller owns the provided data, so a provider must
729 * make copies of anything required. An ofproto provider must
730 * remove any existing state that is not described by the hint, and
731 * may choose to remove it all. */
732 void (*init)(const struct shash *iface_hints);
733
5b5b11ea
BP
734 /* Enumerates the types of all supported ofproto types into 'types'. The
735 * caller has already initialized 'types'. The implementation should add
736 * its own types to 'types' but not remove any existing ones, because other
737 * ofproto classes might already have added names to it. */
abe529af 738 void (*enumerate_types)(struct sset *types);
5bf0e941
BP
739
740 /* Enumerates the names of all existing datapath of the specified 'type'
741 * into 'names' 'all_dps'. The caller has already initialized 'names' as
742 * an empty sset.
743 *
744 * 'type' is one of the types enumerated by ->enumerate_types().
745 *
746 * Returns 0 if successful, otherwise a positive errno value.
747 */
abe529af 748 int (*enumerate_names)(const char *type, struct sset *names);
5bf0e941
BP
749
750 /* Deletes the datapath with the specified 'type' and 'name'. The caller
751 * should have closed any open ofproto with this 'type' and 'name'; this
752 * function is allowed to fail if that is not the case.
753 *
754 * 'type' is one of the types enumerated by ->enumerate_types().
755 * 'name' is one of the names enumerated by ->enumerate_names() for 'type'.
756 *
757 * Returns 0 if successful, otherwise a positive errno value.
758 */
abe529af
BP
759 int (*del)(const char *type, const char *name);
760
0aeaabc8
JP
761 /* Returns the type to pass to netdev_open() when a datapath of type
762 * 'datapath_type' has a port of type 'port_type', for a few special
763 * cases when a netdev type differs from a port type. For example,
764 * when using the userspace datapath, a port of type "internal"
765 * needs to be opened as "tap".
766 *
767 * Returns either 'type' itself or a string literal, which must not
768 * be freed. */
769 const char *(*port_open_type)(const char *datapath_type,
770 const char *port_type);
771
11a574a7
JP
772/* ## ------------------------ ## */
773/* ## Top-Level type Functions ## */
774/* ## ------------------------ ## */
775
776 /* Performs any periodic activity required on ofprotos of type
777 * 'type'.
778 *
779 * An ofproto provider may implement it or not, depending on whether
780 * it needs type-level maintenance.
781 *
782 * Returns 0 if successful, otherwise a positive errno value. */
783 int (*type_run)(const char *type);
784
11a574a7
JP
785 /* Causes the poll loop to wake up when a type 'type''s 'run'
786 * function needs to be called, e.g. by calling the timer or fd
787 * waiting functions in poll-loop.h.
788 *
789 * An ofproto provider may implement it or not, depending on whether
790 * it needs type-level maintenance. */
791 void (*type_wait)(const char *type);
792
abe529af
BP
793/* ## --------------------------- ## */
794/* ## Top-Level ofproto Functions ## */
795/* ## --------------------------- ## */
796
797 /* Life-cycle functions for an "ofproto" (see "Life Cycle" above).
7ee20df1
BP
798 *
799 *
800 * Construction
801 * ============
abe529af 802 *
073e2a6f
BP
803 * ->construct() should not modify any base members of the ofproto. The
804 * client will initialize the ofproto's 'ports' and 'tables' members after
805 * construction is complete.
6c1491fb 806 *
073e2a6f
BP
807 * When ->construct() is called, the client does not yet know how many flow
808 * tables the datapath supports, so ofproto->n_tables will be 0 and
0f5f95a9
BP
809 * ofproto->tables will be NULL. ->construct() should call
810 * ofproto_init_tables() to allocate and initialize ofproto->n_tables and
811 * ofproto->tables. Each flow table will be initially empty, so
812 * ->construct() should delete flows from the underlying datapath, if
813 * necessary, rather than populating the tables.
abe529af 814 *
91858960
BP
815 * If the ofproto knows the maximum port number that the datapath can have,
816 * then it can call ofproto_init_max_ports(). If it does so, then the
817 * client will ensure that the actions it allows to be used through
818 * OpenFlow do not refer to ports above that maximum number.
819 *
abe529af
BP
820 * Only one ofproto instance needs to be supported for any given datapath.
821 * If a datapath is already open as part of one "ofproto", then another
822 * attempt to "construct" the same datapath as part of another ofproto is
5bf0e941
BP
823 * allowed to fail with an error.
824 *
825 * ->construct() returns 0 if successful, otherwise a positive errno
7ee20df1
BP
826 * value.
827 *
828 *
829 * Destruction
830 * ===========
831 *
073e2a6f 832 * ->destruct() must also destroy all remaining rules in the ofproto's
daab0ae6
BP
833 * tables, by passing each remaining rule to ofproto_rule_delete(), then
834 * destroy all remaining groups by calling ofproto_group_delete_all().
8037acb4
BP
835 *
836 * The client will destroy the flow tables themselves after ->destruct()
073e2a6f 837 * returns.
7ee20df1 838 */
abe529af 839 struct ofproto *(*alloc)(void);
0f5f95a9 840 int (*construct)(struct ofproto *ofproto);
fe13ccdc 841 void (*destruct)(struct ofproto *ofproto, bool del);
abe529af
BP
842 void (*dealloc)(struct ofproto *ofproto);
843
844 /* Performs any periodic activity required by 'ofproto'. It should:
845 *
846 * - Call connmgr_send_packet_in() for each received packet that missed
847 * in the OpenFlow flow table or that had a OFPP_CONTROLLER output
848 * action.
849 *
850 * - Call ofproto_rule_expire() for each OpenFlow flow that has reached
851 * its hard_timeout or idle_timeout, to expire the flow.
5bf0e941 852 *
5fcc0d00 853 * Returns 0 if successful, otherwise a positive errno value. */
abe529af
BP
854 int (*run)(struct ofproto *ofproto);
855
856 /* Causes the poll loop to wake up when 'ofproto''s 'run' function needs to
857 * be called, e.g. by calling the timer or fd waiting functions in
858 * poll-loop.h. */
859 void (*wait)(struct ofproto *ofproto);
860
0d085684
BP
861 /* Adds some memory usage statistics for the implementation of 'ofproto'
862 * into 'usage', for use with memory_report().
863 *
864 * This function is optional. */
865 void (*get_memory_usage)(const struct ofproto *ofproto,
866 struct simap *usage);
867
1c030aa5
EJ
868 /* Adds some memory usage statistics for the implementation of 'type'
869 * into 'usage', for use with memory_report().
870 *
871 * This function is optional. */
872 void (*type_get_memory_usage)(const char *type, struct simap *usage);
873
abe529af
BP
874 /* Every "struct rule" in 'ofproto' is about to be deleted, one by one.
875 * This function may prepare for that, for example by clearing state in
876 * advance. It should *not* actually delete any "struct rule"s from
877 * 'ofproto', only prepare for it.
878 *
879 * This function is optional; it's really just for optimization in case
880 * it's cheaper to delete all the flows from your hardware in a single pass
881 * than to do it one by one. */
882 void (*flush)(struct ofproto *ofproto);
883
3c1bb396 884 /* Helper for the OpenFlow OFPT_TABLE_FEATURES request.
6c1491fb 885 *
3c1bb396
BP
886 * The 'features' array contains 'ofproto->n_tables' elements. Each
887 * element is initialized as:
6c1491fb
BP
888 *
889 * - 'table_id' to the array index.
890 *
891 * - 'name' to "table#" where # is the table ID.
892 *
2ee9b978 893 * - 'metadata_match' and 'metadata_write' to OVS_BE64_MAX.
307975da 894 *
b187a283 895 * - 'config' to the table miss configuration.
6c1491fb
BP
896 *
897 * - 'max_entries' to 1,000,000.
898 *
3c1bb396 899 * - Both 'nonmiss' and 'miss' to:
6c1491fb 900 *
3c1bb396 901 * * 'next' to all 1-bits for all later tables.
6c1491fb 902 *
3c1bb396 903 * * 'instructions' to all instructions.
6c1491fb 904 *
3c1bb396 905 * * 'write' and 'apply' both to:
6c1491fb 906 *
3c1bb396 907 * - 'ofpacts': All actions.
6c1491fb 908 *
3c1bb396 909 * - 'set_fields': All fields.
307975da 910 *
3c1bb396 911 * - 'match', 'mask', and 'wildcard' to all fields.
307975da 912 *
3c1bb396
BP
913 * If 'stats' is nonnull, it also contains 'ofproto->n_tables' elements.
914 * Each element is initialized as:
307975da 915 *
3c1bb396
BP
916 * - 'table_id' to the array index.
917 *
d79e3d70 918 * - 'active_count' to the 'n_flows' of struct ofproto for the table.
307975da 919 *
3c1bb396
BP
920 * - 'lookup_count' and 'matched_count' to 0.
921 *
922 * The implementation should update any members in each element for which
923 * it has better values:
307975da 924 *
3c1bb396
BP
925 * - Any member of 'features' to better describe the implementation's
926 * capabilities.
6c1491fb
BP
927 *
928 * - 'lookup_count' to the number of packets looked up in this flow table
929 * so far.
930 *
931 * - 'matched_count' to the number of packets looked up in this flow
932 * table so far that matched one of the flow entries.
6c1491fb 933 */
3c1bb396
BP
934 void (*query_tables)(struct ofproto *ofproto,
935 struct ofputil_table_features *features,
936 struct ofputil_table_stats *stats);
6c1491fb 937
4e413ac8
BP
938 /* Helper for the OFPT_TABLE_FEATURES request.
939 *
940 * A controller is requesting that the table features be updated from 'old'
941 * to 'new', where 'old' is the features currently in use as previously
942 * initialized by 'query_tables'.
943 *
944 * If this function is nonnull, then it should either update the table
945 * features or return an OpenFlow error. The update should be
946 * all-or-nothing.
947 *
948 * If this function is null, then only updates that eliminate table
949 * features will be allowed. Such updates have no actual effect. This
950 * implementation is acceptable because OpenFlow says that a table's
951 * features may be a superset of those requested. */
952 enum ofperr (*modify_tables)(struct ofproto *ofproto,
953 const struct ofputil_table_features *old,
954 const struct ofputil_table_features *new);
955
621b8064 956 /* Sets the current tables version the provider should use for classifier
1fc71871
JR
957 * lookups. This must be called with a new version number after each set
958 * of flow table changes has been completed, so that datapath revalidation
959 * can be triggered. */
44e0c35d 960 void (*set_tables_version)(struct ofproto *ofproto, ovs_version_t version);
1fc71871 961
abe529af
BP
962/* ## ---------------- ## */
963/* ## ofport Functions ## */
964/* ## ---------------- ## */
965
966 /* Life-cycle functions for a "struct ofport" (see "Life Cycle" above).
967 *
968 * ->port_construct() should not modify any base members of the ofport.
e1b1d06a
JP
969 * An ofproto implementation should use the 'ofp_port' member of
970 * "struct ofport" as the OpenFlow port number.
abe529af
BP
971 *
972 * ofports are managed by the base ofproto code. The ofproto
973 * implementation should only create and destroy them in response to calls
974 * to these functions. The base ofproto code will create and destroy
975 * ofports in the following situations:
976 *
977 * - Just after the ->construct() function is called, the base ofproto
978 * iterates over all of the implementation's ports, using
979 * ->port_dump_start() and related functions, and constructs an ofport
980 * for each dumped port.
981 *
982 * - If ->port_poll() reports that a specific port has changed, then the
983 * base ofproto will query that port with ->port_query_by_name() and
984 * construct or destruct ofports as necessary to reflect the updated
985 * set of ports.
986 *
987 * - If ->port_poll() returns ENOBUFS to report an unspecified port set
988 * change, then the base ofproto will iterate over all of the
989 * implementation's ports, in the same way as at ofproto
990 * initialization, and construct and destruct ofports to reflect all of
991 * the changes.
5bf0e941 992 *
9aad5a5a
BP
993 * - On graceful shutdown, the base ofproto code will destruct all
994 * the ports.
995 *
5bf0e941
BP
996 * ->port_construct() returns 0 if successful, otherwise a positive errno
997 * value.
9aad5a5a
BP
998 *
999 *
1000 * ->port_destruct()
1001 * =================
1002 *
1003 * ->port_destruct() takes a 'del' parameter. If the provider implements
1004 * the datapath itself (e.g. dpif-netdev, it can ignore 'del'. On the
1005 * other hand, if the provider is an interface to an external datapath
1006 * (e.g. to a kernel module that implement the datapath) then 'del' should
1007 * influence destruction behavior in the following way:
1008 *
1009 * - If 'del' is true, it should remove the port from the underlying
1010 * implementation. This is the common case.
1011 *
1012 * - If 'del' is false, it should leave the port in the underlying
1013 * implementation. This is used when Open vSwitch is performing a
1014 * graceful shutdown and ensures that, across Open vSwitch restarts,
1015 * the underlying ports are not removed and recreated. That makes an
1016 * important difference for, e.g., "internal" ports that have
1017 * configured IP addresses; without this distinction, the IP address
1018 * and other configured state for the port is lost.
abe529af
BP
1019 */
1020 struct ofport *(*port_alloc)(void);
1021 int (*port_construct)(struct ofport *ofport);
9aad5a5a 1022 void (*port_destruct)(struct ofport *ofport, bool del);
abe529af
BP
1023 void (*port_dealloc)(struct ofport *ofport);
1024
1025 /* Called after 'ofport->netdev' is replaced by a new netdev object. If
1026 * the ofproto implementation uses the ofport's netdev internally, then it
1027 * should switch to using the new one. The old one has been closed.
1028 *
1029 * An ofproto implementation that doesn't need to do anything in this
1030 * function may use a null pointer. */
1031 void (*port_modified)(struct ofport *ofport);
1032
9e1fd49b
BP
1033 /* Called after an OpenFlow request changes a port's configuration.
1034 * 'ofport->pp.config' contains the new configuration. 'old_config'
1035 * contains the previous configuration.
abe529af 1036 *
9e1fd49b
BP
1037 * The caller implements OFPUTIL_PC_PORT_DOWN using netdev functions to
1038 * turn NETDEV_UP on and off, so this function doesn't have to do anything
1039 * for that bit (and it won't be called if that is the only bit that
abe529af 1040 * changes). */
9e1fd49b
BP
1041 void (*port_reconfigured)(struct ofport *ofport,
1042 enum ofputil_port_config old_config);
abe529af 1043
090fd77e
JS
1044 /* Looks up a port named 'devname' in 'ofproto'. On success, returns 0 and
1045 * initializes '*port' appropriately. Otherwise, returns a positive errno
1046 * value.
abe529af
BP
1047 *
1048 * The caller owns the data in 'port' and must free it with
1049 * ofproto_port_destroy() when it is no longer needed. */
1050 int (*port_query_by_name)(const struct ofproto *ofproto,
1051 const char *devname, struct ofproto_port *port);
1052
e1b1d06a
JP
1053 /* Attempts to add 'netdev' as a port on 'ofproto'. Returns 0 if
1054 * successful, otherwise a positive errno value. The caller should
1055 * inform the implementation of the OpenFlow port through the
1056 * ->port_construct() method.
5bf0e941
BP
1057 *
1058 * It doesn't matter whether the new port will be returned by a later call
1059 * to ->port_poll(); the implementation may do whatever is more
1060 * convenient. */
e1b1d06a 1061 int (*port_add)(struct ofproto *ofproto, struct netdev *netdev);
abe529af 1062
5bf0e941
BP
1063 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'. Returns
1064 * 0 if successful, otherwise a positive errno value.
1065 *
1066 * It doesn't matter whether the new port will be returned by a later call
1067 * to ->port_poll(); the implementation may do whatever is more
1068 * convenient. */
4e022ec0 1069 int (*port_del)(struct ofproto *ofproto, ofp_port_t ofp_port);
abe529af 1070
91364d18
IM
1071 /* Refreshes datapath configuration of 'port'.
1072 * Returns 0 if successful, otherwise a positive errno value. */
1073 int (*port_set_config)(const struct ofport *port, const struct smap *cfg);
1074
6527c598
PS
1075 /* Get port stats */
1076 int (*port_get_stats)(const struct ofport *port,
1077 struct netdev_stats *stats);
1078
723b6ab2
IM
1079 /* Get status of the virtual port (ex. tunnel, patch).
1080 *
1081 * Returns '0' if 'port' is not a virtual port or has no errors.
1082 * Otherwise, stores the error string in '*errp' and returns positive errno
1083 * value. The caller is responsible for freeing '*errp' (with free()).
1084 *
1085 * This function may be a null pointer if the ofproto implementation does
1086 * not support any virtual ports or their states.
1087 */
1088 int (*vport_get_status)(const struct ofport *port, char **errp);
1089
d39258c8
BP
1090 /* Port iteration functions.
1091 *
1092 * The client might not be entirely in control of the ports within an
1093 * ofproto. Some hardware implementations, for example, might have a fixed
acf60855
JP
1094 * set of ports in a datapath. For this reason, the client needs a way to
1095 * iterate through all the ports that are actually in a datapath. These
1096 * functions provide that functionality.
d39258c8
BP
1097 *
1098 * The 'state' pointer provides the implementation a place to
1099 * keep track of its position. Its format is opaque to the caller.
1100 *
1101 * The ofproto provider retains ownership of the data that it stores into
1102 * ->port_dump_next()'s 'port' argument. The data must remain valid until
1103 * at least the next call to ->port_dump_next() or ->port_dump_done() for
1104 * 'state'. The caller will not modify or free it.
1105 *
1106 * Details
1107 * =======
1108 *
1109 * ->port_dump_start() attempts to begin dumping the ports in 'ofproto'.
1110 * On success, it should return 0 and initialize '*statep' with any data
1111 * needed for iteration. On failure, returns a positive errno value, and
1112 * the client will not call ->port_dump_next() or ->port_dump_done().
1113 *
1114 * ->port_dump_next() attempts to retrieve another port from 'ofproto' for
1115 * 'state'. If there is another port, it should store the port's
1116 * information into 'port' and return 0. It should return EOF if all ports
1117 * have already been iterated. Otherwise, on error, it should return a
1118 * positive errno value. This function will not be called again once it
1119 * returns nonzero once for a given iteration (but the 'port_dump_done'
1120 * function will be called afterward).
1121 *
1122 * ->port_dump_done() allows the implementation to release resources used
1123 * for iteration. The caller might decide to stop iteration in the middle
1124 * by calling this function before ->port_dump_next() returns nonzero.
1125 *
1126 * Usage Example
1127 * =============
1128 *
1129 * int error;
1130 * void *state;
1131 *
1132 * error = ofproto->ofproto_class->port_dump_start(ofproto, &state);
1133 * if (!error) {
1134 * for (;;) {
1135 * struct ofproto_port port;
1136 *
1137 * error = ofproto->ofproto_class->port_dump_next(
1138 * ofproto, state, &port);
1139 * if (error) {
1140 * break;
1141 * }
b5343307
BP
1142 * ...Do something with 'port' here (without modifying or freeing
1143 * any of its data)...
d39258c8
BP
1144 * }
1145 * ofproto->ofproto_class->port_dump_done(ofproto, state);
1146 * }
b5343307 1147 * ...'error' is now EOF (success) or a positive errno value (failure)...
d39258c8 1148 */
abe529af 1149 int (*port_dump_start)(const struct ofproto *ofproto, void **statep);
abe529af
BP
1150 int (*port_dump_next)(const struct ofproto *ofproto, void *state,
1151 struct ofproto_port *port);
abe529af
BP
1152 int (*port_dump_done)(const struct ofproto *ofproto, void *state);
1153
1154 /* Polls for changes in the set of ports in 'ofproto'. If the set of ports
1155 * in 'ofproto' has changed, then this function should do one of the
1156 * following:
1157 *
1158 * - Preferably: store the name of the device that was added to or deleted
1159 * from 'ofproto' in '*devnamep' and return 0. The caller is responsible
1160 * for freeing '*devnamep' (with free()) when it no longer needs it.
1161 *
1162 * - Alternatively: return ENOBUFS, without indicating the device that was
1163 * added or deleted.
1164 *
1165 * Occasional 'false positives', in which the function returns 0 while
1166 * indicating a device that was not actually added or deleted or returns
1167 * ENOBUFS without any change, are acceptable.
1168 *
1169 * The purpose of 'port_poll' is to let 'ofproto' know about changes made
1170 * externally to the 'ofproto' object, e.g. by a system administrator via
1171 * ovs-dpctl. Therefore, it's OK, and even preferable, for port_poll() to
1172 * not report changes made through calls to 'port_add' or 'port_del' on the
1173 * same 'ofproto' object. (But it's OK for it to report them too, just
1174 * slightly less efficient.)
1175 *
1176 * If the set of ports in 'ofproto' has not changed, returns EAGAIN. May
1177 * also return other positive errno values to indicate that something has
5bf0e941
BP
1178 * gone wrong.
1179 *
1180 * If the set of ports in a datapath is fixed, or if the only way that the
1181 * set of ports in a datapath can change is through ->port_add() and
1182 * ->port_del(), then this function may be a null pointer.
1183 */
abe529af
BP
1184 int (*port_poll)(const struct ofproto *ofproto, char **devnamep);
1185
5bf0e941
BP
1186 /* Arranges for the poll loop to wake up when ->port_poll() will return a
1187 * value other than EAGAIN.
1188 *
1189 * If the set of ports in a datapath is fixed, or if the only way that the
1190 * set of ports in a datapath can change is through ->port_add() and
1191 * ->port_del(), or if the poll loop will always wake up anyway when
1192 * ->port_poll() will return a value other than EAGAIN, then this function
1193 * may be a null pointer.
1194 */
abe529af
BP
1195 void (*port_poll_wait)(const struct ofproto *ofproto);
1196
5bf0e941
BP
1197 /* Checks the status of LACP negotiation for 'port'. Returns 1 if LACP
1198 * partner information for 'port' is up-to-date, 0 if LACP partner
1199 * information is not current (generally indicating a connectivity
1200 * problem), or -1 if LACP is not enabled on 'port'.
1201 *
1202 * This function may be a null pointer if the ofproto implementation does
0477baa9
DF
1203 * not support LACP.
1204 */
abe529af
BP
1205 int (*port_is_lacp_current)(const struct ofport *port);
1206
50b9699f
NM
1207 /* Get LACP port stats. Returns -1 if LACP is not enabled on 'port'.
1208 *
1209 * This function may be a null pointer if the ofproto implementation does
0477baa9
DF
1210 * not support LACP.
1211 */
50b9699f 1212 int (*port_get_lacp_stats)(const struct ofport *port,
0477baa9 1213 struct lacp_slave_stats *stats);
50b9699f 1214
5bf0e941
BP
1215/* ## ----------------------- ## */
1216/* ## OpenFlow Rule Functions ## */
1217/* ## ----------------------- ## */
1218
81a76618 1219 /* Chooses an appropriate table for 'match' within 'ofproto'. On
0ab6decf 1220 * success, stores the table ID into '*table_idp' and returns 0. On
90bf1e07 1221 * failure, returns an OpenFlow error code.
0ab6decf 1222 *
81a76618 1223 * The choice of table should be a function of 'match' and 'ofproto''s
0ab6decf
BP
1224 * datapath capabilities. It should not depend on the flows already in
1225 * 'ofproto''s flow tables. Failure implies that an OpenFlow rule with
81a76618
BP
1226 * 'match' as its matching condition can never be inserted into 'ofproto',
1227 * even starting from an empty flow table.
0ab6decf
BP
1228 *
1229 * If multiple tables are candidates for inserting the flow, the function
1230 * should choose one arbitrarily (but deterministically).
1231 *
13521ff5 1232 * If this function is NULL then table 0 is always chosen. */
90bf1e07 1233 enum ofperr (*rule_choose_table)(const struct ofproto *ofproto,
6a6b7060 1234 const struct minimatch *match,
90bf1e07 1235 uint8_t *table_idp);
0ab6decf 1236
8037acb4
BP
1237 /* Life-cycle functions for a "struct rule".
1238 *
1239 *
1240 * Rule Life Cycle
1241 * ===============
1242 *
1243 * The life cycle of a struct rule is an elaboration of the basic life
1244 * cycle described above under "Life Cycle".
1245 *
1246 * After a rule is successfully constructed, it is then inserted. If
834fe5cb
BP
1247 * insertion is successful, then before it is later destructed, it is
1248 * deleted.
8037acb4
BP
1249 *
1250 * You can think of a rule as having the following extra steps inserted
1251 * between "Life Cycle" steps 4 and 5:
1252 *
1253 * 4.1. The client inserts the rule into the flow table, making it
1254 * visible in flow table lookups.
1255 *
834fe5cb
BP
1256 * 4.2. The client calls "rule_insert" to insert the flow. The
1257 * implementation attempts to install the flow in the underlying
1258 * hardware and returns an error code indicate success or failure.
1259 * On failure, go to step 5.
8037acb4
BP
1260 *
1261 * 4.3. The rule is now installed in the flow table. Eventually it will
1262 * be deleted.
1263 *
1264 * 4.4. The client removes the rule from the flow table. It is no longer
1265 * visible in flow table lookups.
1266 *
834fe5cb
BP
1267 * 4.5. The client calls "rule_delete". The implementation uninstalls
1268 * the flow from the underlying hardware. Deletion is not allowed
1269 * to fail.
7ee20df1
BP
1270 *
1271 *
1272 * Construction
1273 * ============
1274 *
8037acb4
BP
1275 * When ->rule_construct() is called, 'rule' is a new rule that is not yet
1276 * inserted into a flow table. ->rule_construct() should initialize enough
1277 * of the rule's derived state for 'rule' to be suitable for inserting into
1278 * a flow table. ->rule_construct() should not modify any base members of
1279 * struct rule.
7ee20df1 1280 *
8037acb4
BP
1281 * If ->rule_construct() fails (as indicated by returning a nonzero
1282 * OpenFlow error code), the ofproto base code will uninitialize and
1283 * deallocate 'rule'. See "Rule Life Cycle" above for more details.
7ee20df1 1284 *
39c94593 1285 * ->rule_construct() must also:
8037acb4
BP
1286 *
1287 * - Validate that the datapath supports the matching rule in 'rule->cr'
7ee20df1
BP
1288 * datapath. For example, if the rule's table does not support
1289 * registers, then it is an error if 'rule->cr' does not wildcard all
5bf0e941
BP
1290 * registers.
1291 *
548de4dd 1292 * - Validate that the datapath can correctly implement 'rule->ofpacts'.
5bf0e941 1293 *
39c94593
JR
1294 * After a successful construction the rest of the rule life cycle calls
1295 * may not fail, so ->rule_construct() must also make sure that the rule
1296 * can be inserted in to the datapath.
8037acb4
BP
1297 *
1298 *
1299 * Insertion
1300 * =========
1301 *
1302 * Following successful construction, the ofproto base case inserts 'rule'
1303 * into its flow table, then it calls ->rule_insert(). ->rule_insert()
834fe5cb 1304 * must add the new rule to the datapath flow table and return only after
39c94593
JR
1305 * this is complete. The 'new_rule' may be a duplicate of an 'old_rule'.
1306 * In this case the 'old_rule' is non-null, and the implementation should
748eb2f5
JR
1307 * forward rule statistics counts from the 'old_rule' to the 'new_rule' if
1308 * 'forward_counts' is 'true', 'used' timestamp is always forwarded. This
1309 * may not fail.
5bf0e941 1310 *
5bf0e941 1311 *
8037acb4
BP
1312 * Deletion
1313 * ========
5bf0e941 1314 *
8037acb4 1315 * The ofproto base code removes 'rule' from its flow table before it calls
1fc71871
JR
1316 * ->rule_delete() (if non-null). ->rule_delete() must remove 'rule' from
1317 * the datapath flow table and return only after this has completed
1318 * successfully.
7ee20df1 1319 *
8037acb4 1320 * Rule deletion must not fail.
7ee20df1
BP
1321 *
1322 *
1323 * Destruction
1324 * ===========
1325 *
8037acb4 1326 * ->rule_destruct() must uninitialize derived state.
7ee20df1
BP
1327 *
1328 * Rule destruction must not fail. */
abe529af 1329 struct rule *(*rule_alloc)(void);
15aaf599
BP
1330 enum ofperr (*rule_construct)(struct rule *rule)
1331 /* OVS_REQUIRES(ofproto_mutex) */;
146ee626
AP
1332 enum ofperr (*rule_insert)(struct rule *rule, struct rule *old_rule,
1333 bool forward_counts)
b20f4073 1334 /* OVS_REQUIRES(ofproto_mutex) */;
15aaf599 1335 void (*rule_delete)(struct rule *rule) /* OVS_REQUIRES(ofproto_mutex) */;
abe529af
BP
1336 void (*rule_destruct)(struct rule *rule);
1337 void (*rule_dealloc)(struct rule *rule);
1338
5bf0e941
BP
1339 /* Obtains statistics for 'rule', storing the number of packets that have
1340 * matched it in '*packet_count' and the number of bytes in those packets
5e9d0469
BP
1341 * in '*byte_count'. UINT64_MAX indicates that the packet count or byte
1342 * count is unknown. */
abe529af 1343 void (*rule_get_stats)(struct rule *rule, uint64_t *packet_count,
dc437090 1344 uint64_t *byte_count, long long int *used)
15aaf599 1345 /* OVS_EXCLUDED(ofproto_mutex) */;
abe529af 1346
1f4a8933
JR
1347 /* Translates actions in 'opo->ofpacts', for 'opo->packet' in flow tables
1348 * in version 'opo->version'. This is useful for OpenFlow OFPT_PACKET_OUT.
1349 *
1350 * This function must validate that it can correctly translate
1351 * 'opo->ofpacts'. If not, then it should return an OpenFlow error code.
1352 *
1353 * 'opo->flow' reflects the flow information for 'opo->packet'. All of the
1354 * information in 'opo->flow' is extracted from 'opo->packet', except for
1355 * 'in_port', which is assigned to the correct value for the incoming
1356 * packet. 'tunnel' and register values should be zeroed. 'packet''s
1357 * header pointers and offsets (e.g. packet->l3) are appropriately
1358 * initialized. packet->l3 is aligned on a 32-bit boundary.
1359 *
1360 * Returns 0 if successful, otherwise an OpenFlow error code.
1361 *
1362 * This function may be called with 'ofproto_mutex' held. */
1363 enum ofperr (*packet_xlate)(struct ofproto *,
1364 struct ofproto_packet_out *opo);
1365
6dd3c787
JR
1366 /* Free resources taken by a successful packet_xlate(). If multiple
1367 * packet_xlate() calls have been made in sequence, the corresponding
1368 * packet_xlate_revert() calls have to be made in reverse order. */
1369 void (*packet_xlate_revert)(struct ofproto *, struct ofproto_packet_out *);
1370
1f4a8933
JR
1371 /* Executes the datapath actions, translation side-effects, and stats as
1372 * produced by ->packet_xlate(). The caller retains ownership of 'opo'.
1373 */
1374 void (*packet_execute)(struct ofproto *, struct ofproto_packet_out *opo);
1375
7257b535
BP
1376 /* Changes the OpenFlow IP fragment handling policy to 'frag_handling',
1377 * which takes one of the following values, with the corresponding
1378 * meanings:
1379 *
ad99e2ed
BP
1380 * - OFPUTIL_FRAG_NORMAL: The switch should treat IP fragments the same
1381 * way as other packets, omitting TCP and UDP port numbers (always
1382 * setting them to 0).
7257b535 1383 *
ad99e2ed 1384 * - OFPUTIL_FRAG_DROP: The switch should drop all IP fragments without
7257b535
BP
1385 * passing them through the flow table.
1386 *
ad99e2ed 1387 * - OFPUTIL_FRAG_REASM: The switch should reassemble IP fragments before
7257b535
BP
1388 * passing packets through the flow table.
1389 *
ad99e2ed
BP
1390 * - OFPUTIL_FRAG_NX_MATCH (a Nicira extension): Similar to
1391 * OFPUTIL_FRAG_NORMAL, except that TCP and UDP port numbers should be
1392 * included in fragments with offset 0.
7257b535
BP
1393 *
1394 * Implementations are not required to support every mode.
ad99e2ed 1395 * OFPUTIL_FRAG_NORMAL is the default mode when an ofproto is created.
7257b535
BP
1396 *
1397 * At the time of the call to ->set_frag_handling(), the current mode is
1398 * available in 'ofproto->frag_handling'. ->set_frag_handling() returns
1399 * true if the requested mode was set, false if it is not supported.
1400 *
1401 * Upon successful return, the caller changes 'ofproto->frag_handling' to
1402 * reflect the new mode.
1403 */
1404 bool (*set_frag_handling)(struct ofproto *ofproto,
ad99e2ed 1405 enum ofputil_frag_handling frag_handling);
abe529af 1406
77ab5fd2
BP
1407 enum ofperr (*nxt_resume)(struct ofproto *ofproto,
1408 const struct ofputil_packet_in_private *);
1409
5bf0e941
BP
1410/* ## ------------------------- ## */
1411/* ## OFPP_NORMAL configuration ## */
1412/* ## ------------------------- ## */
1413
abe529af
BP
1414 /* Configures NetFlow on 'ofproto' according to the options in
1415 * 'netflow_options', or turns off NetFlow if 'netflow_options' is NULL.
1416 *
1417 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
f8cd50a4 1418 * NetFlow, as does a null pointer. */
abe529af
BP
1419 int (*set_netflow)(struct ofproto *ofproto,
1420 const struct netflow_options *netflow_options);
1421
1422 void (*get_netflow_ids)(const struct ofproto *ofproto,
1423 uint8_t *engine_type, uint8_t *engine_id);
1424
1425 /* Configures sFlow on 'ofproto' according to the options in
1426 * 'sflow_options', or turns off sFlow if 'sflow_options' is NULL.
1427 *
1428 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
1429 * sFlow, as does a null pointer. */
1430 int (*set_sflow)(struct ofproto *ofproto,
1431 const struct ofproto_sflow_options *sflow_options);
1432
29089a54
RL
1433 /* Configures IPFIX on 'ofproto' according to the options in
1434 * 'bridge_exporter_options' and the 'flow_exporters_options'
1435 * array, or turns off IPFIX if 'bridge_exporter_options' and
1436 * 'flow_exporters_options' is NULL.
1437 *
1438 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
1439 * IPFIX, as does a null pointer. */
1440 int (*set_ipfix)(
1441 struct ofproto *ofproto,
1442 const struct ofproto_ipfix_bridge_exporter_options
1443 *bridge_exporter_options,
1444 const struct ofproto_ipfix_flow_exporter_options
1445 *flow_exporters_options, size_t n_flow_exporters_options);
1446
fb8f22c1
BY
1447 /* Gets IPFIX stats on 'ofproto' according to the exporter of birdge
1448 * IPFIX or flow-based IPFIX.
1449 *
1450 * OFPERR_NXST_NOT_CONFIGURED as a return value indicates that bridge
1451 * IPFIX or flow-based IPFIX is not configured. */
1452 int (*get_ipfix_stats)(
1453 const struct ofproto *ofproto,
1454 bool bridge_ipfix, struct ovs_list *replies
1455 );
1456
abe529af
BP
1457 /* Configures connectivity fault management on 'ofport'.
1458 *
a5610457 1459 * If 'cfm_settings' is nonnull, configures CFM according to its members.
abe529af 1460 *
a5610457 1461 * If 'cfm_settings' is null, removes any connectivity fault management
abe529af
BP
1462 * configuration from 'ofport'.
1463 *
1464 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1465 * support CFM, as does a null pointer. */
a5610457 1466 int (*set_cfm)(struct ofport *ofport, const struct cfm_settings *s);
abe529af 1467
8f5514fe
AW
1468 /* Checks the status change of CFM on 'ofport'. Returns true if
1469 * there is status change since last call or if CFM is not specified. */
1470 bool (*cfm_status_changed)(struct ofport *ofport);
1471
1472 /* Populates 'smap' with the status of CFM on 'ofport'. Returns 0 on
1473 * success, or a positive errno. EOPNOTSUPP as a return value indicates
1474 * that this ofproto_class does not support CFM, as does a null pointer.
88bf179a
AW
1475 *
1476 * The caller must provide and own '*status', and it must free the array
1477 * returned in 'status->rmps'. '*status' is indeterminate if the return
1478 * value is non-zero. */
1479 int (*get_cfm_status)(const struct ofport *ofport,
685acfd9 1480 struct cfm_status *status);
3967a833 1481
0477baa9
DF
1482 /* Configures LLDP on 'ofport'.
1483 *
1484 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1485 * support LLDP, as does a null pointer. */
1486 int (*set_lldp)(struct ofport *ofport, const struct smap *cfg);
1487
1488 /* Checks the status of LLDP configured on 'ofport'. Returns true if the
1489 * port's LLDP status was successfully stored into '*status'. Returns
1490 * false if the port did not have LLDP configured, in which case '*status'
1491 * is indeterminate.
1492 *
1493 * The caller must provide and own '*status'. '*status' is indeterminate
1494 * if the return value is non-zero. */
1495 bool (*get_lldp_status)(const struct ofport *ofport,
1496 struct lldp_status *status);
1497
1498 /* Configures Auto Attach.
1499 *
1500 * If 's' is nonnull, configures Auto Attach according to its members.
1501 *
1502 * If 's' is null, removes any Auto Attach configuration.
1503 */
1504 int (*set_aa)(struct ofproto *ofproto,
1505 const struct aa_settings *s);
1506
1507 /* If 's' is nonnull, this function registers a mapping associated with
1508 * client data pointer 'aux' in 'ofproto'. If 'aux' is already registered
1509 * then this function updates its configuration to 's'. Otherwise, this
1510 * function registers a new mapping.
1511 *
1512 * An implementation that does not support mapping at all may set
1513 * it to NULL or return EOPNOTSUPP. An implementation that supports
1514 * only a subset of the functionality should implement what it can
1515 * and return 0.
1516 */
1517 int (*aa_mapping_set)(struct ofproto *ofproto, void *aux,
1518 const struct aa_mapping_settings *s);
1519
1520 /* If 's' is nonnull, this function unregisters a mapping associated with
1521 * client data pointer 'aux' in 'ofproto'. If 'aux' is already registered
1522 * then this function updates its configuration to 's'. Otherwise, this
1523 * function unregisters a new mapping.
1524 *
1525 * An implementation that does not support mapping at all may set
1526 * it to NULL or return EOPNOTSUPP. An implementation that supports
1527 * only a subset of the functionality should implement what it can
1528 * and return 0.
1529 */
1530 int (*aa_mapping_unset)(struct ofproto *ofproto, void *aux);
1531
1532 /*
1533 * Returns the a list of AutoAttach VLAN operations. When Auto Attach is
1534 * enabled, the VLAN associated with an I-SID/VLAN mapping is first
1535 * negotiated with an Auto Attach Server. Once an I-SID VLAN mapping
1536 * becomes active, the corresponding VLAN needs to be communicated to the
1537 * bridge in order to add the VLAN to the trunk port linking the Auto
1538 * Attach Client (in this case openvswitch) and the Auto Attach Server.
1539 *
1540 * The list entries are of type "struct bridge_aa_vlan". Each entry
1541 * specifies the operation (add or remove), the interface on which to
1542 * execute the operation and the VLAN.
1543 */
1544 int (*aa_vlan_get_queued)(struct ofproto *ofproto, struct ovs_list *list);
1545
1546 /*
1547 * Returns the current number of entries in the list of VLAN operations
1548 * in the Auto Attach Client (see previous function description
1549 * aa_vlan_get_queued). Returns 0 if Auto Attach is disabled.
1550 */
1551 unsigned int (*aa_vlan_get_queue_size)(struct ofproto *ofproto);
1552
ccc09689
EJ
1553 /* Configures BFD on 'ofport'.
1554 *
1555 * If 'cfg' is NULL, or 'cfg' does not contain the key value pair
1556 * "enable=true", removes BFD from 'ofport'. Otherwise, configures BFD
1557 * according to 'cfg'.
1558 *
1559 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1560 * support BFD, as does a null pointer. */
1561 int (*set_bfd)(struct ofport *ofport, const struct smap *cfg);
1562
8f5514fe
AW
1563 /* Checks the status change of BFD on 'ofport'. Returns true if there
1564 * is status change since last call or if BFD is not specified. */
1565 bool (*bfd_status_changed)(struct ofport *ofport);
1566
ccc09689 1567 /* Populates 'smap' with the status of BFD on 'ofport'. Returns 0 on
8f5514fe
AW
1568 * success, or a positive errno. EOPNOTSUPP as a return value indicates
1569 * that this ofproto_class does not support BFD, as does a null pointer. */
ccc09689
EJ
1570 int (*get_bfd_status)(struct ofport *ofport, struct smap *smap);
1571
21f7563c
JP
1572 /* Configures spanning tree protocol (STP) on 'ofproto' using the
1573 * settings defined in 's'.
1574 *
1575 * If 's' is nonnull, configures STP according to its members.
1576 *
1577 * If 's' is null, removes any STP configuration from 'ofproto'.
1578 *
1579 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1580 * support STP, as does a null pointer. */
1581 int (*set_stp)(struct ofproto *ofproto,
1582 const struct ofproto_stp_settings *s);
1583
1584 /* Retrieves state of spanning tree protocol (STP) on 'ofproto'.
1585 *
1586 * Stores STP state for 'ofproto' in 's'. If the 'enabled' member
1587 * is false, the other member values are not meaningful.
1588 *
1589 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1590 * support STP, as does a null pointer. */
1591 int (*get_stp_status)(struct ofproto *ofproto,
1592 struct ofproto_stp_status *s);
1593
1594 /* Configures spanning tree protocol (STP) on 'ofport' using the
1595 * settings defined in 's'.
1596 *
1597 * If 's' is nonnull, configures STP according to its members. The
1598 * caller is responsible for assigning STP port numbers (using the
1599 * 'port_num' member in the range of 1 through 255, inclusive) and
1600 * ensuring there are no duplicates.
1601 *
1602 * If 's' is null, removes any STP configuration from 'ofport'.
1603 *
1604 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1605 * support STP, as does a null pointer. */
1606 int (*set_stp_port)(struct ofport *ofport,
1607 const struct ofproto_port_stp_settings *s);
1608
1609 /* Retrieves spanning tree protocol (STP) port status of 'ofport'.
1610 *
1611 * Stores STP state for 'ofport' in 's'. If the 'enabled' member is
1612 * false, the other member values are not meaningful.
1613 *
1614 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1615 * support STP, as does a null pointer. */
1616 int (*get_stp_port_status)(struct ofport *ofport,
1617 struct ofproto_port_stp_status *s);
1618
fd28ce3a
JS
1619 /* Retrieves spanning tree protocol (STP) port statistics of 'ofport'.
1620 *
1621 * Stores STP state for 'ofport' in 's'. If the 'enabled' member is
1622 * false, the other member values are not meaningful.
1623 *
1624 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1625 * support STP, as does a null pointer. */
1626 int (*get_stp_port_stats)(struct ofport *ofport,
1627 struct ofproto_port_stp_stats *s);
1628
9efd308e
DV
1629 /* Configures Rapid Spanning Tree Protocol (RSTP) on 'ofproto' using the
1630 * settings defined in 's'.
1631 *
1632 * If 's' is nonnull, configures RSTP according to its members.
1633 *
1634 * If 's' is null, removes any RSTP configuration from 'ofproto'.
1635 *
1636 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1637 * support RSTP, as does a null pointer. */
1638 void (*set_rstp)(struct ofproto *ofproto,
1639 const struct ofproto_rstp_settings *s);
1640
1641 /* Retrieves state of Rapid Spanning Tree Protocol (RSTP) on 'ofproto'.
1642 *
1643 * Stores RSTP state for 'ofproto' in 's'. If the 'enabled' member
1644 * is false, the other member values are not meaningful.
1645 *
1646 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1647 * support RSTP, as does a null pointer. */
1648 void (*get_rstp_status)(struct ofproto *ofproto,
1649 struct ofproto_rstp_status *s);
1650
1651 /* Configures Rapid Spanning Tree Protocol (RSTP) on 'ofport' using the
1652 * settings defined in 's'.
1653 *
1654 * If 's' is nonnull, configures RSTP according to its members. The
1655 * caller is responsible for assigning RSTP port numbers (using the
1656 * 'port_num' member in the range of 1 through 255, inclusive) and
1657 * ensuring there are no duplicates.
1658 *
1659 * If 's' is null, removes any RSTP configuration from 'ofport'.
1660 *
1661 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1662 * support STP, as does a null pointer. */
1663 void (*set_rstp_port)(struct ofport *ofport,
1664 const struct ofproto_port_rstp_settings *s);
1665
1666 /* Retrieves Rapid Spanning Tree Protocol (RSTP) port status of 'ofport'.
1667 *
1668 * Stores RSTP state for 'ofport' in 's'. If the 'enabled' member is
1669 * false, the other member values are not meaningful.
1670 *
1671 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1672 * support RSTP, as does a null pointer. */
1673 void (*get_rstp_port_status)(struct ofport *ofport,
1674 struct ofproto_port_rstp_status *s);
1675
8b36f51e
EJ
1676 /* Registers meta-data associated with the 'n_qdscp' Qualities of Service
1677 * 'queues' attached to 'ofport'. This data is not intended to be
1678 * sufficient to implement QoS. Instead, providers may use this
1679 * information to implement features which require knowledge of what queues
1680 * exist on a port, and some basic information about them.
1681 *
1682 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1683 * support QoS, as does a null pointer. */
1684 int (*set_queues)(struct ofport *ofport,
1685 const struct ofproto_port_queue *queues, size_t n_qdscp);
1686
abe529af
BP
1687 /* If 's' is nonnull, this function registers a "bundle" associated with
1688 * client data pointer 'aux' in 'ofproto'. A bundle is the same concept as
1689 * a Port in OVSDB, that is, it consists of one or more "slave" devices
1690 * (Interfaces, in OVSDB) along with VLAN and LACP configuration and, if
1691 * there is more than one slave, a bonding configuration. If 'aux' is
1692 * already registered then this function updates its configuration to 's'.
1693 * Otherwise, this function registers a new bundle.
1694 *
1695 * If 's' is NULL, this function unregisters the bundle registered on
1696 * 'ofproto' associated with client data pointer 'aux'. If no such bundle
1697 * has been registered, this has no effect.
1698 *
1699 * This function affects only the behavior of the NXAST_AUTOPATH action and
1700 * output to the OFPP_NORMAL port. An implementation that does not support
1701 * it at all may set it to NULL or return EOPNOTSUPP. An implementation
1702 * that supports only a subset of the functionality should implement what
1703 * it can and return 0. */
1704 int (*bundle_set)(struct ofproto *ofproto, void *aux,
1705 const struct ofproto_bundle_settings *s);
1706
1707 /* If 'port' is part of any bundle, removes it from that bundle. If the
1708 * bundle now has no ports, deletes the bundle. If the bundle now has only
1709 * one port, deconfigures the bundle's bonding configuration. */
1710 void (*bundle_remove)(struct ofport *ofport);
1711
1712 /* If 's' is nonnull, this function registers a mirror associated with
1713 * client data pointer 'aux' in 'ofproto'. A mirror is the same concept as
1714 * a Mirror in OVSDB. If 'aux' is already registered then this function
1715 * updates its configuration to 's'. Otherwise, this function registers a
1716 * new mirror.
1717 *
1718 * If 's' is NULL, this function unregisters the mirror registered on
1719 * 'ofproto' associated with client data pointer 'aux'. If no such mirror
1720 * has been registered, this has no effect.
1721 *
c06bba01
JP
1722 * An implementation that does not support mirroring at all may set
1723 * it to NULL or return EOPNOTSUPP. An implementation that supports
1724 * only a subset of the functionality should implement what it can
1725 * and return 0. */
abe529af
BP
1726 int (*mirror_set)(struct ofproto *ofproto, void *aux,
1727 const struct ofproto_mirror_settings *s);
1728
9d24de3b
JP
1729 /* Retrieves statistics from mirror associated with client data
1730 * pointer 'aux' in 'ofproto'. Stores packet and byte counts in
1731 * 'packets' and 'bytes', respectively. If a particular counter is
1732 * not supported, the appropriate argument is set to UINT64_MAX.
1733 *
1734 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
1735 * support retrieving mirror statistics. */
1736 int (*mirror_get_stats)(struct ofproto *ofproto, void *aux,
1737 uint64_t *packets, uint64_t *bytes);
1738
abe529af
BP
1739 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs
1740 * on which all packets are flooded, instead of using MAC learning. If
1741 * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
1742 *
1743 * This function affects only the behavior of the OFPP_NORMAL action. An
1744 * implementation that does not support it may set it to NULL or return
1745 * EOPNOTSUPP. */
1746 int (*set_flood_vlans)(struct ofproto *ofproto,
1747 unsigned long *flood_vlans);
1748
1749 /* Returns true if 'aux' is a registered bundle that is currently in use as
1750 * the output for a mirror. */
b4affc74 1751 bool (*is_mirror_output_bundle)(const struct ofproto *ofproto, void *aux);
8402c74b
SS
1752
1753 /* When the configuration option of forward_bpdu changes, this function
1754 * will be invoked. */
1755 void (*forward_bpdu_changed)(struct ofproto *ofproto);
52a90c29 1756
c4069512
BP
1757 /* Sets the MAC aging timeout for the OFPP_NORMAL action to 'idle_time', in
1758 * seconds, and the maximum number of MAC table entries to
1759 * 'max_entries'.
1760 *
1761 * An implementation that doesn't support configuring these features may
1762 * set this function to NULL or implement it as a no-op. */
1763 void (*set_mac_table_config)(struct ofproto *ofproto,
1764 unsigned int idle_time, size_t max_entries);
e764773c 1765
7c38d0a5
FL
1766 /* Configures multicast snooping on 'ofport' using the settings
1767 * defined in 's'.
1768 *
1769 * If 's' is nonnull, this function updates multicast snooping
1770 * configuration to 's' in 'ofproto'.
1771 *
1772 * If 's' is NULL, this function disables multicast snooping
1773 * on 'ofproto'.
1774 *
1775 * An implementation that does not support multicast snooping may set
1776 * it to NULL or return EOPNOTSUPP. */
1777 int (*set_mcast_snooping)(struct ofproto *ofproto,
1778 const struct ofproto_mcast_snooping_settings *s);
1779
1780 /* Configures multicast snooping port's flood setting on 'ofproto'.
1781 *
8e04a33f
FL
1782 * If 's' is nonnull, this function updates multicast snooping
1783 * configuration to 's' in 'ofproto'.
1784 *
1785 * If 's' is NULL, this function doesn't change anything.
7c38d0a5
FL
1786 *
1787 * An implementation that does not support multicast snooping may set
1788 * it to NULL or return EOPNOTSUPP. */
1789 int (*set_mcast_snooping_port)(struct ofproto *ofproto_, void *aux,
8e04a33f 1790 const struct ofproto_mcast_snooping_port_settings *s);
7c38d0a5 1791
9cae45dc
JR
1792/* ## ------------------------ ## */
1793/* ## OpenFlow meter functions ## */
1794/* ## ------------------------ ## */
1795
1796 /* These functions should be NULL if an implementation does not support
1797 * them. They must be all null or all non-null.. */
1798
1799 /* Initializes 'features' to describe the metering features supported by
1800 * 'ofproto'. */
1801 void (*meter_get_features)(const struct ofproto *ofproto,
1802 struct ofputil_meter_features *features);
1803
1804 /* If '*id' is UINT32_MAX, adds a new meter with the given 'config'. On
1805 * success the function must store a provider meter ID other than
1806 * UINT32_MAX in '*id'. All further references to the meter will be made
1807 * with the returned provider meter id rather than the OpenFlow meter id.
1808 * The caller does not try to interpret the provider meter id, giving the
1809 * implementation the freedom to either use the OpenFlow meter_id value
1810 * provided in the meter configuration, or any other value suitable for the
1811 * implementation.
1812 *
1813 * If '*id' is a value other than UINT32_MAX, modifies the existing meter
e555eb7c
JR
1814 * with that meter provider ID to have configuration 'config', while
1815 * leaving '*id' unchanged. On failure, the existing meter configuration
1816 * is left intact. */
9cae45dc 1817 enum ofperr (*meter_set)(struct ofproto *ofproto, ofproto_meter_id *id,
5dddf960 1818 struct ofputil_meter_config *config);
9cae45dc
JR
1819
1820 /* Gets the meter and meter band packet and byte counts for maximum of
5dddf960
JR
1821 * 'n_bands' bands for the meter with provider ID 'id' within 'ofproto'.
1822 * The caller fills in the other stats values. The band stats are copied
1823 * to memory at 'stats->bands' provided by the caller. The number of
1824 * returned band stats is returned in 'stats->n_bands'. */
9cae45dc
JR
1825 enum ofperr (*meter_get)(const struct ofproto *ofproto,
1826 ofproto_meter_id id,
5dddf960
JR
1827 struct ofputil_meter_stats *stats,
1828 uint16_t n_bands);
9cae45dc
JR
1829
1830 /* Deletes a meter, making the 'ofproto_meter_id' invalid for any
1831 * further calls. */
1832 void (*meter_del)(struct ofproto *, ofproto_meter_id);
7395c052
NZ
1833
1834
1835/* ## -------------------- ## */
1836/* ## OpenFlow 1.1+ groups ## */
1837/* ## -------------------- ## */
1838
1839 struct ofgroup *(*group_alloc)(void);
1840 enum ofperr (*group_construct)(struct ofgroup *);
1841 void (*group_destruct)(struct ofgroup *);
1842 void (*group_dealloc)(struct ofgroup *);
1843
2b0b0b80 1844 void (*group_modify)(struct ofgroup *);
7395c052
NZ
1845
1846 enum ofperr (*group_get_stats)(const struct ofgroup *,
1847 struct ofputil_group_stats *);
b5cbbcf6
AZ
1848
1849/* ## --------------------- ## */
1850/* ## Datapath information ## */
1851/* ## --------------------- ## */
1852 /* Retrieve the version string of the datapath. The version
1853 * string can be NULL if it can not be determined.
1854 *
1855 * The version retuned is read only. The caller should not
1856 * free it.
1857 *
1858 * This function should be NULL if an implementation does not support it.
1859 */
1860 const char *(*get_datapath_version)(const struct ofproto *);
2a7c4805 1861
d4f6865c
DDP
1862 /* Pass custom configuration options to the 'type' datapath.
1863 *
1864 * This function should be NULL if an implementation does not support it.
1865 */
1866 void (*type_set_config)(const char *type,
1867 const struct smap *other_config);
1868
2a7c4805
JP
1869/* ## ------------------- ## */
1870/* ## Connection tracking ## */
1871/* ## ------------------- ## */
1872 /* Flushes the connection tracking tables. If 'zone' is not NULL,
1873 * only deletes connections in '*zone'. */
1874 void (*ct_flush)(const struct ofproto *, const uint16_t *zone);
abe529af
BP
1875};
1876
1877extern const struct ofproto_class ofproto_dpif_class;
1878
1879int ofproto_class_register(const struct ofproto_class *);
1880int ofproto_class_unregister(const struct ofproto_class *);
d08a2e92 1881
5bacd5cd
JR
1882/* Criteria that flow_mod and other operations use for selecting rules on
1883 * which to operate. */
1884struct rule_criteria {
1885 /* An OpenFlow table or 255 for all tables. */
1886 uint8_t table_id;
1887
1888 /* OpenFlow matching criteria. Interpreted different in "loose" way by
1889 * collect_rules_loose() and "strict" way by collect_rules_strict(), as
1890 * defined in the OpenFlow spec. */
1891 struct cls_rule cr;
1892 ovs_version_t version;
1893
1894 /* Matching criteria for the OpenFlow cookie. Consider a bit B in a rule's
1895 * cookie and the corresponding bits C in 'cookie' and M in 'cookie_mask'.
1896 * The rule will not be selected if M is 1 and B != C. */
1897 ovs_be64 cookie;
1898 ovs_be64 cookie_mask;
1899
1900 /* Selection based on actions within a rule:
1901 *
1902 * If out_port != OFPP_ANY, selects only rules that output to out_port.
1903 * If out_group != OFPG_ALL, select only rules that output to out_group. */
1904 ofp_port_t out_port;
1905 uint32_t out_group;
1906
1907 /* If true, collects only rules that are modifiable. */
1908 bool include_hidden;
1909 bool include_readonly;
1910};
1911
8be00367
JR
1912/* flow_mod with execution context. */
1913struct ofproto_flow_mod {
5bacd5cd 1914 /* Allocated by 'init' phase, may be freed after 'start' phase, as these
6399df6a
BP
1915 * are not needed for 'revert' nor 'finish'.
1916 *
1917 * This structure owns a reference to 'temp_rule' (if it is nonnull) that
1918 * must be eventually be released with ofproto_rule_unref(). */
5bacd5cd
JR
1919 struct rule *temp_rule;
1920 struct rule_criteria criteria;
1921 struct cls_conjunction *conjs;
1922 size_t n_conjs;
8be00367 1923
81dee635
JR
1924 /* Replicate needed fields from ofputil_flow_mod to not need it after the
1925 * flow has been created. */
5a27991d 1926 uint16_t command;
7338102b 1927 bool modify_cookie;
5bacd5cd 1928 /* Fields derived from ofputil_flow_mod. */
81dee635 1929 bool modify_may_add_flow;
8b6987d7 1930 bool modify_keep_counts;
81dee635
JR
1931 enum nx_flow_update_event event;
1932
5bacd5cd
JR
1933 /* These are only used during commit execution.
1934 * ofproto_flow_mod_uninit() does NOT clean these up. */
44e0c35d 1935 ovs_version_t version; /* Version in which changes take
8be00367 1936 * effect. */
1f4a8933 1937 bool learn_adds_rule; /* Learn execution adds a rule. */
8be00367
JR
1938 struct rule_collection old_rules; /* Affected rules. */
1939 struct rule_collection new_rules; /* Replacement rules. */
1940};
1941
5bacd5cd
JR
1942void ofproto_flow_mod_uninit(struct ofproto_flow_mod *);
1943
8be00367
JR
1944/* port_mod with execution context. */
1945struct ofproto_port_mod {
1946 struct ofputil_port_mod pm;
1947 struct ofport *port; /* Affected port. */
1948};
1949
2b0b0b80
JR
1950/* flow_mod with execution context. */
1951struct ofproto_group_mod {
1952 struct ofputil_group_mod gm;
1953
5d08a275
JR
1954 ovs_version_t version; /* Version in which changes take
1955 * effect. */
2b0b0b80
JR
1956 struct ofgroup *new_group; /* New group. */
1957 struct group_collection old_groups; /* Affected groups. */
1958};
1959
1f4a8933
JR
1960/* packet_out with execution context. */
1961struct ofproto_packet_out {
1962 ovs_version_t version;
1963 struct dp_packet *packet;
1964 struct flow *flow;
1965 struct ofpact *ofpacts;
1966 size_t ofpacts_len;
1967
1968 void *aux; /* Provider private. */
1969};
1970
1971void ofproto_packet_out_uninit(struct ofproto_packet_out *);
1972
7338102b 1973enum ofperr ofproto_flow_mod(struct ofproto *, const struct ofputil_flow_mod *)
15aaf599 1974 OVS_EXCLUDED(ofproto_mutex);
2c7ee524
JR
1975enum ofperr ofproto_flow_mod_init_for_learn(struct ofproto *,
1976 const struct ofputil_flow_mod *,
1977 struct ofproto_flow_mod *)
1978 OVS_EXCLUDED(ofproto_mutex);
4c71600d
DDP
1979enum ofperr ofproto_flow_mod_learn(struct ofproto_flow_mod *, bool keep_ref,
1980 unsigned limit, bool *below_limit)
2c7ee524 1981 OVS_EXCLUDED(ofproto_mutex);
1f4a8933
JR
1982enum ofperr ofproto_flow_mod_learn_refresh(struct ofproto_flow_mod *ofm);
1983enum ofperr ofproto_flow_mod_learn_start(struct ofproto_flow_mod *ofm)
1984 OVS_REQUIRES(ofproto_mutex);
6dd3c787
JR
1985void ofproto_flow_mod_learn_revert(struct ofproto_flow_mod *ofm)
1986 OVS_REQUIRES(ofproto_mutex);
146ee626 1987enum ofperr ofproto_flow_mod_learn_finish(struct ofproto_flow_mod *ofm,
1f4a8933
JR
1988 struct ofproto *orig_ofproto)
1989 OVS_REQUIRES(ofproto_mutex);
eb391b76 1990void ofproto_add_flow(struct ofproto *, const struct match *, int priority,
15aaf599
BP
1991 const struct ofpact *ofpacts, size_t ofpacts_len)
1992 OVS_EXCLUDED(ofproto_mutex);
eb391b76 1993void ofproto_delete_flow(struct ofproto *, const struct match *, int priority)
25010c68 1994 OVS_REQUIRES(ofproto_mutex);
d08a2e92
BP
1995void ofproto_flush_flows(struct ofproto *);
1996
89108874
JR
1997enum ofperr ofproto_check_ofpacts(struct ofproto *,
1998 const struct ofpact ofpacts[],
d61973d6
JR
1999 size_t ofpacts_len)
2000 OVS_REQUIRES(ofproto_mutex);
003ce655
JR
2001\f
2002static inline const struct rule_actions *
2003rule_get_actions(const struct rule *rule)
2004{
39c94593 2005 return rule->actions;
003ce655
JR
2006}
2007
2008/* Returns true if 'rule' is an OpenFlow 1.3 "table-miss" rule, false
2009 * otherwise.
2010 *
2011 * ("Table-miss" rules are special because a packet_in generated through one
2012 * uses OFPR_NO_MATCH as its reason, whereas packet_ins generated by any other
2013 * rule use OFPR_ACTION.) */
2014static inline bool
2015rule_is_table_miss(const struct rule *rule)
2016{
2017 return rule->cr.priority == 0 && cls_rule_is_catchall(&rule->cr);
2018}
2019
5e8b38b0
BP
2020/* Returns true if 'rule' should be hidden from the controller.
2021 *
2022 * Rules with priority higher than UINT16_MAX are set up by ofproto itself
2023 * (e.g. by in-band control) and are intentionally hidden from the
2024 * controller. */
2025static inline bool
2026rule_is_hidden(const struct rule *rule)
2027{
2028 return rule->cr.priority > UINT16_MAX;
2029}
2030
003ce655
JR
2031static inline struct rule *
2032rule_from_cls_rule(const struct cls_rule *cls_rule)
2033{
2034 return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
2035}
2036
8d8ab6c2
JG
2037static inline const struct tun_table *
2038ofproto_get_tun_tab(const struct ofproto *ofproto)
2039{
2040 return ovsrcu_get(struct tun_table *, &ofproto->metadata_tab);
2041}
2042
5bee6e26 2043#endif /* ofproto/ofproto-provider.h */