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 char *mfr_desc; /* Manufacturer. */
45 char *hw_desc; /* Hardware. */
46 char *sw_desc; /* Software version. */
47 char *serial_desc; /* Serial number. */
48 char *dp_desc; /* Datapath description. */
51 struct hmap ports; /* Contains "struct ofport"s. */
52 struct shash port_by_name;
55 struct classifier *tables; /* Each classifier contains "struct rule"s. */
58 /* OpenFlow connections. */
59 struct connmgr *connmgr;
61 /* Flow table operation tracking. */
62 int state; /* Internal state. */
63 struct list pending; /* List of "struct ofopgroup"s. */
64 struct hmap deletions; /* All OFOPERATION_DELETE "ofoperation"s. */
67 struct ofproto *ofproto_lookup(const char *name);
68 struct ofport *ofproto_get_port(const struct ofproto *, uint16_t ofp_port);
70 /* An OpenFlow port within a "struct ofproto".
72 * With few exceptions, ofproto implementations may look at these fields but
73 * should not modify them. */
75 struct ofproto *ofproto; /* The ofproto that contains this port. */
76 struct hmap_node hmap_node; /* In struct ofproto's "ports" hmap. */
77 struct netdev *netdev;
78 struct ofp_phy_port opp;
79 uint16_t ofp_port; /* OpenFlow port number. */
80 unsigned int change_seq;
83 /* An OpenFlow flow within a "struct ofproto".
85 * With few exceptions, ofproto implementations may look at these fields but
86 * should not modify them. */
88 struct ofproto *ofproto; /* The ofproto that contains this rule. */
89 struct list ofproto_node; /* Owned by ofproto base code. */
90 struct cls_rule cr; /* In owning ofproto's classifier. */
92 struct ofoperation *pending; /* Operation now in progress, if nonnull. */
94 ovs_be64 flow_cookie; /* Controller-issued identifier. */
96 long long int created; /* Creation time. */
97 uint16_t idle_timeout; /* In seconds from time of last use. */
98 uint16_t hard_timeout; /* In seconds from time of creation. */
99 uint8_t table_id; /* Index in ofproto's 'tables' array. */
100 bool send_flow_removed; /* Send a flow removed message? */
102 union ofp_action *actions; /* OpenFlow actions. */
103 int n_actions; /* Number of elements in actions[]. */
106 static inline struct rule *
107 rule_from_cls_rule(const struct cls_rule *cls_rule)
109 return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
112 void ofproto_rule_expire(struct rule *, uint8_t reason);
113 void ofproto_rule_destroy(struct rule *);
115 void ofoperation_complete(struct ofoperation *, int status);
116 struct rule *ofoperation_get_victim(struct ofoperation *);
118 /* ofproto class structure, to be defined by each ofproto implementation.
124 * These functions work primarily with three different kinds of data
127 * - "struct ofproto", which represents an OpenFlow switch.
129 * - "struct ofport", which represents a port within an ofproto.
131 * - "struct rule", which represents an OpenFlow flow within an ofproto.
133 * Each of these data structures contains all of the implementation-independent
134 * generic state for the respective concept, called the "base" state. None of
135 * them contains any extra space for ofproto implementations to use. Instead,
136 * each implementation is expected to declare its own data structure that
137 * contains an instance of the generic data structure plus additional
138 * implementation-specific members, called the "derived" state. The
139 * implementation can use casts or (preferably) the CONTAINER_OF macro to
140 * obtain access to derived state given only a pointer to the embedded generic
147 * Four stylized functions accompany each of these data structures:
149 * "alloc" "construct" "destruct" "dealloc"
150 * ------------ ---------------- --------------- --------------
151 * ofproto ->alloc ->construct ->destruct ->dealloc
152 * ofport ->port_alloc ->port_construct ->port_destruct ->port_dealloc
153 * rule ->rule_alloc ->rule_construct ->rule_destruct ->rule_dealloc
155 * Any instance of a given data structure goes through the following life
158 * 1. The client calls the "alloc" function to obtain raw memory. If "alloc"
159 * fails, skip all the other steps.
161 * 2. The client initializes all of the data structure's base state. If this
162 * fails, skip to step 7.
164 * 3. The client calls the "construct" function. The implementation
165 * initializes derived state. It may refer to the already-initialized
166 * base state. If "construct" fails, skip to step 6.
168 * 4. The data structure is now initialized and in use.
170 * 5. When the data structure is no longer needed, the client calls the
171 * "destruct" function. The implementation uninitializes derived state.
172 * The base state has not been uninitialized yet, so the implementation
173 * may still refer to it.
175 * 6. The client uninitializes all of the data structure's base state.
177 * 7. The client calls the "dealloc" to free the raw memory. The
178 * implementation must not refer to base or derived state in the data
179 * structure, because it has already been uninitialized.
181 * Each "alloc" function allocates and returns a new instance of the respective
182 * data structure. The "alloc" function is not given any information about the
183 * use of the new data structure, so it cannot perform much initialization.
184 * Its purpose is just to ensure that the new data structure has enough room
185 * for base and derived state. It may return a null pointer if memory is not
186 * available, in which case none of the other functions is called.
188 * Each "construct" function initializes derived state in its respective data
189 * structure. When "construct" is called, all of the base state has already
190 * been initialized, so the "construct" function may refer to it. The
191 * "construct" function is allowed to fail, in which case the client calls the
192 * "dealloc" function (but not the "destruct" function).
194 * Each "destruct" function uninitializes and frees derived state in its
195 * respective data structure. When "destruct" is called, the base state has
196 * not yet been uninitialized, so the "destruct" function may refer to it. The
197 * "destruct" function is not allowed to fail.
199 * Each "dealloc" function frees raw memory that was allocated by the the
200 * "alloc" function. The memory's base and derived members might not have ever
201 * been initialized (but if "construct" returned successfully, then it has been
202 * "destruct"ed already). The "dealloc" function is not allowed to fail.
208 * Most of these functions return 0 if they are successful or a positive error
209 * code on failure. Depending on the function, valid error codes are either
210 * errno values or OpenFlow error codes constructed with ofp_mkerr().
212 * Most of these functions are expected to execute synchronously, that is, to
213 * block as necessary to obtain a result. Thus, these functions may return
214 * EAGAIN (or EWOULDBLOCK or EINPROGRESS) only where the function descriptions
215 * explicitly say those errors are a possibility. We may relax this
216 * requirement in the future if and when we encounter performance problems. */
217 struct ofproto_class {
218 /* ## ----------------- ## */
219 /* ## Factory Functions ## */
220 /* ## ----------------- ## */
222 /* Enumerates the types of all support ofproto types into 'types'. The
223 * caller has already initialized 'types' and other ofproto classes might
224 * already have added names to it. */
225 void (*enumerate_types)(struct sset *types);
227 /* Enumerates the names of all existing datapath of the specified 'type'
228 * into 'names' 'all_dps'. The caller has already initialized 'names' as
231 * 'type' is one of the types enumerated by ->enumerate_types().
233 * Returns 0 if successful, otherwise a positive errno value.
235 int (*enumerate_names)(const char *type, struct sset *names);
237 /* Deletes the datapath with the specified 'type' and 'name'. The caller
238 * should have closed any open ofproto with this 'type' and 'name'; this
239 * function is allowed to fail if that is not the case.
241 * 'type' is one of the types enumerated by ->enumerate_types().
242 * 'name' is one of the names enumerated by ->enumerate_names() for 'type'.
244 * Returns 0 if successful, otherwise a positive errno value.
246 int (*del)(const char *type, const char *name);
248 /* ## --------------------------- ## */
249 /* ## Top-Level ofproto Functions ## */
250 /* ## --------------------------- ## */
252 /* Life-cycle functions for an "ofproto" (see "Life Cycle" above).
258 * ->construct() should not modify most base members of the ofproto. In
259 * particular, the client will initialize the ofproto's 'ports' member
260 * after construction is complete.
262 * ->construct() should initialize the base 'n_tables' member to the number
263 * of flow tables supported by the datapath (between 1 and 255, inclusive),
264 * initialize the base 'tables' member with space for one classifier per
265 * table, and initialize each classifier with classifier_init. Each flow
266 * table should be initially empty, so ->construct() should delete flows
267 * from the underlying datapath, if necessary, rather than populating the
270 * Only one ofproto instance needs to be supported for any given datapath.
271 * If a datapath is already open as part of one "ofproto", then another
272 * attempt to "construct" the same datapath as part of another ofproto is
273 * allowed to fail with an error.
275 * ->construct() returns 0 if successful, otherwise a positive errno
282 * ->destruct() must do at least the following:
284 * - If 'ofproto' has any pending asynchronous operations, ->destruct()
285 * must complete all of them by calling ofoperation_complete().
287 * - If 'ofproto' has any rules left in any of its flow tables, ->
289 struct ofproto *(*alloc)(void);
290 int (*construct)(struct ofproto *ofproto);
291 void (*destruct)(struct ofproto *ofproto);
292 void (*dealloc)(struct ofproto *ofproto);
294 /* Performs any periodic activity required by 'ofproto'. It should:
296 * - Call connmgr_send_packet_in() for each received packet that missed
297 * in the OpenFlow flow table or that had a OFPP_CONTROLLER output
300 * - Call ofproto_rule_expire() for each OpenFlow flow that has reached
301 * its hard_timeout or idle_timeout, to expire the flow.
303 * Returns 0 if successful, otherwise a positive errno value. The ENODEV
304 * return value specifically means that the datapath underlying 'ofproto'
305 * has been destroyed (externally, e.g. by an admin running ovs-dpctl).
307 int (*run)(struct ofproto *ofproto);
309 /* Causes the poll loop to wake up when 'ofproto''s 'run' function needs to
310 * be called, e.g. by calling the timer or fd waiting functions in
312 void (*wait)(struct ofproto *ofproto);
314 /* Every "struct rule" in 'ofproto' is about to be deleted, one by one.
315 * This function may prepare for that, for example by clearing state in
316 * advance. It should *not* actually delete any "struct rule"s from
317 * 'ofproto', only prepare for it.
319 * This function is optional; it's really just for optimization in case
320 * it's cheaper to delete all the flows from your hardware in a single pass
321 * than to do it one by one. */
322 void (*flush)(struct ofproto *ofproto);
324 /* Helper for the OpenFlow OFPT_FEATURES_REQUEST request.
326 * The implementation should store true in '*arp_match_ip' if the switch
327 * supports matching IP addresses inside ARP requests and replies, false
330 * The implementation should store in '*actions' a bitmap of the supported
331 * OpenFlow actions: the bit with value (1 << n) should be set to 1 if the
332 * implementation supports the action with value 'n', and to 0 otherwise.
333 * For example, if the implementation supports the OFPAT_OUTPUT and
334 * OFPAT_ENQUEUE actions, but no others, it would set '*actions' to (1 <<
335 * OFPAT_OUTPUT) | (1 << OFPAT_ENQUEUE). Vendor actions are not included
337 void (*get_features)(struct ofproto *ofproto,
338 bool *arp_match_ip, uint32_t *actions);
340 /* Helper for the OpenFlow OFPST_TABLE statistics request.
342 * The 'ots' array contains 'ofproto->n_tables' elements. Each element is
345 * - 'table_id' to the array index.
347 * - 'name' to "table#" where # is the table ID.
349 * - 'wildcards' to OFPFW_ALL.
351 * - 'max_entries' to 1,000,000.
353 * - 'active_count' to the classifier_count() for the table.
355 * - 'lookup_count' and 'matched_count' to 0.
357 * The implementation should update any members in each element for which
358 * it has better values:
360 * - 'name' to a more meaningful name.
362 * - 'wildcards' to the set of wildcards actually supported by the table
363 * (if it doesn't support all OpenFlow wildcards).
365 * - 'max_entries' to the maximum number of flows actually supported by
368 * - 'lookup_count' to the number of packets looked up in this flow table
371 * - 'matched_count' to the number of packets looked up in this flow
372 * table so far that matched one of the flow entries.
374 * Keep in mind that all of the members of struct ofp_table_stats are in
375 * network byte order.
377 void (*get_tables)(struct ofproto *ofproto, struct ofp_table_stats *ots);
379 /* ## ---------------- ## */
380 /* ## ofport Functions ## */
381 /* ## ---------------- ## */
383 /* Life-cycle functions for a "struct ofport" (see "Life Cycle" above).
385 * ->port_construct() should not modify any base members of the ofport.
387 * ofports are managed by the base ofproto code. The ofproto
388 * implementation should only create and destroy them in response to calls
389 * to these functions. The base ofproto code will create and destroy
390 * ofports in the following situations:
392 * - Just after the ->construct() function is called, the base ofproto
393 * iterates over all of the implementation's ports, using
394 * ->port_dump_start() and related functions, and constructs an ofport
395 * for each dumped port.
397 * - If ->port_poll() reports that a specific port has changed, then the
398 * base ofproto will query that port with ->port_query_by_name() and
399 * construct or destruct ofports as necessary to reflect the updated
402 * - If ->port_poll() returns ENOBUFS to report an unspecified port set
403 * change, then the base ofproto will iterate over all of the
404 * implementation's ports, in the same way as at ofproto
405 * initialization, and construct and destruct ofports to reflect all of
408 * ->port_construct() returns 0 if successful, otherwise a positive errno
411 struct ofport *(*port_alloc)(void);
412 int (*port_construct)(struct ofport *ofport);
413 void (*port_destruct)(struct ofport *ofport);
414 void (*port_dealloc)(struct ofport *ofport);
416 /* Called after 'ofport->netdev' is replaced by a new netdev object. If
417 * the ofproto implementation uses the ofport's netdev internally, then it
418 * should switch to using the new one. The old one has been closed.
420 * An ofproto implementation that doesn't need to do anything in this
421 * function may use a null pointer. */
422 void (*port_modified)(struct ofport *ofport);
424 /* Called after an OpenFlow OFPT_PORT_MOD request changes a port's
425 * configuration. 'ofport->opp.config' contains the new configuration.
426 * 'old_config' contains the previous configuration.
428 * The caller implements OFPPC_PORT_DOWN using netdev functions to turn
429 * NETDEV_UP on and off, so this function doesn't have to do anything for
430 * that bit (and it won't be called if that is the only bit that
432 void (*port_reconfigured)(struct ofport *ofport, ovs_be32 old_config);
434 /* Looks up a port named 'devname' in 'ofproto'. On success, initializes
435 * '*port' appropriately.
437 * The caller owns the data in 'port' and must free it with
438 * ofproto_port_destroy() when it is no longer needed. */
439 int (*port_query_by_name)(const struct ofproto *ofproto,
440 const char *devname, struct ofproto_port *port);
442 /* Attempts to add 'netdev' as a port on 'ofproto'. Returns 0 if
443 * successful, otherwise a positive errno value. If successful, sets
444 * '*ofp_portp' to the new port's port number.
446 * It doesn't matter whether the new port will be returned by a later call
447 * to ->port_poll(); the implementation may do whatever is more
449 int (*port_add)(struct ofproto *ofproto, struct netdev *netdev,
450 uint16_t *ofp_portp);
452 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'. Returns
453 * 0 if successful, otherwise a positive errno value.
455 * It doesn't matter whether the new port will be returned by a later call
456 * to ->port_poll(); the implementation may do whatever is more
458 int (*port_del)(struct ofproto *ofproto, uint16_t ofp_port);
460 /* Port iteration functions.
462 * The client might not be entirely in control of the ports within an
463 * ofproto. Some hardware implementations, for example, might have a fixed
464 * set of ports in a datapath, and the Linux datapath allows the system
465 * administrator to externally add and remove ports with ovs-dpctl. For
466 * this reason, the client needs a way to iterate through all the ports
467 * that are actually in a datapath. These functions provide that
470 * The 'state' pointer provides the implementation a place to
471 * keep track of its position. Its format is opaque to the caller.
473 * The ofproto provider retains ownership of the data that it stores into
474 * ->port_dump_next()'s 'port' argument. The data must remain valid until
475 * at least the next call to ->port_dump_next() or ->port_dump_done() for
476 * 'state'. The caller will not modify or free it.
481 * ->port_dump_start() attempts to begin dumping the ports in 'ofproto'.
482 * On success, it should return 0 and initialize '*statep' with any data
483 * needed for iteration. On failure, returns a positive errno value, and
484 * the client will not call ->port_dump_next() or ->port_dump_done().
486 * ->port_dump_next() attempts to retrieve another port from 'ofproto' for
487 * 'state'. If there is another port, it should store the port's
488 * information into 'port' and return 0. It should return EOF if all ports
489 * have already been iterated. Otherwise, on error, it should return a
490 * positive errno value. This function will not be called again once it
491 * returns nonzero once for a given iteration (but the 'port_dump_done'
492 * function will be called afterward).
494 * ->port_dump_done() allows the implementation to release resources used
495 * for iteration. The caller might decide to stop iteration in the middle
496 * by calling this function before ->port_dump_next() returns nonzero.
504 * error = ofproto->ofproto_class->port_dump_start(ofproto, &state);
507 * struct ofproto_port port;
509 * error = ofproto->ofproto_class->port_dump_next(
510 * ofproto, state, &port);
514 * // Do something with 'port' here (without modifying or freeing
515 * // any of its data).
517 * ofproto->ofproto_class->port_dump_done(ofproto, state);
519 * // 'error' is now EOF (success) or a positive errno value (failure).
521 int (*port_dump_start)(const struct ofproto *ofproto, void **statep);
522 int (*port_dump_next)(const struct ofproto *ofproto, void *state,
523 struct ofproto_port *port);
524 int (*port_dump_done)(const struct ofproto *ofproto, void *state);
526 /* Polls for changes in the set of ports in 'ofproto'. If the set of ports
527 * in 'ofproto' has changed, then this function should do one of the
530 * - Preferably: store the name of the device that was added to or deleted
531 * from 'ofproto' in '*devnamep' and return 0. The caller is responsible
532 * for freeing '*devnamep' (with free()) when it no longer needs it.
534 * - Alternatively: return ENOBUFS, without indicating the device that was
537 * Occasional 'false positives', in which the function returns 0 while
538 * indicating a device that was not actually added or deleted or returns
539 * ENOBUFS without any change, are acceptable.
541 * The purpose of 'port_poll' is to let 'ofproto' know about changes made
542 * externally to the 'ofproto' object, e.g. by a system administrator via
543 * ovs-dpctl. Therefore, it's OK, and even preferable, for port_poll() to
544 * not report changes made through calls to 'port_add' or 'port_del' on the
545 * same 'ofproto' object. (But it's OK for it to report them too, just
546 * slightly less efficient.)
548 * If the set of ports in 'ofproto' has not changed, returns EAGAIN. May
549 * also return other positive errno values to indicate that something has
552 * If the set of ports in a datapath is fixed, or if the only way that the
553 * set of ports in a datapath can change is through ->port_add() and
554 * ->port_del(), then this function may be a null pointer.
556 int (*port_poll)(const struct ofproto *ofproto, char **devnamep);
558 /* Arranges for the poll loop to wake up when ->port_poll() will return a
559 * value other than EAGAIN.
561 * If the set of ports in a datapath is fixed, or if the only way that the
562 * set of ports in a datapath can change is through ->port_add() and
563 * ->port_del(), or if the poll loop will always wake up anyway when
564 * ->port_poll() will return a value other than EAGAIN, then this function
565 * may be a null pointer.
567 void (*port_poll_wait)(const struct ofproto *ofproto);
569 /* Checks the status of LACP negotiation for 'port'. Returns 1 if LACP
570 * partner information for 'port' is up-to-date, 0 if LACP partner
571 * information is not current (generally indicating a connectivity
572 * problem), or -1 if LACP is not enabled on 'port'.
574 * This function may be a null pointer if the ofproto implementation does
575 * not support LACP. */
576 int (*port_is_lacp_current)(const struct ofport *port);
578 /* ## ----------------------- ## */
579 /* ## OpenFlow Rule Functions ## */
580 /* ## ----------------------- ## */
584 /* Chooses an appropriate table for 'cls_rule' within 'ofproto'. On
585 * success, stores the table ID into '*table_idp' and returns 0. On
586 * failure, returns an OpenFlow error code (as returned by ofp_mkerr()).
588 * The choice of table should be a function of 'cls_rule' and 'ofproto''s
589 * datapath capabilities. It should not depend on the flows already in
590 * 'ofproto''s flow tables. Failure implies that an OpenFlow rule with
591 * 'cls_rule' as its matching condition can never be inserted into
592 * 'ofproto', even starting from an empty flow table.
594 * If multiple tables are candidates for inserting the flow, the function
595 * should choose one arbitrarily (but deterministically).
597 * This function will never be called for an ofproto that has only one
598 * table, so it may be NULL in that case. */
599 int (*rule_choose_table)(const struct ofproto *ofproto,
600 const struct cls_rule *cls_rule,
603 /* Life-cycle functions for a "struct rule" (see "Life Cycle" above).
606 * Asynchronous Operation Support
607 * ==============================
609 * The life-cycle operations on rules can operate asynchronously, meaning
610 * that ->rule_construct() and ->rule_destruct() only need to initiate
611 * their respective operations and do not need to wait for them to complete
612 * before they return. ->rule_modify_actions() also operates
615 * An ofproto implementation reports the success or failure of an
616 * asynchronous operation on a rule using the rule's 'pending' member,
617 * which points to a opaque "struct ofoperation" that represents the
618 * ongoing opreation. When the operation completes, the ofproto
619 * implementation calls ofoperation_complete(), passing the ofoperation and
620 * an error indication.
622 * Only the following contexts may call ofoperation_complete():
624 * - The function called to initiate the operation,
625 * e.g. ->rule_construct() or ->rule_destruct(). This is the best
626 * choice if the operation completes quickly.
628 * - The implementation's ->run() function.
630 * - The implementation's ->destruct() function.
632 * The ofproto base code updates the flow table optimistically, assuming
633 * that the operation will probably succeed:
635 * - ofproto adds or replaces the rule in the flow table before calling
636 * ->rule_construct().
638 * - ofproto updates the rule's actions before calling
639 * ->rule_modify_actions().
641 * - ofproto removes the rule before calling ->rule_destruct().
643 * With one exception, when an asynchronous operation completes with an
644 * error, ofoperation_complete() backs out the already applied changes:
646 * - If adding or replacing a rule in the flow table fails, ofproto
647 * removes the new rule or restores the original rule.
649 * - If modifying a rule's actions fails, ofproto restores the original
652 * - Removing a rule is not allowed to fail. It must always succeed.
654 * The ofproto base code serializes operations: if any operation is in
655 * progress on a given rule, ofproto postpones initiating any new operation
656 * on that rule until the pending operation completes. Therefore, every
657 * operation must eventually complete through a call to
658 * ofoperation_complete() to avoid delaying new operations indefinitely
659 * (including any OpenFlow request that affects the rule in question, even
660 * just to query its statistics).
666 * When ->rule_construct() is called, the caller has already inserted
667 * 'rule' into 'rule->ofproto''s flow table numbered 'rule->table_id'.
668 * There are two cases:
670 * - 'rule' is a new rule in its flow table. In this case,
671 * ofoperation_get_victim(rule) returns NULL.
673 * - 'rule' is replacing an existing rule in its flow table that had the
674 * same matching criteria and priority. In this case,
675 * ofoperation_get_victim(rule) returns the rule being replaced.
677 * ->rule_construct() should set the following in motion:
679 * - Validate that the matching rule in 'rule->cr' is supported by the
680 * datapath. For example, if the rule's table does not support
681 * registers, then it is an error if 'rule->cr' does not wildcard all
684 * - Validate that 'rule->actions' and 'rule->n_actions' are well-formed
685 * OpenFlow actions that the datapath can correctly implement. The
686 * validate_actions() function (in ofp-util.c) can be useful as a model
687 * for action validation, but it accepts all of the OpenFlow actions
688 * that OVS understands. If your ofproto implementation only
689 * implements a subset of those, then you should implement your own
692 * - If the rule is valid, update the datapath flow table, adding the new
693 * rule or replacing the existing one.
695 * (On failure, the ofproto code will roll back the insertion from the flow
696 * table, either removing 'rule' or replacing it by the flow that was
697 * originally in its place.)
699 * ->rule_construct() must act in one of the following ways:
701 * - If it succeeds, it must call ofoperation_complete() and return 0.
703 * - If it fails, it must act in one of the following ways:
705 * * Call ofoperation_complete() and return 0.
707 * * Return an OpenFlow error code (as returned by ofp_mkerr()). (Do
708 * not call ofoperation_complete() in this case.)
710 * In the former case, ->rule_destruct() will be called; in the latter
711 * case, it will not. ->rule_dealloc() will be called in either case.
713 * - If the operation is only partially complete, then it must return 0.
714 * Later, when the operation is complete, the ->run() or ->destruct()
715 * function must call ofoperation_complete() to report success or
718 * ->rule_construct() should not modify any base members of struct rule.
724 * When ->rule_destruct() is called, the caller has already removed 'rule'
725 * from 'rule->ofproto''s flow table. ->rule_destruct() should set in
726 * motion removing 'rule' from the datapath flow table. If removal
727 * completes synchronously, it should call ofoperation_complete().
728 * Otherwise, the ->run() or ->destruct() function must later call
729 * ofoperation_complete() after the operation completes.
731 * Rule destruction must not fail. */
732 struct rule *(*rule_alloc)(void);
733 int (*rule_construct)(struct rule *rule);
734 void (*rule_destruct)(struct rule *rule);
735 void (*rule_dealloc)(struct rule *rule);
737 /* Obtains statistics for 'rule', storing the number of packets that have
738 * matched it in '*packet_count' and the number of bytes in those packets
739 * in '*byte_count'. UINT64_MAX indicates that the packet count or byte
740 * count is unknown. */
741 void (*rule_get_stats)(struct rule *rule, uint64_t *packet_count,
742 uint64_t *byte_count);
744 /* Applies the actions in 'rule' to 'packet'. (This implements sending
745 * buffered packets for OpenFlow OFPT_FLOW_MOD commands.)
747 * Takes ownership of 'packet' (so it should eventually free it, with
750 * 'flow' reflects the flow information for 'packet'. All of the
751 * information in 'flow' is extracted from 'packet', except for
752 * flow->tun_id and flow->in_port, which are assigned the correct values
753 * for the incoming packet. The register values are zeroed.
755 * The statistics for 'packet' should be included in 'rule'.
757 * Returns 0 if successful, otherwise an OpenFlow error code (as returned
758 * by ofp_mkerr()). */
759 int (*rule_execute)(struct rule *rule, struct flow *flow,
760 struct ofpbuf *packet);
762 /* When ->rule_modify_actions() is called, the caller has already replaced
763 * the OpenFlow actions in 'rule' by a new set. (The original actions are
764 * in rule->pending->actions.)
766 * ->rule_modify_actions() should set the following in motion:
768 * - Validate that the actions now in 'rule' are well-formed OpenFlow
769 * actions that the datapath can correctly implement.
771 * - Update the datapath flow table with the new actions.
773 * If the operation synchronously completes, ->rule_modify_actions() may
774 * call ofoperation_complete() before it returns. Otherwise, ->run()
775 * should call ofoperation_complete() later, after the operation does
778 * If the operation fails, then the base ofproto code will restore the
779 * original 'actions' and 'n_actions' of 'rule'.
781 * ->rule_modify_actions() should not modify any base members of struct
783 void (*rule_modify_actions)(struct rule *rule);
785 /* These functions implement the OpenFlow IP fragment handling policy. By
786 * default ('drop_frags' == false), an OpenFlow switch should treat IP
787 * fragments the same way as other packets (although TCP and UDP port
788 * numbers cannot be determined). With 'drop_frags' == true, the switch
789 * should drop all IP fragments without passing them through the flow
791 bool (*get_drop_frags)(struct ofproto *ofproto);
792 void (*set_drop_frags)(struct ofproto *ofproto, bool drop_frags);
794 /* Implements the OpenFlow OFPT_PACKET_OUT command. The datapath should
795 * execute the 'n_actions' in the 'actions' array on 'packet'.
797 * The caller retains ownership of 'packet', so ->packet_out() should not
800 * This function must validate that the 'n_actions' elements in 'actions'
801 * are well-formed OpenFlow actions that can be correctly implemented by
802 * the datapath. If not, then it should return an OpenFlow error code (as
803 * returned by ofp_mkerr()).
805 * 'flow' reflects the flow information for 'packet'. All of the
806 * information in 'flow' is extracted from 'packet', except for
807 * flow->in_port, which is taken from the OFPT_PACKET_OUT message.
808 * flow->tun_id and its register values are zeroed.
810 * 'packet' is not matched against the OpenFlow flow table, so its
811 * statistics should not be included in OpenFlow flow statistics.
813 * Returns 0 if successful, otherwise an OpenFlow error code (as returned
814 * by ofp_mkerr()). */
815 int (*packet_out)(struct ofproto *ofproto, struct ofpbuf *packet,
816 const struct flow *flow,
817 const union ofp_action *actions,
820 /* ## ------------------------- ## */
821 /* ## OFPP_NORMAL configuration ## */
822 /* ## ------------------------- ## */
824 /* Configures NetFlow on 'ofproto' according to the options in
825 * 'netflow_options', or turns off NetFlow if 'netflow_options' is NULL.
827 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
828 * NetFlow, as does a null pointer. */
829 int (*set_netflow)(struct ofproto *ofproto,
830 const struct netflow_options *netflow_options);
832 void (*get_netflow_ids)(const struct ofproto *ofproto,
833 uint8_t *engine_type, uint8_t *engine_id);
835 /* Configures sFlow on 'ofproto' according to the options in
836 * 'sflow_options', or turns off sFlow if 'sflow_options' is NULL.
838 * EOPNOTSUPP as a return value indicates that 'ofproto' does not support
839 * sFlow, as does a null pointer. */
840 int (*set_sflow)(struct ofproto *ofproto,
841 const struct ofproto_sflow_options *sflow_options);
843 /* Configures connectivity fault management on 'ofport'.
845 * If 'cfm_settings' is nonnull, configures CFM according to its members.
847 * If 'cfm_settings' is null, removes any connectivity fault management
848 * configuration from 'ofport'.
850 * EOPNOTSUPP as a return value indicates that this ofproto_class does not
851 * support CFM, as does a null pointer. */
852 int (*set_cfm)(struct ofport *ofport, const struct cfm_settings *s);
854 /* Checks the fault status of CFM configured on 'ofport'. Returns 1 if CFM
855 * is faulted (generally indicating a connectivity problem), 0 if CFM is
856 * not faulted, or -1 if CFM is not enabled on 'port'
858 * This function may be a null pointer if the ofproto implementation does
859 * not support CFM. */
860 int (*get_cfm_fault)(const struct ofport *ofport);
862 /* If 's' is nonnull, this function registers a "bundle" associated with
863 * client data pointer 'aux' in 'ofproto'. A bundle is the same concept as
864 * a Port in OVSDB, that is, it consists of one or more "slave" devices
865 * (Interfaces, in OVSDB) along with VLAN and LACP configuration and, if
866 * there is more than one slave, a bonding configuration. If 'aux' is
867 * already registered then this function updates its configuration to 's'.
868 * Otherwise, this function registers a new bundle.
870 * If 's' is NULL, this function unregisters the bundle registered on
871 * 'ofproto' associated with client data pointer 'aux'. If no such bundle
872 * has been registered, this has no effect.
874 * This function affects only the behavior of the NXAST_AUTOPATH action and
875 * output to the OFPP_NORMAL port. An implementation that does not support
876 * it at all may set it to NULL or return EOPNOTSUPP. An implementation
877 * that supports only a subset of the functionality should implement what
878 * it can and return 0. */
879 int (*bundle_set)(struct ofproto *ofproto, void *aux,
880 const struct ofproto_bundle_settings *s);
882 /* If 'port' is part of any bundle, removes it from that bundle. If the
883 * bundle now has no ports, deletes the bundle. If the bundle now has only
884 * one port, deconfigures the bundle's bonding configuration. */
885 void (*bundle_remove)(struct ofport *ofport);
887 /* If 's' is nonnull, this function registers a mirror associated with
888 * client data pointer 'aux' in 'ofproto'. A mirror is the same concept as
889 * a Mirror in OVSDB. If 'aux' is already registered then this function
890 * updates its configuration to 's'. Otherwise, this function registers a
893 * If 's' is NULL, this function unregisters the mirror registered on
894 * 'ofproto' associated with client data pointer 'aux'. If no such mirror
895 * has been registered, this has no effect.
897 * This function affects only the behavior of the OFPP_NORMAL action. An
898 * implementation that does not support it at all may set it to NULL or
899 * return EOPNOTSUPP. An implementation that supports only a subset of the
900 * functionality should implement what it can and return 0. */
901 int (*mirror_set)(struct ofproto *ofproto, void *aux,
902 const struct ofproto_mirror_settings *s);
904 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs
905 * on which all packets are flooded, instead of using MAC learning. If
906 * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
908 * This function affects only the behavior of the OFPP_NORMAL action. An
909 * implementation that does not support it may set it to NULL or return
911 int (*set_flood_vlans)(struct ofproto *ofproto,
912 unsigned long *flood_vlans);
914 /* Returns true if 'aux' is a registered bundle that is currently in use as
915 * the output for a mirror. */
916 bool (*is_mirror_output_bundle)(struct ofproto *ofproto, void *aux);
919 extern const struct ofproto_class ofproto_dpif_class;
921 int ofproto_class_register(const struct ofproto_class *);
922 int ofproto_class_unregister(const struct ofproto_class *);
924 void ofproto_add_flow(struct ofproto *, const struct cls_rule *,
925 const union ofp_action *, size_t n_actions);
926 bool ofproto_delete_flow(struct ofproto *, const struct cls_rule *);
927 void ofproto_flush_flows(struct ofproto *);
929 #endif /* ofproto/ofproto-provider.h */