]> git.proxmox.com Git - mirror_ovs.git/blame - lib/dpif-provider.h
netdev-dpdk: add hotplug support
[mirror_ovs.git] / lib / dpif-provider.h
CommitLineData
96fba48f 1/*
ac64794a 2 * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
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 24
43253595 25#include "openflow/openflow.h"
96fba48f 26#include "dpif.h"
43253595 27#include "util.h"
96fba48f 28
1acb6baa
BP
29#ifdef __cplusplus
30extern "C" {
31#endif
32
96fba48f
BP
33/* Open vSwitch datapath interface.
34 *
35 * This structure should be treated as opaque by dpif implementations. */
36struct dpif {
1acb6baa 37 const struct dpif_class *dpif_class;
1a6f1e2a
JG
38 char *base_name;
39 char *full_name;
96fba48f
BP
40 uint8_t netflow_engine_type;
41 uint8_t netflow_engine_id;
42};
43
44void dpif_init(struct dpif *, const struct dpif_class *, const char *name,
45 uint8_t netflow_engine_type, uint8_t netflow_engine_id);
999401aa
JG
46void dpif_uninit(struct dpif *dpif, bool close);
47
96fba48f 48static inline void dpif_assert_class(const struct dpif *dpif,
1acb6baa 49 const struct dpif_class *dpif_class)
96fba48f 50{
cb22974d 51 ovs_assert(dpif->dpif_class == dpif_class);
96fba48f
BP
52}
53
ac64794a
BP
54struct dpif_flow_dump {
55 struct dpif *dpif;
64bb477f 56 bool terse; /* If true, key/mask/actions may be omitted. */
ac64794a
BP
57};
58
59static inline void
60dpif_flow_dump_init(struct dpif_flow_dump *dump, const struct dpif *dpif)
61{
62 dump->dpif = CONST_CAST(struct dpif *, dpif);
63}
64
65struct dpif_flow_dump_thread {
66 struct dpif *dpif;
67};
68
69static inline void
70dpif_flow_dump_thread_init(struct dpif_flow_dump_thread *thread,
71 struct dpif_flow_dump *dump)
72{
73 thread->dpif = dump->dpif;
74}
75
b77d9629
DDP
76struct ct_dpif_dump_state;
77struct ct_dpif_entry;
78
96fba48f 79/* Datapath interface class structure, to be defined by each implementation of
f20279af 80 * a datapath interface.
96fba48f
BP
81 *
82 * These functions return 0 if successful or a positive errno value on failure,
83 * except where otherwise noted.
84 *
85 * These functions are expected to execute synchronously, that is, to block as
86 * necessary to obtain a result. Thus, they may not return EAGAIN or
87 * EWOULDBLOCK or EINPROGRESS. We may relax this requirement in the future if
88 * and when we encounter performance problems. */
89struct dpif_class {
1a6f1e2a 90 /* Type of dpif in this class, e.g. "system", "netdev", etc.
96fba48f 91 *
1a6f1e2a
JG
92 * One of the providers should supply a "system" type, since this is
93 * the type assumed if no type is specified when opening a dpif. */
94 const char *type;
96fba48f 95
c8973eb6
DDP
96 /* Called when the dpif provider is registered, typically at program
97 * startup. Returning an error from this function will prevent any
98 * datapath with this class from being created.
99 *
100 * This function may be set to null if a datapath class needs no
101 * initialization at registration time. */
102 int (*init)(void);
103
2240af25
DDP
104 /* Enumerates the names of all known created datapaths (of class
105 * 'dpif_class'), if possible, into 'all_dps'. The caller has already
106 * initialized 'all_dps' and other dpif classes might already have added
107 * names to it.
d3d22744
BP
108 *
109 * This is used by the vswitch at startup, so that it can delete any
110 * datapaths that are not configured.
111 *
112 * Some kinds of datapaths might not be practically enumerable, in which
113 * case this function may be a null pointer. */
2240af25 114 int (*enumerate)(struct sset *all_dps, const struct dpif_class *dpif_class);
d3d22744 115
0aeaabc8
JP
116 /* Returns the type to pass to netdev_open() when a dpif of class
117 * 'dpif_class' has a port of type 'type', for a few special cases
118 * when a netdev type differs from a port type. For example, when
119 * using the userspace datapath, a port of type "internal" needs to
120 * be opened as "tap".
121 *
122 * Returns either 'type' itself or a string literal, which must not
123 * be freed. */
124 const char *(*port_open_type)(const struct dpif_class *dpif_class,
125 const char *type);
126
1a6f1e2a
JG
127 /* Attempts to open an existing dpif called 'name', if 'create' is false,
128 * or to open an existing dpif or create a new one, if 'create' is true.
96fba48f 129 *
4a387741
BP
130 * 'dpif_class' is the class of dpif to open.
131 *
132 * If successful, stores a pointer to the new dpif in '*dpifp', which must
133 * have class 'dpif_class'. On failure there are no requirements on what
134 * is stored in '*dpifp'. */
135 int (*open)(const struct dpif_class *dpif_class,
136 const char *name, bool create, struct dpif **dpifp);
96fba48f
BP
137
138 /* Closes 'dpif' and frees associated memory. */
139 void (*close)(struct dpif *dpif);
140
141 /* Attempts to destroy the dpif underlying 'dpif'.
142 *
143 * If successful, 'dpif' will not be used again except as an argument for
144 * the 'close' member function. */
1acb6baa 145 int (*destroy)(struct dpif *dpif);
96fba48f 146
a36de779
PS
147 /* Performs periodic work needed by 'dpif', if any is necessary.
148 * Returns true if need to revalidate. */
149 bool (*run)(struct dpif *dpif);
640e1b20
BP
150
151 /* Arranges for poll_block() to wake up if the "run" member function needs
152 * to be called for 'dpif'. */
153 void (*wait)(struct dpif *dpif);
154
96fba48f 155 /* Retrieves statistics for 'dpif' into 'stats'. */
a8d9304d 156 int (*get_stats)(const struct dpif *dpif, struct dpif_dp_stats *stats);
96fba48f 157
232dfa4a 158 /* Adds 'netdev' as a new port in 'dpif'. If '*port_no' is not
8eff7d8a 159 * ODPP_NONE, attempts to use that as the port's port number.
232dfa4a
JP
160 *
161 * If port is successfully added, sets '*port_no' to the new port's
162 * port number. Returns EBUSY if caller attempted to choose a port
163 * number, and it was in use. */
c3827f61 164 int (*port_add)(struct dpif *dpif, struct netdev *netdev,
4e022ec0 165 odp_port_t *port_no);
96fba48f
BP
166
167 /* Removes port numbered 'port_no' from 'dpif'. */
4e022ec0 168 int (*port_del)(struct dpif *dpif, odp_port_t port_no);
96fba48f 169
91364d18
IM
170 /* Refreshes configuration of 'dpif's port. The implementation might
171 * postpone applying the changes until run() is called. */
172 int (*port_set_config)(struct dpif *dpif, odp_port_t port_no,
173 const struct smap *cfg);
174
4afba28d
JP
175 /* Queries 'dpif' for a port with the given 'port_no' or 'devname'.
176 * If 'port' is not null, stores information about the port into
177 * '*port' if successful.
4c738a8d 178 *
4afba28d
JP
179 * If 'port' is not null, the caller takes ownership of data in
180 * 'port' and must free it with dpif_port_destroy() when it is no
181 * longer needed. */
4e022ec0 182 int (*port_query_by_number)(const struct dpif *dpif, odp_port_t port_no,
4c738a8d 183 struct dpif_port *port);
96fba48f 184 int (*port_query_by_name)(const struct dpif *dpif, const char *devname,
4c738a8d 185 struct dpif_port *port);
96fba48f 186
98403001
BP
187 /* Returns the Netlink PID value to supply in OVS_ACTION_ATTR_USERSPACE
188 * actions as the OVS_USERSPACE_ATTR_PID attribute's value, for use in
1954e6bb
AW
189 * flows whose packets arrived on port 'port_no'. In the case where the
190 * provider allocates multiple Netlink PIDs to a single port, it may use
191 * 'hash' to spread load among them. The caller need not use a particular
192 * hash function; a 5-tuple hash is suitable.
193 *
194 * (The datapath implementation might use some different hash function for
195 * distributing packets received via flow misses among PIDs. This means
196 * that packets received via flow misses might be reordered relative to
197 * packets received via userspace actions. This is not ordinarily a
198 * problem.)
98403001 199 *
9b56fe13 200 * A 'port_no' of UINT32_MAX should be treated as a special case. The
625b0720
BP
201 * implementation should return a reserved PID, not allocated to any port,
202 * that the client may use for special purposes.
203 *
98403001
BP
204 * The return value only needs to be meaningful when DPIF_UC_ACTION has
205 * been enabled in the 'dpif''s listen mask, and it is allowed to change
206 * when DPIF_UC_ACTION is disabled and then re-enabled.
207 *
208 * A dpif provider that doesn't have meaningful Netlink PIDs can use NULL
209 * for this function. This is equivalent to always returning 0. */
1954e6bb
AW
210 uint32_t (*port_get_pid)(const struct dpif *dpif, odp_port_t port_no,
211 uint32_t hash);
98403001 212
b0ec0f27
BP
213 /* Attempts to begin dumping the ports in a dpif. On success, returns 0
214 * and initializes '*statep' with any data needed for iteration. On
215 * failure, returns a positive errno value. */
216 int (*port_dump_start)(const struct dpif *dpif, void **statep);
217
218 /* Attempts to retrieve another port from 'dpif' for 'state', which was
219 * initialized by a successful call to the 'port_dump_start' function for
4c738a8d 220 * 'dpif'. On success, stores a new dpif_port into 'port' and returns 0.
b0ec0f27
BP
221 * Returns EOF if the end of the port table has been reached, or a positive
222 * errno value on error. This function will not be called again once it
223 * returns nonzero once for a given iteration (but the 'port_dump_done'
4c738a8d
BP
224 * function will be called afterward).
225 *
226 * The dpif provider retains ownership of the data stored in 'port'. It
227 * must remain valid until at least the next call to 'port_dump_next' or
228 * 'port_dump_done' for 'state'. */
b0ec0f27 229 int (*port_dump_next)(const struct dpif *dpif, void *state,
4c738a8d 230 struct dpif_port *port);
b0ec0f27
BP
231
232 /* Releases resources from 'dpif' for 'state', which was initialized by a
233 * successful call to the 'port_dump_start' function for 'dpif'. */
234 int (*port_dump_done)(const struct dpif *dpif, void *state);
96fba48f 235
e9e28be3
BP
236 /* Polls for changes in the set of ports in 'dpif'. If the set of ports in
237 * 'dpif' has changed, then this function should do one of the
238 * following:
239 *
240 * - Preferably: store the name of the device that was added to or deleted
241 * from 'dpif' in '*devnamep' and return 0. The caller is responsible
242 * for freeing '*devnamep' (with free()) when it no longer needs it.
243 *
244 * - Alternatively: return ENOBUFS, without indicating the device that was
245 * added or deleted.
246 *
247 * Occasional 'false positives', in which the function returns 0 while
248 * indicating a device that was not actually added or deleted or returns
249 * ENOBUFS without any change, are acceptable.
250 *
251 * If the set of ports in 'dpif' has not changed, returns EAGAIN. May also
252 * return other positive errno values to indicate that something has gone
253 * wrong. */
254 int (*port_poll)(const struct dpif *dpif, char **devnamep);
255
256 /* Arranges for the poll loop to wake up when 'port_poll' will return a
257 * value other than EAGAIN. */
258 void (*port_poll_wait)(const struct dpif *dpif);
259
96fba48f
BP
260 /* Deletes all flows from 'dpif' and clears all of its queues of received
261 * packets. */
262 int (*flow_flush)(struct dpif *dpif);
263
ac64794a 264 /* Flow dumping interface.
e6cc0bab 265 *
ac64794a
BP
266 * This is the back-end for the flow dumping interface described in
267 * dpif.h. Please read the comments there first, because this code
268 * closely follows it.
e6cc0bab 269 *
ac64794a
BP
270 * 'flow_dump_create' and 'flow_dump_thread_create' must always return an
271 * initialized and usable data structure and defer error return until
272 * flow_dump_destroy(). This hasn't been a problem for the dpifs that
273 * exist so far.
704a1e09 274 *
ac64794a
BP
275 * 'flow_dump_create' and 'flow_dump_thread_create' must initialize the
276 * structures that they return with dpif_flow_dump_init() and
64bb477f
JS
277 * dpif_flow_dump_thread_init(), respectively.
278 *
279 * If 'terse' is true, then only UID and statistics will
280 * be returned in the dump. Otherwise, all fields will be returned. */
281 struct dpif_flow_dump *(*flow_dump_create)(const struct dpif *dpif,
282 bool terse);
ac64794a
BP
283 int (*flow_dump_destroy)(struct dpif_flow_dump *dump);
284
285 struct dpif_flow_dump_thread *(*flow_dump_thread_create)(
286 struct dpif_flow_dump *dump);
287 void (*flow_dump_thread_destroy)(struct dpif_flow_dump_thread *thread);
288
289 int (*flow_dump_next)(struct dpif_flow_dump_thread *thread,
290 struct dpif_flow *flows, int max_flows);
96fba48f 291
6bc60024
BP
292 /* Executes each of the 'n_ops' operations in 'ops' on 'dpif', in the order
293 * in which they are specified, placing each operation's results in the
1a0c894a
BP
294 * "output" members documented in comments and the 'error' member of each
295 * dpif_op. */
c2b565b5 296 void (*operate)(struct dpif *dpif, struct dpif_op **ops, size_t n_ops);
6bc60024 297
a12b3ead
BP
298 /* Enables or disables receiving packets with dpif_recv() for 'dpif'.
299 * Turning packet receive off and then back on is allowed to change Netlink
98403001
BP
300 * PID assignments (see ->port_get_pid()). The client is responsible for
301 * updating flows as necessary if it does this. */
a12b3ead 302 int (*recv_set)(struct dpif *dpif, bool enable);
96fba48f 303
1954e6bb
AW
304 /* Refreshes the poll loops and Netlink sockets associated to each port,
305 * when the number of upcall handlers (upcall receiving thread) is changed
306 * to 'n_handlers' and receiving packets for 'dpif' is enabled by
307 * recv_set().
308 *
309 * Since multiple upcall handlers can read upcalls simultaneously from
310 * 'dpif', each port can have multiple Netlink sockets, one per upcall
311 * handler. So, handlers_set() is responsible for the following tasks:
312 *
313 * When receiving upcall is enabled, extends or creates the
314 * configuration to support:
315 *
316 * - 'n_handlers' Netlink sockets for each port.
317 *
318 * - 'n_handlers' poll loops, one for each upcall handler.
319 *
320 * - registering the Netlink sockets for the same upcall handler to
321 * the corresponding poll loop.
322 * */
323 int (*handlers_set)(struct dpif *dpif, uint32_t n_handlers);
324
f2eee189 325 /* If 'dpif' creates its own I/O polling threads, refreshes poll threads
a14b8947 326 * configuration. 'cmask' configures the cpu mask for setting the polling
6e3c6fa4
DDP
327 * threads' cpu affinity. The implementation might postpone applying the
328 * changes until run() is called. */
a14b8947 329 int (*poll_threads_set)(struct dpif *dpif, const char *cmask);
f2eee189 330
aae51f53 331 /* Translates OpenFlow queue ID 'queue_id' (in host byte order) into a
abff858b 332 * priority value used for setting packet priority. */
aae51f53
BP
333 int (*queue_to_priority)(const struct dpif *dpif, uint32_t queue_id,
334 uint32_t *priority);
335
1954e6bb
AW
336 /* Polls for an upcall from 'dpif' for an upcall handler. Since there
337 * can be multiple poll loops (see ->handlers_set()), 'handler_id' is
338 * needed as index to identify the corresponding poll loop. If
339 * successful, stores the upcall into '*upcall', using 'buf' for
340 * storage. Should only be called if 'recv_set' has been used to enable
341 * receiving packets from 'dpif'.
96fba48f 342 *
da546e07
JR
343 * The implementation should point 'upcall->key' and 'upcall->userdata'
344 * (if any) into data in the caller-provided 'buf'. The implementation may
345 * also use 'buf' for storing the data of 'upcall->packet'. If necessary
346 * to make room, the implementation may reallocate the data in 'buf'.
347 *
348 * The caller owns the data of 'upcall->packet' and may modify it. If
349 * packet's headroom is exhausted as it is manipulated, 'upcall->packet'
350 * will be reallocated. This requires the data of 'upcall->packet' to be
837a88dc
JR
351 * released with ofpbuf_uninit() before 'upcall' is destroyed. However,
352 * when an error is returned, the 'upcall->packet' may be uninitialized
353 * and should not be released.
856081f6
BP
354 *
355 * This function must not block. If no upcall is pending when it is
356 * called, it should return EAGAIN without blocking. */
1954e6bb
AW
357 int (*recv)(struct dpif *dpif, uint32_t handler_id,
358 struct dpif_upcall *upcall, struct ofpbuf *buf);
359
360 /* Arranges for the poll loop for an upcall handler to wake up when 'dpif'
361 * has a message queued to be received with the recv member functions.
362 * Since there can be multiple poll loops (see ->handlers_set()),
363 * 'handler_id' is needed as index to identify the corresponding poll loop.
364 * */
365 void (*recv_wait)(struct dpif *dpif, uint32_t handler_id);
1ba530f4
BP
366
367 /* Throws away any queued upcalls that 'dpif' currently has ready to
368 * return. */
369 void (*recv_purge)(struct dpif *dpif);
6b31e073 370
e4e74c3a
AW
371 /* When 'dpif' is about to purge the datapath, the higher layer may want
372 * to be notified so that it could try reacting accordingly (e.g. grabbing
373 * all flow stats before they are gone).
374 *
375 * Registers an upcall callback function with 'dpif'. This is only used
376 * if 'dpif' needs to notify the purging of datapath. 'aux' is passed to
377 * the callback on invocation. */
378 void (*register_dp_purge_cb)(struct dpif *, dp_purge_callback *, void *aux);
379
6b31e073
RW
380 /* For datapaths that run in userspace (i.e. dpif-netdev), threads polling
381 * for incoming packets can directly call upcall functions instead of
382 * offloading packet processing to separate handler threads. Datapaths
383 * that directly call upcall functions should use the functions below to
384 * to register an upcall function and enable / disable upcalls.
385 *
e4e74c3a 386 * Registers an upcall callback function with 'dpif'. This is only used
623540e4
EJ
387 * if 'dpif' directly executes upcall functions. 'aux' is passed to the
388 * callback on invocation. */
389 void (*register_upcall_cb)(struct dpif *, upcall_callback *, void *aux);
6b31e073
RW
390
391 /* Enables upcalls if 'dpif' directly executes upcall functions. */
392 void (*enable_upcall)(struct dpif *);
393
394 /* Disables upcalls if 'dpif' directly executes upcall functions. */
395 void (*disable_upcall)(struct dpif *);
b5cbbcf6
AZ
396
397 /* Get datapath version. Caller is responsible for freeing the string
398 * returned. */
399 char *(*get_datapath_version)(void);
b77d9629
DDP
400
401 /* Conntrack entry dumping interface.
402 *
403 * These functions are used by ct-dpif.c to provide a datapath-agnostic
9dcd5910 404 * dumping interface to the connection trackers provided by the
b77d9629
DDP
405 * datapaths.
406 *
407 * ct_dump_start() should put in '*state' a pointer to a newly allocated
408 * stucture that will be passed by the caller to ct_dump_next() and
409 * ct_dump_done(). If 'zone' is not NULL, only the entries in '*zone'
410 * should be dumped.
411 *
412 * ct_dump_next() should fill 'entry' with information from a connection
413 * and prepare to dump the next one on a subsequest invocation.
414 *
9dcd5910 415 * ct_dump_done() should perform any cleanup necessary (including
b77d9629
DDP
416 * deallocating the 'state' structure, if applicable). */
417 int (*ct_dump_start)(struct dpif *, struct ct_dpif_dump_state **state,
418 const uint16_t *zone);
9dcd5910 419 int (*ct_dump_next)(struct dpif *, struct ct_dpif_dump_state *state,
b77d9629
DDP
420 struct ct_dpif_entry *entry);
421 int (*ct_dump_done)(struct dpif *, struct ct_dpif_dump_state *state);
a0f7b6d5
DDP
422
423 /* Flushes the connection tracking tables. If 'zone' is not NULL,
424 * only deletes connections in '*zone'. */
425 int (*ct_flush)(struct dpif *, const uint16_t *zone);
96fba48f
BP
426};
427
93451a0a 428extern const struct dpif_class dpif_netlink_class;
72865317 429extern const struct dpif_class dpif_netdev_class;
96fba48f 430
1acb6baa
BP
431#ifdef __cplusplus
432}
433#endif
434
96fba48f 435#endif /* dpif-provider.h */