mirror of
https://github.com/openvswitch/ovs
synced 2025-10-17 14:28:02 +00:00
datapath: Make datapath-protocol.h portable to non-Linux systems.
datapath-protocol.h is not a very clean interface. I originally intended it to be solely a Linux-kernel specific interface. Over time it became a general-purpose interface to dpifs. This is not a good situation, because clearly the header is still Linux-specific. In the long run, the correct solution is to separate the generic and Linux-specific bits. This is not that patch. Instead, this patch modifies datapath-protocol.h enough that it can be used on non-Linux hosts. In particular I tested that it works OK with FreeBSD 8.0.
This commit is contained in:
@@ -45,12 +45,22 @@
|
|||||||
#ifndef OPENVSWITCH_DATAPATH_PROTOCOL_H
|
#ifndef OPENVSWITCH_DATAPATH_PROTOCOL_H
|
||||||
#define OPENVSWITCH_DATAPATH_PROTOCOL_H 1
|
#define OPENVSWITCH_DATAPATH_PROTOCOL_H 1
|
||||||
|
|
||||||
|
/* The ovs_be<N> types indicate that an object is in big-endian, not
|
||||||
|
* native-endian, byte order. They are otherwise equivalent to uint<N>_t.
|
||||||
|
* The Linux kernel already has __be<N> types for this, which take on
|
||||||
|
* additional semantics when the "sparse" static checker is used, so we use
|
||||||
|
* those types when compiling the kernel. */
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
#define ovs_be16 __be16
|
||||||
|
#define ovs_be32 __be32
|
||||||
|
#define ovs_be64 __be64
|
||||||
#else
|
#else
|
||||||
#include <sys/types.h>
|
#include <stdint.h>
|
||||||
|
#define ovs_be16 uint16_t
|
||||||
|
#define ovs_be32 uint32_t
|
||||||
|
#define ovs_be64 uint64_t
|
||||||
#endif
|
#endif
|
||||||
#include <linux/if_ether.h>
|
|
||||||
|
|
||||||
#define ODP_MAX 256 /* Maximum number of datapaths. */
|
#define ODP_MAX 256 /* Maximum number of datapaths. */
|
||||||
|
|
||||||
@@ -94,32 +104,32 @@
|
|||||||
|
|
||||||
struct odp_stats {
|
struct odp_stats {
|
||||||
/* Flows. */
|
/* Flows. */
|
||||||
__u32 n_flows; /* Number of flows in flow table. */
|
uint32_t n_flows; /* Number of flows in flow table. */
|
||||||
__u32 cur_capacity; /* Current flow table capacity. */
|
uint32_t cur_capacity; /* Current flow table capacity. */
|
||||||
__u32 max_capacity; /* Maximum expansion of flow table capacity. */
|
uint32_t max_capacity; /* Maximum expansion of flow table capacity. */
|
||||||
|
|
||||||
/* Ports. */
|
/* Ports. */
|
||||||
__u32 n_ports; /* Current number of ports. */
|
uint32_t n_ports; /* Current number of ports. */
|
||||||
__u32 max_ports; /* Maximum supported number of ports. */
|
uint32_t max_ports; /* Maximum supported number of ports. */
|
||||||
__u16 max_groups; /* Maximum number of port groups. */
|
uint16_t max_groups; /* Maximum number of port groups. */
|
||||||
__u16 reserved;
|
uint16_t reserved;
|
||||||
|
|
||||||
/* Lookups. */
|
/* Lookups. */
|
||||||
__u64 n_frags; /* Number of dropped IP fragments. */
|
uint64_t n_frags; /* Number of dropped IP fragments. */
|
||||||
__u64 n_hit; /* Number of flow table matches. */
|
uint64_t n_hit; /* Number of flow table matches. */
|
||||||
__u64 n_missed; /* Number of flow table misses. */
|
uint64_t n_missed; /* Number of flow table misses. */
|
||||||
__u64 n_lost; /* Number of misses not sent to userspace. */
|
uint64_t n_lost; /* Number of misses not sent to userspace. */
|
||||||
|
|
||||||
/* Queues. */
|
/* Queues. */
|
||||||
__u16 max_miss_queue; /* Max length of ODPL_MISS queue. */
|
uint16_t max_miss_queue; /* Max length of ODPL_MISS queue. */
|
||||||
__u16 max_action_queue; /* Max length of ODPL_ACTION queue. */
|
uint16_t max_action_queue; /* Max length of ODPL_ACTION queue. */
|
||||||
__u16 max_sflow_queue; /* Max length of ODPL_SFLOW queue. */
|
uint16_t max_sflow_queue; /* Max length of ODPL_SFLOW queue. */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Logical ports. */
|
/* Logical ports. */
|
||||||
#define ODPP_LOCAL ((__u16)0)
|
#define ODPP_LOCAL ((uint16_t)0)
|
||||||
#define ODPP_NONE ((__u16)-1)
|
#define ODPP_NONE ((uint16_t)-1)
|
||||||
#define ODPP_NORMAL ((__u16)-2)
|
#define ODPP_NORMAL ((uint16_t)-2)
|
||||||
|
|
||||||
/* Listening channels. */
|
/* Listening channels. */
|
||||||
#define _ODPL_MISS_NR 0 /* Packet missed in flow table. */
|
#define _ODPL_MISS_NR 0 /* Packet missed in flow table. */
|
||||||
@@ -152,11 +162,11 @@ struct odp_stats {
|
|||||||
* data.
|
* data.
|
||||||
*/
|
*/
|
||||||
struct odp_msg {
|
struct odp_msg {
|
||||||
__u32 type;
|
uint32_t type;
|
||||||
__u32 length;
|
uint32_t length;
|
||||||
__u16 port;
|
uint16_t port;
|
||||||
__u16 reserved;
|
uint16_t reserved;
|
||||||
__u32 arg;
|
uint32_t arg;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -170,55 +180,55 @@ struct odp_msg {
|
|||||||
* (the number of which is specified in @n_actions) and then by packet data.
|
* (the number of which is specified in @n_actions) and then by packet data.
|
||||||
*/
|
*/
|
||||||
struct odp_sflow_sample_header {
|
struct odp_sflow_sample_header {
|
||||||
__u32 sample_pool;
|
uint32_t sample_pool;
|
||||||
__u32 n_actions;
|
uint32_t n_actions;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define ODP_PORT_INTERNAL (1 << 0) /* This port is simulated. */
|
#define ODP_PORT_INTERNAL (1 << 0) /* This port is simulated. */
|
||||||
struct odp_port {
|
struct odp_port {
|
||||||
char devname[16]; /* IFNAMSIZ */
|
char devname[16]; /* IFNAMSIZ */
|
||||||
__u16 port;
|
uint16_t port;
|
||||||
__u16 flags;
|
uint16_t flags;
|
||||||
__u32 reserved2;
|
uint32_t reserved2;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_portvec {
|
struct odp_portvec {
|
||||||
struct odp_port *ports;
|
struct odp_port *ports;
|
||||||
__u32 n_ports;
|
uint32_t n_ports;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_port_group {
|
struct odp_port_group {
|
||||||
__u16 *ports;
|
uint16_t *ports;
|
||||||
__u16 n_ports; /* Number of ports. */
|
uint16_t n_ports; /* Number of ports. */
|
||||||
__u16 group; /* Group number. */
|
uint16_t group; /* Group number. */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_flow_stats {
|
struct odp_flow_stats {
|
||||||
__u64 n_packets; /* Number of matched packets. */
|
uint64_t n_packets; /* Number of matched packets. */
|
||||||
__u64 n_bytes; /* Number of matched bytes. */
|
uint64_t n_bytes; /* Number of matched bytes. */
|
||||||
__u64 used_sec; /* Time last used. */
|
uint64_t used_sec; /* Time last used. */
|
||||||
__u32 used_nsec;
|
uint32_t used_nsec;
|
||||||
__u8 tcp_flags;
|
uint8_t tcp_flags;
|
||||||
__u8 ip_tos;
|
uint8_t ip_tos;
|
||||||
__u16 error; /* Used by ODP_FLOW_GET. */
|
uint16_t error; /* Used by ODP_FLOW_GET. */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_flow_key {
|
struct odp_flow_key {
|
||||||
__be32 tun_id; /* Encapsulating tunnel ID. */
|
ovs_be32 tun_id; /* Encapsulating tunnel ID. */
|
||||||
__be32 nw_src; /* IP source address. */
|
ovs_be32 nw_src; /* IP source address. */
|
||||||
__be32 nw_dst; /* IP destination address. */
|
ovs_be32 nw_dst; /* IP destination address. */
|
||||||
__u16 in_port; /* Input switch port. */
|
uint16_t in_port; /* Input switch port. */
|
||||||
__be16 dl_vlan; /* Input VLAN. */
|
ovs_be16 dl_vlan; /* Input VLAN. */
|
||||||
__be16 dl_type; /* Ethernet frame type. */
|
ovs_be16 dl_type; /* Ethernet frame type. */
|
||||||
__be16 tp_src; /* TCP/UDP source port. */
|
ovs_be16 tp_src; /* TCP/UDP source port. */
|
||||||
__be16 tp_dst; /* TCP/UDP destination port. */
|
ovs_be16 tp_dst; /* TCP/UDP destination port. */
|
||||||
__u8 dl_src[ETH_ALEN]; /* Ethernet source address. */
|
uint8_t dl_src[6]; /* Ethernet source address. */
|
||||||
__u8 dl_dst[ETH_ALEN]; /* Ethernet destination address. */
|
uint8_t dl_dst[6]; /* Ethernet destination address. */
|
||||||
__u8 nw_proto; /* IP protocol or lower 8 bits of
|
uint8_t nw_proto; /* IP protocol or lower 8 bits of
|
||||||
ARP opcode. */
|
ARP opcode. */
|
||||||
__u8 dl_vlan_pcp; /* Input VLAN priority. */
|
uint8_t dl_vlan_pcp; /* Input VLAN priority. */
|
||||||
__u8 nw_tos; /* IP ToS (DSCP field, 6 bits). */
|
uint8_t nw_tos; /* IP ToS (DSCP field, 6 bits). */
|
||||||
__u8 reserved[3]; /* Align to 32-bits...must be zeroed. */
|
uint8_t reserved[3]; /* Align to 32-bits...must be zeroed. */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Flags for ODP_FLOW. */
|
/* Flags for ODP_FLOW. */
|
||||||
@@ -228,8 +238,8 @@ struct odp_flow {
|
|||||||
struct odp_flow_stats stats;
|
struct odp_flow_stats stats;
|
||||||
struct odp_flow_key key;
|
struct odp_flow_key key;
|
||||||
union odp_action *actions;
|
union odp_action *actions;
|
||||||
__u32 n_actions;
|
uint32_t n_actions;
|
||||||
__u32 flags;
|
uint32_t flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Flags for ODP_FLOW_PUT. */
|
/* Flags for ODP_FLOW_PUT. */
|
||||||
@@ -240,12 +250,12 @@ struct odp_flow {
|
|||||||
/* ODP_FLOW_PUT argument. */
|
/* ODP_FLOW_PUT argument. */
|
||||||
struct odp_flow_put {
|
struct odp_flow_put {
|
||||||
struct odp_flow flow;
|
struct odp_flow flow;
|
||||||
__u32 flags;
|
uint32_t flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_flowvec {
|
struct odp_flowvec {
|
||||||
struct odp_flow *flows;
|
struct odp_flow *flows;
|
||||||
__u32 n_flows;
|
uint32_t n_flows;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* The VLAN id is 12 bits, so we can use the entire 16 bits to indicate
|
/* The VLAN id is 12 bits, so we can use the entire 16 bits to indicate
|
||||||
@@ -271,79 +281,79 @@ struct odp_flowvec {
|
|||||||
#define ODPAT_N_ACTIONS 14
|
#define ODPAT_N_ACTIONS 14
|
||||||
|
|
||||||
struct odp_action_output {
|
struct odp_action_output {
|
||||||
__u16 type; /* ODPAT_OUTPUT. */
|
uint16_t type; /* ODPAT_OUTPUT. */
|
||||||
__u16 port; /* Output port. */
|
uint16_t port; /* Output port. */
|
||||||
__u16 reserved1;
|
uint16_t reserved1;
|
||||||
__u16 reserved2;
|
uint16_t reserved2;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_action_output_group {
|
struct odp_action_output_group {
|
||||||
__u16 type; /* ODPAT_OUTPUT_GROUP. */
|
uint16_t type; /* ODPAT_OUTPUT_GROUP. */
|
||||||
__u16 group; /* Group number. */
|
uint16_t group; /* Group number. */
|
||||||
__u16 reserved1;
|
uint16_t reserved1;
|
||||||
__u16 reserved2;
|
uint16_t reserved2;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_action_controller {
|
struct odp_action_controller {
|
||||||
__u16 type; /* ODPAT_OUTPUT_CONTROLLER. */
|
uint16_t type; /* ODPAT_OUTPUT_CONTROLLER. */
|
||||||
__u16 reserved;
|
uint16_t reserved;
|
||||||
__u32 arg; /* Copied to struct odp_msg 'arg' member. */
|
uint32_t arg; /* Copied to struct odp_msg 'arg' member. */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_action_tunnel {
|
struct odp_action_tunnel {
|
||||||
__u16 type; /* ODPAT_SET_TUNNEL. */
|
uint16_t type; /* ODPAT_SET_TUNNEL. */
|
||||||
__u16 reserved;
|
uint16_t reserved;
|
||||||
__be32 tun_id; /* Tunnel ID. */
|
ovs_be32 tun_id; /* Tunnel ID. */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Action structure for ODPAT_SET_VLAN_VID. */
|
/* Action structure for ODPAT_SET_VLAN_VID. */
|
||||||
struct odp_action_vlan_vid {
|
struct odp_action_vlan_vid {
|
||||||
__u16 type; /* ODPAT_SET_VLAN_VID. */
|
uint16_t type; /* ODPAT_SET_VLAN_VID. */
|
||||||
__be16 vlan_vid; /* VLAN id. */
|
ovs_be16 vlan_vid; /* VLAN id. */
|
||||||
__u16 reserved1;
|
uint16_t reserved1;
|
||||||
__u16 reserved2;
|
uint16_t reserved2;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Action structure for ODPAT_SET_VLAN_PCP. */
|
/* Action structure for ODPAT_SET_VLAN_PCP. */
|
||||||
struct odp_action_vlan_pcp {
|
struct odp_action_vlan_pcp {
|
||||||
__u16 type; /* ODPAT_SET_VLAN_PCP. */
|
uint16_t type; /* ODPAT_SET_VLAN_PCP. */
|
||||||
__u8 vlan_pcp; /* VLAN priority. */
|
uint8_t vlan_pcp; /* VLAN priority. */
|
||||||
__u8 reserved1;
|
uint8_t reserved1;
|
||||||
__u16 reserved2;
|
uint16_t reserved2;
|
||||||
__u16 reserved3;
|
uint16_t reserved3;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Action structure for ODPAT_SET_DL_SRC/DST. */
|
/* Action structure for ODPAT_SET_DL_SRC/DST. */
|
||||||
struct odp_action_dl_addr {
|
struct odp_action_dl_addr {
|
||||||
__u16 type; /* ODPAT_SET_DL_SRC/DST. */
|
uint16_t type; /* ODPAT_SET_DL_SRC/DST. */
|
||||||
__u8 dl_addr[ETH_ALEN]; /* Ethernet address. */
|
uint8_t dl_addr[6]; /* Ethernet address. */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Action structure for ODPAT_SET_NW_SRC/DST. */
|
/* Action structure for ODPAT_SET_NW_SRC/DST. */
|
||||||
struct odp_action_nw_addr {
|
struct odp_action_nw_addr {
|
||||||
__u16 type; /* ODPAT_SET_TW_SRC/DST. */
|
uint16_t type; /* ODPAT_SET_TW_SRC/DST. */
|
||||||
__u16 reserved;
|
uint16_t reserved;
|
||||||
__be32 nw_addr; /* IP address. */
|
ovs_be32 nw_addr; /* IP address. */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_action_nw_tos {
|
struct odp_action_nw_tos {
|
||||||
__u16 type; /* ODPAT_SET_NW_TOS. */
|
uint16_t type; /* ODPAT_SET_NW_TOS. */
|
||||||
__u8 nw_tos; /* IP ToS/DSCP field (6 bits). */
|
uint8_t nw_tos; /* IP ToS/DSCP field (6 bits). */
|
||||||
__u8 reserved1;
|
uint8_t reserved1;
|
||||||
__u16 reserved2;
|
uint16_t reserved2;
|
||||||
__u16 reserved3;
|
uint16_t reserved3;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Action structure for ODPAT_SET_TP_SRC/DST. */
|
/* Action structure for ODPAT_SET_TP_SRC/DST. */
|
||||||
struct odp_action_tp_port {
|
struct odp_action_tp_port {
|
||||||
__u16 type; /* ODPAT_SET_TP_SRC/DST. */
|
uint16_t type; /* ODPAT_SET_TP_SRC/DST. */
|
||||||
__be16 tp_port; /* TCP/UDP port. */
|
ovs_be16 tp_port; /* TCP/UDP port. */
|
||||||
__u16 reserved1;
|
uint16_t reserved1;
|
||||||
__u16 reserved2;
|
uint16_t reserved2;
|
||||||
};
|
};
|
||||||
|
|
||||||
union odp_action {
|
union odp_action {
|
||||||
__u16 type;
|
uint16_t type;
|
||||||
struct odp_action_output output;
|
struct odp_action_output output;
|
||||||
struct odp_action_output_group output_group;
|
struct odp_action_output_group output_group;
|
||||||
struct odp_action_controller controller;
|
struct odp_action_controller controller;
|
||||||
@@ -357,57 +367,57 @@ union odp_action {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct odp_execute {
|
struct odp_execute {
|
||||||
__u16 in_port;
|
uint16_t in_port;
|
||||||
__u16 reserved1;
|
uint16_t reserved1;
|
||||||
__u32 reserved2;
|
uint32_t reserved2;
|
||||||
|
|
||||||
union odp_action *actions;
|
union odp_action *actions;
|
||||||
__u32 n_actions;
|
uint32_t n_actions;
|
||||||
|
|
||||||
const void *data;
|
const void *data;
|
||||||
__u32 length;
|
uint32_t length;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define VPORT_TYPE_SIZE 16
|
#define VPORT_TYPE_SIZE 16
|
||||||
struct odp_vport_add {
|
struct odp_vport_add {
|
||||||
char port_type[VPORT_TYPE_SIZE];
|
char port_type[VPORT_TYPE_SIZE];
|
||||||
char devname[16]; /* IFNAMSIZ */
|
char devname[16]; /* IFNAMSIZ */
|
||||||
void *config;
|
void *config;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_vport_mod {
|
struct odp_vport_mod {
|
||||||
char devname[16]; /* IFNAMSIZ */
|
char devname[16]; /* IFNAMSIZ */
|
||||||
void *config;
|
void *config;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_vport_stats {
|
struct odp_vport_stats {
|
||||||
__u64 rx_packets;
|
uint64_t rx_packets;
|
||||||
__u64 tx_packets;
|
uint64_t tx_packets;
|
||||||
__u64 rx_bytes;
|
uint64_t rx_bytes;
|
||||||
__u64 tx_bytes;
|
uint64_t tx_bytes;
|
||||||
__u64 rx_dropped;
|
uint64_t rx_dropped;
|
||||||
__u64 tx_dropped;
|
uint64_t tx_dropped;
|
||||||
__u64 rx_errors;
|
uint64_t rx_errors;
|
||||||
__u64 tx_errors;
|
uint64_t tx_errors;
|
||||||
__u64 rx_frame_err;
|
uint64_t rx_frame_err;
|
||||||
__u64 rx_over_err;
|
uint64_t rx_over_err;
|
||||||
__u64 rx_crc_err;
|
uint64_t rx_crc_err;
|
||||||
__u64 collisions;
|
uint64_t collisions;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_vport_stats_req {
|
struct odp_vport_stats_req {
|
||||||
char devname[16]; /* IFNAMSIZ */
|
char devname[16]; /* IFNAMSIZ */
|
||||||
struct odp_vport_stats stats;
|
struct odp_vport_stats stats;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_vport_ether {
|
struct odp_vport_ether {
|
||||||
char devname[16]; /* IFNAMSIZ */
|
char devname[16]; /* IFNAMSIZ */
|
||||||
unsigned char ether_addr[ETH_ALEN];
|
unsigned char ether_addr[6];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct odp_vport_mtu {
|
struct odp_vport_mtu {
|
||||||
char devname[16]; /* IFNAMSIZ */
|
char devname[16]; /* IFNAMSIZ */
|
||||||
__u16 mtu;
|
uint16_t mtu;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Values below this cutoff are 802.3 packets and the two bytes
|
/* Values below this cutoff are 802.3 packets and the two bytes
|
||||||
@@ -426,4 +436,4 @@ struct odp_vport_mtu {
|
|||||||
*/
|
*/
|
||||||
#define ODP_VLAN_NONE 0xffff
|
#define ODP_VLAN_NONE 0xffff
|
||||||
|
|
||||||
#endif /* openvswitch/datapath-protocol.h */
|
#endif /* openvswitch/datapath-protocol.h */
|
||||||
|
@@ -23,6 +23,7 @@
|
|||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
|
#include <linux/types.h>
|
||||||
#include <linux/ethtool.h>
|
#include <linux/ethtool.h>
|
||||||
#include <linux/rtnetlink.h>
|
#include <linux/rtnetlink.h>
|
||||||
#include <linux/sockios.h>
|
#include <linux/sockios.h>
|
||||||
|
Reference in New Issue
Block a user