blob: 6ef205b92f6dc2e5a136eb410f3f3468a9f9f9c8 [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#include <core.p4>
18#include <v1model.p4>
19
20#include "include/control/filtering.p4"
21#include "include/control/forwarding.p4"
22#include "include/control/next.p4"
23#include "include/control/packetio.p4"
Yi Tsengbe342052017-11-03 10:21:23 -070024#include "include/header.p4"
25#include "include/checksum.p4"
26#include "include/parser.p4"
27
Carmelo Cascone0c8d73e2018-09-07 16:31:06 -070028#ifdef WITH_PORT_COUNTER
29#include "include/control/port_counter.p4"
30#endif // WITH_PORT_COUNTER
31
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080032#ifdef WITH_SPGW
33#include "include/spgw.p4"
34#endif // WITH_SPGW
35
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090036#ifdef WITH_INT
37#include "include/int_source.p4"
38#include "include/int_transit.p4"
39#include "include/int_sink.p4"
40#include "include/int_report.p4"
41#endif // WITH_INT
42
Yi Tsengbe342052017-11-03 10:21:23 -070043control FabricIngress (
44inout parsed_headers_t hdr,
45inout fabric_metadata_t fabric_metadata,
46inout standard_metadata_t standard_metadata) {
Carmelo Cascone8d2d1b22018-08-27 18:33:53 -070047 PacketIoIngress() pkt_io_ingress;
Yi Tsengbe342052017-11-03 10:21:23 -070048 Filtering() filtering;
49 Forwarding() forwarding;
50 Next() next;
Carmelo Cascone0c8d73e2018-09-07 16:31:06 -070051#ifdef WITH_PORT_COUNTER
Yi Tsengbe342052017-11-03 10:21:23 -070052 PortCountersControl() port_counters_control;
Carmelo Cascone0c8d73e2018-09-07 16:31:06 -070053#endif // WITH_PORT_COUNTER
Yi Tsengbe342052017-11-03 10:21:23 -070054
55 apply {
Carmelo Cascone9b0171b2018-08-14 01:43:57 -070056#ifdef WITH_SPGW
57 spgw_normalizer.apply(hdr.gtpu.isValid(), hdr.gtpu_ipv4, hdr.gtpu_udp,
58 hdr.ipv4, hdr.udp, hdr.inner_ipv4, hdr.inner_udp);
59#endif // WITH_SPGW
Carmelo Cascone8d2d1b22018-08-27 18:33:53 -070060 pkt_io_ingress.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080061#ifdef WITH_SPGW
Carmelo Casconeb757dbc2018-01-25 17:53:17 -080062#ifdef WITH_SPGW_PCC_GATING
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080063 fabric_metadata.spgw.l4_src_port = fabric_metadata.l4_src_port;
64 fabric_metadata.spgw.l4_dst_port = fabric_metadata.l4_dst_port;
Carmelo Casconeb757dbc2018-01-25 17:53:17 -080065#endif // WITH_SPGW_PCC_GATING
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080066 spgw_ingress.apply(hdr.gtpu_ipv4, hdr.gtpu_udp, hdr.gtpu,
Carmelo Casconeb757dbc2018-01-25 17:53:17 -080067 hdr.ipv4, hdr.udp, fabric_metadata.spgw);
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080068#endif // WITH_SPGW
Yi Tsengbe342052017-11-03 10:21:23 -070069 filtering.apply(hdr, fabric_metadata, standard_metadata);
70 forwarding.apply(hdr, fabric_metadata, standard_metadata);
71 next.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Cascone0c8d73e2018-09-07 16:31:06 -070072#ifdef WITH_PORT_COUNTER
Yi Tsengbe342052017-11-03 10:21:23 -070073 port_counters_control.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Cascone0c8d73e2018-09-07 16:31:06 -070074#endif // WITH_PORT_COUNTER
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090075#ifdef WITH_INT
76 process_set_source_sink.apply(hdr, fabric_metadata, standard_metadata);
77 if(fabric_metadata.int_meta.sink == 1) {
78 // clone packet for Telemetry Report
79 #ifdef __TARGET_BMV2__
80 clone(CloneType.I2E, REPORT_MIRROR_SESSION_ID);
81 #endif
82 }
83#endif
Yi Tsengbe342052017-11-03 10:21:23 -070084 }
85}
86
87control FabricEgress (inout parsed_headers_t hdr,
88 inout fabric_metadata_t fabric_metadata,
89 inout standard_metadata_t standard_metadata) {
Yi Tseng1d842672017-11-28 16:06:52 -080090 PacketIoEgress() pkt_io_egress;
Yi Tseng20f9e7b2018-05-24 23:27:39 +080091 EgressNextControl() egress_next;
92
Yi Tsengbe342052017-11-03 10:21:23 -070093 apply {
Yi Tseng1d842672017-11-28 16:06:52 -080094 pkt_io_egress.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Cascone8d2d1b22018-08-27 18:33:53 -070095 egress_next.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080096#ifdef WITH_SPGW
Carmelo Cascone33e85c02018-02-01 13:30:18 -080097 spgw_egress.apply(hdr.ipv4, hdr.gtpu_ipv4, hdr.gtpu_udp, hdr.gtpu,
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080098 fabric_metadata.spgw, standard_metadata);
99#endif // WITH_SPGW
Jonghwan Hyuned478dc2018-08-06 15:35:18 +0900100#ifdef WITH_INT
101 if (standard_metadata.ingress_port != CPU_PORT &&
102 standard_metadata.egress_port != CPU_PORT &&
103 (hdr.udp.isValid() || hdr.tcp.isValid())) {
104 if (fabric_metadata.int_meta.source == 1) {
105 process_int_source.apply(hdr, fabric_metadata, standard_metadata);
106 }
107 if(hdr.int_header.isValid()) {
108 process_int_transit.apply(hdr, fabric_metadata, standard_metadata);
109 // update underlay header based on INT information inserted
110 process_int_outer_encap.apply(hdr, fabric_metadata, standard_metadata);
111 if (standard_metadata.instance_type == PKT_INSTANCE_TYPE_INGRESS_CLONE) {
112 /* send int report */
113 process_int_report.apply(hdr, fabric_metadata, standard_metadata);
114 }
115 if (fabric_metadata.int_meta.sink == 1) {
116 // int sink
117 process_int_sink.apply(hdr, fabric_metadata, standard_metadata);
118 }
119 }
120 }
121#endif
Yi Tsengbe342052017-11-03 10:21:23 -0700122 }
123}
124
125V1Switch(
126 FabricParser(),
127 FabricVerifyChecksum(),
128 FabricIngress(),
129 FabricEgress(),
130 FabricComputeChecksum(),
131 FabricDeparser()
132) main;