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 | |
Carmelo Cascone | 70e816b | 2019-03-19 16:15:47 -0700 | [diff] [blame] | 20 | #include "include/size.p4" |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 21 | #include "include/control/filtering.p4" |
| 22 | #include "include/control/forwarding.p4" |
Wailok Shum | fb7e787 | 2021-06-18 17:30:08 +0800 | [diff] [blame] | 23 | #include "include/control/pre_next.p4" |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 24 | #include "include/control/acl.p4" |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 25 | #include "include/control/next.p4" |
| 26 | #include "include/control/packetio.p4" |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 27 | #include "include/control/lookup_md_init.p4" |
| 28 | #include "include/control/slicing.p4" |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 29 | #include "include/header.p4" |
| 30 | #include "include/checksum.p4" |
| 31 | #include "include/parser.p4" |
| 32 | |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 33 | #ifdef WITH_PORT_COUNTER |
| 34 | #include "include/control/port_counter.p4" |
| 35 | #endif // WITH_PORT_COUNTER |
| 36 | |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 37 | #ifdef WITH_SPGW |
Robert MacDavid | de12b98 | 2020-07-15 18:38:59 -0700 | [diff] [blame] | 38 | #include "include/control/spgw.p4" |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 39 | #endif // WITH_SPGW |
| 40 | |
Carmelo Cascone | 4d8785b | 2019-05-31 17:11:26 -0700 | [diff] [blame] | 41 | #ifdef WITH_BNG |
| 42 | #include "include/bng.p4" |
| 43 | #endif // WITH_BNG |
| 44 | |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 45 | #ifdef WITH_INT |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 46 | #include "include/int/int_main.p4" |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 47 | #endif // WITH_INT |
| 48 | |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 49 | control FabricIngress (inout parsed_headers_t hdr, |
| 50 | inout fabric_metadata_t fabric_metadata, |
| 51 | inout standard_metadata_t standard_metadata) { |
| 52 | |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 53 | LookupMdInit() lkp_md_init; |
Carmelo Cascone | 8d2d1b2 | 2018-08-27 18:33:53 -0700 | [diff] [blame] | 54 | PacketIoIngress() pkt_io_ingress; |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 55 | Filtering() filtering; |
| 56 | Forwarding() forwarding; |
Wailok Shum | fb7e787 | 2021-06-18 17:30:08 +0800 | [diff] [blame] | 57 | PreNext() pre_next; |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 58 | Acl() acl; |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 59 | Next() next; |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 60 | IngressSliceTcClassifier() slice_tc_classifier; |
| 61 | IngressQos() qos; |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 62 | #ifdef WITH_PORT_COUNTER |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 63 | PortCountersControl() port_counters_control; |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 64 | #endif // WITH_PORT_COUNTER |
Robert MacDavid | de12b98 | 2020-07-15 18:38:59 -0700 | [diff] [blame] | 65 | #ifdef WITH_SPGW |
Carmelo Cascone | 2102bfb | 2020-12-04 16:54:24 -0800 | [diff] [blame] | 66 | SpgwIngress() spgw; |
Robert MacDavid | de12b98 | 2020-07-15 18:38:59 -0700 | [diff] [blame] | 67 | #endif // WITH_SPGW |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 68 | |
| 69 | apply { |
Carmelo Cascone | fa42158 | 2018-09-13 10:05:57 -0700 | [diff] [blame] | 70 | _PRE_INGRESS |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 71 | lkp_md_init.apply(hdr, fabric_metadata.lkp); |
Carmelo Cascone | 8d2d1b2 | 2018-08-27 18:33:53 -0700 | [diff] [blame] | 72 | pkt_io_ingress.apply(hdr, fabric_metadata, standard_metadata); |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 73 | slice_tc_classifier.apply(hdr, fabric_metadata, standard_metadata); |
Robert MacDavid | de12b98 | 2020-07-15 18:38:59 -0700 | [diff] [blame] | 74 | filtering.apply(hdr, fabric_metadata, standard_metadata); |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 75 | #ifdef WITH_SPGW |
| 76 | if (fabric_metadata.skip_forwarding == _FALSE) { |
| 77 | spgw.apply(hdr, fabric_metadata, standard_metadata); |
| 78 | } |
| 79 | #endif // WITH_SPGW |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 80 | if (fabric_metadata.skip_forwarding == _FALSE) { |
| 81 | forwarding.apply(hdr, fabric_metadata, standard_metadata); |
| 82 | } |
Wailok Shum | fb7e787 | 2021-06-18 17:30:08 +0800 | [diff] [blame] | 83 | if (fabric_metadata.skip_next == _FALSE) { |
| 84 | pre_next.apply(hdr, fabric_metadata); |
| 85 | } |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 86 | acl.apply(hdr, fabric_metadata, standard_metadata); |
| 87 | if (fabric_metadata.skip_next == _FALSE) { |
| 88 | next.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 89 | #ifdef WITH_PORT_COUNTER |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 90 | // FIXME: we're not counting pkts punted to cpu or forwarded via |
| 91 | // multicast groups. Remove when gNMI support will be there. |
| 92 | port_counters_control.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | 0c8d73e | 2018-09-07 16:31:06 -0700 | [diff] [blame] | 93 | #endif // WITH_PORT_COUNTER |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 94 | #if defined(WITH_INT_SOURCE) || defined(WITH_INT_SINK) |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 95 | process_set_source_sink.apply(hdr, fabric_metadata, standard_metadata); |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 96 | #endif |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 97 | } |
Daniele Moro | 7c3a002 | 2019-07-12 13:38:34 -0700 | [diff] [blame] | 98 | #ifdef WITH_BNG |
| 99 | bng_ingress.apply(hdr, fabric_metadata, standard_metadata); |
| 100 | #endif // WITH_BNG |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 101 | qos.apply(fabric_metadata, standard_metadata); |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 102 | } |
| 103 | } |
| 104 | |
| 105 | control FabricEgress (inout parsed_headers_t hdr, |
| 106 | inout fabric_metadata_t fabric_metadata, |
| 107 | inout standard_metadata_t standard_metadata) { |
Carmelo Cascone | b5324e7 | 2018-11-25 02:26:32 -0800 | [diff] [blame] | 108 | |
Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 109 | PacketIoEgress() pkt_io_egress; |
Yi Tseng | 20f9e7b | 2018-05-24 23:27:39 +0800 | [diff] [blame] | 110 | EgressNextControl() egress_next; |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 111 | EgressDscpRewriter() dscp_rewriter; |
Robert MacDavid | de12b98 | 2020-07-15 18:38:59 -0700 | [diff] [blame] | 112 | #ifdef WITH_SPGW |
Carmelo Cascone | 2102bfb | 2020-12-04 16:54:24 -0800 | [diff] [blame] | 113 | SpgwEgress() spgw; |
Robert MacDavid | de12b98 | 2020-07-15 18:38:59 -0700 | [diff] [blame] | 114 | #endif // WITH_SPGW |
Yi Tseng | 20f9e7b | 2018-05-24 23:27:39 +0800 | [diff] [blame] | 115 | |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 116 | apply { |
Carmelo Cascone | fa42158 | 2018-09-13 10:05:57 -0700 | [diff] [blame] | 117 | _PRE_EGRESS |
Yi Tseng | 1d84267 | 2017-11-28 16:06:52 -0800 | [diff] [blame] | 118 | pkt_io_egress.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | 8d2d1b2 | 2018-08-27 18:33:53 -0700 | [diff] [blame] | 119 | egress_next.apply(hdr, fabric_metadata, standard_metadata); |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 120 | #ifdef WITH_SPGW |
Carmelo Cascone | 2102bfb | 2020-12-04 16:54:24 -0800 | [diff] [blame] | 121 | spgw.apply(hdr, fabric_metadata); |
Carmelo Cascone | b81f4be | 2018-01-16 23:24:01 -0800 | [diff] [blame] | 122 | #endif // WITH_SPGW |
Carmelo Cascone | 4d8785b | 2019-05-31 17:11:26 -0700 | [diff] [blame] | 123 | #ifdef WITH_BNG |
| 124 | bng_egress.apply(hdr, fabric_metadata, standard_metadata); |
| 125 | #endif // WITH_BNG |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 126 | #ifdef WITH_INT |
Carmelo Cascone | 79a3a31 | 2018-08-16 17:14:43 -0700 | [diff] [blame] | 127 | process_int_main.apply(hdr, fabric_metadata, standard_metadata); |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 128 | #endif |
Daniele Moro | 08c9e7f | 2021-07-28 18:53:34 +0200 | [diff] [blame] | 129 | dscp_rewriter.apply(hdr, fabric_metadata, standard_metadata); |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 130 | } |
| 131 | } |
| 132 | |
| 133 | V1Switch( |
| 134 | FabricParser(), |
| 135 | FabricVerifyChecksum(), |
| 136 | FabricIngress(), |
| 137 | FabricEgress(), |
| 138 | FabricComputeChecksum(), |
| 139 | FabricDeparser() |
| 140 | ) main; |