1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
/*
* Copyright (c) 2014 VMware, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __DP_INTERNAL_H_
#define __DP_INTERNAL_H_ 1
#include <netioapi.h>
#define IFNAMSIZ IF_NAMESIZE
#include "../ovsext/Netlink/Netlink.h"
#define OVS_DP_NUMBER ((uint32_t) 0)
typedef __declspec(align(8)) uint64_t Ovs64AlignedU64;
typedef __declspec(align(8)) ovs_be64 Ovs64AlignedBe64;
#pragma pack(push, 1)
#define OVS_MAX_PORT_NAME_LENGTH IFNAMSIZ
typedef struct _OVS_VPORT_GET {
uint32_t dpNo;
uint32_t portNo;
char name[OVS_MAX_PORT_NAME_LENGTH];
} OVS_VPORT_GET, *POVS_VPORT_GET;
#define OVS_MAX_VM_UUID_LEN 128
#define OVS_MAX_VIF_UUID_LEN 128
typedef struct _OVS_VPORT_EXT_INFO {
uint32_t dpNo;
uint32_t portNo;
uint8_t macAddress[ETH_ADDR_LEN];
uint8_t permMACAddress[ETH_ADDR_LEN];
uint8_t vmMACAddress[ETH_ADDR_LEN];
uint16_t nicIndex;
uint32_t portId;
uint32_t type;
uint32_t mtu;
char name[OVS_MAX_PORT_NAME_LENGTH];
uint32_t status;
char vmUUID[OVS_MAX_VM_UUID_LEN];
char vifUUID[OVS_MAX_VIF_UUID_LEN];
} OVS_VPORT_EXT_INFO, *POVS_VPORT_EXT_INFO;
/* Flows. */
#define OVSWIN_VLAN_CFI 0x1000
/* Used for OvsFlowKey's dlType member for frames that have no Ethernet type,
* that is, pure 802.2 frames. */
#define OVSWIN_DL_TYPE_NONE 0x5ff
typedef struct L4Key {
ovs_be16 tpSrc; /* TCP/UDP/SCTP source port. */
ovs_be16 tpDst; /* TCP/UDP/SCTP destination port. */
} L4Key;
typedef struct Ipkey {
ovs_be32 nwSrc; /* IPv4 source address. */
ovs_be32 nwDst; /* IPv4 destination address. */
uint8_t nwProto; /* IP protocol or low 8 bits of ARP opcode. */
uint8_t nwTos; /* IP ToS (including DSCP and ECN). */
uint8_t nwTtl; /* IP TTL/Hop Limit. */
uint8_t nwFrag; /* FLOW_FRAG_* flags. */
L4Key l4;
} IpKey; /* Size of 16 byte. */
typedef struct ArpKey {
ovs_be32 nwSrc; /* IPv4 source address. */
ovs_be32 nwDst; /* IPv4 destination address. */
uint8_t arpSha[6]; /* ARP/ND source hardware address. */
uint8_t arpTha[6]; /* ARP/ND target hardware address. */
uint8_t nwProto; /* IP protocol or low 8 bits of ARP opcode. */
uint8_t pad[3];
} ArpKey; /* Size of 24 byte. */
typedef struct Ipv6Key {
struct in6_addr ipv6Src; /* IPv6 source address. */
struct in6_addr ipv6Dst; /* IPv6 destination address. */
ovs_be32 ipv6Label; /* IPv6 flow label. */
uint8_t nwProto; /* IP protocol or low 8 bits of ARP opcode. */
uint8_t nwTos; /* IP ToS (including DSCP and ECN). */
uint8_t nwTtl; /* IP TTL/Hop Limit. */
uint8_t nwFrag; /* FLOW_FRAG_* flags. */
L4Key l4;
uint32_t pad;
} Ipv6Key; /* Size of 48 byte. */
typedef struct Icmp6Key {
struct in6_addr ipv6Src; /* IPv6 source address. */
struct in6_addr ipv6Dst; /* IPv6 destination address. */
ovs_be32 ipv6Label; /* IPv6 flow label. */
uint8_t nwProto; /* IP protocol or low 8 bits of ARP opcode. */
uint8_t nwTos; /* IP ToS (including DSCP and ECN). */
uint8_t nwTtl; /* IP TTL/Hop Limit. */
uint8_t nwFrag; /* FLOW_FRAG_* flags. */
L4Key l4;
uint8_t arpSha[6]; /* ARP/ND source hardware address. */
uint8_t arpTha[6]; /* ARP/ND target hardware address. */
struct in6_addr ndTarget; /* IPv6 neighbor discovery (ND) target. */
} Icmp6Key; /* Size of 72 byte. */
typedef struct VlanKey {
ovs_be16 vlanTci; /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
ovs_be16 vlanTpid; /* Vlan type. Generally 802.1q or 802.1ad.*/
} VlanKey;
typedef struct L2Key {
uint32_t inPort; /* Port number of input port. */
union {
struct {
uint16_t offset;
uint16_t keyLen;
};
uint32_t val;
};
uint8_t dlSrc[6]; /* Ethernet source address. */
uint8_t dlDst[6]; /* Ethernet destination address. */
ovs_be16 dlType; /* Ethernet frame type. */
struct VlanKey vlanKey; /* VLAN header. */
uint16_t pad[3]; /* Padding 6 bytes. */
} L2Key; /* Size of 32 byte. */
/* Number of packet attributes required to store OVS tunnel key. */
#define NUM_PKT_ATTR_REQUIRED 35
#define TUN_OPT_MAX_LEN 255
typedef union OvsIPTunnelKey {
/* Options should always be the first member of tunnel key.
* They are stored at the end of the array if they are less than the
* maximum size. This allows us to get the benefits of variable length
* matching for small options.
*/
struct {
UINT8 tunOpts[TUN_OPT_MAX_LEN]; /* Tunnel options. */
UINT8 tunOptLen; /* Tunnel option length in byte. */
SOCKADDR_INET dst; /* IPv4/6 destination address. */
SOCKADDR_INET src; /* IPv4/6 source address. */
ovs_be64 tunnelId;
uint16_t flags;
uint8_t tos;
uint8_t ttl;
union {
uint32_t pad;
struct {
ovs_be16 dst_port;
uint16_t flow_hash;
};
};
};
uint64_t attr[NUM_PKT_ATTR_REQUIRED];
} OvsIPTunnelKey; /* Size of 280+40-8= 312 byte. */
static __inline uint8_t
IPTunnelKeyGetOptionsOffset(const OvsIPTunnelKey *key)
{
return TUN_OPT_MAX_LEN - key->tunOptLen;
}
static __inline uint8_t *
IPTunnelKeyGetOptions(OvsIPTunnelKey *key)
{
return key->tunOpts + IPTunnelKeyGetOptionsOffset(key);
}
static __inline uint16_t
IPTunnelKeyGetRealSize(OvsIPTunnelKey *key)
{
return sizeof(OvsIPTunnelKey) - IPTunnelKeyGetOptionsOffset(key);
}
typedef struct MplsKey {
ovs_be32 lse; /* MPLS topmost label stack entry. */
uint8 pad[4];
} MplsKey; /* Size of 8 bytes. */
typedef __declspec(align(8)) struct OvsFlowKey {
OvsIPTunnelKey tunKey; /* 280 bytes? */
L2Key l2; /* 32 bytes */
union {
/* These headers are mutually exclusive. */
IpKey ipKey; /* size 16 */
ArpKey arpKey; /* size 24 */
Ipv6Key ipv6Key; /* size 48 */
Icmp6Key icmp6Key; /* size 72 */
MplsKey mplsKey; /* size 8 */
};
UINT32 recircId; /* Recirculation ID. */
UINT32 dpHash; /* Datapath calculated hash value. */
struct {
/* Connection tracking fields. */
UINT16 zone;
UINT32 mark;
UINT32 state;
struct ovs_key_ct_labels labels;
struct ovs_key_ct_tuple_ipv4 tuple_ipv4;
struct ovs_key_ct_tuple_ipv6 tuple_ipv6;
} ct; /* Connection Tracking Flags */
} OvsFlowKey;
#define OVS_WIN_IP_TUNNEL_KEY_SIZE (sizeof (OvsIPTunnelKey))
#define OVS_L2_KEY_SIZE (sizeof (L2Key))
#define OVS_IP_KEY_SIZE (sizeof (IpKey))
#define OVS_IPV6_KEY_SIZE (sizeof (Ipv6Key))
#define OVS_ARP_KEY_SIZE (sizeof (ArpKey))
#define OVS_ICMPV6_KEY_SIZE (sizeof (Icmp6Key))
#define OVS_MPLS_KEY_SIZE (sizeof (MplsKey))
#define OVS_TUPLE_IPV6 (sizeof (struct ovs_key_ct_tuple_ipv6))
typedef struct OvsFlowStats {
Ovs64AlignedU64 packetCount;
Ovs64AlignedU64 byteCount;
uint64_t used;
uint8_t tcpFlags;
} OvsFlowStats;
typedef struct OvsFlowInfo {
OvsFlowKey key;
struct OvsFlowStats stats;
uint32_t actionsLen;
PNL_ATTR actions;
} OvsFlowInfo;
enum GetFlags {
FLOW_GET_KEY = 0x00000001,
FLOW_GET_STATS = 0x00000010,
FLOW_GET_ACTIONS = 0x00000100,
};
typedef struct OvsFlowDumpInput {
uint32_t dpNo;
uint32_t position[2]; /* Offset hint to the start of flow dump. */
/* 0 - index of the hash table.
* 1 - nth element in the hash table index. */
uint32_t getFlags; /* Information to get in addition to keys. */
uint32_t actionsLen;
} OvsFlowDumpInput;
typedef struct OvsFlowDumpOutput {
/* Hint for the next flow dump operation. */
uint32_t position[2];
/* #flows (currently 0 or 1). In case the buffer is too small to output all
* actions, this field indicates actual size needed to dump all actions. */
uint32_t n;
OvsFlowInfo flow;
} OvsFlowDumpOutput;
typedef struct OvsFlowGetInput {
uint32_t dpNo;
OvsFlowKey key;
uint32_t getFlags; /* Information to get in addition to keys. */
uint32_t actionsLen; /* Sizeof of buffer for actions. */
} OvsFlowGetInput;
typedef struct OvsFlowGetOutput {
OvsFlowInfo info; /* Variable length. */
} OvsFlowGetOutput;
typedef enum OvsFlowPutFlags {
OVSWIN_FLOW_PUT_CREATE = 1 << 0,
OVSWIN_FLOW_PUT_MODIFY = 1 << 1,
OVSWIN_FLOW_PUT_DELETE = 1 << 2,
OVSWIN_FLOW_PUT_CLEAR = 1 << 3
} OvsFlowPutFlags;
typedef struct OvsFlowPut {
uint32_t dpNo;
uint32_t actionsLen;
OvsFlowKey key;
uint32_t flags;
PNL_ATTR actions;
} OvsFlowPut;
#define OVS_MIN_PACKET_SIZE 60
typedef struct _OVS_PACKET_INFO {
uint32_t totalLen;
uint32_t userDataLen;
uint32_t packetLen;
uint32_t queue;
uint32_t inPort;
uint32_t cmd;
OvsIPTunnelKey tunnelKey;
uint8_t *payload;
/* Includes user data defined as chain of netlink attributes followed by the
* packet data. */
uint8_t data[0];
} OVS_PACKET_INFO, *POVS_PACKET_INFO;
typedef struct OvsPacketExecute {
uint32_t dpNo;
uint32_t inPort;
uint16 mru;
uint32_t packetLen;
uint32_t actionsLen;
PNL_MSG_HDR nlMsgHdr;
PCHAR packetBuf;
PNL_ATTR actions;
PNL_ATTR *keyAttrs;
} OvsPacketExecute;
typedef struct _OVS_EVENT_SUBSCRIBE {
uint32_t cookie;
uint32_t dpNo;
uint32_t subscribe;
uint32_t mask;
uint32_t mcastGrp;
uint32_t protocol;
} OVS_EVENT_SUBSCRIBE, *POVS_EVENT_SUBSCRIBE;
typedef struct _OVS_EVENT_POLL {
uint32_t cookie;
uint32_t dpNo;
} OVS_EVENT_POLL, *POVS_EVENT_POLL;
enum {
OVS_EVENT_CONNECT = ((uint32_t)0x1 << 0),
OVS_EVENT_DISCONNECT = ((uint32_t)0x1 << 1),
OVS_EVENT_LINK_UP = ((uint32_t)0x1 << 2),
OVS_EVENT_LINK_DOWN = ((uint32_t)0x1 << 3),
OVS_EVENT_MAC_CHANGE = ((uint32_t)0x1 << 4),
OVS_EVENT_MTU_CHANGE = ((uint32_t)0x1 << 5),
OVS_EVENT_MASK_ALL = 0x3f,
};
enum {
OVS_EVENT_CT_NEW = (1 << 0),
OVS_EVENT_CT_DELETE = (1 << 1),
OVS_EVENT_CT_UPDATE = (1 << 2),
OVS_EVENT_CT_MASK_ALL = 0x7
};
/* Supported mcast event groups */
enum OVS_MCAST_EVENT_TYPES {
OVS_MCAST_VPORT_EVENT,
OVS_MCAST_CT_EVENT,
__OVS_MCAST_EVENT_TYPES_MAX
};
#define OVS_MCAST_EVENT_TYPES_MAX (__OVS_MCAST_EVENT_TYPES_MAX \
- OVS_MCAST_VPORT_EVENT)
typedef struct _OVS_VPORT_EVENT_ENTRY {
UINT32 portNo;
OVS_VPORT_TYPE ovsType;
UINT32 upcallPid;
CHAR ovsName[OVS_MAX_PORT_NAME_LENGTH];
UINT32 type;
} OVS_VPORT_EVENT_ENTRY, *POVS_VPORT_EVENT_ENTRY;
#pragma pack(pop)
#endif /* __DP_INTERNAL_H_ */
|