]> git.proxmox.com Git - mirror_ovs.git/blame - lib/dpif.h
datapath: Adopt Generic Netlink-compatible locking.
[mirror_ovs.git] / lib / dpif.h
CommitLineData
064af421 1/*
4c738a8d 2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
064af421 3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16
17
18#ifndef DPIF_H
19#define DPIF_H 1
20
064af421
BP
21#include <stdbool.h>
22#include <stddef.h>
23#include <stdint.h>
9dbb9d5e
BP
24#include "openflow/openflow.h"
25#include "openvswitch/datapath-protocol.h"
26#include "util.h"
064af421 27
03292c46
JG
28#ifdef __cplusplus
29extern "C" {
30#endif
31
c228a364 32struct dpif;
c97fb132 33struct ds;
c3827f61 34struct netdev;
cdee00fd 35struct nlattr;
064af421 36struct ofpbuf;
d3d22744 37struct svec;
999401aa 38struct dpif_class;
064af421 39
5792c5c6
BP
40void dp_run(void);
41void dp_wait(void);
999401aa
JG
42
43int dp_register_provider(const struct dpif_class *);
44int dp_unregister_provider(const char *type);
1a6f1e2a 45void dp_enumerate_types(struct svec *types);
999401aa 46
1a6f1e2a
JG
47int dp_enumerate_names(const char *type, struct svec *names);
48void dp_parse_name(const char *datapath_name, char **name, char **type);
5792c5c6 49
1a6f1e2a
JG
50int dpif_open(const char *name, const char *type, struct dpif **);
51int dpif_create(const char *name, const char *type, struct dpif **);
52int dpif_create_and_open(const char *name, const char *type, struct dpif **);
064af421
BP
53void dpif_close(struct dpif *);
54
b29ba128 55const char *dpif_name(const struct dpif *);
1a6f1e2a 56const char *dpif_base_name(const struct dpif *);
d3d22744 57int dpif_get_all_names(const struct dpif *, struct svec *);
064af421
BP
58
59int dpif_delete(struct dpif *);
60
61int dpif_get_dp_stats(const struct dpif *, struct odp_stats *);
62int dpif_get_drop_frags(const struct dpif *, bool *drop_frags);
63int dpif_set_drop_frags(struct dpif *, bool drop_frags);
64
c3827f61 65int dpif_port_add(struct dpif *, struct netdev *, uint16_t *port_nop);
064af421 66int dpif_port_del(struct dpif *, uint16_t port_no);
4c738a8d
BP
67
68/* A port within a datapath.
69 *
70 * 'name' and 'type' are suitable for passing to netdev_open(). */
71struct 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};
76void dpif_port_clone(struct dpif_port *, const struct dpif_port *);
77void dpif_port_destroy(struct dpif_port *);
064af421 78int dpif_port_query_by_number(const struct dpif *, uint16_t port_no,
4c738a8d 79 struct dpif_port *);
064af421 80int dpif_port_query_by_name(const struct dpif *, const char *devname,
4c738a8d 81 struct dpif_port *);
335562c0
BP
82int dpif_port_get_name(struct dpif *, uint16_t port_no,
83 char *name, size_t name_size);
996c1b3d 84int dpif_get_max_ports(const struct dpif *);
b0ec0f27
BP
85
86struct dpif_port_dump {
87 const struct dpif *dpif;
88 int error;
89 void *state;
90};
91void dpif_port_dump_start(struct dpif_port_dump *, const struct dpif *);
4c738a8d 92bool dpif_port_dump_next(struct dpif_port_dump *, struct dpif_port *);
b0ec0f27
BP
93int dpif_port_dump_done(struct dpif_port_dump *);
94
4c738a8d 95/* Iterates through each DPIF_PORT in DPIF, using DUMP as state.
b0ec0f27
BP
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(). */
4c738a8d 101#define DPIF_PORT_FOR_EACH(DPIF_PORT, DUMP, DPIF) \
b0ec0f27 102 for (dpif_port_dump_start(DUMP, DPIF); \
4c738a8d 103 (dpif_port_dump_next(DUMP, DPIF_PORT) \
b0ec0f27
BP
104 ? true \
105 : (dpif_port_dump_done(DUMP), false)); \
106 )
064af421 107
e9e28be3
BP
108int dpif_port_poll(const struct dpif *, char **devnamep);
109void dpif_port_poll_wait(const struct dpif *);
110
c97fb132
BP
111struct 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
118void dpif_flow_stats_format(const struct dpif_flow_stats *, struct ds *);
119
ba25b8f4
BP
120enum dpif_flow_put_flags {
121 DPIF_FP_CREATE = 1 << 0, /* Allow creating a new flow. */
122 DPIF_FP_MODIFY = 1 << 1, /* Allow modifying an existing flow. */
123 DPIF_FP_ZERO_STATS = 1 << 2 /* Zero the stats of an existing flow. */
124};
125
064af421 126int dpif_flow_flush(struct dpif *);
ba25b8f4 127int dpif_flow_put(struct dpif *, enum dpif_flow_put_flags,
feebdea2
BP
128 const struct nlattr *key, size_t key_len,
129 const struct nlattr *actions, size_t actions_len,
c97fb132 130 struct dpif_flow_stats *);
feebdea2
BP
131int dpif_flow_del(struct dpif *,
132 const struct nlattr *key, size_t key_len,
c97fb132 133 struct dpif_flow_stats *);
693c4a01 134int dpif_flow_get(const struct dpif *,
feebdea2 135 const struct nlattr *key, size_t key_len,
c97fb132 136 struct ofpbuf **actionsp, struct dpif_flow_stats *);
704a1e09
BP
137
138struct dpif_flow_dump {
139 const struct dpif *dpif;
140 int error;
141 void *state;
142};
143void dpif_flow_dump_start(struct dpif_flow_dump *, const struct dpif *);
feebdea2
BP
144bool dpif_flow_dump_next(struct dpif_flow_dump *,
145 const struct nlattr **key, size_t *key_len,
146 const struct nlattr **actions, size_t *actions_len,
c97fb132 147 const struct dpif_flow_stats **);
704a1e09 148int dpif_flow_dump_done(struct dpif_flow_dump *);
064af421 149
cdee00fd
BP
150int dpif_execute(struct dpif *, const struct nlattr *actions,
151 size_t actions_len, const struct ofpbuf *);
064af421 152
82272ede
BP
153enum dpif_upcall_type {
154 DPIF_UC_MISS, /* Miss in flow table. */
155 DPIF_UC_ACTION, /* ODPAT_CONTROLLER action. */
156 DPIF_UC_SAMPLE /* Packet sampling. */
157};
158
856081f6
BP
159/* A packet passed up from the datapath to userspace.
160 *
161 * If 'key' or 'actions' is nonnull, then it points into data owned by
162 * 'packet', so their memory cannot be freed separately. (This is hardly a
163 * great way to do things but it works out OK for the dpif providers and
164 * clients that exist so far.)
165 */
166struct dpif_upcall {
856081f6 167 /* All types. */
82272ede 168 enum dpif_upcall_type type;
856081f6
BP
169 struct ofpbuf *packet; /* Packet data. */
170 struct nlattr *key; /* Flow key. */
171 size_t key_len; /* Length of 'key' in bytes. */
172
82272ede 173 /* DPIF_UC_ACTION only. */
856081f6
BP
174 uint64_t userdata; /* Argument to ODPAT_CONTROLLER. */
175
82272ede 176 /* DPIF_UC_SAMPLE only. */
856081f6
BP
177 uint32_t sample_pool; /* # of sampling candidate packets so far. */
178 struct nlattr *actions; /* Associated flow actions. */
179 size_t actions_len;
180};
9dbb9d5e 181
8f24562a
BP
182int dpif_recv_get_mask(const struct dpif *, int *listen_mask);
183int dpif_recv_set_mask(struct dpif *, int listen_mask);
72b06300
BP
184int dpif_get_sflow_probability(const struct dpif *, uint32_t *probability);
185int dpif_set_sflow_probability(struct dpif *, uint32_t probability);
856081f6 186int dpif_recv(struct dpif *, struct dpif_upcall *);
1ba530f4 187void dpif_recv_purge(struct dpif *);
064af421
BP
188void dpif_recv_wait(struct dpif *);
189
53a4218d
BP
190void dpif_get_netflow_ids(const struct dpif *,
191 uint8_t *engine_type, uint8_t *engine_id);
064af421 192
aae51f53
BP
193int dpif_queue_to_priority(const struct dpif *, uint32_t queue_id,
194 uint32_t *priority);
195
03292c46
JG
196#ifdef __cplusplus
197}
198#endif
199
064af421 200#endif /* dpif.h */