dpif: Eliminate "struct odp_flow_stats" from client-visible interface.
[sliver-openvswitch.git] / lib / dpif.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 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
18 #ifndef DPIF_H
19 #define DPIF_H 1
20
21 #include <stdbool.h>
22 #include <stddef.h>
23 #include <stdint.h>
24 #include "openflow/openflow.h"
25 #include "openvswitch/datapath-protocol.h"
26 #include "util.h"
27
28 #ifdef  __cplusplus
29 extern "C" {
30 #endif
31
32 struct dpif;
33 struct ds;
34 struct netdev;
35 struct nlattr;
36 struct ofpbuf;
37 struct svec;
38 struct dpif_class;
39
40 void dp_run(void);
41 void dp_wait(void);
42
43 int dp_register_provider(const struct dpif_class *);
44 int dp_unregister_provider(const char *type);
45 void dp_enumerate_types(struct svec *types);
46
47 int dp_enumerate_names(const char *type, struct svec *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 const char *dpif_name(const struct dpif *);
56 const char *dpif_base_name(const struct dpif *);
57 int dpif_get_all_names(const struct dpif *, struct svec *);
58
59 int dpif_delete(struct dpif *);
60
61 int dpif_get_dp_stats(const struct dpif *, struct odp_stats *);
62 int dpif_get_drop_frags(const struct dpif *, bool *drop_frags);
63 int dpif_set_drop_frags(struct dpif *, bool drop_frags);
64
65 int dpif_port_add(struct dpif *, struct netdev *, uint16_t *port_nop);
66 int dpif_port_del(struct dpif *, uint16_t port_no);
67
68 /* A port within a datapath.
69  *
70  * 'name' and 'type' are suitable for passing to netdev_open(). */
71 struct dpif_port {
72     char *name;                 /* Network device name, e.g. "eth0". */
73     char *type;                 /* Network device type, e.g. "system". */
74     uint32_t port_no;           /* Port number within datapath. */
75 };
76 void dpif_port_clone(struct dpif_port *, const struct dpif_port *);
77 void dpif_port_destroy(struct dpif_port *);
78 int dpif_port_query_by_number(const struct dpif *, uint16_t port_no,
79                               struct dpif_port *);
80 int dpif_port_query_by_name(const struct dpif *, const char *devname,
81                             struct dpif_port *);
82 int dpif_port_get_name(struct dpif *, uint16_t port_no,
83                        char *name, size_t name_size);
84 int dpif_get_max_ports(const struct dpif *);
85
86 struct dpif_port_dump {
87     const struct dpif *dpif;
88     int error;
89     void *state;
90 };
91 void dpif_port_dump_start(struct dpif_port_dump *, const struct dpif *);
92 bool dpif_port_dump_next(struct dpif_port_dump *, struct dpif_port *);
93 int dpif_port_dump_done(struct dpif_port_dump *);
94
95 /* Iterates through each DPIF_PORT in DPIF, using DUMP as state.
96  *
97  * Arguments all have pointer type.
98  *
99  * If you break out of the loop, then you need to free the dump structure by
100  * hand using dpif_port_dump_done(). */
101 #define DPIF_PORT_FOR_EACH(DPIF_PORT, DUMP, DPIF)   \
102     for (dpif_port_dump_start(DUMP, DPIF);          \
103          (dpif_port_dump_next(DUMP, DPIF_PORT)      \
104           ? true                                    \
105           : (dpif_port_dump_done(DUMP), false));    \
106         )
107
108 int dpif_port_poll(const struct dpif *, char **devnamep);
109 void dpif_port_poll_wait(const struct dpif *);
110
111 struct dpif_flow_stats {
112     uint64_t n_packets;
113     uint64_t n_bytes;
114     long long int used;
115     uint8_t tcp_flags;
116 };
117
118 void dpif_flow_stats_format(const struct dpif_flow_stats *, struct ds *);
119
120 int dpif_flow_flush(struct dpif *);
121 int dpif_flow_put(struct dpif *, int flags,
122                   const struct nlattr *key, size_t key_len,
123                   const struct nlattr *actions, size_t actions_len,
124                   struct dpif_flow_stats *);
125 int dpif_flow_del(struct dpif *,
126                   const struct nlattr *key, size_t key_len,
127                   struct dpif_flow_stats *);
128 int dpif_flow_get(const struct dpif *, int flags,
129                   const struct nlattr *key, size_t key_len,
130                   struct ofpbuf **actionsp, struct dpif_flow_stats *);
131
132 struct dpif_flow_dump {
133     const struct dpif *dpif;
134     int error;
135     void *state;
136 };
137 void dpif_flow_dump_start(struct dpif_flow_dump *, const struct dpif *);
138 bool dpif_flow_dump_next(struct dpif_flow_dump *,
139                          const struct nlattr **key, size_t *key_len,
140                          const struct nlattr **actions, size_t *actions_len,
141                          const struct dpif_flow_stats **);
142 int dpif_flow_dump_done(struct dpif_flow_dump *);
143
144 int dpif_execute(struct dpif *, const struct nlattr *actions,
145                  size_t actions_len, const struct ofpbuf *);
146
147 /* A packet passed up from the datapath to userspace.
148  *
149  * If 'key' or 'actions' is nonnull, then it points into data owned by
150  * 'packet', so their memory cannot be freed separately.  (This is hardly a
151  * great way to do things but it works out OK for the dpif providers and
152  * clients that exist so far.)
153  */
154 struct dpif_upcall {
155     uint32_t type;              /* One of _ODPL_*_NR. */
156
157     /* All types. */
158     struct ofpbuf *packet;      /* Packet data. */
159     struct nlattr *key;         /* Flow key. */
160     size_t key_len;             /* Length of 'key' in bytes. */
161
162     /* _ODPL_ACTION_NR only. */
163     uint64_t userdata;          /* Argument to ODPAT_CONTROLLER. */
164
165     /* _ODPL_SFLOW_NR only. */
166     uint32_t sample_pool;       /* # of sampling candidate packets so far. */
167     struct nlattr *actions;     /* Associated flow actions. */
168     size_t actions_len;
169 };
170
171 int dpif_recv_get_mask(const struct dpif *, int *listen_mask);
172 int dpif_recv_set_mask(struct dpif *, int listen_mask);
173 int dpif_get_sflow_probability(const struct dpif *, uint32_t *probability);
174 int dpif_set_sflow_probability(struct dpif *, uint32_t probability);
175 int dpif_recv(struct dpif *, struct dpif_upcall *);
176 void dpif_recv_purge(struct dpif *);
177 void dpif_recv_wait(struct dpif *);
178
179 void dpif_get_netflow_ids(const struct dpif *,
180                           uint8_t *engine_type, uint8_t *engine_id);
181
182 int dpif_queue_to_priority(const struct dpif *, uint32_t queue_id,
183                            uint32_t *priority);
184
185 #ifdef  __cplusplus
186 }
187 #endif
188
189 #endif /* dpif.h */