]> git.proxmox.com Git - ovs.git/blame - lib/dpif-provider.h
ofproto-dpif: Delete MAC learning entries when they expire.
[ovs.git] / lib / dpif-provider.h
CommitLineData
96fba48f 1/*
1ba530f4 2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
96fba48f
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef DPIF_PROVIDER_H
18#define DPIF_PROVIDER_H 1
19
20/* Provider interface to dpifs, which provide an interface to an Open vSwitch
bc34d060
BP
21 * datapath. A datapath is a collection of physical or virtual ports that are
22 * exposed over OpenFlow as a single switch. Datapaths and the collections of
23 * ports that they contain may be fixed or dynamic. */
96fba48f
BP
24
25#include <assert.h>
43253595 26#include "openflow/openflow.h"
96fba48f 27#include "dpif.h"
43253595 28#include "util.h"
96fba48f 29
1acb6baa
BP
30#ifdef __cplusplus
31extern "C" {
32#endif
33
96fba48f
BP
34/* Open vSwitch datapath interface.
35 *
36 * This structure should be treated as opaque by dpif implementations. */
37struct dpif {
1acb6baa 38 const struct dpif_class *dpif_class;
1a6f1e2a
JG
39 char *base_name;
40 char *full_name;
96fba48f
BP
41 uint8_t netflow_engine_type;
42 uint8_t netflow_engine_id;
43};
44
45void dpif_init(struct dpif *, const struct dpif_class *, const char *name,
46 uint8_t netflow_engine_type, uint8_t netflow_engine_id);
999401aa
JG
47void dpif_uninit(struct dpif *dpif, bool close);
48
96fba48f 49static inline void dpif_assert_class(const struct dpif *dpif,
1acb6baa 50 const struct dpif_class *dpif_class)
96fba48f 51{
1acb6baa 52 assert(dpif->dpif_class == dpif_class);
96fba48f
BP
53}
54
55/* Datapath interface class structure, to be defined by each implementation of
f20279af 56 * a datapath interface.
96fba48f
BP
57 *
58 * These functions return 0 if successful or a positive errno value on failure,
59 * except where otherwise noted.
60 *
61 * These functions are expected to execute synchronously, that is, to block as
62 * necessary to obtain a result. Thus, they may not return EAGAIN or
63 * EWOULDBLOCK or EINPROGRESS. We may relax this requirement in the future if
64 * and when we encounter performance problems. */
65struct dpif_class {
1a6f1e2a 66 /* Type of dpif in this class, e.g. "system", "netdev", etc.
96fba48f 67 *
1a6f1e2a
JG
68 * One of the providers should supply a "system" type, since this is
69 * the type assumed if no type is specified when opening a dpif. */
70 const char *type;
96fba48f 71
d3d22744
BP
72 /* Enumerates the names of all known created datapaths, if possible, into
73 * 'all_dps'. The caller has already initialized 'all_dps' and other dpif
74 * classes might already have added names to it.
75 *
76 * This is used by the vswitch at startup, so that it can delete any
77 * datapaths that are not configured.
78 *
79 * Some kinds of datapaths might not be practically enumerable, in which
80 * case this function may be a null pointer. */
d0c23a1a 81 int (*enumerate)(struct sset *all_dps);
d3d22744 82
1a6f1e2a
JG
83 /* Attempts to open an existing dpif called 'name', if 'create' is false,
84 * or to open an existing dpif or create a new one, if 'create' is true.
96fba48f 85 *
4a387741
BP
86 * 'dpif_class' is the class of dpif to open.
87 *
88 * If successful, stores a pointer to the new dpif in '*dpifp', which must
89 * have class 'dpif_class'. On failure there are no requirements on what
90 * is stored in '*dpifp'. */
91 int (*open)(const struct dpif_class *dpif_class,
92 const char *name, bool create, struct dpif **dpifp);
96fba48f
BP
93
94 /* Closes 'dpif' and frees associated memory. */
95 void (*close)(struct dpif *dpif);
96
97 /* Attempts to destroy the dpif underlying 'dpif'.
98 *
99 * If successful, 'dpif' will not be used again except as an argument for
100 * the 'close' member function. */
1acb6baa 101 int (*destroy)(struct dpif *dpif);
96fba48f 102
640e1b20
BP
103 /* Performs periodic work needed by 'dpif', if any is necessary. */
104 void (*run)(struct dpif *dpif);
105
106 /* Arranges for poll_block() to wake up if the "run" member function needs
107 * to be called for 'dpif'. */
108 void (*wait)(struct dpif *dpif);
109
96fba48f
BP
110 /* Retrieves statistics for 'dpif' into 'stats'. */
111 int (*get_stats)(const struct dpif *dpif, struct odp_stats *stats);
112
113 /* Retrieves 'dpif''s current treatment of IP fragments into '*drop_frags':
114 * true indicates that fragments are dropped, false indicates that
115 * fragments are treated in the same way as other IP packets (except that
116 * the L4 header cannot be read). */
117 int (*get_drop_frags)(const struct dpif *dpif, bool *drop_frags);
118
119 /* Changes 'dpif''s treatment of IP fragments to 'drop_frags', whose
120 * meaning is the same as for the get_drop_frags member function. */
121 int (*set_drop_frags)(struct dpif *dpif, bool drop_frags);
122
c3827f61 123 /* Adds 'netdev' as a new port in 'dpif'. If successful, sets '*port_no'
96fba48f 124 * to the new port's port number. */
c3827f61 125 int (*port_add)(struct dpif *dpif, struct netdev *netdev,
96fba48f
BP
126 uint16_t *port_no);
127
128 /* Removes port numbered 'port_no' from 'dpif'. */
129 int (*port_del)(struct dpif *dpif, uint16_t port_no);
130
131 /* Queries 'dpif' for a port with the given 'port_no' or 'devname'. Stores
4c738a8d
BP
132 * information about the port into '*port' if successful.
133 *
134 * The caller takes ownership of data in 'port' and must free it with
135 * dpif_port_destroy() when it is no longer needed. */
96fba48f 136 int (*port_query_by_number)(const struct dpif *dpif, uint16_t port_no,
4c738a8d 137 struct dpif_port *port);
96fba48f 138 int (*port_query_by_name)(const struct dpif *dpif, const char *devname,
4c738a8d 139 struct dpif_port *port);
96fba48f 140
996c1b3d
BP
141 /* Returns one greater than the largest port number accepted in flow
142 * actions. */
143 int (*get_max_ports)(const struct dpif *dpif);
144
b0ec0f27
BP
145 /* Attempts to begin dumping the ports in a dpif. On success, returns 0
146 * and initializes '*statep' with any data needed for iteration. On
147 * failure, returns a positive errno value. */
148 int (*port_dump_start)(const struct dpif *dpif, void **statep);
149
150 /* Attempts to retrieve another port from 'dpif' for 'state', which was
151 * initialized by a successful call to the 'port_dump_start' function for
4c738a8d 152 * 'dpif'. On success, stores a new dpif_port into 'port' and returns 0.
b0ec0f27
BP
153 * Returns EOF if the end of the port table has been reached, or a positive
154 * errno value on error. This function will not be called again once it
155 * returns nonzero once for a given iteration (but the 'port_dump_done'
4c738a8d
BP
156 * function will be called afterward).
157 *
158 * The dpif provider retains ownership of the data stored in 'port'. It
159 * must remain valid until at least the next call to 'port_dump_next' or
160 * 'port_dump_done' for 'state'. */
b0ec0f27 161 int (*port_dump_next)(const struct dpif *dpif, void *state,
4c738a8d 162 struct dpif_port *port);
b0ec0f27
BP
163
164 /* Releases resources from 'dpif' for 'state', which was initialized by a
165 * successful call to the 'port_dump_start' function for 'dpif'. */
166 int (*port_dump_done)(const struct dpif *dpif, void *state);
96fba48f 167
e9e28be3
BP
168 /* Polls for changes in the set of ports in 'dpif'. If the set of ports in
169 * 'dpif' has changed, then this function should do one of the
170 * following:
171 *
172 * - Preferably: store the name of the device that was added to or deleted
173 * from 'dpif' in '*devnamep' and return 0. The caller is responsible
174 * for freeing '*devnamep' (with free()) when it no longer needs it.
175 *
176 * - Alternatively: return ENOBUFS, without indicating the device that was
177 * added or deleted.
178 *
179 * Occasional 'false positives', in which the function returns 0 while
180 * indicating a device that was not actually added or deleted or returns
181 * ENOBUFS without any change, are acceptable.
182 *
183 * If the set of ports in 'dpif' has not changed, returns EAGAIN. May also
184 * return other positive errno values to indicate that something has gone
185 * wrong. */
186 int (*port_poll)(const struct dpif *dpif, char **devnamep);
187
188 /* Arranges for the poll loop to wake up when 'port_poll' will return a
189 * value other than EAGAIN. */
190 void (*port_poll_wait)(const struct dpif *dpif);
191
feebdea2
BP
192 /* Queries 'dpif' for a flow entry. The flow is specified by the Netlink
193 * attributes with types ODP_KEY_ATTR_* in the 'key_len' bytes starting at
194 * 'key'.
bc4a05c6 195 *
feebdea2
BP
196 * Returns 0 if successful. If no flow matches, returns ENOENT. On other
197 * failure, returns a positive errno value.
bc4a05c6 198 *
feebdea2
BP
199 * If 'actionsp' is nonnull, then on success '*actionsp' must be set to an
200 * ofpbuf owned by the caller that contains the Netlink attributes for the
201 * flow's actions. The caller must free the ofpbuf (with ofpbuf_delete())
202 * when it is no longer needed.
203 *
204 * If 'stats' is nonnull, then on success it must be updated with the
205 * flow's statistics. */
693c4a01 206 int (*flow_get)(const struct dpif *dpif,
feebdea2 207 const struct nlattr *key, size_t key_len,
c97fb132 208 struct ofpbuf **actionsp, struct dpif_flow_stats *stats);
feebdea2
BP
209
210 /* Adds or modifies a flow in 'dpif'. The flow is specified by the Netlink
211 * attributes with types ODP_KEY_ATTR_* in the 'key_len' bytes starting at
212 * 'key'. The associated actions are specified by the Netlink attributes
7aec165d
BP
213 * with types ODP_ACTION_ATTR_* in the 'actions_len' bytes starting at
214 * 'actions'.
feebdea2
BP
215 *
216 * - If the flow's key does not exist in 'dpif', then the flow will be
ba25b8f4
BP
217 * added if 'flags' includes DPIF_FP_CREATE. Otherwise the operation
218 * will fail with ENOENT.
feebdea2
BP
219 *
220 * If the operation succeeds, then 'stats', if nonnull, must be zeroed.
96fba48f 221 *
feebdea2 222 * - If the flow's key does exist in 'dpif', then the flow's actions will
ba25b8f4
BP
223 * be updated if 'flags' includes DPIF_FP_MODIFY. Otherwise the
224 * operation will fail with EEXIST. If the flow's actions are updated,
225 * then its statistics will be zeroed if 'flags' includes
226 * DPIF_FP_ZERO_STATS, and left as-is otherwise.
96fba48f 227 *
feebdea2
BP
228 * If the operation succeeds, then 'stats', if nonnull, must be set to
229 * the flow's statistics before the update.
96fba48f 230 */
ba25b8f4 231 int (*flow_put)(struct dpif *dpif, enum dpif_flow_put_flags flags,
feebdea2
BP
232 const struct nlattr *key, size_t key_len,
233 const struct nlattr *actions, size_t actions_len,
c97fb132 234 struct dpif_flow_stats *stats);
feebdea2
BP
235
236 /* Deletes a flow from 'dpif' and returns 0, or returns ENOENT if 'dpif'
237 * does not contain such a flow. The flow is specified by the Netlink
238 * attributes with types ODP_KEY_ATTR_* in the 'key_len' bytes starting at
239 * 'key'.
96fba48f 240 *
feebdea2
BP
241 * If the operation succeeds, then 'stats', if nonnull, must be set to the
242 * flow's statistics before its deletion. */
243 int (*flow_del)(struct dpif *dpif,
244 const struct nlattr *key, size_t key_len,
c97fb132 245 struct dpif_flow_stats *stats);
96fba48f
BP
246
247 /* Deletes all flows from 'dpif' and clears all of its queues of received
248 * packets. */
249 int (*flow_flush)(struct dpif *dpif);
250
704a1e09
BP
251 /* Attempts to begin dumping the flows in a dpif. On success, returns 0
252 * and initializes '*statep' with any data needed for iteration. On
253 * failure, returns a positive errno value. */
254 int (*flow_dump_start)(const struct dpif *dpif, void **statep);
255
256 /* Attempts to retrieve another flow from 'dpif' for 'state', which was
257 * initialized by a successful call to the 'flow_dump_start' function for
feebdea2
BP
258 * 'dpif'. On success, updates the output parameters as described below
259 * and returns 0. Returns EOF if the end of the flow table has been
260 * reached, or a positive errno value on error. This function will not be
261 * called again once it returns nonzero within a given iteration (but the
262 * 'flow_dump_done' function will be called afterward).
263 *
264 * On success, if 'key' and 'key_len' are nonnull then '*key' and
265 * '*key_len' must be set to Netlink attributes with types ODP_KEY_ATTR_*
266 * representing the dumped flow's key. If 'actions' and 'actions_len' are
7aec165d
BP
267 * nonnull then they should be set to Netlink attributes with types
268 * ODP_ACTION_ATTR_* representing the dumped flow's actions. If 'stats'
269 * is nonnull then it should be set to the dumped flow's statistics.
704a1e09 270 *
feebdea2
BP
271 * All of the returned data is owned by 'dpif', not by the caller, and the
272 * caller must not modify or free it. 'dpif' must guarantee that it
273 * remains accessible and unchanging until at least the next call to
274 * 'flow_dump_next' or 'flow_dump_done' for 'state'. */
704a1e09 275 int (*flow_dump_next)(const struct dpif *dpif, void *state,
feebdea2
BP
276 const struct nlattr **key, size_t *key_len,
277 const struct nlattr **actions, size_t *actions_len,
c97fb132 278 const struct dpif_flow_stats **stats);
704a1e09
BP
279
280 /* Releases resources from 'dpif' for 'state', which was initialized by a
281 * successful call to the 'flow_dump_start' function for 'dpif'. */
282 int (*flow_dump_done)(const struct dpif *dpif, void *state);
96fba48f 283
cdee00fd 284 /* Performs the 'actions_len' bytes of actions in 'actions' on the Ethernet
80e5eed9
BP
285 * frame specified in 'packet' taken from the flow specified in the
286 * 'key_len' bytes of 'key'. ('key' is mostly redundant with 'packet', but
287 * it contains some metadata that cannot be recovered from 'packet', such
288 * as tun_id and in_port.) */
289 int (*execute)(struct dpif *dpif,
290 const struct nlattr *key, size_t key_len,
291 const struct nlattr *actions, size_t actions_len,
292 const struct ofpbuf *packet);
96fba48f 293
82272ede
BP
294 /* Retrieves 'dpif''s "listen mask" into '*listen_mask'. A 1-bit of value
295 * 2**X set in '*listen_mask' indicates that 'dpif' will receive messages
296 * of the type (from "enum dpif_upcall_type") with value X when its 'recv'
297 * function is called. */
96fba48f
BP
298 int (*recv_get_mask)(const struct dpif *dpif, int *listen_mask);
299
82272ede
BP
300 /* Sets 'dpif''s "listen mask" to 'listen_mask'. A 1-bit of value 2**X set
301 * in '*listen_mask' requests that 'dpif' will receive messages of the type
302 * (from "enum dpif_upcall_type") with value X when its 'recv' function is
303 * called. */
96fba48f
BP
304 int (*recv_set_mask)(struct dpif *dpif, int listen_mask);
305
72b06300
BP
306 /* Retrieves 'dpif''s sFlow sampling probability into '*probability'.
307 * Return value is 0 or a positive errno value. EOPNOTSUPP indicates that
308 * the datapath does not support sFlow, as does a null pointer.
309 *
b4a7a3f3
BP
310 * '*probability' is expressed as the number of packets out of UINT_MAX to
311 * sample, e.g. probability/UINT_MAX is the probability of sampling a given
312 * packet. */
72b06300
BP
313 int (*get_sflow_probability)(const struct dpif *dpif,
314 uint32_t *probability);
315
316 /* Sets 'dpif''s sFlow sampling probability to 'probability'. Return value
317 * is 0 or a positive errno value. EOPNOTSUPP indicates that the datapath
318 * does not support sFlow, as does a null pointer.
319 *
b4a7a3f3
BP
320 * 'probability' is expressed as the number of packets out of UINT_MAX to
321 * sample, e.g. probability/UINT_MAX is the probability of sampling a given
322 * packet. */
72b06300
BP
323 int (*set_sflow_probability)(struct dpif *dpif, uint32_t probability);
324
aae51f53 325 /* Translates OpenFlow queue ID 'queue_id' (in host byte order) into a
7aec165d 326 * priority value for use in the ODP_ACTION_ATTR_SET_PRIORITY action in
aae51f53
BP
327 * '*priority'. */
328 int (*queue_to_priority)(const struct dpif *dpif, uint32_t queue_id,
329 uint32_t *priority);
330
856081f6
BP
331 /* Polls for an upcall from 'dpif'. If successful, stores the upcall into
332 * '*upcall'. Only upcalls of the types selected with the set_listen_mask
333 * member function should be received.
96fba48f 334 *
856081f6
BP
335 * The caller takes ownership of the data that 'upcall' points to.
336 * 'upcall->key' and 'upcall->actions' (if nonnull) point into data owned
337 * by 'upcall->packet', so their memory cannot be freed separately. (This
338 * is hardly a great way to do things but it works out OK for the dpif
339 * providers that exist so far.)
340 *
341 * For greatest efficiency, 'upcall->packet' should have at least
342 * offsetof(struct ofp_packet_in, data) bytes of headroom.
343 *
344 * This function must not block. If no upcall is pending when it is
345 * called, it should return EAGAIN without blocking. */
346 int (*recv)(struct dpif *dpif, struct dpif_upcall *upcall);
96fba48f
BP
347
348 /* Arranges for the poll loop to wake up when 'dpif' has a message queued
349 * to be received with the recv member function. */
350 void (*recv_wait)(struct dpif *dpif);
1ba530f4
BP
351
352 /* Throws away any queued upcalls that 'dpif' currently has ready to
353 * return. */
354 void (*recv_purge)(struct dpif *dpif);
96fba48f
BP
355};
356
357extern const struct dpif_class dpif_linux_class;
72865317 358extern const struct dpif_class dpif_netdev_class;
96fba48f 359
1acb6baa
BP
360#ifdef __cplusplus
361}
362#endif
363
96fba48f 364#endif /* dpif-provider.h */