Introduce general-purpose ways to wait for dpif and netdev changes.
[sliver-openvswitch.git] / lib / dpif-provider.h
1 /*
2  * Copyright (c) 2009 Nicira Networks.
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. */
22
23 #include <assert.h>
24 #include "dpif.h"
25
26 /* Open vSwitch datapath interface.
27  *
28  * This structure should be treated as opaque by dpif implementations. */
29 struct dpif {
30     const struct dpif_class *class;
31     char *name;
32     uint8_t netflow_engine_type;
33     uint8_t netflow_engine_id;
34 };
35
36 void dpif_init(struct dpif *, const struct dpif_class *, const char *name,
37                uint8_t netflow_engine_type, uint8_t netflow_engine_id);
38 static inline void dpif_assert_class(const struct dpif *dpif,
39                                      const struct dpif_class *class)
40 {
41     assert(dpif->class == class);
42 }
43
44 /* Datapath interface class structure, to be defined by each implementation of
45  * a datapath interface
46  *
47  * These functions return 0 if successful or a positive errno value on failure,
48  * except where otherwise noted.
49  *
50  * These functions are expected to execute synchronously, that is, to block as
51  * necessary to obtain a result.  Thus, they may not return EAGAIN or
52  * EWOULDBLOCK or EINPROGRESS.  We may relax this requirement in the future if
53  * and when we encounter performance problems. */
54 struct dpif_class {
55     /* Prefix for names of dpifs in this class, e.g. "udatapath:".
56      *
57      * One dpif class may have the empty string "" as its prefix, in which case
58      * that dpif class is associated with dpif names that don't match any other
59      * class name. */
60     const char *prefix;
61
62     /* Class name, for use in error messages. */
63     const char *name;
64
65     /* Performs periodic work needed by dpifs of this class, if any is
66      * necessary. */
67     void (*run)(void);
68
69     /* Arranges for poll_block() to wake up if the "run" member function needs
70      * to be called. */
71     void (*wait)(void);
72
73     /* Attempts to open an existing dpif, if 'create' is false, or to open an
74      * existing dpif or create a new one, if 'create' is true.  'name' is the
75      * full dpif name provided by the user, e.g. "udatapath:/var/run/mypath".
76      * This name is useful for error messages but must not be modified.
77      *
78      * 'suffix' is a copy of 'name' following the dpif's 'prefix'.
79      *
80      * If successful, stores a pointer to the new dpif in '*dpifp'.  On failure
81      * there are no requirements on what is stored in '*dpifp'. */
82     int (*open)(const char *name, char *suffix, bool create,
83                 struct dpif **dpifp);
84
85     /* Closes 'dpif' and frees associated memory. */
86     void (*close)(struct dpif *dpif);
87
88     /* Attempts to destroy the dpif underlying 'dpif'.
89      *
90      * If successful, 'dpif' will not be used again except as an argument for
91      * the 'close' member function. */
92     int (*delete)(struct dpif *dpif);
93
94     /* Retrieves statistics for 'dpif' into 'stats'. */
95     int (*get_stats)(const struct dpif *dpif, struct odp_stats *stats);
96
97     /* Retrieves 'dpif''s current treatment of IP fragments into '*drop_frags':
98      * true indicates that fragments are dropped, false indicates that
99      * fragments are treated in the same way as other IP packets (except that
100      * the L4 header cannot be read). */
101     int (*get_drop_frags)(const struct dpif *dpif, bool *drop_frags);
102
103     /* Changes 'dpif''s treatment of IP fragments to 'drop_frags', whose
104      * meaning is the same as for the get_drop_frags member function. */
105     int (*set_drop_frags)(struct dpif *dpif, bool drop_frags);
106
107     /* Creates a new port in 'dpif' connected to network device 'devname'.
108      * 'flags' is a set of ODP_PORT_* flags.  If successful, sets '*port_no'
109      * to the new port's port number. */
110     int (*port_add)(struct dpif *dpif, const char *devname, uint16_t flags,
111                     uint16_t *port_no);
112
113     /* Removes port numbered 'port_no' from 'dpif'. */
114     int (*port_del)(struct dpif *dpif, uint16_t port_no);
115
116     /* Queries 'dpif' for a port with the given 'port_no' or 'devname'.  Stores
117      * information about the port into '*port' if successful. */
118     int (*port_query_by_number)(const struct dpif *dpif, uint16_t port_no,
119                                 struct odp_port *port);
120     int (*port_query_by_name)(const struct dpif *dpif, const char *devname,
121                               struct odp_port *port);
122
123     /* Stores in 'ports' information about up to 'n' ports attached to 'dpif',
124      * in no particular order.  Returns the number of ports attached to 'dpif'
125      * (not the number stored), if successful, otherwise a negative errno
126      * value. */
127     int (*port_list)(const struct dpif *dpif, struct odp_port *ports, int n);
128
129     /* Polls for changes in the set of ports in 'dpif'.  If the set of ports in
130      * 'dpif' has changed, then this function should do one of the
131      * following:
132      *
133      * - Preferably: store the name of the device that was added to or deleted
134      *   from 'dpif' in '*devnamep' and return 0.  The caller is responsible
135      *   for freeing '*devnamep' (with free()) when it no longer needs it.
136      *
137      * - Alternatively: return ENOBUFS, without indicating the device that was
138      *   added or deleted.
139      *
140      * Occasional 'false positives', in which the function returns 0 while
141      * indicating a device that was not actually added or deleted or returns
142      * ENOBUFS without any change, are acceptable.
143      *
144      * If the set of ports in 'dpif' has not changed, returns EAGAIN.  May also
145      * return other positive errno values to indicate that something has gone
146      * wrong. */
147     int (*port_poll)(const struct dpif *dpif, char **devnamep);
148
149     /* Arranges for the poll loop to wake up when 'port_poll' will return a
150      * value other than EAGAIN. */
151     void (*port_poll_wait)(const struct dpif *dpif);
152
153     /* Stores in 'ports' the port numbers of up to 'n' ports that belong to
154      * 'group' in 'dpif'.  Returns the number of ports in 'group' (not the
155      * number stored), if successful, otherwise a negative errno value. */
156     int (*port_group_get)(const struct dpif *dpif, int group,
157                           uint16_t ports[], int n);
158
159     /* Changes port group 'group' in 'dpif' to consist of the 'n' ports whose
160      * numbers are given in 'ports'.
161      *
162      * Use the get_stats member function to obtain the number of supported port
163      * groups. */
164     int (*port_group_set)(struct dpif *dpif, int group,
165                           const uint16_t ports[], int n);
166
167     /* For each flow 'flow' in the 'n' flows in 'flows':
168      *
169      * - If a flow matching 'flow->key' exists in 'dpif':
170      *
171      *     Stores 0 into 'flow->stats.error' and stores statistics for the flow
172      *     into 'flow->stats'.
173      *
174      *     If 'flow->n_actions' is zero, then 'flow->actions' is ignored.  If
175      *     'flow->n_actions' is nonzero, then 'flow->actions' should point to
176      *     an array of the specified number of actions.  At most that many of
177      *     the flow's actions will be copied into that array.
178      *     'flow->n_actions' will be updated to the number of actions actually
179      *     present in the flow, which may be greater than the number stored if
180      *     the flow has more actions than space available in the array.
181      *
182      * - Flow-specific errors are indicated by a positive errno value in
183      *   'flow->stats.error'.  In particular, ENOENT indicates that no flow
184      *   matching 'flow->key' exists in 'dpif'.  When an error value is stored,
185      *   the contents of 'flow->key' are preserved but other members of 'flow'
186      *   should be treated as indeterminate.
187      *
188      * Returns 0 if all 'n' flows in 'flows' were updated (whether they were
189      * individually successful or not is indicated by 'flow->stats.error',
190      * however).  Returns a positive errno value if an error that prevented
191      * this update occurred, in which the caller must not depend on any
192      * elements in 'flows' being updated or not updated.
193      */
194     int (*flow_get)(const struct dpif *dpif, struct odp_flow flows[], int n);
195
196     /* Adds or modifies a flow in 'dpif' as specified in 'put':
197      *
198      * - If the flow specified in 'put->flow' does not exist in 'dpif', then
199      *   behavior depends on whether ODPPF_CREATE is specified in 'put->flags':
200      *   if it is, the flow will be added, otherwise the operation will fail
201      *   with ENOENT.
202      *
203      * - Otherwise, the flow specified in 'put->flow' does exist in 'dpif'.
204      *   Behavior in this case depends on whether ODPPF_MODIFY is specified in
205      *   'put->flags': if it is, the flow's actions will be updated, otherwise
206      *   the operation will fail with EEXIST.  If the flow's actions are
207      *   updated, then its statistics will be zeroed if ODPPF_ZERO_STATS is set
208      *   in 'put->flags', left as-is otherwise.
209      */
210     int (*flow_put)(struct dpif *dpif, struct odp_flow_put *put);
211
212     /* Deletes a flow matching 'flow->key' from 'dpif' or returns ENOENT if
213      * 'dpif' does not contain such a flow.
214      *
215      * If successful, updates 'flow->stats', 'flow->n_actions', and
216      * 'flow->actions' as described in more detail under the flow_get member
217      * function below. */
218     int (*flow_del)(struct dpif *dpif, struct odp_flow *flow);
219
220     /* Deletes all flows from 'dpif' and clears all of its queues of received
221      * packets. */
222     int (*flow_flush)(struct dpif *dpif);
223
224     /* Stores up to 'n' flows in 'dpif' into 'flows', updating their statistics
225      * and actions as described under the flow_get member function.  If
226      * successful, returns the number of flows actually present in 'dpif',
227      * which might be greater than the number stored (if 'dpif' has more than
228      * 'n' flows).  On failure, returns a negative errno value. */
229     int (*flow_list)(const struct dpif *dpif, struct odp_flow flows[], int n);
230
231     /* Performs the 'n_actions' actions in 'actions' on the Ethernet frame
232      * specified in 'packet'.
233      *
234      * Pretends that the frame was originally received on the port numbered
235      * 'in_port'.  This affects only ODPAT_OUTPUT_GROUP actions, which will not
236      * send a packet out their input port.  Specify the number of an unused
237      * port (e.g. UINT16_MAX is currently always unused) to avoid this
238      * behavior. */
239     int (*execute)(struct dpif *dpif, uint16_t in_port,
240                    const union odp_action actions[], int n_actions,
241                    const struct ofpbuf *packet);
242
243     /* Retrieves 'dpif''s "listen mask" into '*listen_mask'.  Each ODPL_* bit
244      * set in '*listen_mask' indicates the 'dpif' will receive messages of the
245      * corresponding type when it calls the recv member function. */
246     int (*recv_get_mask)(const struct dpif *dpif, int *listen_mask);
247
248     /* Sets 'dpif''s "listen mask" to 'listen_mask'.  Each ODPL_* bit set in
249      * 'listen_mask' indicates the 'dpif' will receive messages of the
250      * corresponding type when it calls the recv member function. */
251     int (*recv_set_mask)(struct dpif *dpif, int listen_mask);
252
253     /* Attempts to receive a message from 'dpif'.  If successful, stores the
254      * message into '*packetp'.  The message, if one is received, must begin
255      * with 'struct odp_msg' as a header.  Only messages of the types selected
256      * with the set_listen_mask member function should be received.
257      *
258      * This function must not block.  If no message is ready to be received
259      * when it is called, it should return EAGAIN without blocking. */
260     int (*recv)(struct dpif *dpif, struct ofpbuf **packetp);
261
262     /* Arranges for the poll loop to wake up when 'dpif' has a message queued
263      * to be received with the recv member function. */
264     void (*recv_wait)(struct dpif *dpif);
265 };
266
267 extern const struct dpif_class dpif_linux_class;
268
269 #endif /* dpif-provider.h */