xref: /linux/include/uapi/linux/openvswitch.h (revision dd41d33f0b033885211a5d6f3ee19e73238aa9ee)
122e3880aSThomas Graf 
222e3880aSThomas Graf /*
39dd7f890SJarno Rajahalme  * Copyright (c) 2007-2017 Nicira, Inc.
422e3880aSThomas Graf  *
522e3880aSThomas Graf  * This program is free software; you can redistribute it and/or
622e3880aSThomas Graf  * modify it under the terms of version 2 of the GNU General Public
722e3880aSThomas Graf  * License as published by the Free Software Foundation.
822e3880aSThomas Graf  *
922e3880aSThomas Graf  * This program is distributed in the hope that it will be useful, but
1022e3880aSThomas Graf  * WITHOUT ANY WARRANTY; without even the implied warranty of
1122e3880aSThomas Graf  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1222e3880aSThomas Graf  * General Public License for more details.
1322e3880aSThomas Graf  *
1422e3880aSThomas Graf  * You should have received a copy of the GNU General Public License
1522e3880aSThomas Graf  * along with this program; if not, write to the Free Software
1622e3880aSThomas Graf  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
1722e3880aSThomas Graf  * 02110-1301, USA
1822e3880aSThomas Graf  */
1922e3880aSThomas Graf 
2022e3880aSThomas Graf #ifndef _UAPI__LINUX_OPENVSWITCH_H
2122e3880aSThomas Graf #define _UAPI__LINUX_OPENVSWITCH_H 1
2222e3880aSThomas Graf 
2322e3880aSThomas Graf #include <linux/types.h>
2422e3880aSThomas Graf #include <linux/if_ether.h>
2522e3880aSThomas Graf 
2622e3880aSThomas Graf /**
2722e3880aSThomas Graf  * struct ovs_header - header for OVS Generic Netlink messages.
2822e3880aSThomas Graf  * @dp_ifindex: ifindex of local port for datapath (0 to make a request not
2922e3880aSThomas Graf  * specific to a datapath).
3022e3880aSThomas Graf  *
3122e3880aSThomas Graf  * Attributes following the header are specific to a particular OVS Generic
3222e3880aSThomas Graf  * Netlink family, but all of the OVS families use this header.
3322e3880aSThomas Graf  */
3422e3880aSThomas Graf 
3522e3880aSThomas Graf struct ovs_header {
3622e3880aSThomas Graf 	int dp_ifindex;
3722e3880aSThomas Graf };
3822e3880aSThomas Graf 
3922e3880aSThomas Graf /* Datapaths. */
4022e3880aSThomas Graf 
4122e3880aSThomas Graf #define OVS_DATAPATH_FAMILY  "ovs_datapath"
4222e3880aSThomas Graf #define OVS_DATAPATH_MCGROUP "ovs_datapath"
4344da5ae5SThomas Graf 
4444da5ae5SThomas Graf /* V2:
4544da5ae5SThomas Graf  *   - API users are expected to provide OVS_DP_ATTR_USER_FEATURES
4644da5ae5SThomas Graf  *     when creating the datapath.
4744da5ae5SThomas Graf  */
4844da5ae5SThomas Graf #define OVS_DATAPATH_VERSION 2
4944da5ae5SThomas Graf 
5044da5ae5SThomas Graf /* First OVS datapath version to support features */
5144da5ae5SThomas Graf #define OVS_DP_VER_FEATURES 2
5222e3880aSThomas Graf 
5322e3880aSThomas Graf enum ovs_datapath_cmd {
5422e3880aSThomas Graf 	OVS_DP_CMD_UNSPEC,
5522e3880aSThomas Graf 	OVS_DP_CMD_NEW,
5622e3880aSThomas Graf 	OVS_DP_CMD_DEL,
5722e3880aSThomas Graf 	OVS_DP_CMD_GET,
5822e3880aSThomas Graf 	OVS_DP_CMD_SET
5922e3880aSThomas Graf };
6022e3880aSThomas Graf 
6122e3880aSThomas Graf /**
6222e3880aSThomas Graf  * enum ovs_datapath_attr - attributes for %OVS_DP_* commands.
6322e3880aSThomas Graf  * @OVS_DP_ATTR_NAME: Name of the network device that serves as the "local
6422e3880aSThomas Graf  * port".  This is the name of the network device whose dp_ifindex is given in
6522e3880aSThomas Graf  * the &struct ovs_header.  Always present in notifications.  Required in
6622e3880aSThomas Graf  * %OVS_DP_NEW requests.  May be used as an alternative to specifying
6722e3880aSThomas Graf  * dp_ifindex in other requests (with a dp_ifindex of 0).
6822e3880aSThomas Graf  * @OVS_DP_ATTR_UPCALL_PID: The Netlink socket in userspace that is initially
6922e3880aSThomas Graf  * set on the datapath port (for OVS_ACTION_ATTR_MISS).  Only valid on
7022e3880aSThomas Graf  * %OVS_DP_CMD_NEW requests. A value of zero indicates that upcalls should
7122e3880aSThomas Graf  * not be sent.
7222e3880aSThomas Graf  * @OVS_DP_ATTR_STATS: Statistics about packets that have passed through the
7322e3880aSThomas Graf  * datapath.  Always present in notifications.
741bd7116fSAndy Zhou  * @OVS_DP_ATTR_MEGAFLOW_STATS: Statistics about mega flow masks usage for the
751bd7116fSAndy Zhou  * datapath. Always present in notifications.
7622e3880aSThomas Graf  *
7722e3880aSThomas Graf  * These attributes follow the &struct ovs_header within the Generic Netlink
7822e3880aSThomas Graf  * payload for %OVS_DP_* commands.
7922e3880aSThomas Graf  */
8022e3880aSThomas Graf enum ovs_datapath_attr {
8122e3880aSThomas Graf 	OVS_DP_ATTR_UNSPEC,
8222e3880aSThomas Graf 	OVS_DP_ATTR_NAME,		/* name of dp_ifindex netdev */
8322e3880aSThomas Graf 	OVS_DP_ATTR_UPCALL_PID,		/* Netlink PID to receive upcalls */
8422e3880aSThomas Graf 	OVS_DP_ATTR_STATS,		/* struct ovs_dp_stats */
851bd7116fSAndy Zhou 	OVS_DP_ATTR_MEGAFLOW_STATS,	/* struct ovs_dp_megaflow_stats */
8643d4be9cSThomas Graf 	OVS_DP_ATTR_USER_FEATURES,	/* OVS_DP_F_*  */
8766c7a5eeSNicolas Dichtel 	OVS_DP_ATTR_PAD,
8822e3880aSThomas Graf 	__OVS_DP_ATTR_MAX
8922e3880aSThomas Graf };
9022e3880aSThomas Graf 
9122e3880aSThomas Graf #define OVS_DP_ATTR_MAX (__OVS_DP_ATTR_MAX - 1)
9222e3880aSThomas Graf 
9322e3880aSThomas Graf struct ovs_dp_stats {
9422e3880aSThomas Graf 	__u64 n_hit;             /* Number of flow table matches. */
9522e3880aSThomas Graf 	__u64 n_missed;          /* Number of flow table misses. */
9622e3880aSThomas Graf 	__u64 n_lost;            /* Number of misses not sent to userspace. */
9722e3880aSThomas Graf 	__u64 n_flows;           /* Number of flows present */
9822e3880aSThomas Graf };
9922e3880aSThomas Graf 
1001bd7116fSAndy Zhou struct ovs_dp_megaflow_stats {
1011bd7116fSAndy Zhou 	__u64 n_mask_hit;	 /* Number of masks used for flow lookups. */
1021bd7116fSAndy Zhou 	__u32 n_masks;		 /* Number of masks for the datapath. */
1031bd7116fSAndy Zhou 	__u32 pad0;		 /* Pad for future expension. */
1041bd7116fSAndy Zhou 	__u64 pad1;		 /* Pad for future expension. */
1051bd7116fSAndy Zhou 	__u64 pad2;		 /* Pad for future expension. */
1061bd7116fSAndy Zhou };
1071bd7116fSAndy Zhou 
10822e3880aSThomas Graf struct ovs_vport_stats {
10922e3880aSThomas Graf 	__u64   rx_packets;		/* total packets received       */
11022e3880aSThomas Graf 	__u64   tx_packets;		/* total packets transmitted    */
11122e3880aSThomas Graf 	__u64   rx_bytes;		/* total bytes received         */
11222e3880aSThomas Graf 	__u64   tx_bytes;		/* total bytes transmitted      */
11322e3880aSThomas Graf 	__u64   rx_errors;		/* bad packets received         */
11422e3880aSThomas Graf 	__u64   tx_errors;		/* packet transmit problems     */
11522e3880aSThomas Graf 	__u64   rx_dropped;		/* no space in linux buffers    */
11622e3880aSThomas Graf 	__u64   tx_dropped;		/* no space available in linux  */
11722e3880aSThomas Graf };
11822e3880aSThomas Graf 
11943d4be9cSThomas Graf /* Allow last Netlink attribute to be unaligned */
12043d4be9cSThomas Graf #define OVS_DP_F_UNALIGNED	(1 << 0)
12143d4be9cSThomas Graf 
1225cd667b0SAlex Wang /* Allow datapath to associate multiple Netlink PIDs to each vport */
1235cd667b0SAlex Wang #define OVS_DP_F_VPORT_PIDS	(1 << 1)
1245cd667b0SAlex Wang 
12522e3880aSThomas Graf /* Fixed logical ports. */
12622e3880aSThomas Graf #define OVSP_LOCAL      ((__u32)0)
12722e3880aSThomas Graf 
12822e3880aSThomas Graf /* Packet transfer. */
12922e3880aSThomas Graf 
13022e3880aSThomas Graf #define OVS_PACKET_FAMILY "ovs_packet"
13122e3880aSThomas Graf #define OVS_PACKET_VERSION 0x1
13222e3880aSThomas Graf 
13322e3880aSThomas Graf enum ovs_packet_cmd {
13422e3880aSThomas Graf 	OVS_PACKET_CMD_UNSPEC,
13522e3880aSThomas Graf 
13622e3880aSThomas Graf 	/* Kernel-to-user notifications. */
13722e3880aSThomas Graf 	OVS_PACKET_CMD_MISS,    /* Flow table miss. */
13822e3880aSThomas Graf 	OVS_PACKET_CMD_ACTION,  /* OVS_ACTION_ATTR_USERSPACE action. */
13922e3880aSThomas Graf 
14022e3880aSThomas Graf 	/* Userspace commands. */
14122e3880aSThomas Graf 	OVS_PACKET_CMD_EXECUTE  /* Apply actions to a packet. */
14222e3880aSThomas Graf };
14322e3880aSThomas Graf 
14422e3880aSThomas Graf /**
14522e3880aSThomas Graf  * enum ovs_packet_attr - attributes for %OVS_PACKET_* commands.
14622e3880aSThomas Graf  * @OVS_PACKET_ATTR_PACKET: Present for all notifications.  Contains the entire
14722e3880aSThomas Graf  * packet as received, from the start of the Ethernet header onward.  For
14822e3880aSThomas Graf  * %OVS_PACKET_CMD_ACTION, %OVS_PACKET_ATTR_PACKET reflects changes made by
14922e3880aSThomas Graf  * actions preceding %OVS_ACTION_ATTR_USERSPACE, but %OVS_PACKET_ATTR_KEY is
15022e3880aSThomas Graf  * the flow key extracted from the packet as originally received.
15122e3880aSThomas Graf  * @OVS_PACKET_ATTR_KEY: Present for all notifications.  Contains the flow key
15222e3880aSThomas Graf  * extracted from the packet as nested %OVS_KEY_ATTR_* attributes.  This allows
15322e3880aSThomas Graf  * userspace to adapt its flow setup strategy by comparing its notion of the
15422e3880aSThomas Graf  * flow key against the kernel's.
15522e3880aSThomas Graf  * @OVS_PACKET_ATTR_ACTIONS: Contains actions for the packet.  Used
15622e3880aSThomas Graf  * for %OVS_PACKET_CMD_EXECUTE.  It has nested %OVS_ACTION_ATTR_* attributes.
157ccea7445SNeil McKee  * Also used in upcall when %OVS_ACTION_ATTR_USERSPACE has optional
158ccea7445SNeil McKee  * %OVS_USERSPACE_ATTR_ACTIONS attribute.
15922e3880aSThomas Graf  * @OVS_PACKET_ATTR_USERDATA: Present for an %OVS_PACKET_CMD_ACTION
16022e3880aSThomas Graf  * notification if the %OVS_ACTION_ATTR_USERSPACE action specified an
16122e3880aSThomas Graf  * %OVS_USERSPACE_ATTR_USERDATA attribute, with the same length and content
16222e3880aSThomas Graf  * specified there.
1638f0aad6fSWenyu Zhang  * @OVS_PACKET_ATTR_EGRESS_TUN_KEY: Present for an %OVS_PACKET_CMD_ACTION
1648f0aad6fSWenyu Zhang  * notification if the %OVS_ACTION_ATTR_USERSPACE action specified an
1658f0aad6fSWenyu Zhang  * %OVS_USERSPACE_ATTR_EGRESS_TUN_PORT attribute, which is sent only if the
1668f0aad6fSWenyu Zhang  * output port is actually a tunnel port. Contains the output tunnel key
1678f0aad6fSWenyu Zhang  * extracted from the packet as nested %OVS_TUNNEL_KEY_ATTR_* attributes.
1687f8a436eSJoe Stringer  * @OVS_PACKET_ATTR_MRU: Present for an %OVS_PACKET_CMD_ACTION and
169b95e5928SWilliam Tu  * @OVS_PACKET_ATTR_LEN: Packet size before truncation.
1707f8a436eSJoe Stringer  * %OVS_PACKET_ATTR_USERSPACE action specify the Maximum received fragment
1717f8a436eSJoe Stringer  * size.
17222e3880aSThomas Graf  *
17322e3880aSThomas Graf  * These attributes follow the &struct ovs_header within the Generic Netlink
17422e3880aSThomas Graf  * payload for %OVS_PACKET_* commands.
17522e3880aSThomas Graf  */
17622e3880aSThomas Graf enum ovs_packet_attr {
17722e3880aSThomas Graf 	OVS_PACKET_ATTR_UNSPEC,
17822e3880aSThomas Graf 	OVS_PACKET_ATTR_PACKET,      /* Packet data. */
17922e3880aSThomas Graf 	OVS_PACKET_ATTR_KEY,         /* Nested OVS_KEY_ATTR_* attributes. */
18022e3880aSThomas Graf 	OVS_PACKET_ATTR_ACTIONS,     /* Nested OVS_ACTION_ATTR_* attributes. */
18122e3880aSThomas Graf 	OVS_PACKET_ATTR_USERDATA,    /* OVS_ACTION_ATTR_USERSPACE arg. */
1828f0aad6fSWenyu Zhang 	OVS_PACKET_ATTR_EGRESS_TUN_KEY,  /* Nested OVS_TUNNEL_KEY_ATTR_*
1838f0aad6fSWenyu Zhang 					    attributes. */
1841ba39804SThomas Graf 	OVS_PACKET_ATTR_UNUSED1,
1851ba39804SThomas Graf 	OVS_PACKET_ATTR_UNUSED2,
1861ba39804SThomas Graf 	OVS_PACKET_ATTR_PROBE,      /* Packet operation is a feature probe,
1871ba39804SThomas Graf 				       error logging should be suppressed. */
1887f8a436eSJoe Stringer 	OVS_PACKET_ATTR_MRU,	    /* Maximum received IP fragment size. */
189b95e5928SWilliam Tu 	OVS_PACKET_ATTR_LEN,		/* Packet size before truncation. */
19022e3880aSThomas Graf 	__OVS_PACKET_ATTR_MAX
19122e3880aSThomas Graf };
19222e3880aSThomas Graf 
19322e3880aSThomas Graf #define OVS_PACKET_ATTR_MAX (__OVS_PACKET_ATTR_MAX - 1)
19422e3880aSThomas Graf 
19522e3880aSThomas Graf /* Virtual ports. */
19622e3880aSThomas Graf 
19722e3880aSThomas Graf #define OVS_VPORT_FAMILY  "ovs_vport"
19822e3880aSThomas Graf #define OVS_VPORT_MCGROUP "ovs_vport"
19922e3880aSThomas Graf #define OVS_VPORT_VERSION 0x1
20022e3880aSThomas Graf 
20122e3880aSThomas Graf enum ovs_vport_cmd {
20222e3880aSThomas Graf 	OVS_VPORT_CMD_UNSPEC,
20322e3880aSThomas Graf 	OVS_VPORT_CMD_NEW,
20422e3880aSThomas Graf 	OVS_VPORT_CMD_DEL,
20522e3880aSThomas Graf 	OVS_VPORT_CMD_GET,
20622e3880aSThomas Graf 	OVS_VPORT_CMD_SET
20722e3880aSThomas Graf };
20822e3880aSThomas Graf 
20922e3880aSThomas Graf enum ovs_vport_type {
21022e3880aSThomas Graf 	OVS_VPORT_TYPE_UNSPEC,
21122e3880aSThomas Graf 	OVS_VPORT_TYPE_NETDEV,   /* network device */
21222e3880aSThomas Graf 	OVS_VPORT_TYPE_INTERNAL, /* network device implemented by datapath */
213aa310701SPravin B Shelar 	OVS_VPORT_TYPE_GRE,      /* GRE tunnel. */
21458264848SPravin B Shelar 	OVS_VPORT_TYPE_VXLAN,	 /* VXLAN tunnel. */
215f5796684SJesse Gross 	OVS_VPORT_TYPE_GENEVE,	 /* Geneve tunnel. */
21622e3880aSThomas Graf 	__OVS_VPORT_TYPE_MAX
21722e3880aSThomas Graf };
21822e3880aSThomas Graf 
21922e3880aSThomas Graf #define OVS_VPORT_TYPE_MAX (__OVS_VPORT_TYPE_MAX - 1)
22022e3880aSThomas Graf 
22122e3880aSThomas Graf /**
22222e3880aSThomas Graf  * enum ovs_vport_attr - attributes for %OVS_VPORT_* commands.
22322e3880aSThomas Graf  * @OVS_VPORT_ATTR_PORT_NO: 32-bit port number within datapath.
22422e3880aSThomas Graf  * @OVS_VPORT_ATTR_TYPE: 32-bit %OVS_VPORT_TYPE_* constant describing the type
22522e3880aSThomas Graf  * of vport.
22622e3880aSThomas Graf  * @OVS_VPORT_ATTR_NAME: Name of vport.  For a vport based on a network device
22722e3880aSThomas Graf  * this is the name of the network device.  Maximum length %IFNAMSIZ-1 bytes
22822e3880aSThomas Graf  * plus a null terminator.
22922e3880aSThomas Graf  * @OVS_VPORT_ATTR_OPTIONS: Vport-specific configuration information.
2305cd667b0SAlex Wang  * @OVS_VPORT_ATTR_UPCALL_PID: The array of Netlink socket pids in userspace
2315cd667b0SAlex Wang  * among which OVS_PACKET_CMD_MISS upcalls will be distributed for packets
2325cd667b0SAlex Wang  * received on this port.  If this is a single-element array of value 0,
2335cd667b0SAlex Wang  * upcalls should not be sent.
23422e3880aSThomas Graf  * @OVS_VPORT_ATTR_STATS: A &struct ovs_vport_stats giving statistics for
23522e3880aSThomas Graf  * packets sent or received through the vport.
23622e3880aSThomas Graf  *
23722e3880aSThomas Graf  * These attributes follow the &struct ovs_header within the Generic Netlink
23822e3880aSThomas Graf  * payload for %OVS_VPORT_* commands.
23922e3880aSThomas Graf  *
24022e3880aSThomas Graf  * For %OVS_VPORT_CMD_NEW requests, the %OVS_VPORT_ATTR_TYPE and
24122e3880aSThomas Graf  * %OVS_VPORT_ATTR_NAME attributes are required.  %OVS_VPORT_ATTR_PORT_NO is
24222e3880aSThomas Graf  * optional; if not specified a free port number is automatically selected.
24322e3880aSThomas Graf  * Whether %OVS_VPORT_ATTR_OPTIONS is required or optional depends on the type
24422e3880aSThomas Graf  * of vport.
24522e3880aSThomas Graf  *
24622e3880aSThomas Graf  * For other requests, if %OVS_VPORT_ATTR_NAME is specified then it is used to
24722e3880aSThomas Graf  * look up the vport to operate on; otherwise dp_idx from the &struct
24822e3880aSThomas Graf  * ovs_header plus %OVS_VPORT_ATTR_PORT_NO determine the vport.
24922e3880aSThomas Graf  */
25022e3880aSThomas Graf enum ovs_vport_attr {
25122e3880aSThomas Graf 	OVS_VPORT_ATTR_UNSPEC,
25222e3880aSThomas Graf 	OVS_VPORT_ATTR_PORT_NO,	/* u32 port number within datapath */
25322e3880aSThomas Graf 	OVS_VPORT_ATTR_TYPE,	/* u32 OVS_VPORT_TYPE_* constant. */
25422e3880aSThomas Graf 	OVS_VPORT_ATTR_NAME,	/* string name, up to IFNAMSIZ bytes long */
25522e3880aSThomas Graf 	OVS_VPORT_ATTR_OPTIONS, /* nested attributes, varies by vport type */
2565cd667b0SAlex Wang 	OVS_VPORT_ATTR_UPCALL_PID, /* array of u32 Netlink socket PIDs for */
2575cd667b0SAlex Wang 				/* receiving upcalls */
25822e3880aSThomas Graf 	OVS_VPORT_ATTR_STATS,	/* struct ovs_vport_stats */
25966c7a5eeSNicolas Dichtel 	OVS_VPORT_ATTR_PAD,
26022e3880aSThomas Graf 	__OVS_VPORT_ATTR_MAX
26122e3880aSThomas Graf };
26222e3880aSThomas Graf 
26322e3880aSThomas Graf #define OVS_VPORT_ATTR_MAX (__OVS_VPORT_ATTR_MAX - 1)
26422e3880aSThomas Graf 
2651dd144cfSThomas Graf enum {
2661dd144cfSThomas Graf 	OVS_VXLAN_EXT_UNSPEC,
2671dd144cfSThomas Graf 	OVS_VXLAN_EXT_GBP,	/* Flag or __u32 */
2681dd144cfSThomas Graf 	__OVS_VXLAN_EXT_MAX,
2691dd144cfSThomas Graf };
2701dd144cfSThomas Graf 
2711dd144cfSThomas Graf #define OVS_VXLAN_EXT_MAX (__OVS_VXLAN_EXT_MAX - 1)
2721dd144cfSThomas Graf 
2731dd144cfSThomas Graf 
27458264848SPravin B Shelar /* OVS_VPORT_ATTR_OPTIONS attributes for tunnels.
27558264848SPravin B Shelar  */
27658264848SPravin B Shelar enum {
27758264848SPravin B Shelar 	OVS_TUNNEL_ATTR_UNSPEC,
27858264848SPravin B Shelar 	OVS_TUNNEL_ATTR_DST_PORT, /* 16-bit UDP port, used by L4 tunnels. */
2791dd144cfSThomas Graf 	OVS_TUNNEL_ATTR_EXTENSION,
28058264848SPravin B Shelar 	__OVS_TUNNEL_ATTR_MAX
28158264848SPravin B Shelar };
28258264848SPravin B Shelar 
28358264848SPravin B Shelar #define OVS_TUNNEL_ATTR_MAX (__OVS_TUNNEL_ATTR_MAX - 1)
28458264848SPravin B Shelar 
28522e3880aSThomas Graf /* Flows. */
28622e3880aSThomas Graf 
28722e3880aSThomas Graf #define OVS_FLOW_FAMILY  "ovs_flow"
28822e3880aSThomas Graf #define OVS_FLOW_MCGROUP "ovs_flow"
28922e3880aSThomas Graf #define OVS_FLOW_VERSION 0x1
29022e3880aSThomas Graf 
29122e3880aSThomas Graf enum ovs_flow_cmd {
29222e3880aSThomas Graf 	OVS_FLOW_CMD_UNSPEC,
29322e3880aSThomas Graf 	OVS_FLOW_CMD_NEW,
29422e3880aSThomas Graf 	OVS_FLOW_CMD_DEL,
29522e3880aSThomas Graf 	OVS_FLOW_CMD_GET,
29622e3880aSThomas Graf 	OVS_FLOW_CMD_SET
29722e3880aSThomas Graf };
29822e3880aSThomas Graf 
29922e3880aSThomas Graf struct ovs_flow_stats {
30022e3880aSThomas Graf 	__u64 n_packets;         /* Number of matched packets. */
30122e3880aSThomas Graf 	__u64 n_bytes;           /* Number of matched bytes. */
30222e3880aSThomas Graf };
30322e3880aSThomas Graf 
30422e3880aSThomas Graf enum ovs_key_attr {
30522e3880aSThomas Graf 	OVS_KEY_ATTR_UNSPEC,
30622e3880aSThomas Graf 	OVS_KEY_ATTR_ENCAP,	/* Nested set of encapsulated attributes. */
30722e3880aSThomas Graf 	OVS_KEY_ATTR_PRIORITY,  /* u32 skb->priority */
30822e3880aSThomas Graf 	OVS_KEY_ATTR_IN_PORT,   /* u32 OVS dp port number */
30922e3880aSThomas Graf 	OVS_KEY_ATTR_ETHERNET,  /* struct ovs_key_ethernet */
31022e3880aSThomas Graf 	OVS_KEY_ATTR_VLAN,	/* be16 VLAN TCI */
31122e3880aSThomas Graf 	OVS_KEY_ATTR_ETHERTYPE,	/* be16 Ethernet type */
31222e3880aSThomas Graf 	OVS_KEY_ATTR_IPV4,      /* struct ovs_key_ipv4 */
31322e3880aSThomas Graf 	OVS_KEY_ATTR_IPV6,      /* struct ovs_key_ipv6 */
31422e3880aSThomas Graf 	OVS_KEY_ATTR_TCP,       /* struct ovs_key_tcp */
31522e3880aSThomas Graf 	OVS_KEY_ATTR_UDP,       /* struct ovs_key_udp */
31622e3880aSThomas Graf 	OVS_KEY_ATTR_ICMP,      /* struct ovs_key_icmp */
31722e3880aSThomas Graf 	OVS_KEY_ATTR_ICMPV6,    /* struct ovs_key_icmpv6 */
31822e3880aSThomas Graf 	OVS_KEY_ATTR_ARP,       /* struct ovs_key_arp */
31922e3880aSThomas Graf 	OVS_KEY_ATTR_ND,        /* struct ovs_key_nd */
32022e3880aSThomas Graf 	OVS_KEY_ATTR_SKB_MARK,  /* u32 skb mark */
3217d5437c7SPravin B Shelar 	OVS_KEY_ATTR_TUNNEL,    /* Nested set of ovs_tunnel attributes */
322a175a723SJoe Stringer 	OVS_KEY_ATTR_SCTP,      /* struct ovs_key_sctp */
3235eb26b15SJarno Rajahalme 	OVS_KEY_ATTR_TCP_FLAGS,	/* be16 TCP flags. */
324971427f3SAndy Zhou 	OVS_KEY_ATTR_DP_HASH,      /* u32 hash value. Value 0 indicates the hash
325971427f3SAndy Zhou 				   is not computed by the datapath. */
326971427f3SAndy Zhou 	OVS_KEY_ATTR_RECIRC_ID, /* u32 recirc id */
32725cd9ba0SSimon Horman 	OVS_KEY_ATTR_MPLS,      /* array of struct ovs_key_mpls.
32825cd9ba0SSimon Horman 				 * The implementation may restrict
32925cd9ba0SSimon Horman 				 * the accepted length of the array. */
330fbccce59SJoe Stringer 	OVS_KEY_ATTR_CT_STATE,	/* u32 bitmask of OVS_CS_F_* */
3317f8a436eSJoe Stringer 	OVS_KEY_ATTR_CT_ZONE,	/* u16 connection tracking zone. */
332182e3042SJoe Stringer 	OVS_KEY_ATTR_CT_MARK,	/* u32 connection tracking mark */
33333db4125SJoe Stringer 	OVS_KEY_ATTR_CT_LABELS,	/* 16-octet connection tracking label */
3349dd7f890SJarno Rajahalme 	OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV4,   /* struct ovs_key_ct_tuple_ipv4 */
3359dd7f890SJarno Rajahalme 	OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV6,   /* struct ovs_key_ct_tuple_ipv6 */
3367d5437c7SPravin B Shelar 
3377d5437c7SPravin B Shelar #ifdef __KERNEL__
3381d8fff90SThomas Graf 	OVS_KEY_ATTR_TUNNEL_INFO,  /* struct ip_tunnel_info */
3397d5437c7SPravin B Shelar #endif
34022e3880aSThomas Graf 	__OVS_KEY_ATTR_MAX
34122e3880aSThomas Graf };
34222e3880aSThomas Graf 
34322e3880aSThomas Graf #define OVS_KEY_ATTR_MAX (__OVS_KEY_ATTR_MAX - 1)
34422e3880aSThomas Graf 
3457d5437c7SPravin B Shelar enum ovs_tunnel_key_attr {
3467d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_ID,                 /* be64 Tunnel ID */
3477d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_IPV4_SRC,           /* be32 src IP address. */
3487d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_IPV4_DST,           /* be32 dst IP address. */
3497d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_TOS,                /* u8 Tunnel IP ToS. */
3507d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_TTL,                /* u8 Tunnel IP TTL. */
3517d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT,      /* No argument, set DF. */
3527d5437c7SPravin B Shelar 	OVS_TUNNEL_KEY_ATTR_CSUM,               /* No argument. CSUM packet. */
35367fa0341SJesse Gross 	OVS_TUNNEL_KEY_ATTR_OAM,                /* No argument. OAM frame.  */
354f5796684SJesse Gross 	OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS,        /* Array of Geneve options. */
3558f0aad6fSWenyu Zhang 	OVS_TUNNEL_KEY_ATTR_TP_SRC,		/* be16 src Transport Port. */
3568f0aad6fSWenyu Zhang 	OVS_TUNNEL_KEY_ATTR_TP_DST,		/* be16 dst Transport Port. */
3571dd144cfSThomas Graf 	OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS,		/* Nested OVS_VXLAN_EXT_* */
3586b26ba3aSJiri Benc 	OVS_TUNNEL_KEY_ATTR_IPV6_SRC,		/* struct in6_addr src IPv6 address. */
3596b26ba3aSJiri Benc 	OVS_TUNNEL_KEY_ATTR_IPV6_DST,		/* struct in6_addr dst IPv6 address. */
360b46f6dedSNicolas Dichtel 	OVS_TUNNEL_KEY_ATTR_PAD,
3617d5437c7SPravin B Shelar 	__OVS_TUNNEL_KEY_ATTR_MAX
3627d5437c7SPravin B Shelar };
3637d5437c7SPravin B Shelar 
3647d5437c7SPravin B Shelar #define OVS_TUNNEL_KEY_ATTR_MAX (__OVS_TUNNEL_KEY_ATTR_MAX - 1)
3657d5437c7SPravin B Shelar 
36622e3880aSThomas Graf /**
36722e3880aSThomas Graf  * enum ovs_frag_type - IPv4 and IPv6 fragment type
36822e3880aSThomas Graf  * @OVS_FRAG_TYPE_NONE: Packet is not a fragment.
36922e3880aSThomas Graf  * @OVS_FRAG_TYPE_FIRST: Packet is a fragment with offset 0.
37022e3880aSThomas Graf  * @OVS_FRAG_TYPE_LATER: Packet is a fragment with nonzero offset.
37122e3880aSThomas Graf  *
37222e3880aSThomas Graf  * Used as the @ipv4_frag in &struct ovs_key_ipv4 and as @ipv6_frag &struct
37322e3880aSThomas Graf  * ovs_key_ipv6.
37422e3880aSThomas Graf  */
37522e3880aSThomas Graf enum ovs_frag_type {
37622e3880aSThomas Graf 	OVS_FRAG_TYPE_NONE,
37722e3880aSThomas Graf 	OVS_FRAG_TYPE_FIRST,
37822e3880aSThomas Graf 	OVS_FRAG_TYPE_LATER,
37922e3880aSThomas Graf 	__OVS_FRAG_TYPE_MAX
38022e3880aSThomas Graf };
38122e3880aSThomas Graf 
38222e3880aSThomas Graf #define OVS_FRAG_TYPE_MAX (__OVS_FRAG_TYPE_MAX - 1)
38322e3880aSThomas Graf 
38422e3880aSThomas Graf struct ovs_key_ethernet {
38522e3880aSThomas Graf 	__u8	 eth_src[ETH_ALEN];
38622e3880aSThomas Graf 	__u8	 eth_dst[ETH_ALEN];
38722e3880aSThomas Graf };
38822e3880aSThomas Graf 
38925cd9ba0SSimon Horman struct ovs_key_mpls {
39025cd9ba0SSimon Horman 	__be32 mpls_lse;
39125cd9ba0SSimon Horman };
39225cd9ba0SSimon Horman 
39322e3880aSThomas Graf struct ovs_key_ipv4 {
39422e3880aSThomas Graf 	__be32 ipv4_src;
39522e3880aSThomas Graf 	__be32 ipv4_dst;
39622e3880aSThomas Graf 	__u8   ipv4_proto;
39722e3880aSThomas Graf 	__u8   ipv4_tos;
39822e3880aSThomas Graf 	__u8   ipv4_ttl;
39922e3880aSThomas Graf 	__u8   ipv4_frag;	/* One of OVS_FRAG_TYPE_*. */
40022e3880aSThomas Graf };
40122e3880aSThomas Graf 
40222e3880aSThomas Graf struct ovs_key_ipv6 {
40322e3880aSThomas Graf 	__be32 ipv6_src[4];
40422e3880aSThomas Graf 	__be32 ipv6_dst[4];
40522e3880aSThomas Graf 	__be32 ipv6_label;	/* 20-bits in least-significant bits. */
40622e3880aSThomas Graf 	__u8   ipv6_proto;
40722e3880aSThomas Graf 	__u8   ipv6_tclass;
40822e3880aSThomas Graf 	__u8   ipv6_hlimit;
40922e3880aSThomas Graf 	__u8   ipv6_frag;	/* One of OVS_FRAG_TYPE_*. */
41022e3880aSThomas Graf };
41122e3880aSThomas Graf 
41222e3880aSThomas Graf struct ovs_key_tcp {
41322e3880aSThomas Graf 	__be16 tcp_src;
41422e3880aSThomas Graf 	__be16 tcp_dst;
41522e3880aSThomas Graf };
41622e3880aSThomas Graf 
41722e3880aSThomas Graf struct ovs_key_udp {
41822e3880aSThomas Graf 	__be16 udp_src;
41922e3880aSThomas Graf 	__be16 udp_dst;
42022e3880aSThomas Graf };
42122e3880aSThomas Graf 
422a175a723SJoe Stringer struct ovs_key_sctp {
423a175a723SJoe Stringer 	__be16 sctp_src;
424a175a723SJoe Stringer 	__be16 sctp_dst;
425a175a723SJoe Stringer };
426a175a723SJoe Stringer 
42722e3880aSThomas Graf struct ovs_key_icmp {
42822e3880aSThomas Graf 	__u8 icmp_type;
42922e3880aSThomas Graf 	__u8 icmp_code;
43022e3880aSThomas Graf };
43122e3880aSThomas Graf 
43222e3880aSThomas Graf struct ovs_key_icmpv6 {
43322e3880aSThomas Graf 	__u8 icmpv6_type;
43422e3880aSThomas Graf 	__u8 icmpv6_code;
43522e3880aSThomas Graf };
43622e3880aSThomas Graf 
43722e3880aSThomas Graf struct ovs_key_arp {
43822e3880aSThomas Graf 	__be32 arp_sip;
43922e3880aSThomas Graf 	__be32 arp_tip;
44022e3880aSThomas Graf 	__be16 arp_op;
44122e3880aSThomas Graf 	__u8   arp_sha[ETH_ALEN];
44222e3880aSThomas Graf 	__u8   arp_tha[ETH_ALEN];
44322e3880aSThomas Graf };
44422e3880aSThomas Graf 
44522e3880aSThomas Graf struct ovs_key_nd {
4461a4e96a0SJarno Rajahalme 	__be32	nd_target[4];
44722e3880aSThomas Graf 	__u8	nd_sll[ETH_ALEN];
44822e3880aSThomas Graf 	__u8	nd_tll[ETH_ALEN];
44922e3880aSThomas Graf };
45022e3880aSThomas Graf 
451cb80d58fSJarno Rajahalme #define OVS_CT_LABELS_LEN_32	4
452cb80d58fSJarno Rajahalme #define OVS_CT_LABELS_LEN	(OVS_CT_LABELS_LEN_32 * sizeof(__u32))
45333db4125SJoe Stringer struct ovs_key_ct_labels {
454cb80d58fSJarno Rajahalme 	union {
45533db4125SJoe Stringer 		__u8	ct_labels[OVS_CT_LABELS_LEN];
456cb80d58fSJarno Rajahalme 		__u32	ct_labels_32[OVS_CT_LABELS_LEN_32];
457cb80d58fSJarno Rajahalme 	};
458c2ac6673SJoe Stringer };
459c2ac6673SJoe Stringer 
4607f8a436eSJoe Stringer /* OVS_KEY_ATTR_CT_STATE flags */
4617f8a436eSJoe Stringer #define OVS_CS_F_NEW               0x01 /* Beginning of a new connection. */
4627f8a436eSJoe Stringer #define OVS_CS_F_ESTABLISHED       0x02 /* Part of an existing connection. */
4637f8a436eSJoe Stringer #define OVS_CS_F_RELATED           0x04 /* Related to an established
4647f8a436eSJoe Stringer 					 * connection. */
465fbccce59SJoe Stringer #define OVS_CS_F_REPLY_DIR         0x08 /* Flow is in the reply direction. */
466fbccce59SJoe Stringer #define OVS_CS_F_INVALID           0x10 /* Could not track connection. */
467fbccce59SJoe Stringer #define OVS_CS_F_TRACKED           0x20 /* Conntrack has occurred. */
46805752523SJarno Rajahalme #define OVS_CS_F_SRC_NAT           0x40 /* Packet's source address/port was
46905752523SJarno Rajahalme 					 * mangled by NAT.
47005752523SJarno Rajahalme 					 */
47105752523SJarno Rajahalme #define OVS_CS_F_DST_NAT           0x80 /* Packet's destination address/port
47205752523SJarno Rajahalme 					 * was mangled by NAT.
47305752523SJarno Rajahalme 					 */
47405752523SJarno Rajahalme 
47505752523SJarno Rajahalme #define OVS_CS_F_NAT_MASK (OVS_CS_F_SRC_NAT | OVS_CS_F_DST_NAT)
4767f8a436eSJoe Stringer 
4779dd7f890SJarno Rajahalme struct ovs_key_ct_tuple_ipv4 {
4789dd7f890SJarno Rajahalme 	__be32 ipv4_src;
4799dd7f890SJarno Rajahalme 	__be32 ipv4_dst;
4809dd7f890SJarno Rajahalme 	__be16 src_port;
4819dd7f890SJarno Rajahalme 	__be16 dst_port;
4829dd7f890SJarno Rajahalme 	__u8   ipv4_proto;
4839dd7f890SJarno Rajahalme };
4849dd7f890SJarno Rajahalme 
4859dd7f890SJarno Rajahalme struct ovs_key_ct_tuple_ipv6 {
4869dd7f890SJarno Rajahalme 	__be32 ipv6_src[4];
4879dd7f890SJarno Rajahalme 	__be32 ipv6_dst[4];
4889dd7f890SJarno Rajahalme 	__be16 src_port;
4899dd7f890SJarno Rajahalme 	__be16 dst_port;
4909dd7f890SJarno Rajahalme 	__u8   ipv6_proto;
4919dd7f890SJarno Rajahalme };
4929dd7f890SJarno Rajahalme 
49322e3880aSThomas Graf /**
49422e3880aSThomas Graf  * enum ovs_flow_attr - attributes for %OVS_FLOW_* commands.
49522e3880aSThomas Graf  * @OVS_FLOW_ATTR_KEY: Nested %OVS_KEY_ATTR_* attributes specifying the flow
49622e3880aSThomas Graf  * key.  Always present in notifications.  Required for all requests (except
49722e3880aSThomas Graf  * dumps).
49822e3880aSThomas Graf  * @OVS_FLOW_ATTR_ACTIONS: Nested %OVS_ACTION_ATTR_* attributes specifying
49922e3880aSThomas Graf  * the actions to take for packets that match the key.  Always present in
50022e3880aSThomas Graf  * notifications.  Required for %OVS_FLOW_CMD_NEW requests, optional for
501be52c9e9SJarno Rajahalme  * %OVS_FLOW_CMD_SET requests.  An %OVS_FLOW_CMD_SET without
502be52c9e9SJarno Rajahalme  * %OVS_FLOW_ATTR_ACTIONS will not modify the actions.  To clear the actions,
503be52c9e9SJarno Rajahalme  * an %OVS_FLOW_ATTR_ACTIONS without any nested attributes must be given.
50422e3880aSThomas Graf  * @OVS_FLOW_ATTR_STATS: &struct ovs_flow_stats giving statistics for this
50522e3880aSThomas Graf  * flow.  Present in notifications if the stats would be nonzero.  Ignored in
50622e3880aSThomas Graf  * requests.
50722e3880aSThomas Graf  * @OVS_FLOW_ATTR_TCP_FLAGS: An 8-bit value giving the OR'd value of all of the
50822e3880aSThomas Graf  * TCP flags seen on packets in this flow.  Only present in notifications for
50922e3880aSThomas Graf  * TCP flows, and only if it would be nonzero.  Ignored in requests.
51022e3880aSThomas Graf  * @OVS_FLOW_ATTR_USED: A 64-bit integer giving the time, in milliseconds on
51122e3880aSThomas Graf  * the system monotonic clock, at which a packet was last processed for this
51222e3880aSThomas Graf  * flow.  Only present in notifications if a packet has been processed for this
51322e3880aSThomas Graf  * flow.  Ignored in requests.
51422e3880aSThomas Graf  * @OVS_FLOW_ATTR_CLEAR: If present in a %OVS_FLOW_CMD_SET request, clears the
51522e3880aSThomas Graf  * last-used time, accumulated TCP flags, and statistics for this flow.
51622e3880aSThomas Graf  * Otherwise ignored in requests.  Never present in notifications.
51703f0d916SAndy Zhou  * @OVS_FLOW_ATTR_MASK: Nested %OVS_KEY_ATTR_* attributes specifying the
51803f0d916SAndy Zhou  * mask bits for wildcarded flow match. Mask bit value '1' specifies exact
51903f0d916SAndy Zhou  * match with corresponding flow key bit, while mask bit value '0' specifies
52003f0d916SAndy Zhou  * a wildcarded match. Omitting attribute is treated as wildcarding all
52103f0d916SAndy Zhou  * corresponding fields. Optional for all requests. If not present,
52203f0d916SAndy Zhou  * all flow key bits are exact match bits.
52374ed7ab9SJoe Stringer  * @OVS_FLOW_ATTR_UFID: A value between 1-16 octets specifying a unique
52474ed7ab9SJoe Stringer  * identifier for the flow. Causes the flow to be indexed by this value rather
52574ed7ab9SJoe Stringer  * than the value of the %OVS_FLOW_ATTR_KEY attribute. Optional for all
52674ed7ab9SJoe Stringer  * requests. Present in notifications if the flow was created with this
52774ed7ab9SJoe Stringer  * attribute.
52874ed7ab9SJoe Stringer  * @OVS_FLOW_ATTR_UFID_FLAGS: A 32-bit value of OR'd %OVS_UFID_F_*
52974ed7ab9SJoe Stringer  * flags that provide alternative semantics for flow installation and
53074ed7ab9SJoe Stringer  * retrieval. Optional for all requests.
53122e3880aSThomas Graf  *
53222e3880aSThomas Graf  * These attributes follow the &struct ovs_header within the Generic Netlink
53322e3880aSThomas Graf  * payload for %OVS_FLOW_* commands.
53422e3880aSThomas Graf  */
53522e3880aSThomas Graf enum ovs_flow_attr {
53622e3880aSThomas Graf 	OVS_FLOW_ATTR_UNSPEC,
53722e3880aSThomas Graf 	OVS_FLOW_ATTR_KEY,       /* Sequence of OVS_KEY_ATTR_* attributes. */
53822e3880aSThomas Graf 	OVS_FLOW_ATTR_ACTIONS,   /* Nested OVS_ACTION_ATTR_* attributes. */
53922e3880aSThomas Graf 	OVS_FLOW_ATTR_STATS,     /* struct ovs_flow_stats. */
54022e3880aSThomas Graf 	OVS_FLOW_ATTR_TCP_FLAGS, /* 8-bit OR'd TCP flags. */
54122e3880aSThomas Graf 	OVS_FLOW_ATTR_USED,      /* u64 msecs last used in monotonic time. */
54222e3880aSThomas Graf 	OVS_FLOW_ATTR_CLEAR,     /* Flag to clear stats, tcp_flags, used. */
54303f0d916SAndy Zhou 	OVS_FLOW_ATTR_MASK,      /* Sequence of OVS_KEY_ATTR_* attributes. */
54405da5898SJarno Rajahalme 	OVS_FLOW_ATTR_PROBE,     /* Flow operation is a feature probe, error
54505da5898SJarno Rajahalme 				  * logging should be suppressed. */
54674ed7ab9SJoe Stringer 	OVS_FLOW_ATTR_UFID,      /* Variable length unique flow identifier. */
54774ed7ab9SJoe Stringer 	OVS_FLOW_ATTR_UFID_FLAGS,/* u32 of OVS_UFID_F_*. */
5480238b720SNicolas Dichtel 	OVS_FLOW_ATTR_PAD,
54922e3880aSThomas Graf 	__OVS_FLOW_ATTR_MAX
55022e3880aSThomas Graf };
55122e3880aSThomas Graf 
55222e3880aSThomas Graf #define OVS_FLOW_ATTR_MAX (__OVS_FLOW_ATTR_MAX - 1)
55322e3880aSThomas Graf 
55422e3880aSThomas Graf /**
55574ed7ab9SJoe Stringer  * Omit attributes for notifications.
55674ed7ab9SJoe Stringer  *
55774ed7ab9SJoe Stringer  * If a datapath request contains an %OVS_UFID_F_OMIT_* flag, then the datapath
55874ed7ab9SJoe Stringer  * may omit the corresponding %OVS_FLOW_ATTR_* from the response.
55974ed7ab9SJoe Stringer  */
56074ed7ab9SJoe Stringer #define OVS_UFID_F_OMIT_KEY      (1 << 0)
56174ed7ab9SJoe Stringer #define OVS_UFID_F_OMIT_MASK     (1 << 1)
56274ed7ab9SJoe Stringer #define OVS_UFID_F_OMIT_ACTIONS  (1 << 2)
56374ed7ab9SJoe Stringer 
56474ed7ab9SJoe Stringer /**
56522e3880aSThomas Graf  * enum ovs_sample_attr - Attributes for %OVS_ACTION_ATTR_SAMPLE action.
56622e3880aSThomas Graf  * @OVS_SAMPLE_ATTR_PROBABILITY: 32-bit fraction of packets to sample with
56722e3880aSThomas Graf  * @OVS_ACTION_ATTR_SAMPLE.  A value of 0 samples no packets, a value of
56822e3880aSThomas Graf  * %UINT32_MAX samples all packets and intermediate values sample intermediate
56922e3880aSThomas Graf  * fractions of packets.
57022e3880aSThomas Graf  * @OVS_SAMPLE_ATTR_ACTIONS: Set of actions to execute in sampling event.
57122e3880aSThomas Graf  * Actions are passed as nested attributes.
57222e3880aSThomas Graf  *
57322e3880aSThomas Graf  * Executes the specified actions with the given probability on a per-packet
57422e3880aSThomas Graf  * basis.
57522e3880aSThomas Graf  */
57622e3880aSThomas Graf enum ovs_sample_attr {
57722e3880aSThomas Graf 	OVS_SAMPLE_ATTR_UNSPEC,
57822e3880aSThomas Graf 	OVS_SAMPLE_ATTR_PROBABILITY, /* u32 number */
57922e3880aSThomas Graf 	OVS_SAMPLE_ATTR_ACTIONS,     /* Nested OVS_ACTION_ATTR_* attributes. */
58022e3880aSThomas Graf 	__OVS_SAMPLE_ATTR_MAX,
58122e3880aSThomas Graf };
58222e3880aSThomas Graf 
58322e3880aSThomas Graf #define OVS_SAMPLE_ATTR_MAX (__OVS_SAMPLE_ATTR_MAX - 1)
58422e3880aSThomas Graf 
58522e3880aSThomas Graf /**
58622e3880aSThomas Graf  * enum ovs_userspace_attr - Attributes for %OVS_ACTION_ATTR_USERSPACE action.
58722e3880aSThomas Graf  * @OVS_USERSPACE_ATTR_PID: u32 Netlink PID to which the %OVS_PACKET_CMD_ACTION
58822e3880aSThomas Graf  * message should be sent.  Required.
58922e3880aSThomas Graf  * @OVS_USERSPACE_ATTR_USERDATA: If present, its variable-length argument is
59022e3880aSThomas Graf  * copied to the %OVS_PACKET_CMD_ACTION message as %OVS_PACKET_ATTR_USERDATA.
5918f0aad6fSWenyu Zhang  * @OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: If present, u32 output port to get
5928f0aad6fSWenyu Zhang  * tunnel info.
593ccea7445SNeil McKee  * @OVS_USERSPACE_ATTR_ACTIONS: If present, send actions with upcall.
59422e3880aSThomas Graf  */
59522e3880aSThomas Graf enum ovs_userspace_attr {
59622e3880aSThomas Graf 	OVS_USERSPACE_ATTR_UNSPEC,
59722e3880aSThomas Graf 	OVS_USERSPACE_ATTR_PID,	      /* u32 Netlink PID to receive upcalls. */
59822e3880aSThomas Graf 	OVS_USERSPACE_ATTR_USERDATA,  /* Optional user-specified cookie. */
5998f0aad6fSWenyu Zhang 	OVS_USERSPACE_ATTR_EGRESS_TUN_PORT,  /* Optional, u32 output port
6008f0aad6fSWenyu Zhang 					      * to get tunnel info. */
601ccea7445SNeil McKee 	OVS_USERSPACE_ATTR_ACTIONS,   /* Optional flag to get actions. */
60222e3880aSThomas Graf 	__OVS_USERSPACE_ATTR_MAX
60322e3880aSThomas Graf };
60422e3880aSThomas Graf 
60522e3880aSThomas Graf #define OVS_USERSPACE_ATTR_MAX (__OVS_USERSPACE_ATTR_MAX - 1)
60622e3880aSThomas Graf 
607f2a4d086SWilliam Tu struct ovs_action_trunc {
608a1d1f65fSMikko Rapeli 	__u32 max_len; /* Max packet size in bytes. */
609f2a4d086SWilliam Tu };
610f2a4d086SWilliam Tu 
61122e3880aSThomas Graf /**
61225cd9ba0SSimon Horman  * struct ovs_action_push_mpls - %OVS_ACTION_ATTR_PUSH_MPLS action argument.
61325cd9ba0SSimon Horman  * @mpls_lse: MPLS label stack entry to push.
61425cd9ba0SSimon Horman  * @mpls_ethertype: Ethertype to set in the encapsulating ethernet frame.
61525cd9ba0SSimon Horman  *
61625cd9ba0SSimon Horman  * The only values @mpls_ethertype should ever be given are %ETH_P_MPLS_UC and
61725cd9ba0SSimon Horman  * %ETH_P_MPLS_MC, indicating MPLS unicast or multicast. Other are rejected.
61825cd9ba0SSimon Horman  */
61925cd9ba0SSimon Horman struct ovs_action_push_mpls {
62025cd9ba0SSimon Horman 	__be32 mpls_lse;
62125cd9ba0SSimon Horman 	__be16 mpls_ethertype; /* Either %ETH_P_MPLS_UC or %ETH_P_MPLS_MC */
62225cd9ba0SSimon Horman };
62325cd9ba0SSimon Horman 
62425cd9ba0SSimon Horman /**
62522e3880aSThomas Graf  * struct ovs_action_push_vlan - %OVS_ACTION_ATTR_PUSH_VLAN action argument.
62622e3880aSThomas Graf  * @vlan_tpid: Tag protocol identifier (TPID) to push.
62722e3880aSThomas Graf  * @vlan_tci: Tag control identifier (TCI) to push.  The CFI bit must be set
62822e3880aSThomas Graf  * (but it will not be set in the 802.1Q header that is pushed).
62922e3880aSThomas Graf  *
6308c146bb9SThomas F Herbert  * The @vlan_tpid value is typically %ETH_P_8021Q or %ETH_P_8021AD.
6318c146bb9SThomas F Herbert  * The only acceptable TPID values are those that the kernel module also parses
6328c146bb9SThomas F Herbert  * as 802.1Q or 802.1AD headers, to prevent %OVS_ACTION_ATTR_PUSH_VLAN followed
6338c146bb9SThomas F Herbert  * by %OVS_ACTION_ATTR_POP_VLAN from having surprising results.
63422e3880aSThomas Graf  */
63522e3880aSThomas Graf struct ovs_action_push_vlan {
6368c146bb9SThomas F Herbert 	__be16 vlan_tpid;	/* 802.1Q or 802.1ad TPID. */
63722e3880aSThomas Graf 	__be16 vlan_tci;	/* 802.1Q TCI (VLAN ID and priority). */
63822e3880aSThomas Graf };
63922e3880aSThomas Graf 
640971427f3SAndy Zhou /* Data path hash algorithm for computing Datapath hash.
641971427f3SAndy Zhou  *
642971427f3SAndy Zhou  * The algorithm type only specifies the fields in a flow
643971427f3SAndy Zhou  * will be used as part of the hash. Each datapath is free
644971427f3SAndy Zhou  * to use its own hash algorithm. The hash value will be
645971427f3SAndy Zhou  * opaque to the user space daemon.
646971427f3SAndy Zhou  */
647971427f3SAndy Zhou enum ovs_hash_alg {
648971427f3SAndy Zhou 	OVS_HASH_ALG_L4,
649971427f3SAndy Zhou };
650971427f3SAndy Zhou 
651971427f3SAndy Zhou /*
652971427f3SAndy Zhou  * struct ovs_action_hash - %OVS_ACTION_ATTR_HASH action argument.
653971427f3SAndy Zhou  * @hash_alg: Algorithm used to compute hash prior to recirculation.
654971427f3SAndy Zhou  * @hash_basis: basis used for computing hash.
655971427f3SAndy Zhou  */
656971427f3SAndy Zhou struct ovs_action_hash {
657e6571aa5SMikko Rapeli 	__u32  hash_alg;     /* One of ovs_hash_alg. */
658e6571aa5SMikko Rapeli 	__u32  hash_basis;
659971427f3SAndy Zhou };
660971427f3SAndy Zhou 
66122e3880aSThomas Graf /**
6627f8a436eSJoe Stringer  * enum ovs_ct_attr - Attributes for %OVS_ACTION_ATTR_CT action.
663ab38a7b5SJoe Stringer  * @OVS_CT_ATTR_COMMIT: If present, commits the connection to the conntrack
664ab38a7b5SJoe Stringer  * table. This allows future packets for the same connection to be identified
6651d008a1dSJoe Stringer  * as 'established' or 'related'. The flow key for the current packet will
6661d008a1dSJoe Stringer  * retain the pre-commit connection state.
6677f8a436eSJoe Stringer  * @OVS_CT_ATTR_ZONE: u16 connection tracking zone.
668182e3042SJoe Stringer  * @OVS_CT_ATTR_MARK: u32 value followed by u32 mask. For each bit set in the
669182e3042SJoe Stringer  * mask, the corresponding bit in the value is copied to the connection
670182e3042SJoe Stringer  * tracking mark field in the connection.
671e5f5d747SPaolo Abeni  * @OVS_CT_ATTR_LABELS: %OVS_CT_LABELS_LEN value followed by %OVS_CT_LABELS_LEN
672c2ac6673SJoe Stringer  * mask. For each bit set in the mask, the corresponding bit in the value is
673c2ac6673SJoe Stringer  * copied to the connection tracking label field in the connection.
674cae3a262SJoe Stringer  * @OVS_CT_ATTR_HELPER: variable length string defining conntrack ALG.
67505752523SJarno Rajahalme  * @OVS_CT_ATTR_NAT: Nested OVS_NAT_ATTR_* for performing L3 network address
67605752523SJarno Rajahalme  * translation (NAT) on the packet.
677*dd41d33fSJarno Rajahalme  * @OVS_CT_ATTR_FORCE_COMMIT: Like %OVS_CT_ATTR_COMMIT, but instead of doing
678*dd41d33fSJarno Rajahalme  * nothing if the connection is already committed will check that the current
679*dd41d33fSJarno Rajahalme  * packet is in conntrack entry's original direction.  If directionality does
680*dd41d33fSJarno Rajahalme  * not match, will delete the existing conntrack entry and commit a new one.
6817f8a436eSJoe Stringer  */
6827f8a436eSJoe Stringer enum ovs_ct_attr {
6837f8a436eSJoe Stringer 	OVS_CT_ATTR_UNSPEC,
684ab38a7b5SJoe Stringer 	OVS_CT_ATTR_COMMIT,     /* No argument, commits connection. */
6857f8a436eSJoe Stringer 	OVS_CT_ATTR_ZONE,       /* u16 zone id. */
686182e3042SJoe Stringer 	OVS_CT_ATTR_MARK,       /* mark to associate with this connection. */
68733db4125SJoe Stringer 	OVS_CT_ATTR_LABELS,     /* labels to associate with this connection. */
688cae3a262SJoe Stringer 	OVS_CT_ATTR_HELPER,     /* netlink helper to assist detection of
689cae3a262SJoe Stringer 				   related connections. */
69005752523SJarno Rajahalme 	OVS_CT_ATTR_NAT,        /* Nested OVS_NAT_ATTR_* */
691*dd41d33fSJarno Rajahalme 	OVS_CT_ATTR_FORCE_COMMIT,  /* No argument */
6927f8a436eSJoe Stringer 	__OVS_CT_ATTR_MAX
6937f8a436eSJoe Stringer };
6947f8a436eSJoe Stringer 
6957f8a436eSJoe Stringer #define OVS_CT_ATTR_MAX (__OVS_CT_ATTR_MAX - 1)
6967f8a436eSJoe Stringer 
6977f8a436eSJoe Stringer /**
69805752523SJarno Rajahalme  * enum ovs_nat_attr - Attributes for %OVS_CT_ATTR_NAT.
69905752523SJarno Rajahalme  *
70005752523SJarno Rajahalme  * @OVS_NAT_ATTR_SRC: Flag for Source NAT (mangle source address/port).
70105752523SJarno Rajahalme  * @OVS_NAT_ATTR_DST: Flag for Destination NAT (mangle destination
70205752523SJarno Rajahalme  * address/port).  Only one of (@OVS_NAT_ATTR_SRC, @OVS_NAT_ATTR_DST) may be
70305752523SJarno Rajahalme  * specified.  Effective only for packets for ct_state NEW connections.
70405752523SJarno Rajahalme  * Packets of committed connections are mangled by the NAT action according to
70505752523SJarno Rajahalme  * the committed NAT type regardless of the flags specified.  As a corollary, a
70605752523SJarno Rajahalme  * NAT action without a NAT type flag will only mangle packets of committed
70705752523SJarno Rajahalme  * connections.  The following NAT attributes only apply for NEW
70805752523SJarno Rajahalme  * (non-committed) connections, and they may be included only when the CT
70905752523SJarno Rajahalme  * action has the @OVS_CT_ATTR_COMMIT flag and either @OVS_NAT_ATTR_SRC or
71005752523SJarno Rajahalme  * @OVS_NAT_ATTR_DST is also included.
71105752523SJarno Rajahalme  * @OVS_NAT_ATTR_IP_MIN: struct in_addr or struct in6_addr
71205752523SJarno Rajahalme  * @OVS_NAT_ATTR_IP_MAX: struct in_addr or struct in6_addr
71305752523SJarno Rajahalme  * @OVS_NAT_ATTR_PROTO_MIN: u16 L4 protocol specific lower boundary (port)
71405752523SJarno Rajahalme  * @OVS_NAT_ATTR_PROTO_MAX: u16 L4 protocol specific upper boundary (port)
71505752523SJarno Rajahalme  * @OVS_NAT_ATTR_PERSISTENT: Flag for persistent IP mapping across reboots
71605752523SJarno Rajahalme  * @OVS_NAT_ATTR_PROTO_HASH: Flag for pseudo random L4 port mapping (MD5)
71705752523SJarno Rajahalme  * @OVS_NAT_ATTR_PROTO_RANDOM: Flag for fully randomized L4 port mapping
71805752523SJarno Rajahalme  */
71905752523SJarno Rajahalme enum ovs_nat_attr {
72005752523SJarno Rajahalme 	OVS_NAT_ATTR_UNSPEC,
72105752523SJarno Rajahalme 	OVS_NAT_ATTR_SRC,
72205752523SJarno Rajahalme 	OVS_NAT_ATTR_DST,
72305752523SJarno Rajahalme 	OVS_NAT_ATTR_IP_MIN,
72405752523SJarno Rajahalme 	OVS_NAT_ATTR_IP_MAX,
72505752523SJarno Rajahalme 	OVS_NAT_ATTR_PROTO_MIN,
72605752523SJarno Rajahalme 	OVS_NAT_ATTR_PROTO_MAX,
72705752523SJarno Rajahalme 	OVS_NAT_ATTR_PERSISTENT,
72805752523SJarno Rajahalme 	OVS_NAT_ATTR_PROTO_HASH,
72905752523SJarno Rajahalme 	OVS_NAT_ATTR_PROTO_RANDOM,
73005752523SJarno Rajahalme 	__OVS_NAT_ATTR_MAX,
73105752523SJarno Rajahalme };
73205752523SJarno Rajahalme 
73305752523SJarno Rajahalme #define OVS_NAT_ATTR_MAX (__OVS_NAT_ATTR_MAX - 1)
73405752523SJarno Rajahalme 
73591820da6SJiri Benc /*
73691820da6SJiri Benc  * struct ovs_action_push_eth - %OVS_ACTION_ATTR_PUSH_ETH action argument.
73791820da6SJiri Benc  * @addresses: Source and destination MAC addresses.
73891820da6SJiri Benc  * @eth_type: Ethernet type
73991820da6SJiri Benc  */
74091820da6SJiri Benc struct ovs_action_push_eth {
74191820da6SJiri Benc 	struct ovs_key_ethernet addresses;
74291820da6SJiri Benc };
74391820da6SJiri Benc 
74405752523SJarno Rajahalme /**
74522e3880aSThomas Graf  * enum ovs_action_attr - Action types.
74622e3880aSThomas Graf  *
74722e3880aSThomas Graf  * @OVS_ACTION_ATTR_OUTPUT: Output packet to port.
748f2a4d086SWilliam Tu  * @OVS_ACTION_ATTR_TRUNC: Output packet to port with truncated packet size.
74922e3880aSThomas Graf  * @OVS_ACTION_ATTR_USERSPACE: Send packet to userspace according to nested
75022e3880aSThomas Graf  * %OVS_USERSPACE_ATTR_* attributes.
75122e3880aSThomas Graf  * @OVS_ACTION_ATTR_SET: Replaces the contents of an existing header.  The
75222e3880aSThomas Graf  * single nested %OVS_KEY_ATTR_* attribute specifies a header to modify and its
75322e3880aSThomas Graf  * value.
75483d2b9baSJarno Rajahalme  * @OVS_ACTION_ATTR_SET_MASKED: Replaces the contents of an existing header.  A
75583d2b9baSJarno Rajahalme  * nested %OVS_KEY_ATTR_* attribute specifies a header to modify, its value,
75683d2b9baSJarno Rajahalme  * and a mask.  For every bit set in the mask, the corresponding bit value
75783d2b9baSJarno Rajahalme  * is copied from the value to the packet header field, rest of the bits are
75883d2b9baSJarno Rajahalme  * left unchanged.  The non-masked value bits must be passed in as zeroes.
75983d2b9baSJarno Rajahalme  * Masking is not supported for the %OVS_KEY_ATTR_TUNNEL attribute.
7608c146bb9SThomas F Herbert  * @OVS_ACTION_ATTR_PUSH_VLAN: Push a new outermost 802.1Q or 802.1ad header
7618c146bb9SThomas F Herbert  * onto the packet.
7628c146bb9SThomas F Herbert  * @OVS_ACTION_ATTR_POP_VLAN: Pop the outermost 802.1Q or 802.1ad header
7638c146bb9SThomas F Herbert  * from the packet.
76422e3880aSThomas Graf  * @OVS_ACTION_ATTR_SAMPLE: Probabilitically executes actions, as specified in
76522e3880aSThomas Graf  * the nested %OVS_SAMPLE_ATTR_* attributes.
76625cd9ba0SSimon Horman  * @OVS_ACTION_ATTR_PUSH_MPLS: Push a new MPLS label stack entry onto the
76725cd9ba0SSimon Horman  * top of the packets MPLS label stack.  Set the ethertype of the
76825cd9ba0SSimon Horman  * encapsulating frame to either %ETH_P_MPLS_UC or %ETH_P_MPLS_MC to
76925cd9ba0SSimon Horman  * indicate the new packet contents.
77025cd9ba0SSimon Horman  * @OVS_ACTION_ATTR_POP_MPLS: Pop an MPLS label stack entry off of the
77125cd9ba0SSimon Horman  * packet's MPLS label stack.  Set the encapsulating frame's ethertype to
77225cd9ba0SSimon Horman  * indicate the new packet contents. This could potentially still be
77325cd9ba0SSimon Horman  * %ETH_P_MPLS if the resulting MPLS label stack is not empty.  If there
77425cd9ba0SSimon Horman  * is no MPLS label stack, as determined by ethertype, no action is taken.
7757f8a436eSJoe Stringer  * @OVS_ACTION_ATTR_CT: Track the connection. Populate the conntrack-related
7767f8a436eSJoe Stringer  * entries in the flow key.
77791820da6SJiri Benc  * @OVS_ACTION_ATTR_PUSH_ETH: Push a new outermost Ethernet header onto the
77891820da6SJiri Benc  * packet.
77991820da6SJiri Benc  * @OVS_ACTION_ATTR_POP_ETH: Pop the outermost Ethernet header off the
78091820da6SJiri Benc  * packet.
78122e3880aSThomas Graf  *
78222e3880aSThomas Graf  * Only a single header can be set with a single %OVS_ACTION_ATTR_SET.  Not all
78322e3880aSThomas Graf  * fields within a header are modifiable, e.g. the IPv4 protocol and fragment
78422e3880aSThomas Graf  * type may not be changed.
78583d2b9baSJarno Rajahalme  *
78683d2b9baSJarno Rajahalme  * @OVS_ACTION_ATTR_SET_TO_MASKED: Kernel internal masked set action translated
78783d2b9baSJarno Rajahalme  * from the @OVS_ACTION_ATTR_SET.
78822e3880aSThomas Graf  */
78922e3880aSThomas Graf 
79022e3880aSThomas Graf enum ovs_action_attr {
79122e3880aSThomas Graf 	OVS_ACTION_ATTR_UNSPEC,
79222e3880aSThomas Graf 	OVS_ACTION_ATTR_OUTPUT,	      /* u32 port number. */
79322e3880aSThomas Graf 	OVS_ACTION_ATTR_USERSPACE,    /* Nested OVS_USERSPACE_ATTR_*. */
79422e3880aSThomas Graf 	OVS_ACTION_ATTR_SET,          /* One nested OVS_KEY_ATTR_*. */
79522e3880aSThomas Graf 	OVS_ACTION_ATTR_PUSH_VLAN,    /* struct ovs_action_push_vlan. */
79622e3880aSThomas Graf 	OVS_ACTION_ATTR_POP_VLAN,     /* No argument. */
79722e3880aSThomas Graf 	OVS_ACTION_ATTR_SAMPLE,       /* Nested OVS_SAMPLE_ATTR_*. */
798971427f3SAndy Zhou 	OVS_ACTION_ATTR_RECIRC,       /* u32 recirc_id. */
799971427f3SAndy Zhou 	OVS_ACTION_ATTR_HASH,	      /* struct ovs_action_hash. */
80025cd9ba0SSimon Horman 	OVS_ACTION_ATTR_PUSH_MPLS,    /* struct ovs_action_push_mpls. */
80125cd9ba0SSimon Horman 	OVS_ACTION_ATTR_POP_MPLS,     /* __be16 ethertype. */
80283d2b9baSJarno Rajahalme 	OVS_ACTION_ATTR_SET_MASKED,   /* One nested OVS_KEY_ATTR_* including
80383d2b9baSJarno Rajahalme 				       * data immediately followed by a mask.
80483d2b9baSJarno Rajahalme 				       * The data must be zero for the unmasked
80583d2b9baSJarno Rajahalme 				       * bits. */
8060a7cc172SJoe Stringer 	OVS_ACTION_ATTR_CT,           /* Nested OVS_CT_ATTR_* . */
807f2a4d086SWilliam Tu 	OVS_ACTION_ATTR_TRUNC,        /* u32 struct ovs_action_trunc. */
80891820da6SJiri Benc 	OVS_ACTION_ATTR_PUSH_ETH,     /* struct ovs_action_push_eth. */
80991820da6SJiri Benc 	OVS_ACTION_ATTR_POP_ETH,      /* No argument. */
81025cd9ba0SSimon Horman 
81183d2b9baSJarno Rajahalme 	__OVS_ACTION_ATTR_MAX,	      /* Nothing past this will be accepted
81283d2b9baSJarno Rajahalme 				       * from userspace. */
81383d2b9baSJarno Rajahalme 
81483d2b9baSJarno Rajahalme #ifdef __KERNEL__
81583d2b9baSJarno Rajahalme 	OVS_ACTION_ATTR_SET_TO_MASKED, /* Kernel module internal masked
81683d2b9baSJarno Rajahalme 					* set action converted from
81783d2b9baSJarno Rajahalme 					* OVS_ACTION_ATTR_SET. */
81883d2b9baSJarno Rajahalme #endif
81922e3880aSThomas Graf };
82022e3880aSThomas Graf 
82122e3880aSThomas Graf #define OVS_ACTION_ATTR_MAX (__OVS_ACTION_ATTR_MAX - 1)
82222e3880aSThomas Graf 
82322e3880aSThomas Graf #endif /* _LINUX_OPENVSWITCH_H */
824