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