blob: 5c998384cc3f61bcf0ee914d3324ef92dfa5a252 [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 __PARSER__
18#define __PARSER__
19
20#include "define.p4"
21
22parser FabricParser (
23packet_in packet,
24out parsed_headers_t hdr,
25inout fabric_metadata_t fabric_metadata,
26inout standard_metadata_t standard_metadata) {
Yi Tseng1d842672017-11-28 16:06:52 -080027
Yi Tsengbe342052017-11-03 10:21:23 -070028 state start {
29 transition select(standard_metadata.ingress_port) {
30 CPU_PORT: parse_packet_out;
31 default: parse_ethernet;
32 }
33 }
34
35 state parse_packet_out {
36 packet.extract(hdr.packet_out);
37 transition parse_ethernet;
38 }
39
40 state parse_ethernet {
41 packet.extract(hdr.ethernet);
Yi Tseng1d842672017-11-28 16:06:52 -080042 fabric_metadata.original_ether_type = hdr.ethernet.ether_type;
Yi Tsengbe342052017-11-03 10:21:23 -070043 transition select(hdr.ethernet.ether_type){
Yi Tsengbe342052017-11-03 10:21:23 -070044 ETHERTYPE_VLAN: parse_vlan_tag;
45 ETHERTYPE_MPLS: parse_mpls;
46 ETHERTYPE_ARP: parse_arp;
47 ETHERTYPE_IPV4: parse_ipv4;
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080048#ifdef WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -070049 ETHERTYPE_IPV6: parse_ipv6;
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080050#endif // WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -070051 default: accept;
52 }
53 }
54
55 state parse_vlan_tag {
56 packet.extract(hdr.vlan_tag);
Yi Tseng20f9e7b2018-05-24 23:27:39 +080057 fabric_metadata.original_ether_type = hdr.vlan_tag.ether_type;
Yi Tsengbe342052017-11-03 10:21:23 -070058 transition select(hdr.vlan_tag.ether_type){
Yi Tsengbe342052017-11-03 10:21:23 -070059 ETHERTYPE_ARP: parse_arp;
60 ETHERTYPE_IPV4: parse_ipv4;
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080061#ifdef WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -070062 ETHERTYPE_IPV6: parse_ipv6;
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080063#endif // WITH_IPV6
Yi Tsengbd46d052018-01-22 17:18:16 -080064 ETHERTYPE_MPLS: parse_mpls;
Yi Tsengbe342052017-11-03 10:21:23 -070065 default: accept;
66 }
67 }
68
69 state parse_mpls {
70 packet.extract(hdr.mpls);
Yi Tsengc6844f52017-12-19 11:58:25 -080071 // There is only one MPLS label for this fabric.
72 // Assume header after MPLS header is IP/IPv6
73 // Lookup first 4 bits for version
Yi Tseng3d3956d2018-01-31 17:28:05 -080074 transition select(packet.lookahead<bit<IP_VER_LENGTH>>()) {
Yi Tsengbe342052017-11-03 10:21:23 -070075 //The packet should be either IPv4 or IPv6.
76 IP_VERSION_4: parse_ipv4;
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080077#ifdef WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -070078 IP_VERSION_6: parse_ipv6;
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080079#endif // WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -070080 default: parse_ethernet;
81 }
82 }
83
84 state parse_ipv4 {
85 packet.extract(hdr.ipv4);
86 fabric_metadata.ip_proto = hdr.ipv4.protocol;
87 //Need header verification?
88 transition select(hdr.ipv4.protocol) {
89 PROTO_TCP: parse_tcp;
90 PROTO_UDP: parse_udp;
91 PROTO_ICMP: parse_icmp;
92 default: accept;
93 }
94 }
95
Carmelo Casconeed88f2b2018-01-26 17:36:34 -080096#ifdef WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -070097 state parse_ipv6 {
98 packet.extract(hdr.ipv6);
99 fabric_metadata.ip_proto = hdr.ipv6.next_hdr;
100 transition select(hdr.ipv6.next_hdr) {
101 PROTO_TCP: parse_tcp;
102 PROTO_UDP: parse_udp;
103 PROTO_ICMPV6: parse_icmp;
104 default: accept;
105 }
106 }
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800107#endif // WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -0700108
109 state parse_arp {
110 packet.extract(hdr.arp);
111 transition accept;
112 }
113
114 state parse_tcp {
115 packet.extract(hdr.tcp);
116 fabric_metadata.l4_src_port = hdr.tcp.src_port;
117 fabric_metadata.l4_dst_port = hdr.tcp.dst_port;
118 transition accept;
119 }
120
121 state parse_udp {
122 packet.extract(hdr.udp);
123 fabric_metadata.l4_src_port = hdr.udp.src_port;
124 fabric_metadata.l4_dst_port = hdr.udp.dst_port;
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800125#ifdef WITH_SPGW
126 transition select(hdr.udp.dst_port) {
127 UDP_PORT_GTPU: parse_gtpu;
128 default: accept;
129 }
130#else
Yi Tsengbe342052017-11-03 10:21:23 -0700131 transition accept;
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800132#endif // WITH_SPGW
Yi Tsengbe342052017-11-03 10:21:23 -0700133 }
134
135 state parse_icmp {
136 packet.extract(hdr.icmp);
137 transition accept;
138 }
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800139
140#ifdef WITH_SPGW
141 state parse_gtpu {
142 packet.extract(hdr.gtpu);
143 transition parse_ipv4_inner;
144 }
145
146 state parse_ipv4_inner {
Carmelo Casconeb757dbc2018-01-25 17:53:17 -0800147 packet.extract(hdr.gtpu_ipv4);
148 transition select(hdr.gtpu_ipv4.protocol) {
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800149 PROTO_TCP: parse_tcp;
150 PROTO_UDP: parse_udp_inner;
151 PROTO_ICMP: parse_icmp;
152 default: accept;
153 }
154 }
155
156 state parse_udp_inner {
Carmelo Casconeb757dbc2018-01-25 17:53:17 -0800157 packet.extract(hdr.gtpu_udp);
158 fabric_metadata.l4_src_port = hdr.gtpu_udp.src_port;
159 fabric_metadata.l4_dst_port = hdr.gtpu_udp.dst_port;
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800160 transition accept;
161 }
162#endif // WITH_SPGW
Yi Tsengbe342052017-11-03 10:21:23 -0700163}
164
165control FabricDeparser(packet_out packet, in parsed_headers_t hdr) {
Yi Tseng3d3956d2018-01-31 17:28:05 -0800166 apply {
Yi Tsengbe342052017-11-03 10:21:23 -0700167 packet.emit(hdr.packet_in);
168 packet.emit(hdr.ethernet);
169 packet.emit(hdr.vlan_tag);
Yi Tsengbe342052017-11-03 10:21:23 -0700170 packet.emit(hdr.mpls);
171 packet.emit(hdr.arp);
Carmelo Casconeb81f4be2018-01-16 23:24:01 -0800172#ifdef WITH_SPGW
173 packet.emit(hdr.gtpu_ipv4);
174 packet.emit(hdr.gtpu_udp);
175 packet.emit(hdr.gtpu);
176#endif // WITH_SPGW
Yi Tsengbe342052017-11-03 10:21:23 -0700177 packet.emit(hdr.ipv4);
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800178#ifdef WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -0700179 packet.emit(hdr.ipv6);
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800180#endif // WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -0700181 packet.emit(hdr.tcp);
182 packet.emit(hdr.udp);
Yi Tsengf73a5532017-11-17 15:58:57 -0800183 packet.emit(hdr.icmp);
Yi Tsengbe342052017-11-03 10:21:23 -0700184 }
185}
186
187#endif