Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 1 | /* |
| 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 Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 24 | #include "include/header.p4" |
| 25 | #include "include/checksum.p4" |
| 26 | #include "include/parser.p4" |
| 27 | |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 28 | #ifdef WITH_PORT_COUNTER |
| 29 | #include "include/control/port_counter.p4" |
| 30 | #endif // WITH_PORT_COUNTER |
| 31 | |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 32 | #ifdef WITH_SPGW |
| 33 | #include "include/spgw.p4" |
| 34 | #endif // WITH_SPGW |
| 35 | |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 36 | #ifdef WITH_INT |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 37 | #include "include/int/int_main.p4" |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 38 | #endif // WITH_INT |
| 39 | |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 40 | control FabricIngress ( |
| 41 | inout parsed_headers_t hdr, |
| 42 | inout fabric_metadata_t fabric_metadata, |
| 43 | inout standard_metadata_t standard_metadata) { |
Carmelo Cascone | 8d2d1b2 | 2018-08-27 18:33:53 -0700 | [diff] [blame] | 44 | PacketIoIngress() pkt_io_ingress; |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 45 | Filtering() filtering; |
| 46 | Forwarding() forwarding; |
| 47 | Next() next; |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 48 | #ifdef WITH_PORT_COUNTER |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 49 | PortCountersControl() port_counters_control; |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 50 | #endif // WITH_PORT_COUNTER |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 51 | |
| 52 | apply { |
Carmelo Cascone | fa42158 | 2018-09-13 10:05:57 -0700 | [diff] [blame] | 53 | _PRE_INGRESS |
Carmelo Cascone | 9b0171b | 2018-08-14 01:43:57 -0700 | [diff] [blame] | 54 | #ifdef WITH_SPGW |
| 55 | spgw_normalizer.apply(hdr.gtpu.isValid(), hdr.gtpu_ipv4, hdr.gtpu_udp, |
| 56 | hdr.ipv4, hdr.udp, hdr.inner_ipv4, hdr.inner_udp); |
| 57 | #endif // WITH_SPGW |
Carmelo Cascone | 8d2d1b2 | 2018-08-27 18:33:53 -0700 | [diff] [blame] | 58 | pkt_io_ingress.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 59 | #ifdef WITH_SPGW |
Carmelo Cascone | b757dbc | 2018-01-25 17:53:17 -0800 | [diff] [blame] | 60 | #ifdef WITH_SPGW_PCC_GATING |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 61 | fabric_metadata.spgw.l4_src_port = fabric_metadata.l4_src_port; |
| 62 | fabric_metadata.spgw.l4_dst_port = fabric_metadata.l4_dst_port; |
Carmelo Cascone | b757dbc | 2018-01-25 17:53:17 -0800 | [diff] [blame] | 63 | #endif // WITH_SPGW_PCC_GATING |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 64 | spgw_ingress.apply(hdr.gtpu_ipv4, hdr.gtpu_udp, hdr.gtpu, |
Carmelo Cascone | b757dbc | 2018-01-25 17:53:17 -0800 | [diff] [blame] | 65 | hdr.ipv4, hdr.udp, fabric_metadata.spgw); |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 66 | #endif // WITH_SPGW |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 67 | filtering.apply(hdr, fabric_metadata, standard_metadata); |
| 68 | forwarding.apply(hdr, fabric_metadata, standard_metadata); |
| 69 | next.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 70 | #ifdef WITH_PORT_COUNTER |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 71 | // FIXME: we're not counting pkts punted to cpu or forwarded via multicast groups. |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 72 | port_counters_control.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 73 | #endif // WITH_PORT_COUNTER |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 74 | #if defined(WITH_INT_SOURCE) || defined(WITH_INT_SINK) |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 75 | process_set_source_sink.apply(hdr, fabric_metadata, standard_metadata); |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 76 | #endif |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 77 | } |
| 78 | } |
| 79 | |
| 80 | control FabricEgress (inout parsed_headers_t hdr, |
| 81 | inout fabric_metadata_t fabric_metadata, |
| 82 | inout standard_metadata_t standard_metadata) { |
Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 83 | PacketIoEgress() pkt_io_egress; |
Yi Tseng | 20f9e7b | 2018-05-24 23:27:39 +0800 | [diff] [blame] | 84 | EgressNextControl() egress_next; |
| 85 | |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 86 | apply { |
Carmelo Cascone | fa42158 | 2018-09-13 10:05:57 -0700 | [diff] [blame] | 87 | _PRE_EGRESS |
Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 88 | pkt_io_egress.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | 8d2d1b2 | 2018-08-27 18:33:53 -0700 | [diff] [blame] | 89 | egress_next.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 90 | #ifdef WITH_SPGW |
Carmelo Cascone | 33e85c0 | 2018-02-01 13:30:18 -0800 | [diff] [blame] | 91 | spgw_egress.apply(hdr.ipv4, hdr.gtpu_ipv4, hdr.gtpu_udp, hdr.gtpu, |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 92 | fabric_metadata.spgw, standard_metadata); |
| 93 | #endif // WITH_SPGW |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 94 | #ifdef WITH_INT |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 95 | process_int_main.apply(hdr, fabric_metadata, standard_metadata); |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 96 | #endif |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
| 100 | V1Switch( |
| 101 | FabricParser(), |
| 102 | FabricVerifyChecksum(), |
| 103 | FabricIngress(), |
| 104 | FabricEgress(), |
| 105 | FabricComputeChecksum(), |
| 106 | FabricDeparser() |
| 107 | ) main; |