datapath: Allow user space to announce ability to accept unaligned Netlink messages
[sliver-openvswitch.git] / include / linux / openvswitch.h
1 /*
2  * Copyright (c) 2007-2013 Nicira, Inc.
3  *
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.
10  *
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
25  * modify it under the terms of version 2 of the GNU General Public
26  * License as published by the Free Software Foundation.
27  *
28  * This program is distributed in the hope that it will be useful, but
29  * WITHOUT ANY WARRANTY; without even the implied warranty of
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31  * General Public License for more details.
32  *
33  * You should have received a copy of the GNU General Public License
34  * along with this program; if not, write to the Free Software
35  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
36  * 02110-1301, USA
37  * ----------------------------------------------------------------------
38  */
39
40 #ifndef _LINUX_OPENVSWITCH_H
41 #define _LINUX_OPENVSWITCH_H 1
42
43 #include <linux/types.h>
44 #include <linux/if_ether.h>
45
46 /**
47  * struct ovs_header - header for OVS Generic Netlink messages.
48  * @dp_ifindex: ifindex of local port for datapath (0 to make a request not
49  * specific to a datapath).
50  *
51  * Attributes following the header are specific to a particular OVS Generic
52  * Netlink family, but all of the OVS families use this header.
53  */
54
55 struct ovs_header {
56         int dp_ifindex;
57 };
58
59 /* Datapaths. */
60
61 #define OVS_DATAPATH_FAMILY  "ovs_datapath"
62 #define OVS_DATAPATH_MCGROUP "ovs_datapath"
63 #define OVS_DATAPATH_VERSION 0x1
64
65 enum ovs_datapath_cmd {
66         OVS_DP_CMD_UNSPEC,
67         OVS_DP_CMD_NEW,
68         OVS_DP_CMD_DEL,
69         OVS_DP_CMD_GET,
70         OVS_DP_CMD_SET
71 };
72
73 /**
74  * enum ovs_datapath_attr - attributes for %OVS_DP_* commands.
75  * @OVS_DP_ATTR_NAME: Name of the network device that serves as the "local
76  * port".  This is the name of the network device whose dp_ifindex is given in
77  * the &struct ovs_header.  Always present in notifications.  Required in
78  * %OVS_DP_NEW requests.  May be used as an alternative to specifying
79  * dp_ifindex in other requests (with a dp_ifindex of 0).
80  * @OVS_DP_ATTR_UPCALL_PID: The Netlink socket in userspace that is initially
81  * set on the datapath port (for OVS_ACTION_ATTR_MISS).  Only valid on
82  * %OVS_DP_CMD_NEW requests. A value of zero indicates that upcalls should
83  * not be sent.
84  * @OVS_DP_ATTR_STATS: Statistics about packets that have passed through the
85  * datapath.  Always present in notifications.
86  * @OVS_DP_ATTR_MEGAFLOW_STATS: Statistics about mega flow masks usage for the
87  * datapath. Always present in notifications.
88  *
89  * These attributes follow the &struct ovs_header within the Generic Netlink
90  * payload for %OVS_DP_* commands.
91  */
92 enum ovs_datapath_attr {
93         OVS_DP_ATTR_UNSPEC,
94         OVS_DP_ATTR_NAME,               /* name of dp_ifindex netdev */
95         OVS_DP_ATTR_UPCALL_PID,         /* Netlink PID to receive upcalls */
96         OVS_DP_ATTR_STATS,              /* struct ovs_dp_stats */
97         OVS_DP_ATTR_MEGAFLOW_STATS,     /* struct ovs_dp_megaflow_stats */
98         OVS_DP_ATTR_USER_FEATURES,      /* OVS_DP_F_*  */
99         __OVS_DP_ATTR_MAX
100 };
101
102 #define OVS_DP_ATTR_MAX (__OVS_DP_ATTR_MAX - 1)
103
104 struct ovs_dp_stats {
105         __u64 n_hit;             /* Number of flow table matches. */
106         __u64 n_missed;          /* Number of flow table misses. */
107         __u64 n_lost;            /* Number of misses not sent to userspace. */
108         __u64 n_flows;           /* Number of flows present */
109 };
110
111 struct ovs_dp_megaflow_stats {
112         __u64 n_mask_hit;        /* Number of masks used for flow lookups. */
113         __u32 n_masks;           /* Number of masks for the datapath. */
114         __u32 pad0;              /* Pad for future expension. */
115         __u64 pad1;              /* Pad for future expension. */
116         __u64 pad2;              /* Pad for future expension. */
117 };
118
119 struct ovs_vport_stats {
120         __u64   rx_packets;             /* total packets received       */
121         __u64   tx_packets;             /* total packets transmitted    */
122         __u64   rx_bytes;               /* total bytes received         */
123         __u64   tx_bytes;               /* total bytes transmitted      */
124         __u64   rx_errors;              /* bad packets received         */
125         __u64   tx_errors;              /* packet transmit problems     */
126         __u64   rx_dropped;             /* no space in linux buffers    */
127         __u64   tx_dropped;             /* no space available in linux  */
128 };
129
130 /* Allow last Netlink attribute to be unaligned */
131 #define OVS_DP_F_UNALIGNED      (1 << 0)
132
133 /* Fixed logical ports. */
134 #define OVSP_LOCAL      ((__u32)0)
135
136 /* Packet transfer. */
137
138 #define OVS_PACKET_FAMILY "ovs_packet"
139 #define OVS_PACKET_VERSION 0x1
140
141 enum ovs_packet_cmd {
142         OVS_PACKET_CMD_UNSPEC,
143
144         /* Kernel-to-user notifications. */
145         OVS_PACKET_CMD_MISS,    /* Flow table miss. */
146         OVS_PACKET_CMD_ACTION,  /* OVS_ACTION_ATTR_USERSPACE action. */
147
148         /* Userspace commands. */
149         OVS_PACKET_CMD_EXECUTE  /* Apply actions to a packet. */
150 };
151
152 /**
153  * enum ovs_packet_attr - attributes for %OVS_PACKET_* commands.
154  * @OVS_PACKET_ATTR_PACKET: Present for all notifications.  Contains the entire
155  * packet as received, from the start of the Ethernet header onward.  For
156  * %OVS_PACKET_CMD_ACTION, %OVS_PACKET_ATTR_PACKET reflects changes made by
157  * actions preceding %OVS_ACTION_ATTR_USERSPACE, but %OVS_PACKET_ATTR_KEY is
158  * the flow key extracted from the packet as originally received.
159  * @OVS_PACKET_ATTR_KEY: Present for all notifications.  Contains the flow key
160  * extracted from the packet as nested %OVS_KEY_ATTR_* attributes.  This allows
161  * userspace to adapt its flow setup strategy by comparing its notion of the
162  * flow key against the kernel's.
163  * @OVS_PACKET_ATTR_ACTIONS: Contains actions for the packet.  Used
164  * for %OVS_PACKET_CMD_EXECUTE.  It has nested %OVS_ACTION_ATTR_* attributes.
165  * @OVS_PACKET_ATTR_USERDATA: Present for an %OVS_PACKET_CMD_ACTION
166  * notification if the %OVS_ACTION_ATTR_USERSPACE action specified an
167  * %OVS_USERSPACE_ATTR_USERDATA attribute, with the same length and content
168  * specified there.
169  *
170  * These attributes follow the &struct ovs_header within the Generic Netlink
171  * payload for %OVS_PACKET_* commands.
172  */
173 enum ovs_packet_attr {
174         OVS_PACKET_ATTR_UNSPEC,
175         OVS_PACKET_ATTR_PACKET,      /* Packet data. */
176         OVS_PACKET_ATTR_KEY,         /* Nested OVS_KEY_ATTR_* attributes. */
177         OVS_PACKET_ATTR_ACTIONS,     /* Nested OVS_ACTION_ATTR_* attributes. */
178         OVS_PACKET_ATTR_USERDATA,    /* OVS_ACTION_ATTR_USERSPACE arg. */
179         __OVS_PACKET_ATTR_MAX
180 };
181
182 #define OVS_PACKET_ATTR_MAX (__OVS_PACKET_ATTR_MAX - 1)
183
184 /* Virtual ports. */
185
186 #define OVS_VPORT_FAMILY  "ovs_vport"
187 #define OVS_VPORT_MCGROUP "ovs_vport"
188 #define OVS_VPORT_VERSION 0x1
189
190 enum ovs_vport_cmd {
191         OVS_VPORT_CMD_UNSPEC,
192         OVS_VPORT_CMD_NEW,
193         OVS_VPORT_CMD_DEL,
194         OVS_VPORT_CMD_GET,
195         OVS_VPORT_CMD_SET
196 };
197
198 enum ovs_vport_type {
199         OVS_VPORT_TYPE_UNSPEC,
200         OVS_VPORT_TYPE_NETDEV,   /* network device */
201         OVS_VPORT_TYPE_INTERNAL, /* network device implemented by datapath */
202         OVS_VPORT_TYPE_GRE,      /* GRE tunnel. */
203         OVS_VPORT_TYPE_VXLAN,    /* VXLAN tunnel */
204         OVS_VPORT_TYPE_GRE64 = 104, /* GRE tunnel with 64-bit keys */
205         OVS_VPORT_TYPE_LISP = 105,  /* LISP tunnel */
206         __OVS_VPORT_TYPE_MAX
207 };
208
209 #define OVS_VPORT_TYPE_MAX (__OVS_VPORT_TYPE_MAX - 1)
210
211 /**
212  * enum ovs_vport_attr - attributes for %OVS_VPORT_* commands.
213  * @OVS_VPORT_ATTR_PORT_NO: 32-bit port number within datapath.
214  * @OVS_VPORT_ATTR_TYPE: 32-bit %OVS_VPORT_TYPE_* constant describing the type
215  * of vport.
216  * @OVS_VPORT_ATTR_NAME: Name of vport.  For a vport based on a network device
217  * this is the name of the network device.  Maximum length %IFNAMSIZ-1 bytes
218  * plus a null terminator.
219  * @OVS_VPORT_ATTR_OPTIONS: Vport-specific configuration information.
220  * @OVS_VPORT_ATTR_UPCALL_PID: The Netlink socket in userspace that
221  * OVS_PACKET_CMD_MISS upcalls will be directed to for packets received on
222  * this port.  A value of zero indicates that upcalls should not be sent.
223  * @OVS_VPORT_ATTR_STATS: A &struct ovs_vport_stats giving statistics for
224  * packets sent or received through the vport.
225  *
226  * These attributes follow the &struct ovs_header within the Generic Netlink
227  * payload for %OVS_VPORT_* commands.
228  *
229  * For %OVS_VPORT_CMD_NEW requests, the %OVS_VPORT_ATTR_TYPE and
230  * %OVS_VPORT_ATTR_NAME attributes are required.  %OVS_VPORT_ATTR_PORT_NO is
231  * optional; if not specified a free port number is automatically selected.
232  * Whether %OVS_VPORT_ATTR_OPTIONS is required or optional depends on the type
233  * of vport.  %OVS_VPORT_ATTR_STATS is optional and other attributes are
234  * ignored.
235  *
236  * For other requests, if %OVS_VPORT_ATTR_NAME is specified then it is used to
237  * look up the vport to operate on; otherwise dp_idx from the &struct
238  * ovs_header plus %OVS_VPORT_ATTR_PORT_NO determine the vport.
239  */
240 enum ovs_vport_attr {
241         OVS_VPORT_ATTR_UNSPEC,
242         OVS_VPORT_ATTR_PORT_NO, /* u32 port number within datapath */
243         OVS_VPORT_ATTR_TYPE,    /* u32 OVS_VPORT_TYPE_* constant. */
244         OVS_VPORT_ATTR_NAME,    /* string name, up to IFNAMSIZ bytes long */
245         OVS_VPORT_ATTR_OPTIONS, /* nested attributes, varies by vport type */
246         OVS_VPORT_ATTR_UPCALL_PID, /* u32 Netlink PID to receive upcalls */
247         OVS_VPORT_ATTR_STATS,   /* struct ovs_vport_stats */
248         __OVS_VPORT_ATTR_MAX
249 };
250
251 #define OVS_VPORT_ATTR_MAX (__OVS_VPORT_ATTR_MAX - 1)
252
253 /* OVS_VPORT_ATTR_OPTIONS attributes for tunnels.
254  */
255 enum {
256         OVS_TUNNEL_ATTR_UNSPEC,
257         OVS_TUNNEL_ATTR_DST_PORT, /* 16-bit UDP port, used by L4 tunnels. */
258         __OVS_TUNNEL_ATTR_MAX
259 };
260
261 #define OVS_TUNNEL_ATTR_MAX (__OVS_TUNNEL_ATTR_MAX - 1)
262
263 /* Flows. */
264
265 #define OVS_FLOW_FAMILY  "ovs_flow"
266 #define OVS_FLOW_MCGROUP "ovs_flow"
267 #define OVS_FLOW_VERSION 0x1
268
269 enum ovs_flow_cmd {
270         OVS_FLOW_CMD_UNSPEC,
271         OVS_FLOW_CMD_NEW,
272         OVS_FLOW_CMD_DEL,
273         OVS_FLOW_CMD_GET,
274         OVS_FLOW_CMD_SET
275 };
276
277 struct ovs_flow_stats {
278         __u64 n_packets;         /* Number of matched packets. */
279         __u64 n_bytes;           /* Number of matched bytes. */
280 };
281
282 enum ovs_key_attr {
283         OVS_KEY_ATTR_UNSPEC,
284         OVS_KEY_ATTR_ENCAP,     /* Nested set of encapsulated attributes. */
285         OVS_KEY_ATTR_PRIORITY,  /* u32 skb->priority */
286         OVS_KEY_ATTR_IN_PORT,   /* u32 OVS dp port number */
287         OVS_KEY_ATTR_ETHERNET,  /* struct ovs_key_ethernet */
288         OVS_KEY_ATTR_VLAN,      /* be16 VLAN TCI */
289         OVS_KEY_ATTR_ETHERTYPE, /* be16 Ethernet type */
290         OVS_KEY_ATTR_IPV4,      /* struct ovs_key_ipv4 */
291         OVS_KEY_ATTR_IPV6,      /* struct ovs_key_ipv6 */
292         OVS_KEY_ATTR_TCP,       /* struct ovs_key_tcp */
293         OVS_KEY_ATTR_UDP,       /* struct ovs_key_udp */
294         OVS_KEY_ATTR_ICMP,      /* struct ovs_key_icmp */
295         OVS_KEY_ATTR_ICMPV6,    /* struct ovs_key_icmpv6 */
296         OVS_KEY_ATTR_ARP,       /* struct ovs_key_arp */
297         OVS_KEY_ATTR_ND,        /* struct ovs_key_nd */
298         OVS_KEY_ATTR_SKB_MARK,  /* u32 skb mark */
299         OVS_KEY_ATTR_TUNNEL,    /* Nested set of ovs_tunnel attributes */
300         OVS_KEY_ATTR_SCTP,      /* struct ovs_key_sctp */
301         OVS_KEY_ATTR_TCP_FLAGS, /* be16 TCP flags. */
302
303 #ifdef __KERNEL__
304         OVS_KEY_ATTR_IPV4_TUNNEL,  /* struct ovs_key_ipv4_tunnel */
305 #endif
306
307         OVS_KEY_ATTR_MPLS = 62, /* array of struct ovs_key_mpls.
308                                  * The implementation may restrict
309                                  * the accepted length of the array. */
310         __OVS_KEY_ATTR_MAX
311 };
312
313 #define OVS_KEY_ATTR_MAX (__OVS_KEY_ATTR_MAX - 1)
314
315 enum ovs_tunnel_key_attr {
316         OVS_TUNNEL_KEY_ATTR_ID,                 /* be64 Tunnel ID */
317         OVS_TUNNEL_KEY_ATTR_IPV4_SRC,           /* be32 src IP address. */
318         OVS_TUNNEL_KEY_ATTR_IPV4_DST,           /* be32 dst IP address. */
319         OVS_TUNNEL_KEY_ATTR_TOS,                /* u8 Tunnel IP ToS. */
320         OVS_TUNNEL_KEY_ATTR_TTL,                /* u8 Tunnel IP TTL. */
321         OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT,      /* No argument, set DF. */
322         OVS_TUNNEL_KEY_ATTR_CSUM,               /* No argument. CSUM packet. */
323         __OVS_TUNNEL_KEY_ATTR_MAX
324 };
325
326 #define OVS_TUNNEL_KEY_ATTR_MAX (__OVS_TUNNEL_KEY_ATTR_MAX - 1)
327
328 /**
329  * enum ovs_frag_type - IPv4 and IPv6 fragment type
330  * @OVS_FRAG_TYPE_NONE: Packet is not a fragment.
331  * @OVS_FRAG_TYPE_FIRST: Packet is a fragment with offset 0.
332  * @OVS_FRAG_TYPE_LATER: Packet is a fragment with nonzero offset.
333  *
334  * Used as the @ipv4_frag in &struct ovs_key_ipv4 and as @ipv6_frag &struct
335  * ovs_key_ipv6.
336  */
337 enum ovs_frag_type {
338         OVS_FRAG_TYPE_NONE,
339         OVS_FRAG_TYPE_FIRST,
340         OVS_FRAG_TYPE_LATER,
341         __OVS_FRAG_TYPE_MAX
342 };
343
344 #define OVS_FRAG_TYPE_MAX (__OVS_FRAG_TYPE_MAX - 1)
345
346 struct ovs_key_ethernet {
347         __u8     eth_src[ETH_ALEN];
348         __u8     eth_dst[ETH_ALEN];
349 };
350
351 struct ovs_key_mpls {
352         __be32 mpls_lse;
353 };
354
355 struct ovs_key_ipv4 {
356         __be32 ipv4_src;
357         __be32 ipv4_dst;
358         __u8   ipv4_proto;
359         __u8   ipv4_tos;
360         __u8   ipv4_ttl;
361         __u8   ipv4_frag;       /* One of OVS_FRAG_TYPE_*. */
362 };
363
364 struct ovs_key_ipv6 {
365         __be32 ipv6_src[4];
366         __be32 ipv6_dst[4];
367         __be32 ipv6_label;      /* 20-bits in least-significant bits. */
368         __u8   ipv6_proto;
369         __u8   ipv6_tclass;
370         __u8   ipv6_hlimit;
371         __u8   ipv6_frag;       /* One of OVS_FRAG_TYPE_*. */
372 };
373
374 struct ovs_key_tcp {
375         __be16 tcp_src;
376         __be16 tcp_dst;
377 };
378
379 struct ovs_key_udp {
380         __be16 udp_src;
381         __be16 udp_dst;
382 };
383
384 struct ovs_key_sctp {
385         __be16 sctp_src;
386         __be16 sctp_dst;
387 };
388
389 struct ovs_key_icmp {
390         __u8 icmp_type;
391         __u8 icmp_code;
392 };
393
394 struct ovs_key_icmpv6 {
395         __u8 icmpv6_type;
396         __u8 icmpv6_code;
397 };
398
399 struct ovs_key_arp {
400         __be32 arp_sip;
401         __be32 arp_tip;
402         __be16 arp_op;
403         __u8   arp_sha[ETH_ALEN];
404         __u8   arp_tha[ETH_ALEN];
405 };
406
407 struct ovs_key_nd {
408         __u32 nd_target[4];
409         __u8  nd_sll[ETH_ALEN];
410         __u8  nd_tll[ETH_ALEN];
411 };
412
413 /**
414  * enum ovs_flow_attr - attributes for %OVS_FLOW_* commands.
415  * @OVS_FLOW_ATTR_KEY: Nested %OVS_KEY_ATTR_* attributes specifying the flow
416  * key.  Always present in notifications.  Required for all requests (except
417  * dumps).
418  * @OVS_FLOW_ATTR_ACTIONS: Nested %OVS_ACTION_ATTR_* attributes specifying
419  * the actions to take for packets that match the key.  Always present in
420  * notifications.  Required for %OVS_FLOW_CMD_NEW requests, optional for
421  * %OVS_FLOW_CMD_SET requests.
422  * @OVS_FLOW_ATTR_STATS: &struct ovs_flow_stats giving statistics for this
423  * flow.  Present in notifications if the stats would be nonzero.  Ignored in
424  * requests.
425  * @OVS_FLOW_ATTR_TCP_FLAGS: An 8-bit value giving the OR'd value of all of the
426  * TCP flags seen on packets in this flow.  Only present in notifications for
427  * TCP flows, and only if it would be nonzero.  Ignored in requests.
428  * @OVS_FLOW_ATTR_USED: A 64-bit integer giving the time, in milliseconds on
429  * the system monotonic clock, at which a packet was last processed for this
430  * flow.  Only present in notifications if a packet has been processed for this
431  * flow.  Ignored in requests.
432  * @OVS_FLOW_ATTR_CLEAR: If present in a %OVS_FLOW_CMD_SET request, clears the
433  * last-used time, accumulated TCP flags, and statistics for this flow.
434  * Otherwise ignored in requests.  Never present in notifications.
435  * @OVS_FLOW_ATTR_MASK: Nested %OVS_KEY_ATTR_* attributes specifying the
436  * mask bits for wildcarded flow match. Mask bit value '1' specifies exact
437  * match with corresponding flow key bit, while mask bit value '0' specifies
438  * a wildcarded match. Omitting attribute is treated as wildcarding all
439  * corresponding fields. Optional for all requests. If not present,
440  * all flow key bits are exact match bits.
441  *
442  * These attributes follow the &struct ovs_header within the Generic Netlink
443  * payload for %OVS_FLOW_* commands.
444  */
445 enum ovs_flow_attr {
446         OVS_FLOW_ATTR_UNSPEC,
447         OVS_FLOW_ATTR_KEY,       /* Sequence of OVS_KEY_ATTR_* attributes. */
448         OVS_FLOW_ATTR_ACTIONS,   /* Nested OVS_ACTION_ATTR_* attributes. */
449         OVS_FLOW_ATTR_STATS,     /* struct ovs_flow_stats. */
450         OVS_FLOW_ATTR_TCP_FLAGS, /* 8-bit OR'd TCP flags. */
451         OVS_FLOW_ATTR_USED,      /* u64 msecs last used in monotonic time. */
452         OVS_FLOW_ATTR_CLEAR,     /* Flag to clear stats, tcp_flags, used. */
453         OVS_FLOW_ATTR_MASK,      /* Sequence of OVS_KEY_ATTR_* attributes. */
454         __OVS_FLOW_ATTR_MAX
455 };
456
457 #define OVS_FLOW_ATTR_MAX (__OVS_FLOW_ATTR_MAX - 1)
458
459 /**
460  * enum ovs_sample_attr - Attributes for %OVS_ACTION_ATTR_SAMPLE action.
461  * @OVS_SAMPLE_ATTR_PROBABILITY: 32-bit fraction of packets to sample with
462  * @OVS_ACTION_ATTR_SAMPLE.  A value of 0 samples no packets, a value of
463  * %UINT32_MAX samples all packets and intermediate values sample intermediate
464  * fractions of packets.
465  * @OVS_SAMPLE_ATTR_ACTIONS: Set of actions to execute in sampling event.
466  * Actions are passed as nested attributes.
467  *
468  * Executes the specified actions with the given probability on a per-packet
469  * basis.
470  */
471 enum ovs_sample_attr {
472         OVS_SAMPLE_ATTR_UNSPEC,
473         OVS_SAMPLE_ATTR_PROBABILITY, /* u32 number */
474         OVS_SAMPLE_ATTR_ACTIONS,     /* Nested OVS_ACTION_ATTR_* attributes. */
475         __OVS_SAMPLE_ATTR_MAX,
476 };
477
478 #define OVS_SAMPLE_ATTR_MAX (__OVS_SAMPLE_ATTR_MAX - 1)
479
480 /**
481  * enum ovs_userspace_attr - Attributes for %OVS_ACTION_ATTR_USERSPACE action.
482  * @OVS_USERSPACE_ATTR_PID: u32 Netlink PID to which the %OVS_PACKET_CMD_ACTION
483  * message should be sent.  Required.
484  * @OVS_USERSPACE_ATTR_USERDATA: If present, its variable-length argument is
485  * copied to the %OVS_PACKET_CMD_ACTION message as %OVS_PACKET_ATTR_USERDATA.
486  */
487 enum ovs_userspace_attr {
488         OVS_USERSPACE_ATTR_UNSPEC,
489         OVS_USERSPACE_ATTR_PID,       /* u32 Netlink PID to receive upcalls. */
490         OVS_USERSPACE_ATTR_USERDATA,  /* Optional user-specified cookie. */
491         __OVS_USERSPACE_ATTR_MAX
492 };
493
494 #define OVS_USERSPACE_ATTR_MAX (__OVS_USERSPACE_ATTR_MAX - 1)
495
496 /**
497  * struct ovs_action_push_mpls - %OVS_ACTION_ATTR_PUSH_MPLS action argument.
498  * @mpls_lse: MPLS label stack entry to push.
499  * @mpls_ethertype: Ethertype to set in the encapsulating ethernet frame.
500  *
501  * The only values @mpls_ethertype should ever be given are %ETH_P_MPLS_UC and
502  * %ETH_P_MPLS_MC, indicating MPLS unicast or multicast. Other are rejected.
503  */
504 struct ovs_action_push_mpls {
505         __be32 mpls_lse;
506         __be16 mpls_ethertype; /* Either %ETH_P_MPLS_UC or %ETH_P_MPLS_MC */
507 };
508
509 /**
510  * struct ovs_action_push_vlan - %OVS_ACTION_ATTR_PUSH_VLAN action argument.
511  * @vlan_tpid: Tag protocol identifier (TPID) to push.
512  * @vlan_tci: Tag control identifier (TCI) to push.  The CFI bit must be set
513  * (but it will not be set in the 802.1Q header that is pushed).
514  *
515  * The @vlan_tpid value is typically %ETH_P_8021Q.  The only acceptable TPID
516  * values are those that the kernel module also parses as 802.1Q headers, to
517  * prevent %OVS_ACTION_ATTR_PUSH_VLAN followed by %OVS_ACTION_ATTR_POP_VLAN
518  * from having surprising results.
519  */
520 struct ovs_action_push_vlan {
521         __be16 vlan_tpid;       /* 802.1Q TPID. */
522         __be16 vlan_tci;        /* 802.1Q TCI (VLAN ID and priority). */
523 };
524
525 /**
526  * enum ovs_action_attr - Action types.
527  *
528  * @OVS_ACTION_ATTR_OUTPUT: Output packet to port.
529  * @OVS_ACTION_ATTR_USERSPACE: Send packet to userspace according to nested
530  * %OVS_USERSPACE_ATTR_* attributes.
531  * @OVS_ACTION_ATTR_PUSH_VLAN: Push a new outermost 802.1Q header onto the
532  * packet.
533  * @OVS_ACTION_ATTR_POP_VLAN: Pop the outermost 802.1Q header off the packet.
534  * @OVS_ACTION_ATTR_SAMPLE: Probabilitically executes actions, as specified in
535  * the nested %OVS_SAMPLE_ATTR_* attributes.
536  * @OVS_ACTION_ATTR_SET: Replaces the contents of an existing header.  The
537  * single nested %OVS_KEY_ATTR_* attribute specifies a header to modify and its
538  * value.
539  * @OVS_ACTION_ATTR_PUSH_MPLS: Push a new MPLS label stack entry onto the
540  * top of the packets MPLS label stack. Set the ethertype of the
541  * encapsulating frame to either %ETH_P_MPLS_UC or %ETH_P_MPLS_MC to
542  * indicate the new packet contents.
543  * @OVS_ACTION_ATTR_POP_MPLS: Pop an MPLS label stack entry off of the
544  * packet's MPLS label stack.  Set the encapsulating frame's ethertype to
545  * indicate the new packet contents This could potentially still be
546  * %ETH_P_MPLS_* if the resulting MPLS label stack is not empty.  If there
547  * is no MPLS label stack, as determined by ethertype, no action is taken.
548  *
549  * Only a single header can be set with a single %OVS_ACTION_ATTR_SET.  Not all
550  * fields within a header are modifiable, e.g. the IPv4 protocol and fragment
551  * type may not be changed.
552  */
553
554 enum ovs_action_attr {
555         OVS_ACTION_ATTR_UNSPEC,
556         OVS_ACTION_ATTR_OUTPUT,       /* u32 port number. */
557         OVS_ACTION_ATTR_USERSPACE,    /* Nested OVS_USERSPACE_ATTR_*. */
558         OVS_ACTION_ATTR_SET,          /* One nested OVS_KEY_ATTR_*. */
559         OVS_ACTION_ATTR_PUSH_VLAN,    /* struct ovs_action_push_vlan. */
560         OVS_ACTION_ATTR_POP_VLAN,     /* No argument. */
561         OVS_ACTION_ATTR_SAMPLE,       /* Nested OVS_SAMPLE_ATTR_*. */
562         OVS_ACTION_ATTR_PUSH_MPLS,    /* struct ovs_action_push_mpls. */
563         OVS_ACTION_ATTR_POP_MPLS,     /* __be16 ethertype. */
564         __OVS_ACTION_ATTR_MAX
565 };
566
567 #define OVS_ACTION_ATTR_MAX (__OVS_ACTION_ATTR_MAX - 1)
568
569 #endif /* _LINUX_OPENVSWITCH_H */