blob: ec3c2e586e1a61d8f876de8ffa4da9346e784e2a [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070015/**
16 * @file
17 * @brief VXLAN GPE packet header structure
18 *
19*/
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#ifndef included_vxlan_gpe_packet_h
21#define included_vxlan_gpe_packet_h
22
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070023/**
Ed Warnickecb9cada2015-12-08 15:45:58 -070024 * From draft-quinn-vxlan-gpe-03.txt
25 *
26 * 0 1 2 3
27 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
28 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
29 * |R|R|R|R|I|P|R|O|Ver| Reserved |Next Protocol |
30 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
31 * | VXLAN Network Identifier (VNI) | Reserved |
32 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
33 *
34 * I Bit: Flag bit 4 indicates that the VNI is valid.
35 *
36 * P Bit: Flag bit 5 is defined as the Next Protocol bit. The P bit
37 * MUST be set to 1 to indicate the presence of the 8 bit next
38 * protocol field.
39 *
40 * O Bit: Flag bit 7 is defined as the O bit. When the O bit is set to 1,
41 *
42 * the packet is an OAM packet and OAM processing MUST occur. The OAM
43 * protocol details are out of scope for this document. As with the
44 * P-bit, bit 7 is currently a reserved flag in VXLAN.
45 *
46 * VXLAN-gpe bits 8 and 9 are defined as version bits. These bits are
47 * reserved in VXLAN. The version field is used to ensure backward
48 * compatibility going forward with future VXLAN-gpe updates.
49 *
50 * The initial version for VXLAN-gpe is 0.
51 *
52 * This draft defines the following Next Protocol values:
53 *
54 * 0x1 : IPv4
55 * 0x2 : IPv6
56 * 0x3 : Ethernet
57 * 0x4 : Network Service Header [NSH]
58 */
59
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070060/**
61 * @brief VXLAN GPE support inner protocol definition.
62 * 1 - IP4
63 * 2 - IP6
64 * 3 - ETHERNET
65 * 4 - NSH
66 */
67#define foreach_vxlan_gpe_protocol \
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070068_ (0x01, IP4) \
69_ (0x02, IP6) \
70_ (0x03, ETHERNET) \
Vengada Govindan6d403a02016-10-12 05:54:09 -070071_ (0x04, NSH) \
72_ (0x05, IOAM)
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070073
74
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070075/**
76 * @brief Struct for VXLAN GPE support inner protocol definition.
77 * 1 - IP4
78 * 2 - IP6
79 * 3 - ETHERNET
80 * 4 - NSH
Vengada Govindan6d403a02016-10-12 05:54:09 -070081 * 5 - IOAM
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070082 */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070083typedef enum {
84#define _(n,f) VXLAN_GPE_PROTOCOL_##f = n,
85 foreach_vxlan_gpe_protocol
86#undef _
Vengada Govindan6d403a02016-10-12 05:54:09 -070087 VXLAN_GPE_PROTOCOL_MAX,
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070088} vxlan_gpe_protocol_t;
89
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070090/**
91 * @brief VXLAN GPE Header definition
92 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070093typedef struct {
94 u8 flags;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070095 /** Version and Reserved */
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 u8 ver_res;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070097 /** Reserved */
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 u8 res;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070099 /** see vxlan_gpe_protocol_t */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700100 u8 protocol;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700101 /** VNI and Reserved */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 u32 vni_res;
103} vxlan_gpe_header_t;
104
105#define VXLAN_GPE_FLAGS_I 0x08
106#define VXLAN_GPE_FLAGS_P 0x04
107#define VXLAN_GPE_FLAGS_O 0x01
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108#define VXLAN_GPE_VERSION 0x0
109
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110#endif /* included_vxlan_gpe_packet_h */