Describe dummy test model. Work on OpenFlow intro.
[openvswitch] / lib / dpif.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012 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
18 #ifndef DPIF_H
19 #define DPIF_H 1
20
21 #include <stdbool.h>
22 #include <stddef.h>
23 #include <stdint.h>
24 #include <linux/openvswitch.h>
25 #include "openflow/openflow.h"
26 #include "netdev.h"
27 #include "util.h"
28
29 #ifdef  __cplusplus
30 extern "C" {
31 #endif
32
33 struct dpif;
34 struct ds;
35 struct flow;
36 struct nlattr;
37 struct ofpbuf;
38 struct sset;
39 struct dpif_class;
40
41 int dp_register_provider(const struct dpif_class *);
42 int dp_unregister_provider(const char *type);
43 void dp_blacklist_provider(const char *type);
44 void dp_enumerate_types(struct sset *types);
45 const char *dpif_normalize_type(const char *);
46
47 int dp_enumerate_names(const char *type, struct sset *names);
48 void dp_parse_name(const char *datapath_name, char **name, char **type);
49
50 int dpif_open(const char *name, const char *type, struct dpif **);
51 int dpif_create(const char *name, const char *type, struct dpif **);
52 int dpif_create_and_open(const char *name, const char *type, struct dpif **);
53 void dpif_close(struct dpif *);
54
55 void dpif_run(struct dpif *);
56 void dpif_wait(struct dpif *);
57
58 const char *dpif_name(const struct dpif *);
59 const char *dpif_base_name(const struct dpif *);
60 const char *dpif_type(const struct dpif *);
61
62 int dpif_delete(struct dpif *);
63
64 /* Statistics for a dpif as a whole. */
65 struct dpif_dp_stats {
66     uint64_t n_hit;             /* Number of flow table matches. */
67     uint64_t n_missed;          /* Number of flow table misses. */
68     uint64_t n_lost;            /* Number of misses not sent to userspace. */
69     uint64_t n_flows;           /* Number of flows present. */
70 };
71 int dpif_get_dp_stats(const struct dpif *, struct dpif_dp_stats *);
72
73 \f
74 /* Port operations. */
75
76 const char *dpif_port_open_type(const char *datapath_type,
77                                 const char *port_type);
78 int dpif_port_add(struct dpif *, struct netdev *, uint32_t *port_nop);
79 int dpif_port_del(struct dpif *, uint32_t port_no);
80
81 /* A port within a datapath.
82  *
83  * 'name' and 'type' are suitable for passing to netdev_open(). */
84 struct dpif_port {
85     char *name;                 /* Network device name, e.g. "eth0". */
86     char *type;                 /* Network device type, e.g. "system". */
87     uint32_t port_no;           /* Port number within datapath. */
88 };
89 void dpif_port_clone(struct dpif_port *, const struct dpif_port *);
90 void dpif_port_destroy(struct dpif_port *);
91 bool dpif_port_exists(const struct dpif *dpif, const char *devname);
92 int dpif_port_query_by_number(const struct dpif *, uint32_t port_no,
93                               struct dpif_port *);
94 int dpif_port_query_by_name(const struct dpif *, const char *devname,
95                             struct dpif_port *);
96 int dpif_port_get_name(struct dpif *, uint32_t port_no,
97                        char *name, size_t name_size);
98 int dpif_get_max_ports(const struct dpif *);
99 uint32_t dpif_port_get_pid(const struct dpif *, uint32_t port_no);
100
101 struct dpif_port_dump {
102     const struct dpif *dpif;
103     int error;
104     void *state;
105 };
106 void dpif_port_dump_start(struct dpif_port_dump *, const struct dpif *);
107 bool dpif_port_dump_next(struct dpif_port_dump *, struct dpif_port *);
108 int dpif_port_dump_done(struct dpif_port_dump *);
109
110 /* Iterates through each DPIF_PORT in DPIF, using DUMP as state.
111  *
112  * Arguments all have pointer type.
113  *
114  * If you break out of the loop, then you need to free the dump structure by
115  * hand using dpif_port_dump_done(). */
116 #define DPIF_PORT_FOR_EACH(DPIF_PORT, DUMP, DPIF)   \
117     for (dpif_port_dump_start(DUMP, DPIF);          \
118          (dpif_port_dump_next(DUMP, DPIF_PORT)      \
119           ? true                                    \
120           : (dpif_port_dump_done(DUMP), false));    \
121         )
122
123 int dpif_port_poll(const struct dpif *, char **devnamep);
124 void dpif_port_poll_wait(const struct dpif *);
125 \f
126 /* Flow table operations. */
127
128 struct dpif_flow_stats {
129     uint64_t n_packets;
130     uint64_t n_bytes;
131     long long int used;
132     uint8_t tcp_flags;
133 };
134
135 void dpif_flow_stats_extract(const struct flow *, const struct ofpbuf *packet,
136                              long long int used, struct dpif_flow_stats *);
137 void dpif_flow_stats_format(const struct dpif_flow_stats *, struct ds *);
138
139 enum dpif_flow_put_flags {
140     DPIF_FP_CREATE = 1 << 0,    /* Allow creating a new flow. */
141     DPIF_FP_MODIFY = 1 << 1,    /* Allow modifying an existing flow. */
142     DPIF_FP_ZERO_STATS = 1 << 2 /* Zero the stats of an existing flow. */
143 };
144
145 int dpif_flow_flush(struct dpif *);
146 int dpif_flow_put(struct dpif *, enum dpif_flow_put_flags,
147                   const struct nlattr *key, size_t key_len,
148                   const struct nlattr *actions, size_t actions_len,
149                   struct dpif_flow_stats *);
150 int dpif_flow_del(struct dpif *,
151                   const struct nlattr *key, size_t key_len,
152                   struct dpif_flow_stats *);
153 int dpif_flow_get(const struct dpif *,
154                   const struct nlattr *key, size_t key_len,
155                   struct ofpbuf **actionsp, struct dpif_flow_stats *);
156
157 struct dpif_flow_dump {
158     const struct dpif *dpif;
159     int error;
160     void *state;
161 };
162 void dpif_flow_dump_start(struct dpif_flow_dump *, const struct dpif *);
163 bool dpif_flow_dump_next(struct dpif_flow_dump *,
164                          const struct nlattr **key, size_t *key_len,
165                          const struct nlattr **actions, size_t *actions_len,
166                          const struct dpif_flow_stats **);
167 int dpif_flow_dump_done(struct dpif_flow_dump *);
168 \f
169 /* Packet operations. */
170
171 int dpif_execute(struct dpif *,
172                  const struct nlattr *key, size_t key_len,
173                  const struct nlattr *actions, size_t actions_len,
174                  const struct ofpbuf *);
175 \f
176 /* Operation batching interface.
177  *
178  * Some datapaths are faster at performing N operations together than the same
179  * N operations individually, hence an interface for batching.
180  */
181
182 enum dpif_op_type {
183     DPIF_OP_FLOW_PUT = 1,
184     DPIF_OP_FLOW_DEL,
185     DPIF_OP_EXECUTE,
186 };
187
188 struct dpif_flow_put {
189     /* Input. */
190     enum dpif_flow_put_flags flags; /* DPIF_FP_*. */
191     const struct nlattr *key;       /* Flow to put. */
192     size_t key_len;                 /* Length of 'key' in bytes. */
193     const struct nlattr *actions;   /* Actions to perform on flow. */
194     size_t actions_len;             /* Length of 'actions' in bytes. */
195
196     /* Output. */
197     struct dpif_flow_stats *stats;  /* Optional flow statistics. */
198 };
199
200 struct dpif_flow_del {
201     /* Input. */
202     const struct nlattr *key;       /* Flow to delete. */
203     size_t key_len;                 /* Length of 'key' in bytes. */
204
205     /* Output. */
206     struct dpif_flow_stats *stats;  /* Optional flow statistics. */
207 };
208
209 struct dpif_execute {
210     const struct nlattr *key;       /* Partial flow key (only for metadata). */
211     size_t key_len;                 /* Length of 'key' in bytes. */
212     const struct nlattr *actions;   /* Actions to execute on packet. */
213     size_t actions_len;             /* Length of 'actions' in bytes. */
214     const struct ofpbuf *packet;    /* Packet to execute. */
215 };
216
217 struct dpif_op {
218     enum dpif_op_type type;
219     int error;
220     union {
221         struct dpif_flow_put flow_put;
222         struct dpif_flow_del flow_del;
223         struct dpif_execute execute;
224     } u;
225 };
226
227 void dpif_operate(struct dpif *, struct dpif_op **ops, size_t n_ops);
228 \f
229 /* Upcalls. */
230
231 enum dpif_upcall_type {
232     DPIF_UC_MISS,               /* Miss in flow table. */
233     DPIF_UC_ACTION,             /* OVS_ACTION_ATTR_USERSPACE action. */
234     DPIF_N_UC_TYPES
235 };
236
237 const char *dpif_upcall_type_to_string(enum dpif_upcall_type);
238
239 /* A packet passed up from the datapath to userspace.
240  *
241  * If 'key' or 'actions' is nonnull, then it points into data owned by
242  * 'packet', so their memory cannot be freed separately.  (This is hardly a
243  * great way to do things but it works out OK for the dpif providers and
244  * clients that exist so far.)
245  */
246 struct dpif_upcall {
247     /* All types. */
248     enum dpif_upcall_type type;
249     struct ofpbuf *packet;      /* Packet data. */
250     struct nlattr *key;         /* Flow key. */
251     size_t key_len;             /* Length of 'key' in bytes. */
252
253     /* DPIF_UC_ACTION only. */
254     uint64_t userdata;          /* Argument to OVS_ACTION_ATTR_USERSPACE. */
255 };
256
257 int dpif_recv_set(struct dpif *, bool enable);
258 int dpif_recv(struct dpif *, struct dpif_upcall *, struct ofpbuf *);
259 void dpif_recv_purge(struct dpif *);
260 void dpif_recv_wait(struct dpif *);
261 \f
262 /* Miscellaneous. */
263
264 void dpif_get_netflow_ids(const struct dpif *,
265                           uint8_t *engine_type, uint8_t *engine_id);
266
267 int dpif_queue_to_priority(const struct dpif *, uint32_t queue_id,
268                            uint32_t *priority);
269
270 #ifdef  __cplusplus
271 }
272 #endif
273
274 #endif /* dpif.h */