2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef OFPROTO_OFPROTO_PROVIDER_H
18 #define OFPROTO_OFPROTO_PROVIDER_H 1
20 /* Definitions for use within ofproto. */
22 #include "ofproto/ofproto.h"
23 #include "classifier.h"
28 /* An OpenFlow switch.
30 * With few exceptions, ofproto implementations may look at these fields but
31 * should not modify them. */
33 const struct ofproto_class *ofproto_class;
34 char *type; /* Datapath type. */
35 char *name; /* Datapath name. */
36 struct hmap_node hmap_node; /* In global 'all_ofprotos' hmap. */
39 uint64_t fallback_dpid; /* Datapath ID if no better choice found. */
40 uint64_t datapath_id; /* Datapath ID. */
41 unsigned flow_eviction_threshold; /* Threshold at which to begin flow
42 * table eviction. Only affects the
43 * ofproto-dpif implementation */
44 bool forward_bpdu; /* Option to allow forwarding of BPDU frames
45 * when NORMAL action is invoked. */
46 char *mfr_desc; /* Manufacturer. */
47 char *hw_desc; /* Hardware. */
48 char *sw_desc; /* Software version. */
49 char *serial_desc; /* Serial number. */
50 char *dp_desc; /* Datapath description. */
53 struct hmap ports; /* Contains "struct ofport"s. */
54 struct shash port_by_name;
57 struct classifier *tables; /* Each classifier contains "struct rule"s. */
60 /* OpenFlow connections. */
61 struct connmgr *connmgr;
63 /* Flow table operation tracking. */
64 int state; /* Internal state. */
65 struct list pending; /* List of "struct ofopgroup"s. */
66 struct hmap deletions; /* All OFOPERATION_DELETE "ofoperation"s. */
69 struct ofproto *ofproto_lookup(const char *name);
70 struct ofport *ofproto_get_port(const struct ofproto *, uint16_t ofp_port);
72 /* Assigns CLS to each classifier table, in turn, in OFPROTO.
74 * All parameters are evaluated multiple times. */
75 #define OFPROTO_FOR_EACH_TABLE(CLS, OFPROTO) \
76 for ((CLS) = (OFPROTO)->tables; \
77 (CLS) < &(OFPROTO)->tables[(OFPROTO)->n_tables]; \
81 /* An OpenFlow port within a "struct ofproto".
83 * With few exceptions, ofproto implementations may look at these fields but
84 * should not modify them. */
86 struct ofproto *ofproto; /* The ofproto that contains this port. */
87 struct hmap_node hmap_node; /* In struct ofproto's "ports" hmap. */
88 struct netdev *netdev;
89 struct ofp_phy_port opp;
90 uint16_t ofp_port; /* OpenFlow port number. */
91 unsigned int change_seq;
94 /* An OpenFlow flow within a "struct ofproto".
96 * With few exceptions, ofproto implementations may look at these fields but
97 * should not modify them. */
99 struct ofproto *ofproto; /* The ofproto that contains this rule. */
100 struct list ofproto_node; /* Owned by ofproto base code. */
101 struct cls_rule cr; /* In owning ofproto's classifier. */
103 struct ofoperation *pending; /* Operation now in progress, if nonnull. */
105 ovs_be64 flow_cookie; /* Controller-issued identifier. */
107 long long int created; /* Creation time. */
108 uint16_t idle_timeout; /* In seconds from time of last use. */
109 uint16_t hard_timeout; /* In seconds from time of creation. */
110 uint8_t table_id; /* Index in ofproto's 'tables' array. */
111 bool send_flow_removed; /* Send a flow removed message? */
113 union ofp_action *actions; /* OpenFlow actions. */
114 int n_actions; /* Number of elements in actions[]. */
117 static inline struct rule *
118 rule_from_cls_rule(const struct cls_rule *cls_rule)
120 return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
123 void ofproto_rule_expire(struct rule *, uint8_t reason);
124 void ofproto_rule_destroy(struct rule *);
126 void ofoperation_complete(struct ofoperation *, int status);
127 struct rule *ofoperation_get_victim(struct ofoperation *);
129 /* ofproto class structure, to be defined by each ofproto implementation.
135 * These functions work primarily with three different kinds of data
138 * - "struct ofproto", which represents an OpenFlow switch.
140 * - "struct ofport", which represents a port within an ofproto.
142 * - "struct rule", which represents an OpenFlow flow within an ofproto.
144 * Each of these data structures contains all of the implementation-independent
145 * generic state for the respective concept, called the "base" state. None of
146 * them contains any extra space for ofproto implementations to use. Instead,
147 * each implementation is expected to declare its own data structure that
148 * contains an instance of the generic data structure plus additional
149 * implementation-specific members, called the "derived" state. The
150 * implementation can use casts or (preferably) the CONTAINER_OF macro to
151 * obtain access to derived state given only a pointer to the embedded generic
158 * Four stylized functions accompany each of these data structures:
160 * "alloc" "construct" "destruct" "dealloc"
161 * ------------ ---------------- --------------- --------------
162 * ofproto ->alloc ->construct ->destruct ->dealloc
163 * ofport ->port_alloc ->port_construct ->port_destruct ->port_dealloc
164 * rule ->rule_alloc ->rule_construct ->rule_destruct ->rule_dealloc
166 * Any instance of a given data structure goes through the following life
169 * 1. The client calls the "alloc" function to obtain raw memory. If "alloc"
170 * fails, skip all the other steps.
172 * 2. The client initializes all of the data structure's base state. If this
173 * fails, skip to step 7.
175 * 3. The client calls the "construct" function. The implementation
176 * initializes derived state. It may refer to the already-initialized
177 * base state. If "construct" fails, skip to step 6.
179 * 4. The data structure is now initialized and in use.
181 * 5. When the data structure is no longer needed, the client calls the
182 * "destruct" function. The implementation uninitializes derived state.
183 * The base state has not been uninitialized yet, so the implementation
184 * may still refer to it.
186 * 6. The client uninitializes all of the data structure's base state.
188 * 7. The client calls the "dealloc" to free the raw memory. The
189 * implementation must not refer to base or derived state in the data
190 * structure, because it has already been uninitialized.
192 * Each "alloc" function allocates and returns a new instance of the respective
193 * data structure. The "alloc" function is not given any information about the
194 * use of the new data structure, so it cannot perform much initialization.
195 * Its purpose is just to ensure that the new data structure has enough room
196 * for base and derived state. It may return a null pointer if memory is not
197 * available, in which case none of the other functions is called.
199 * Each "construct" function initializes derived state in its respective data
200 * structure. When "construct" is called, all of the base state has already
201 * been initialized, so the "construct" function may refer to it. The
202 * "construct" function is allowed to fail, in which case the client calls the
203 * "dealloc" function (but not the "destruct" function).
205 * Each "destruct" function uninitializes and frees derived state in its
206 * respective data structure. When "destruct" is called, the base state has
207 * not yet been uninitialized, so the "destruct" function may refer to it. The
208 * "destruct" function is not allowed to fail.
210 * Each "dealloc" function frees raw memory that was allocated by the the
211 * "alloc" function. The memory's base and derived members might not have ever
212 * been initialized (but if "construct" returned successfully, then it has been
213 * "destruct"ed already). The "dealloc" function is not allowed to fail.
219 * Most of these functions return 0 if they are successful or a positive error
220 * code on failure. Depending on the function, valid error codes are either
221 * errno values or OpenFlow error codes constructed with ofp_mkerr().
223 * Most of these functions are expected to execute synchronously, that is, to
224 * block as necessary to obtain a result. Thus, these functions may return
225 * EAGAIN (or EWOULDBLOCK or EINPROGRESS) only where the function descriptions
226 * explicitly say those errors are a possibility. We may relax this
227 * requirement in the future if and when we encounter performance problems. */
228 struct ofproto_class {
229 /* ## ----------------- ## */
230 /* ## Factory Functions ## */
231 /* ## ----------------- ## */
233 /* Enumerates the types of all support ofproto types into 'types'. The
234 * caller has already initialized 'types' and other ofproto classes might
235 * already have added names to it. */
236 void (*enumerate_types)(struct sset *types);
238 /* Enumerates the names of all existing datapath of the specified 'type'
239 * into 'names' 'all_dps'. The caller has already initialized 'names' as
242 * 'type' is one of the types enumerated by ->enumerate_types().
244 * Returns 0 if successful, otherwise a positive errno value.
246 int (*enumerate_names)(const char *type, struct sset *names);
248 /* Deletes the datapath with the specified 'type' and 'name'. The caller
249 * should have closed any open ofproto with this 'type' and 'name'; this
250 * function is allowed to fail if that is not the case.
252 * 'type' is one of the types enumerated by ->enumerate_types().
253 * 'name' is one of the names enumerated by ->enumerate_names() for 'type'.
255 * Returns 0 if successful, otherwise a positive errno value.
257 int (*del)(const char *type, const char *name);
259 /* ## --------------------------- ## */
260 /* ## Top-Level ofproto Functions ## */
261 /* ## --------------------------- ## */
263 /* Life-cycle functions for an "ofproto" (see "Life Cycle" above).
269 * ->construct() should not modify any base members of the ofproto. The
270 * client will initialize the ofproto's 'ports' and 'tables' members after
271 * construction is complete.
273 * When ->construct() is called, the client does not yet know how many flow
274 * tables the datapath supports, so ofproto->n_tables will be 0 and
275 * ofproto->tables will be NULL. ->construct() should store the number of
276 * flow tables supported by the datapath (between 1 and 255, inclusive)
277 * into '*n_tables'. After a successful return, the client will initialize
278 * the base 'n_tables' member to '*n_tables' and allocate and initialize
279 * the base 'tables' member as the specified number of empty flow tables.
280 * Each flow table will be initially empty, so ->construct() should delete
281 * flows from the underlying datapath, if necessary, rather than populating
284 * Only one ofproto instance needs to be supported for any given datapath.
285 * If a datapath is already open as part of one "ofproto", then another
286 * attempt to "construct" the same datapath as part of another ofproto is
287 * allowed to fail with an error.
289 * ->construct() returns 0 if successful, otherwise a positive errno
296 * If 'ofproto' has any pending asynchronous operations, ->destruct()
297 * must complete all of them by calling ofoperation_complete().
299 * ->destruct() must also destroy all remaining rules in the ofproto's
300 * tables, by passing each remaining rule to ofproto_rule_destroy(). The
301 * client will destroy the flow tables themselves after ->destruct()
304 struct ofproto *(*alloc)(void);
305 int (*construct)(struct ofproto *ofproto, int *n_tables);
306 void (*destruct)(struct ofproto *ofproto);
307 void (*dealloc)(struct ofproto *ofproto);
309 /* Performs any periodic activity required by 'ofproto'. It should:
311 * - Call connmgr_send_packet_in() for each received packet that missed
312 * in the OpenFlow flow table or that had a OFPP_CONTROLLER output
315 * - Call ofproto_rule_expire() for each OpenFlow flow that has reached
316 * its hard_timeout or idle_timeout, to expire the flow.
318 * Returns 0 if successful, otherwise a positive errno value. The ENODEV
319 * return value specifically means that the datapath underlying 'ofproto'
320 * has been destroyed (externally, e.g. by an admin running ovs-dpctl).
322 int (*run)(struct ofproto *ofproto);
324 /* Causes the poll loop to wake up when 'ofproto''s 'run' function needs to
325 * be called, e.g. by calling the timer or fd waiting functions in
327 void (*wait)(struct ofproto *ofproto);
329 /* Every "struct rule" in 'ofproto' is about to be deleted, one by one.
330 * This function may prepare for that, for example by clearing state in
331 * advance. It should *not* actually delete any "struct rule"s from
332 * 'ofproto', only prepare for it.
334 * This function is optional; it's really just for optimization in case
335 * it's cheaper to delete all the flows from your hardware in a single pass
336 * than to do it one by one. */
337 void (*flush)(struct ofproto *ofproto);
339 /* Helper for the OpenFlow OFPT_FEATURES_REQUEST request.
341 * The implementation should store true in '*arp_match_ip' if the switch
342 * supports matching IP addresses inside ARP requests and replies, false
345 * The implementation should store in '*actions' a bitmap of the supported
346 * OpenFlow actions: the bit with value (1 << n) should be set to 1 if the
347 * implementation supports the action with value 'n', and to 0 otherwise.
348 * For example, if the implementation supports the OFPAT_OUTPUT and
349 * OFPAT_ENQUEUE actions, but no others, it would set '*actions' to (1 <<
350 * OFPAT_OUTPUT) | (1 << OFPAT_ENQUEUE). Vendor actions are not included
352 void (*get_features)(struct ofproto *ofproto,
353 bool *arp_match_ip, uint32_t *actions);
355 /* Helper for the OpenFlow OFPST_TABLE statistics request.
357 * The 'ots' array contains 'ofproto->n_tables' elements. Each element is
360 * - 'table_id' to the array index.
362 * - 'name' to "table#" where # is the table ID.
364 * - 'wildcards' to OFPFW_ALL.
366 * - 'max_entries' to 1,000,000.
368 * - 'active_count' to the classifier_count() for the table.
370 * - 'lookup_count' and 'matched_count' to 0.
372 * The implementation should update any members in each element for which
373 * it has better values:
375 * - 'name' to a more meaningful name.
377 * - 'wildcards' to the set of wildcards actually supported by the table
378 * (if it doesn't support all OpenFlow wildcards).
380 * - 'max_entries' to the maximum number of flows actually supported by
383 * - 'lookup_count' to the number of packets looked up in this flow table
386 * - 'matched_count' to the number of packets looked up in this flow
387 * table so far that matched one of the flow entries.
389 * Keep in mind that all of the members of struct ofp_table_stats are in
390 * network byte order.
392 void (*get_tables)(struct ofproto *ofproto, struct ofp_table_stats *ots);
394 /* ## ---------------- ## */
395 /* ## ofport Functions ## */
396 /* ## ---------------- ## */
398 /* Life-cycle functions for a "struct ofport" (see "Life Cycle" above).
400 * ->port_construct() should not modify any base members of the ofport.
402 * ofports are managed by the base ofproto code. The ofproto
403 * implementation should only create and destroy them in response to calls
404 * to these functions. The base ofproto code will create and destroy
405 * ofports in the following situations:
407 * - Just after the ->construct() function is called, the base ofproto
408 * iterates over all of the implementation's ports, using
409 * ->port_dump_start() and related functions, and constructs an ofport
410 * for each dumped port.
412 * - If ->port_poll() reports that a specific port has changed, then the
413 * base ofproto will query that port with ->port_query_by_name() and
414 * construct or destruct ofports as necessary to reflect the updated
417 * - If ->port_poll() returns ENOBUFS to report an unspecified port set
418 * change, then the base ofproto will iterate over all of the
419 * implementation's ports, in the same way as at ofproto
420 * initialization, and construct and destruct ofports to reflect all of
423 * ->port_construct() returns 0 if successful, otherwise a positive errno
426 struct ofport *(*port_alloc)(void);
427 int (*port_construct)(struct ofport *ofport);
428 void (*port_destruct)(struct ofport *ofport);
429 void (*port_dealloc)(struct ofport *ofport);
431 /* Called after 'ofport->netdev' is replaced by a new netdev object. If
432 * the ofproto implementation uses the ofport's netdev internally, then it
433 * should switch to using the new one. The old one has been closed.
435 * An ofproto implementation that doesn't need to do anything in this
436 * function may use a null pointer. */
437 void (*port_modified)(struct ofport *ofport);
439 /* Called after an OpenFlow OFPT_PORT_MOD request changes a port's
440 * configuration. 'ofport->opp.config' contains the new configuration.
441 * 'old_config' contains the previous configuration.
443 * The caller implements OFPPC_PORT_DOWN using netdev functions to turn
444 * NETDEV_UP on and off, so this function doesn't have to do anything for
445 * that bit (and it won't be called if that is the only bit that
447 void (*port_reconfigured)(struct ofport *ofport, ovs_be32 old_config);
449 /* Looks up a port named 'devname' in 'ofproto'. On success, initializes
450 * '*port' appropriately.
452 * The caller owns the data in 'port' and must free it with
453 * ofproto_port_destroy() when it is no longer needed. */
454 int (*port_query_by_name)(const struct ofproto *ofproto,
455 const char *devname, struct ofproto_port *port);
457 /* Attempts to add 'netdev' as a port on 'ofproto'. Returns 0 if
458 * successful, otherwise a positive errno value. If successful, sets
459 * '*ofp_portp' to the new port's port number.
461 * It doesn't matter whether the new port will be returned by a later call
462 * to ->port_poll(); the implementation may do whatever is more
464 int (*port_add)(struct ofproto *ofproto, struct netdev *netdev,
465 uint16_t *ofp_portp);
467 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'. Returns
468 * 0 if successful, otherwise a positive errno value.
470 * It doesn't matter whether the new port will be returned by a later call
471 * to ->port_poll(); the implementation may do whatever is more
473 int (*port_del)(struct ofproto *ofproto, uint16_t ofp_port);
475 /* Port iteration functions.
477 * The client might not be entirely in control of the ports within an
478 * ofproto. Some hardware implementations, for example, might have a fixed
479 * set of ports in a datapath, and the Linux datapath allows the system
480 * administrator to externally add and remove ports with ovs-dpctl. For
481 * this reason, the client needs a way to iterate through all the ports
482 * that are actually in a datapath. These functions provide that
485 * The 'state' pointer provides the implementation a place to
486 * keep track of its position. Its format is opaque to the caller.
488 * The ofproto provider retains ownership of the data that it stores into
489 * ->port_dump_next()'s 'port' argument. The data must remain valid until
490 * at least the next call to ->port_dump_next() or ->port_dump_done() for
491 * 'state'. The caller will not modify or free it.
496 * ->port_dump_start() attempts to begin dumping the ports in 'ofproto'.
497 * On success, it should return 0 and initialize '*statep' with any data
498 * needed for iteration. On failure, returns a positive errno value, and
499 * the client will not call ->port_dump_next() or ->port_dump_done().
501 * ->port_dump_next() attempts to retrieve another port from 'ofproto' for
502 * 'state'. If there is another port, it should store the port's
503 * information into 'port' and return 0. It should return EOF if all ports
504 * have already been iterated. Otherwise, on error, it should return a
505 * positive errno value. This function will not be called again once it
506 * returns nonzero once for a given iteration (but the 'port_dump_done'
507 * function will be called afterward).
509 * ->port_dump_done() allows the implementation to release resources used
510 * for iteration. The caller might decide to stop iteration in the middle
511 * by calling this function before ->port_dump_next() returns nonzero.
519 * error = ofproto->ofproto_class->port_dump_start(ofproto, &state);
522 * struct ofproto_port port;
524 * error = ofproto->ofproto_class->port_dump_next(
525 * ofproto, state, &port);
529 * // Do something with 'port' here (without modifying or freeing
530 * // any of its data).
532 * ofproto->ofproto_class->port_dump_done(ofproto, state);
534 * // 'error' is now EOF (success) or a positive errno value (failure).
536 int (*port_dump_start)(const struct ofproto *ofproto, void **statep);
537 int (*port_dump_next)(const struct ofproto *ofproto, void *state,
538 struct ofproto_port *port);
539 int (*port_dump_done)(const struct ofproto *ofproto, void *state);
541 /* Polls for changes in the set of ports in 'ofproto'. If the set of ports
542 * in 'ofproto' has changed, then this function should do one of the
545 * - Preferably: store the name of the device that was added to or deleted
546 * from 'ofproto' in '*devnamep' and return 0. The caller is responsible
547 * for freeing '*devnamep' (with free()) when it no longer needs it.
549 * - Alternatively: return ENOBUFS, without indicating the device that was
552 * Occasional 'false positives', in which the function returns 0 while
553 * indicating a device that was not actually added or deleted or returns
554 * ENOBUFS without any change, are acceptable.
556 * The purpose of 'port_poll' is to let 'ofproto' know about changes made
557 * externally to the 'ofproto' object, e.g. by a system administrator via
558 * ovs-dpctl. Therefore, it's OK, and even preferable, for port_poll() to
559 * not report changes made through calls to 'port_add' or 'port_del' on the
560 * same 'ofproto' object. (But it's OK for it to report them too, just
561 * slightly less efficient.)
563 * If the set of ports in 'ofproto' has not changed, returns EAGAIN. May
564 * also return other positive errno values to indicate that something has
567 * If the set of ports in a datapath is fixed, or if the only way that the
568 * set of ports in a datapath can change is through ->port_add() and
569 * ->port_del(), then this function may be a null pointer.
571 int (*port_poll)(const struct ofproto *ofproto, char **devnamep);
573 /* Arranges for the poll loop to wake up when ->port_poll() will return a
574 * value other than EAGAIN.
576 * If the set of ports in a datapath is fixed, or if the only way that the
577 * set of ports in a datapath can change is through ->port_add() and
578 * ->port_del(), or if the poll loop will always wake up anyway when
579 * ->port_poll() will return a value other than EAGAIN, then this function
580 * may be a null pointer.
582 void (*port_poll_wait)(const struct ofproto *ofproto);
584 /* Checks the status of LACP negotiation for 'port'. Returns 1 if LACP
585 * partner information for 'port' is up-to-date, 0 if LACP partner
586 * information is not current (generally indicating a connectivity
587 * problem), or -1 if LACP is not enabled on 'port'.
589 * This function may be a null pointer if the ofproto implementation does
590 * not support LACP. */
591 int (*port_is_lacp_current)(const struct ofport *port);
593 /* ## ----------------------- ## */
594 /* ## OpenFlow Rule Functions ## */
595 /* ## ----------------------- ## */
599 /* Chooses an appropriate table for 'cls_rule' within 'ofproto'. On
600 * success, stores the table ID into '*table_idp' and returns 0. On
601 * failure, returns an OpenFlow error code (as returned by ofp_mkerr()).
603 * The choice of table should be a function of 'cls_rule' and 'ofproto''s
604 * datapath capabilities. It should not depend on the flows already in
605 * 'ofproto''s flow tables. Failure implies that an OpenFlow rule with
606 * 'cls_rule' as its matching condition can never be inserted into
607 * 'ofproto', even starting from an empty flow table.
609 * If multiple tables are candidates for inserting the flow, the function
610 * should choose one arbitrarily (but deterministically).
612 * If this function is NULL then table 0 is always chosen. */
613 int (*rule_choose_table)(const struct ofproto *ofproto,
614 const struct cls_rule *cls_rule,
617 /* Life-cycle functions for a "struct rule" (see "Life Cycle" above).
620 * Asynchronous Operation Support
621 * ==============================
623 * The life-cycle operations on rules can operate asynchronously, meaning
624 * that ->rule_construct() and ->rule_destruct() only need to initiate
625 * their respective operations and do not need to wait for them to complete
626 * before they return. ->rule_modify_actions() also operates
629 * An ofproto implementation reports the success or failure of an
630 * asynchronous operation on a rule using the rule's 'pending' member,
631 * which points to a opaque "struct ofoperation" that represents the
632 * ongoing opreation. When the operation completes, the ofproto
633 * implementation calls ofoperation_complete(), passing the ofoperation and
634 * an error indication.
636 * Only the following contexts may call ofoperation_complete():
638 * - The function called to initiate the operation,
639 * e.g. ->rule_construct() or ->rule_destruct(). This is the best
640 * choice if the operation completes quickly.
642 * - The implementation's ->run() function.
644 * - The implementation's ->destruct() function.
646 * The ofproto base code updates the flow table optimistically, assuming
647 * that the operation will probably succeed:
649 * - ofproto adds or replaces the rule in the flow table before calling
650 * ->rule_construct().
652 * - ofproto updates the rule's actions before calling
653 * ->rule_modify_actions().
655 * - ofproto removes the rule before calling ->rule_destruct().
657 * With one exception, when an asynchronous operation completes with an
658 * error, ofoperation_complete() backs out the already applied changes:
660 * - If adding or replacing a rule in the flow table fails, ofproto
661 * removes the new rule or restores the original rule.
663 * - If modifying a rule's actions fails, ofproto restores the original
666 * - Removing a rule is not allowed to fail. It must always succeed.
668 * The ofproto base code serializes operations: if any operation is in
669 * progress on a given rule, ofproto postpones initiating any new operation
670 * on that rule until the pending operation completes. Therefore, every
671 * operation must eventually complete through a call to
672 * ofoperation_complete() to avoid delaying new operations indefinitely
673 * (including any OpenFlow request that affects the rule in question, even
674 * just to query its statistics).
680 * When ->rule_construct() is called, the caller has already inserted
681 * 'rule' into 'rule->ofproto''s flow table numbered 'rule->table_id'.
682 * There are two cases:
684 * - 'rule' is a new rule in its flow table. In this case,
685 * ofoperation_get_victim(rule) returns NULL.
687 * - 'rule' is replacing an existing rule in its flow table that had the
688 * same matching criteria and priority. In this case,
689 * ofoperation_get_victim(rule) returns the rule being replaced.
691 * ->rule_construct() should set the following in motion:
693 * - Validate that the matching rule in 'rule->cr' is supported by the
694 * datapath. For example, if the rule's table does not support
695 * registers, then it is an error if 'rule->cr' does not wildcard all
698 * - Validate that 'rule->actions' and 'rule->n_actions' are well-formed
699 * OpenFlow actions that the datapath can correctly implement. The
700 * validate_actions() function (in ofp-util.c) can be useful as a model
701 * for action validation, but it accepts all of the OpenFlow actions
702 * that OVS understands. If your ofproto implementation only
703 * implements a subset of those, then you should implement your own
706 * - If the rule is valid, update the datapath flow table, adding the new
707 * rule or replacing the existing one.
709 * (On failure, the ofproto code will roll back the insertion from the flow
710 * table, either removing 'rule' or replacing it by the flow that was
711 * originally in its place.)
713 * ->rule_construct() must act in one of the following ways:
715 * - If it succeeds, it must call ofoperation_complete() and return 0.
717 * - If it fails, it must act in one of the following ways:
719 * * Call ofoperation_complete() and return 0.
721 * * Return an OpenFlow error code (as returned by ofp_mkerr()). (Do
722 * not call ofoperation_complete() in this case.)
724 * In the former case, ->rule_destruct() will be called; in the latter
725 * case, it will not. ->rule_dealloc() will be called in either case.
727 * - If the operation is only partially complete, then it must return 0.
728 * Later, when the operation is complete, the ->run() or ->destruct()
729 * function must call ofoperation_complete() to report success or
732 * ->rule_construct() should not modify any base members of struct rule.
738 * When ->rule_destruct() is called, the caller has already removed 'rule'
739 * from 'rule->ofproto''s flow table. ->rule_destruct() should set in
740 * motion removing 'rule' from the datapath flow table. If removal
741 * completes synchronously, it should call ofoperation_complete().
742 * Otherwise, the ->run() or ->destruct() function must later call
743 * ofoperation_complete() after the operation completes.
745 * Rule destruction must not fail. */
746 struct rule *(*rule_alloc)(void);
747 int (*rule_construct)(struct rule *rule);
748 void (*rule_destruct)(struct rule *rule);
749 void (*rule_dealloc)(struct rule *rule);
751 /* Obtains statistics for 'rule', storing the number of packets that have
752 * matched it in '*packet_count' and the number of bytes in those packets
753 * in '*byte_count'. UINT64_MAX indicates that the packet count or byte
754 * count is unknown. */
755 void (*rule_get_stats)(struct rule *rule, uint64_t *packet_count,
756 uint64_t *byte_count);
758 /* Applies the actions in 'rule' to 'packet'. (This implements sending
759 * buffered packets for OpenFlow OFPT_FLOW_MOD commands.)
761 * Takes ownership of 'packet' (so it should eventually free it, with
764 * 'flow' reflects the flow information for 'packet'. All of the
765 * information in 'flow' is extracted from 'packet', except for
766 * flow->tun_id and flow->in_port, which are assigned the correct values
767 * for the incoming packet. The register values are zeroed.
769 * The statistics for 'packet' should be included in 'rule'.
771 * Returns 0 if successful, otherwise an OpenFlow error code (as returned
772 * by ofp_mkerr()). */
773 int (*rule_execute)(struct rule *rule, struct flow *flow,
774 struct ofpbuf *packet);
776 /* When ->rule_modify_actions() is called, the caller has already replaced
777 * the OpenFlow actions in 'rule' by a new set. (The original actions are
778 * in rule->pending->actions.)
780 * ->rule_modify_actions() should set the following in motion:
782 * - Validate that the actions now in 'rule' are well-formed OpenFlow
783 * actions that the datapath can correctly implement.
785 * - Update the datapath flow table with the new actions.
787 * If the operation synchronously completes, ->rule_modify_actions() may
788 * call ofoperation_complete() before it returns. Otherwise, ->run()
789 * should call ofoperation_complete() later, after the operation does
792 * If the operation fails, then the base ofproto code will restore the
793 * original 'actions' and 'n_actions' of 'rule'.
795 * ->rule_modify_actions() should not modify any base members of struct
797 void (*rule_modify_actions)(struct rule *rule);
799 /* These functions implement the OpenFlow IP fragment handling policy. By
800 * default ('drop_frags' == false), an OpenFlow switch should treat IP
801 * fragments the same way as other packets (although TCP and UDP port
802 * numbers cannot be determined). With 'drop_frags' == true, the switch
803 * should drop all IP fragments without passing them through the flow
805 bool (*get_drop_frags)(struct ofproto *ofproto);
806 void (*set_drop_frags)(struct ofproto *ofproto, bool drop_frags);
808 /* Implements the OpenFlow OFPT_PACKET_OUT command. The datapath should
809 * execute the 'n_actions' in the 'actions' array on 'packet'.
811 * The caller retains ownership of 'packet', so ->packet_out() should not
814 * This function must validate that the 'n_actions' elements in 'actions'
815 * are well-formed OpenFlow actions that can be correctly implemented by
816 * the datapath. If not, then it should return an OpenFlow error code (as
817 * returned by ofp_mkerr()).
819 * 'flow' reflects the flow information for 'packet'. All of the
820 * information in 'flow' is extracted from 'packet', except for
821 * flow->in_port, which is taken from the OFPT_PACKET_OUT message.
822 * flow->tun_id and its register values are zeroed.
824 * 'packet' is not matched against the OpenFlow flow table, so its
825 * statistics should not be included in OpenFlow flow statistics.
827 * Returns 0 if successful, otherwise an OpenFlow error code (as returned
828 * by ofp_mkerr()). */
829 int (*packet_out)(struct ofproto *ofproto, struct ofpbuf *packet,
830 const struct flow *flow,
831 const union ofp_action *actions,
834 /* ## ------------------------- ## */
835 /* ## OFPP_NORMAL configuration ## */
836 /* ## ------------------------- ## */
838 /* Configures NetFlow on 'ofproto' according to the options in
839 * 'netflow_options', or turns off NetFlow if 'netflow_options' is NULL.
841 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
842 * NetFlow, as does a null pointer. */
843 int (*set_netflow)(struct ofproto *ofproto,
844 const struct netflow_options *netflow_options);
846 void (*get_netflow_ids)(const struct ofproto *ofproto,
847 uint8_t *engine_type, uint8_t *engine_id);
849 /* Configures sFlow on 'ofproto' according to the options in
850 * 'sflow_options', or turns off sFlow if 'sflow_options' is NULL.
852 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
853 * sFlow, as does a null pointer. */
854 int (*set_sflow)(struct ofproto *ofproto,
855 const struct ofproto_sflow_options *sflow_options);
857 /* Configures connectivity fault management on 'ofport'.
859 * If 'cfm_settings' is nonnull, configures CFM according to its members.
861 * If 'cfm_settings' is null, removes any connectivity fault management
862 * configuration from 'ofport'.
864 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
865 * support CFM, as does a null pointer. */
866 int (*set_cfm)(struct ofport *ofport, const struct cfm_settings *s);
868 /* Checks the fault status of CFM configured on 'ofport'. Returns 1 if CFM
869 * is faulted (generally indicating a connectivity problem), 0 if CFM is
870 * not faulted, or -1 if CFM is not enabled on 'port'
872 * This function may be a null pointer if the ofproto implementation does
873 * not support CFM. */
874 int (*get_cfm_fault)(const struct ofport *ofport);
876 /* If 's' is nonnull, this function registers a "bundle" associated with
877 * client data pointer 'aux' in 'ofproto'. A bundle is the same concept as
878 * a Port in OVSDB, that is, it consists of one or more "slave" devices
879 * (Interfaces, in OVSDB) along with VLAN and LACP configuration and, if
880 * there is more than one slave, a bonding configuration. If 'aux' is
881 * already registered then this function updates its configuration to 's'.
882 * Otherwise, this function registers a new bundle.
884 * If 's' is NULL, this function unregisters the bundle registered on
885 * 'ofproto' associated with client data pointer 'aux'. If no such bundle
886 * has been registered, this has no effect.
888 * This function affects only the behavior of the NXAST_AUTOPATH action and
889 * output to the OFPP_NORMAL port. An implementation that does not support
890 * it at all may set it to NULL or return EOPNOTSUPP. An implementation
891 * that supports only a subset of the functionality should implement what
892 * it can and return 0. */
893 int (*bundle_set)(struct ofproto *ofproto, void *aux,
894 const struct ofproto_bundle_settings *s);
896 /* If 'port' is part of any bundle, removes it from that bundle. If the
897 * bundle now has no ports, deletes the bundle. If the bundle now has only
898 * one port, deconfigures the bundle's bonding configuration. */
899 void (*bundle_remove)(struct ofport *ofport);
901 /* If 's' is nonnull, this function registers a mirror associated with
902 * client data pointer 'aux' in 'ofproto'. A mirror is the same concept as
903 * a Mirror in OVSDB. If 'aux' is already registered then this function
904 * updates its configuration to 's'. Otherwise, this function registers a
907 * If 's' is NULL, this function unregisters the mirror registered on
908 * 'ofproto' associated with client data pointer 'aux'. If no such mirror
909 * has been registered, this has no effect.
911 * This function affects only the behavior of the OFPP_NORMAL action. An
912 * implementation that does not support it at all may set it to NULL or
913 * return EOPNOTSUPP. An implementation that supports only a subset of the
914 * functionality should implement what it can and return 0. */
915 int (*mirror_set)(struct ofproto *ofproto, void *aux,
916 const struct ofproto_mirror_settings *s);
918 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs
919 * on which all packets are flooded, instead of using MAC learning. If
920 * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
922 * This function affects only the behavior of the OFPP_NORMAL action. An
923 * implementation that does not support it may set it to NULL or return
925 int (*set_flood_vlans)(struct ofproto *ofproto,
926 unsigned long *flood_vlans);
928 /* Returns true if 'aux' is a registered bundle that is currently in use as
929 * the output for a mirror. */
930 bool (*is_mirror_output_bundle)(struct ofproto *ofproto, void *aux);
932 /* When the configuration option of forward_bpdu changes, this function
933 * will be invoked. */
934 void (*forward_bpdu_changed)(struct ofproto *ofproto);
937 extern const struct ofproto_class ofproto_dpif_class;
939 int ofproto_class_register(const struct ofproto_class *);
940 int ofproto_class_unregister(const struct ofproto_class *);
942 void ofproto_add_flow(struct ofproto *, const struct cls_rule *,
943 const union ofp_action *, size_t n_actions);
944 bool ofproto_delete_flow(struct ofproto *, const struct cls_rule *);
945 void ofproto_flush_flows(struct ofproto *);
947 #endif /* ofproto/ofproto-provider.h */