blob: 1ed6647927a3a1a5ca1a8a155ed2210ac6dbf532 [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"
24#include "include/control/port_counter.p4"
25#include "include/header.p4"
26#include "include/checksum.p4"
27#include "include/parser.p4"
28
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080029#ifdef WITH_SPGW
30#include "include/spgw.p4"
31#endif // WITH_SPGW
32
Carmelo Cascone04888222018-03-19 22:18:12 -070033#ifdef WITH_INT_TRANSIT
34#include "include/int_transit.p4"
35#endif // WITH_INT_TRANSIT
36
Yi Tsengbe342052017-11-03 10:21:23 -070037control FabricIngress (
38inout parsed_headers_t hdr,
39inout fabric_metadata_t fabric_metadata,
40inout standard_metadata_t standard_metadata) {
41 PacketIoIngress() packet_io_ingress;
42 Filtering() filtering;
43 Forwarding() forwarding;
44 Next() next;
45 PortCountersControl() port_counters_control;
Yi Tseng3a5731e2018-01-22 11:38:58 -080046 EgressNextControl() egress_next;
Yi Tsengbe342052017-11-03 10:21:23 -070047
48 apply {
Carmelo Casconea14a5d32018-05-30 16:56:04 -070049#ifdef WITH_INT_TRANSIT
Carmelo Casconee2c568f2018-03-24 15:03:40 -070050 fabric_metadata.int_metadata.ingress_tstamp =
51 (bit<32>) standard_metadata.ingress_global_timestamp;
Carmelo Casconea14a5d32018-05-30 16:56:04 -070052#endif // WITH_INT_TRANSIT
Yi Tsengbe342052017-11-03 10:21:23 -070053 packet_io_ingress.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080054#ifdef WITH_SPGW
Carmelo Casconeb757dbc2018-01-25 17:53:17 -080055#ifdef WITH_SPGW_PCC_GATING
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080056 fabric_metadata.spgw.l4_src_port = fabric_metadata.l4_src_port;
57 fabric_metadata.spgw.l4_dst_port = fabric_metadata.l4_dst_port;
Carmelo Casconeb757dbc2018-01-25 17:53:17 -080058#endif // WITH_SPGW_PCC_GATING
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080059 spgw_ingress.apply(hdr.gtpu_ipv4, hdr.gtpu_udp, hdr.gtpu,
Carmelo Casconeb757dbc2018-01-25 17:53:17 -080060 hdr.ipv4, hdr.udp, fabric_metadata.spgw);
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080061#endif // WITH_SPGW
Yi Tsengbe342052017-11-03 10:21:23 -070062 filtering.apply(hdr, fabric_metadata, standard_metadata);
63 forwarding.apply(hdr, fabric_metadata, standard_metadata);
64 next.apply(hdr, fabric_metadata, standard_metadata);
65 port_counters_control.apply(hdr, fabric_metadata, standard_metadata);
Yi Tseng3a5731e2018-01-22 11:38:58 -080066 egress_next.apply(hdr, fabric_metadata, standard_metadata);
Yi Tsengbe342052017-11-03 10:21:23 -070067 }
68}
69
70control FabricEgress (inout parsed_headers_t hdr,
71 inout fabric_metadata_t fabric_metadata,
72 inout standard_metadata_t standard_metadata) {
Yi Tseng1d842672017-11-28 16:06:52 -080073 PacketIoEgress() pkt_io_egress;
Yi Tsengbe342052017-11-03 10:21:23 -070074 apply {
Yi Tseng1d842672017-11-28 16:06:52 -080075 pkt_io_egress.apply(hdr, fabric_metadata, standard_metadata);
Carmelo Cascone04888222018-03-19 22:18:12 -070076#ifdef WITH_INT_TRANSIT
77 int_egress.apply(hdr, fabric_metadata.int_metadata, standard_metadata);
78#endif // WITH_INT_TRANSIT
79 // gtpu encap needs to happen after INT to ensure length fields are set
80 // correctly
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080081#ifdef WITH_SPGW
Carmelo Cascone33e85c02018-02-01 13:30:18 -080082 spgw_egress.apply(hdr.ipv4, hdr.gtpu_ipv4, hdr.gtpu_udp, hdr.gtpu,
Carmelo Casconeb81f4be2018-01-16 23:24:01 -080083 fabric_metadata.spgw, standard_metadata);
84#endif // WITH_SPGW
Yi Tsengbe342052017-11-03 10:21:23 -070085 }
86}
87
88V1Switch(
89 FabricParser(),
90 FabricVerifyChecksum(),
91 FabricIngress(),
92 FabricEgress(),
93 FabricComputeChecksum(),
94 FabricDeparser()
95) main;