]> git.proxmox.com Git - ovs.git/blame - include/openvswitch/datapath-protocol.h
datapath: Eliminate 'flags' member from odp_flow.
[ovs.git] / include / openvswitch / datapath-protocol.h
CommitLineData
064af421 1/*
856081f6 2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
064af421 3 *
a14bc59f
BP
4 * This file is offered under your choice of two licenses: Apache 2.0 or GNU
5 * GPL 2.0 or later. The permission statements for each of these licenses is
6 * given below. You may license your modifications to this file under either
7 * of these licenses or both. If you wish to license your modifications under
8 * only one of these licenses, delete the permission text for the other
9 * license.
064af421 10 *
a14bc59f
BP
11 * ----------------------------------------------------------------------
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at:
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 * ----------------------------------------------------------------------
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License along
35 * with this program; if not, write to the Free Software Foundation, Inc.,
36 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
37 * ----------------------------------------------------------------------
064af421
BP
38 */
39
3fbd517a
BP
40/* Protocol between userspace and kernel datapath.
41 *
42 * Be sure to update datapath/odp-compat.h if you change any of the structures
43 * in here. */
064af421
BP
44
45#ifndef OPENVSWITCH_DATAPATH_PROTOCOL_H
46#define OPENVSWITCH_DATAPATH_PROTOCOL_H 1
47
b90fa799
BP
48/* The ovs_be<N> types indicate that an object is in big-endian, not
49 * native-endian, byte order. They are otherwise equivalent to uint<N>_t.
50 * The Linux kernel already has __be<N> types for this, which take on
51 * additional semantics when the "sparse" static checker is used, so we use
52 * those types when compiling the kernel. */
064af421
BP
53#ifdef __KERNEL__
54#include <linux/types.h>
ec61a01c 55#include <linux/socket.h>
b90fa799
BP
56#define ovs_be16 __be16
57#define ovs_be32 __be32
58#define ovs_be64 __be64
064af421 59#else
fba47339 60#include "openvswitch/types.h"
ec61a01c 61#include <sys/socket.h>
064af421 62#endif
064af421 63
c3827f61
BP
64#ifndef __aligned_u64
65#define __aligned_u64 __u64 __attribute__((aligned(8)))
b9298d3f
BP
66#define __aligned_be64 __be64 __attribute__((aligned(8)))
67#define __aligned_le64 __le64 __attribute__((aligned(8)))
c3827f61
BP
68#endif
69
ec61a01c 70#include <linux/if_link.h>
8e801baa 71#include <linux/netlink.h>
ec61a01c 72
064af421
BP
73#define ODP_MAX 256 /* Maximum number of datapaths. */
74
75#define ODP_DP_CREATE _IO('O', 0)
76#define ODP_DP_DESTROY _IO('O', 1)
77#define ODP_DP_STATS _IOW('O', 2, struct odp_stats)
78
79#define ODP_GET_DROP_FRAGS _IOW('O', 3, int)
80#define ODP_SET_DROP_FRAGS _IOR('O', 4, int)
81
82#define ODP_GET_LISTEN_MASK _IOW('O', 5, int)
83#define ODP_SET_LISTEN_MASK _IOR('O', 6, int)
84
c19e6535
BP
85#define ODP_VPORT_NEW _IOR('O', 7, struct odp_vport)
86#define ODP_VPORT_DEL _IOR('O', 8, struct odp_vport)
87#define ODP_VPORT_GET _IOWR('O', 9, struct odp_vport)
88#define ODP_VPORT_SET _IOR('O', 22, struct odp_vport)
89#define ODP_VPORT_DUMP _IOWR('O', 10, struct odp_vport)
064af421 90
bc4a05c6 91#define ODP_FLOW_GET _IOWR('O', 13, struct odp_flow)
96fba48f 92#define ODP_FLOW_PUT _IOWR('O', 14, struct odp_flow)
704a1e09 93#define ODP_FLOW_DUMP _IOWR('O', 15, struct odp_flow_dump)
064af421 94#define ODP_FLOW_FLUSH _IO('O', 16)
96fba48f 95#define ODP_FLOW_DEL _IOWR('O', 17, struct odp_flow)
064af421 96
96fba48f 97#define ODP_EXECUTE _IOR('O', 18, struct odp_execute)
064af421 98
4e256b6b
BP
99#define ODP_SET_SFLOW_PROBABILITY _IOR('O', 19, int)
100#define ODP_GET_SFLOW_PROBABILITY _IOW('O', 20, int)
72b06300 101
064af421 102struct odp_stats {
b90fa799
BP
103 uint64_t n_frags; /* Number of dropped IP fragments. */
104 uint64_t n_hit; /* Number of flow table matches. */
105 uint64_t n_missed; /* Number of flow table misses. */
106 uint64_t n_lost; /* Number of misses not sent to userspace. */
064af421
BP
107};
108
109/* Logical ports. */
b90fa799
BP
110#define ODPP_LOCAL ((uint16_t)0)
111#define ODPP_NONE ((uint16_t)-1)
064af421
BP
112
113/* Listening channels. */
114#define _ODPL_MISS_NR 0 /* Packet missed in flow table. */
115#define ODPL_MISS (1 << _ODPL_MISS_NR)
116#define _ODPL_ACTION_NR 1 /* Packet output to ODPP_CONTROLLER. */
117#define ODPL_ACTION (1 << _ODPL_ACTION_NR)
72b06300
BP
118#define _ODPL_SFLOW_NR 2 /* sFlow samples. */
119#define ODPL_SFLOW (1 << _ODPL_SFLOW_NR)
120#define ODPL_ALL (ODPL_MISS | ODPL_ACTION | ODPL_SFLOW)
064af421 121
856081f6
BP
122enum odp_packet_type {
123 ODP_PACKET_ATTR_UNSPEC,
124 ODP_PACKET_ATTR_TYPE, /* 32-bit enum, one of _ODP_*_NR. */
125 ODP_PACKET_ATTR_PACKET, /* Packet data. */
126 ODP_PACKET_ATTR_KEY, /* Nested ODP_KEY_ATTR_* attributes. */
127 ODP_PACKET_ATTR_USERDATA, /* 64-bit data from ODPAT_CONTROLLER. */
128 ODP_PACKET_ATTR_SAMPLE_POOL, /* # sampling candidate packets so far. */
129 ODP_PACKET_ATTR_ACTIONS, /* Nested ODPAT_* attributes. */
130 __ODP_PACKET_ATTR_MAX
72b06300
BP
131};
132
856081f6
BP
133#define ODP_PACKET_ATTR_MAX (__ODP_PACKET_ATTR_MAX - 1)
134
ed44ee7b 135/**
856081f6
BP
136 * struct odp_packet - header for packets passed up between kernel and
137 * userspace.
138 * @dp_idx: Number of datapath to which the packet belongs.
139 * @len: Length of complete message, including this header.
140 *
141 * The header is followed by a sequence of Netlink attributes. The
142 * %ODP_PACKET_ATTR_TYPE, %ODP_PACKET_ATTR_PACKET, and %ODP_PACKET_ATTR_KEY
143 * attributes are always present. When @type == %_ODPL_ACTION_NR, the
144 * %ODP_PACKET_ATTR_USERDATA attribute is included if it would be nonzero.
145 * When @type == %_ODPL_SFLOW_NR, the %ODP_PACKET_ATTR_SAMPLE_POOL and
146 * %ODP_PACKET_ATTR_ACTIONS attributes are included.
ed44ee7b 147 *
856081f6
BP
148 * For @type of %_ODPL_ACTION_NR, %ODP_PACKET_ATTR_PACKET reflects changes made
149 * by actions preceding %ODPAT_CONTROLLER, but %ODP_PACKET_ATTR_KEY is the flow
150 * key extracted from the packet as originally received.
ed44ee7b 151 */
856081f6
BP
152struct odp_packet {
153 uint32_t dp_idx;
154 uint32_t len;
064af421
BP
155};
156
c283069c
BP
157enum odp_vport_type {
158 ODP_VPORT_TYPE_UNSPEC,
159 ODP_VPORT_TYPE_NETDEV, /* network device */
160 ODP_VPORT_TYPE_INTERNAL, /* network device implemented by datapath */
161 ODP_VPORT_TYPE_PATCH, /* virtual tunnel connecting two vports */
162 ODP_VPORT_TYPE_GRE, /* GRE tunnel */
163 ODP_VPORT_TYPE_CAPWAP, /* CAPWAP tunnel */
164 __ODP_VPORT_TYPE_MAX
165};
166
167#define ODP_VPORT_TYPE_MAX (__ODP_VPORT_TYPE_MAX - 1)
168
b0ec0f27 169/**
c19e6535
BP
170 * struct odp_vport - header with basic information about a virtual port.
171 * @dp_idx: Number of datapath to which the vport belongs.
172 * @len: Length of this structure plus the Netlink attributes following it.
173 * @total_len: Total space available for kernel reply to request.
b0ec0f27 174 *
c19e6535
BP
175 * Followed by &struct nlattr attributes, whose types are drawn from
176 * %ODP_VPORT_ATTR_*, up to a length of @len bytes including the &struct
177 * odp_vport header.
b0ec0f27 178 */
c19e6535
BP
179struct odp_vport {
180 uint32_t dp_idx;
181 uint32_t len;
182 uint32_t total_len;
183};
184
185enum {
186 ODP_VPORT_ATTR_UNSPEC,
187 ODP_VPORT_ATTR_PORT_NO, /* port number within datapath */
188 ODP_VPORT_ATTR_TYPE, /* 32-bit ODP_VPORT_TYPE_* constant. */
189 ODP_VPORT_ATTR_NAME, /* string name, up to IFNAMSIZ bytes long */
190 ODP_VPORT_ATTR_STATS, /* struct rtnl_link_stats64 */
191 ODP_VPORT_ATTR_ADDRESS, /* hardware address */
192 ODP_VPORT_ATTR_MTU, /* 32-bit maximum transmission unit */
193 ODP_VPORT_ATTR_OPTIONS, /* nested attributes, varies by vport type */
194 ODP_VPORT_ATTR_IFINDEX, /* 32-bit ifindex of backing netdev */
195 ODP_VPORT_ATTR_IFLINK, /* 32-bit ifindex on which packets are sent */
196 __ODP_VPORT_ATTR_MAX
064af421
BP
197};
198
c19e6535
BP
199#define ODP_VPORT_ATTR_MAX (__ODP_VPORT_ATTR_MAX - 1)
200
201/* ODP_VPORT_ATTR_OPTIONS attributes for patch vports. */
202enum {
203 ODP_PATCH_ATTR_UNSPEC,
204 ODP_PATCH_ATTR_PEER, /* name of peer vport, as a string */
205 __ODP_PATCH_ATTR_MAX
206};
207
208#define ODP_PATCH_ATTR_MAX (__ODP_PATCH_ATTR_MAX - 1)
209
064af421 210struct odp_flow_stats {
b90fa799
BP
211 uint64_t n_packets; /* Number of matched packets. */
212 uint64_t n_bytes; /* Number of matched bytes. */
c73814a3 213 uint64_t used_sec; /* Time last used, in system monotonic time. */
b90fa799
BP
214 uint32_t used_nsec;
215 uint8_t tcp_flags;
abfec865 216 uint8_t reserved;
064af421
BP
217};
218
36956a7d
BP
219enum odp_key_type {
220 ODP_KEY_ATTR_UNSPEC,
221 ODP_KEY_ATTR_TUN_ID, /* 64-bit tunnel ID */
222 ODP_KEY_ATTR_IN_PORT, /* 32-bit ODP port number */
223 ODP_KEY_ATTR_ETHERNET, /* struct odp_key_ethernet */
224 ODP_KEY_ATTR_8021Q, /* struct odp_key_8021q */
225 ODP_KEY_ATTR_ETHERTYPE, /* 16-bit Ethernet type */
226 ODP_KEY_ATTR_IPV4, /* struct odp_key_ipv4 */
227 ODP_KEY_ATTR_TCP, /* struct odp_key_tcp */
228 ODP_KEY_ATTR_UDP, /* struct odp_key_udp */
229 ODP_KEY_ATTR_ICMP, /* struct odp_key_icmp */
230 ODP_KEY_ATTR_ARP, /* struct odp_key_arp */
231 __ODP_KEY_ATTR_MAX
232};
233
234#define ODP_KEY_ATTR_MAX (__ODP_KEY_ATTR_MAX - 1)
235
236struct odp_key_ethernet {
237 uint8_t eth_src[6];
238 uint8_t eth_dst[6];
239};
240
241struct odp_key_8021q {
242 ovs_be16 q_tpid;
243 ovs_be16 q_tci;
244};
245
246struct odp_key_ipv4 {
247 ovs_be32 ipv4_src;
248 ovs_be32 ipv4_dst;
249 uint8_t ipv4_proto;
250 uint8_t ipv4_tos;
251};
252
253struct odp_key_tcp {
254 ovs_be16 tcp_src;
255 ovs_be16 tcp_dst;
256};
257
258struct odp_key_udp {
259 ovs_be16 udp_src;
260 ovs_be16 udp_dst;
261};
262
263struct odp_key_icmp {
264 uint8_t icmp_type;
265 uint8_t icmp_code;
266};
267
268struct odp_key_arp {
269 ovs_be32 arp_sip;
270 ovs_be32 arp_tip;
271 ovs_be16 arp_op;
064af421
BP
272};
273
274struct odp_flow {
275 struct odp_flow_stats stats;
36956a7d
BP
276 struct nlattr *key;
277 uint32_t key_len;
cdee00fd
BP
278 struct nlattr *actions;
279 uint32_t actions_len;
064af421
BP
280};
281
282/* Flags for ODP_FLOW_PUT. */
283#define ODPPF_CREATE (1 << 0) /* Allow creating a new flow. */
284#define ODPPF_MODIFY (1 << 1) /* Allow modifying an existing flow. */
285#define ODPPF_ZERO_STATS (1 << 2) /* Zero the stats of an existing flow. */
286
287/* ODP_FLOW_PUT argument. */
288struct odp_flow_put {
289 struct odp_flow flow;
b90fa799 290 uint32_t flags;
064af421
BP
291};
292
704a1e09
BP
293/* ODP_FLOW_DUMP argument.
294 *
295 * This is used to iterate through the flow table flow-by-flow. Each
693c4a01
BP
296 * ODP_FLOW_DUMP call either stores a new odp_flow into 'flow' or stores 0 into
297 * flow->key_len to indicate that the end of the table has been reached, and
298 * updates 'state' in-place.
704a1e09
BP
299 *
300 * Before the first call, zero 'state'. The format of 'state' is otherwise
301 * unspecified.
302 */
303struct odp_flow_dump {
304 struct odp_flow *flow;
305 uint32_t state[2];
064af421
BP
306};
307
064af421 308/* Action types. */
cdee00fd
BP
309enum odp_action_type {
310 ODPAT_UNSPEC,
311 ODPAT_OUTPUT, /* Output to switch port. */
312 ODPAT_CONTROLLER, /* Send copy to controller. */
313 ODPAT_SET_DL_TCI, /* Set the 802.1q TCI value. */
314 ODPAT_STRIP_VLAN, /* Strip the 802.1q header. */
315 ODPAT_SET_DL_SRC, /* Ethernet source address. */
316 ODPAT_SET_DL_DST, /* Ethernet destination address. */
36956a7d
BP
317 ODPAT_SET_NW_SRC, /* IPv4 source address. */
318 ODPAT_SET_NW_DST, /* IPv4 destination address. */
cdee00fd
BP
319 ODPAT_SET_NW_TOS, /* IP ToS/DSCP field (6 bits). */
320 ODPAT_SET_TP_SRC, /* TCP/UDP source port. */
321 ODPAT_SET_TP_DST, /* TCP/UDP destination port. */
322 ODPAT_SET_TUNNEL, /* Set the encapsulating tunnel ID. */
323 ODPAT_SET_PRIORITY, /* Set skb->priority. */
324 ODPAT_POP_PRIORITY, /* Restore original skb->priority. */
325 ODPAT_DROP_SPOOFED_ARP, /* Drop ARPs with spoofed source MAC. */
326 __ODPAT_MAX
064af421
BP
327};
328
cdee00fd 329#define ODPAT_MAX (__ODPAT_MAX - 1)
064af421
BP
330
331struct odp_execute {
cdee00fd
BP
332 struct nlattr *actions;
333 uint32_t actions_len;
064af421
BP
334
335 const void *data;
b90fa799 336 uint32_t length;
064af421
BP
337};
338
b90fa799 339#endif /* openvswitch/datapath-protocol.h */