blob: 26d31675345db3c7dc30768eabcc80fdfb47ce0f [file] [log] [blame]
Yi Tsengbe342052017-11-03 10:21:23 -07001/*
2 * Copyright 2017-present Open Networking Foundation
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 __DEFINE__
18#define __DEFINE__
19
20#define MAX_PORTS 511
21
Carmelo Cascone79a3a312018-08-16 17:14:43 -070022#if defined(WITH_INT_SOURCE) || defined(WITH_INT_TRANSIT) || defined(WITH_INT_SINK)
23#define WITH_INT
24#endif
25
Carmelo Cascone35d9b332018-06-15 16:27:22 +020026#ifndef _BOOL
27#define _BOOL bool
28#endif
29#ifndef _TRUE
30#define _TRUE true
31#endif
32#ifndef _FALSE
Yi Tseng34af3162018-06-17 18:02:21 +080033#define _FALSE false
Carmelo Cascone35d9b332018-06-15 16:27:22 +020034#endif
35
36#ifndef _PKT_OUT_HDR_ANNOT
37#define _PKT_OUT_HDR_ANNOT
38#endif
39
40#ifndef IP_VER_LENGTH
41#define IP_VER_LENGTH 4
42#endif
43#ifndef IP_VERSION_4
44#define IP_VERSION_4 4
45#endif
46#ifndef IP_VERSION_6
47#define IP_VERSION_6 6
48#endif
49
50#define ETH_HDR_SIZE 14
51#define IPV4_HDR_SIZE 20
52#define UDP_HDR_SIZE 8
53#define GTP_HDR_SIZE 8
54
55#define UDP_PORT_GTPU 2152
56#define GTP_GPDU 0xff
57#define GTPU_VERSION 0x01
58#define GTP_PROTOCOL_TYPE_GTP 0x01
59
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090060#define PKT_INSTANCE_TYPE_NORMAL 0
61#define PKT_INSTANCE_TYPE_INGRESS_CLONE 1
62#define PKT_INSTANCE_TYPE_EGRESS_CLONE 2
63#define PKT_INSTANCE_TYPE_COALESCED 3
64#define PKT_INSTANCE_TYPE_INGRESS_RECIRC 4
65#define PKT_INSTANCE_TYPE_REPLICATION 5
66#define PKT_INSTANCE_TYPE_RESUBMIT 6
67
Yi Tsengbe342052017-11-03 10:21:23 -070068typedef bit<3> fwd_type_t;
Yi Tseng1b154bd2017-11-20 17:48:19 -080069typedef bit<32> next_id_t;
Yi Tsengbe342052017-11-03 10:21:23 -070070typedef bit<20> mpls_label_t;
71typedef bit<9> port_num_t;
72typedef bit<48> mac_addr_t;
73typedef bit<16> group_id_t;
74typedef bit<12> vlan_id_t;
Carmelo Cascone9b0171b2018-08-14 01:43:57 -070075typedef bit<32> ipv4_addr_t;
76typedef bit<16> l4_port_t;
77
78// SPGW types
79typedef bit<2> direction_t;
80typedef bit pcc_gate_status_t;
81typedef bit<32> sdf_rule_id_t;
82typedef bit<32> pcc_rule_id_t;
83
84// spgw.p4 expects uplink packets with IP dst on this subnet
85// 140.0.0.0/8
86const ipv4_addr_t S1U_SGW_PREFIX = 2348810240;
87#define S1U_SGW_PREFIX_LEN 8
Yi Tsengbe342052017-11-03 10:21:23 -070088
89const bit<16> ETHERTYPE_QINQ = 0x88A8;
90const bit<16> ETHERTYPE_QINQ_NON_STD = 0x9100;
91const bit<16> ETHERTYPE_VLAN = 0x8100;
92const bit<16> ETHERTYPE_MPLS = 0x8847;
93const bit<16> ETHERTYPE_MPLS_MULTICAST =0x8848;
94const bit<16> ETHERTYPE_IPV4 = 0x0800;
95const bit<16> ETHERTYPE_IPV6 = 0x86dd;
96const bit<16> ETHERTYPE_ARP = 0x0806;
97
Yi Tsengbe342052017-11-03 10:21:23 -070098const bit<8> PROTO_ICMP = 1;
99const bit<8> PROTO_TCP = 6;
100const bit<8> PROTO_UDP = 17;
101const bit<8> PROTO_ICMPV6 = 58;
102
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800103const bit<4> IPV4_MIN_IHL = 5;
104
Yi Tsengbe342052017-11-03 10:21:23 -0700105const fwd_type_t FWD_BRIDGING = 0;
106const fwd_type_t FWD_MPLS = 1;
107const fwd_type_t FWD_IPV4_UNICAST = 2;
108const fwd_type_t FWD_IPV4_MULTICAST = 3;
109const fwd_type_t FWD_IPV6_UNICAST = 4;
110const fwd_type_t FWD_IPV6_MULTICAST = 5;
Carmelo Cascone8a715f82018-08-20 23:16:27 -0700111const fwd_type_t FWD_UNKNOWN = 7;
112
113const vlan_id_t DEFAULT_VLAN_ID = 12w4094;
Yi Tsengbe342052017-11-03 10:21:23 -0700114
Yi Tseng1b154bd2017-11-20 17:48:19 -0800115const bit<8> DEFAULT_MPLS_TTL = 64;
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800116const bit<8> DEFAULT_IPV4_TTL = 64;
117
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800118const sdf_rule_id_t DEFAULT_SDF_RULE_ID = 0;
119const pcc_rule_id_t DEFAULT_PCC_RULE_ID = 0;
Carmelo Cascone9b0171b2018-08-14 01:43:57 -0700120const direction_t SPGW_DIR_UNKNOWN = 2w0;
121const direction_t SPGW_DIR_UPLINK = 2w1;
122const direction_t SPGW_DIR_DOWNLINK = 2w2;
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800123const pcc_gate_status_t PCC_GATE_OPEN = 1w0;
124const pcc_gate_status_t PCC_GATE_CLOSED = 1w1;
Yi Tseng1b154bd2017-11-20 17:48:19 -0800125
Jonghwan Hyuned478dc2018-08-06 15:35:18 +0900126/* indicate INT at LSB of DSCP */
127const bit<6> INT_DSCP = 0x1;
128
Carmelo Cascone79a3a312018-08-16 17:14:43 -0700129// Length of the whole INT header,
130// including shim and tail, excluding metadata stack.
131const bit<8> INT_HEADER_LEN_WORDS = 4;
132const bit<16> INT_HEADER_LEN_BYTES = 16;
Jonghwan Hyuned478dc2018-08-06 15:35:18 +0900133
134const bit<8> CPU_MIRROR_SESSION_ID = 250;
135const bit<32> REPORT_MIRROR_SESSION_ID = 500;
136
137const bit<4> NPROTO_ETHERNET = 0;
138const bit<4> NPROTO_TELEMETRY_DROP_HEADER = 1;
139const bit<4> NPROTO_TELEMETRY_SWITCH_LOCAL_HEADER = 2;
140
141const bit<6> HW_ID = 1;
142const bit<8> REPORT_FIXED_HEADER_LEN = 12;
143const bit<8> DROP_REPORT_HEADER_LEN = 12;
144const bit<8> LOCAL_REPORT_HEADER_LEN = 16;
145const bit<8> ETH_HEADER_LEN = 14;
146const bit<8> IPV4_MIN_HEAD_LEN = 20;
147const bit<8> UDP_HEADER_LEN = 8;
148
Yi Tsengbe342052017-11-03 10:21:23 -0700149#endif