datapath-windows: Rename files.
[cascardo/ovs.git] / datapath-windows / ovsext / Vxlan.h
1 /*
2  * Copyright (c) 2014 VMware, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __VXLAN_H_
18 #define __VXLAN_H_ 1
19
20 #include "NetProto.h"
21 typedef struct _OVS_VXLAN_VPORT {
22     UINT32 dstPort;
23     UINT64 inPkts;
24     UINT64 outPkts;
25     UINT64 slowInPkts;
26     UINT64 slowOutPkts;
27     /*
28      * To be filled
29      */
30 } OVS_VXLAN_VPORT, *POVS_VXLAN_VPORT;
31
32 /* VXLAN header. */
33 typedef struct VXLANHdr {
34     /* Flags. */
35     UINT32   flags1:2;
36     /* Packet needs replication to multicast group (used for multicast proxy). */
37     UINT32   locallyReplicate:1;
38     /* Instance ID flag, must be set to 1. */
39     UINT32   instanceID:1;
40     /* Flags. */
41     UINT32   flags2:4;
42     /* Reserved. */
43     UINT32  reserved1:24;
44     /* VXLAN ID. */
45     UINT32  vxlanID:24;
46     /* Reserved. */
47     UINT32   reserved2:8;
48 } VXLANHdr;
49
50 NTSTATUS OvsInitVxlanTunnel(POVS_VPORT_ENTRY vport,
51                             POVS_VPORT_ADD_REQUEST addReq);
52
53 VOID OvsCleanupVxlanTunnel(POVS_VPORT_ENTRY vport);
54
55 NDIS_STATUS OvsSlowPathDecapVxlan(const PNET_BUFFER_LIST packet,
56                                   OvsIPv4TunnelKey *tunnelKey);
57
58 NDIS_STATUS OvsEncapVxlan(PNET_BUFFER_LIST curNbl,
59                           OvsIPv4TunnelKey *tunKey,
60                           POVS_SWITCH_CONTEXT switchContext,
61                           VOID *completionList,
62                           POVS_PACKET_HDR_INFO layers,
63                           PNET_BUFFER_LIST *newNbl);
64
65 NDIS_STATUS OvsDoDecapVxlan(POVS_SWITCH_CONTEXT switchContext,
66                             PNET_BUFFER_LIST curNbl,
67                             OvsIPv4TunnelKey *tunKey,
68                             PNET_BUFFER_LIST *newNbl);
69
70 static __inline UINT32
71 OvsGetVxlanTunHdrSize(VOID)
72 {
73     /* XXX: Can L2 include VLAN at all? */
74     return sizeof (EthHdr) + sizeof (IPHdr) + sizeof (UDPHdr) +
75            sizeof (VXLANHdr);
76 }
77
78 #define VXLAN_UDP_PORT 4789
79 #define VXLAN_UDP_PORT_NBO 0xB512
80
81 #endif /* __VXLAN_H_ */