blob: 7c690928a149d1180978dde5bb9646c12b99fc7d [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 "../define.p4"
21#include "../header.p4"
22#include "../action.p4"
23
24
25control Forwarding (
26 inout parsed_headers_t hdr,
27 inout fabric_metadata_t fabric_metadata,
28 inout standard_metadata_t standard_metadata) {
29
Yi Tseng47eac892018-07-11 02:17:04 +080030 /*
31 * Bridging Table.
32 * Matches destination mac address and VLAN Id and make egress decision.
33 */
Yi Tseng3a5731e2018-01-22 11:38:58 -080034 direct_counter(CounterType.packets_and_bytes) bridging_counter;
Yi Tseng3a5731e2018-01-22 11:38:58 -080035
Yi Tseng47eac892018-07-11 02:17:04 +080036 action set_next_id_bridging(next_id_t next_id) {
Yi Tsengbe342052017-11-03 10:21:23 -070037 fabric_metadata.next_id = next_id;
Yi Tseng47eac892018-07-11 02:17:04 +080038 bridging_counter.count();
Yi Tsengbe342052017-11-03 10:21:23 -070039 }
40
Yi Tsengbe342052017-11-03 10:21:23 -070041 table bridging {
42 key = {
43 hdr.vlan_tag.vlan_id: exact;
44 hdr.ethernet.dst_addr: ternary;
45 }
46
47 actions = {
Yi Tseng47eac892018-07-11 02:17:04 +080048 set_next_id_bridging;
Yi Tsengbe342052017-11-03 10:21:23 -070049 }
Yi Tseng3a5731e2018-01-22 11:38:58 -080050 counters = bridging_counter;
Yi Tsengbe342052017-11-03 10:21:23 -070051 }
52
Yi Tseng47eac892018-07-11 02:17:04 +080053 /*
54 * MPLS Table.
55 * Matches MPLS label and make egress decision.
56 */
57 direct_counter(CounterType.packets_and_bytes) mpls_counter;
58
59 action pop_mpls_and_next(next_id_t next_id) {
60 hdr.mpls.setInvalid();
61 fabric_metadata.next_id = next_id;
62 mpls_counter.count();
63 }
64
Yi Tsengbe342052017-11-03 10:21:23 -070065 table mpls {
66 key = {
67 hdr.mpls.label: exact;
68 }
69
70 actions = {
71 pop_mpls_and_next;
72 }
Yi Tseng3a5731e2018-01-22 11:38:58 -080073 counters = mpls_counter;
Yi Tsengbe342052017-11-03 10:21:23 -070074 }
75
Yi Tseng47eac892018-07-11 02:17:04 +080076 /*
Charles Chan384aea22018-08-23 22:08:02 -070077 * IPv4 Routing Table.
Yi Tseng47eac892018-07-11 02:17:04 +080078 * Matches IPv4 prefix and make egress decision.
79 */
Charles Chan384aea22018-08-23 22:08:02 -070080 direct_counter(CounterType.packets_and_bytes) routing_v4_counter;
Yi Tseng47eac892018-07-11 02:17:04 +080081
Charles Chan384aea22018-08-23 22:08:02 -070082 action set_next_id_routing_v4(next_id_t next_id) {
Yi Tseng47eac892018-07-11 02:17:04 +080083 fabric_metadata.next_id = next_id;
Charles Chan384aea22018-08-23 22:08:02 -070084 routing_v4_counter.count();
Yi Tseng47eac892018-07-11 02:17:04 +080085 }
86
Charles Chancd03f072018-08-31 17:46:37 -070087 action nop_routing_v4() {
88 routing_v4_counter.count();
89 }
90
Charles Chan384aea22018-08-23 22:08:02 -070091 table routing_v4 {
Yi Tsengbe342052017-11-03 10:21:23 -070092 key = {
93 hdr.ipv4.dst_addr: lpm;
94 }
95
96 actions = {
Charles Chan384aea22018-08-23 22:08:02 -070097 set_next_id_routing_v4;
Charles Chancd03f072018-08-31 17:46:37 -070098 nop_routing_v4;
Yi Tsengbe342052017-11-03 10:21:23 -070099 }
Charles Chan384aea22018-08-23 22:08:02 -0700100 counters = routing_v4_counter;
Yi Tsengbe342052017-11-03 10:21:23 -0700101 }
102
Yi Tseng47eac892018-07-11 02:17:04 +0800103 /*
104 * ACL Table.
105 * Make final egress decision based on general metch fields.
106 */
107 direct_counter(CounterType.packets_and_bytes) acl_counter;
Carmelo Casconea1061402018-02-03 17:39:59 -0800108
Yi Tseng47eac892018-07-11 02:17:04 +0800109 action set_next_id_acl(next_id_t next_id) {
110 fabric_metadata.next_id = next_id;
111 acl_counter.count();
Yi Tsengbe342052017-11-03 10:21:23 -0700112 }
113
Carmelo Cascone1e8843f2018-07-19 19:01:12 +0200114 // Send immendiatelly to CPU - skip the rest of pipeline.
115 action punt_to_cpu() {
Yi Tseng47eac892018-07-11 02:17:04 +0800116 standard_metadata.egress_spec = CPU_PORT;
117 acl_counter.count();
Carmelo Cascone1e8843f2018-07-19 19:01:12 +0200118 exit;
119 }
120
121 action clone_to_cpu() {
122 // FIXME: works only if pkt will be replicated via PRE multicast group.
123 fabric_metadata.clone_to_cpu = _TRUE;
124 acl_counter.count();
Yi Tsengbe342052017-11-03 10:21:23 -0700125 }
Yi Tseng47eac892018-07-11 02:17:04 +0800126
127 action drop() {
128 mark_to_drop();
129 acl_counter.count();
130 }
Yi Tsengbe342052017-11-03 10:21:23 -0700131
Charles Chancf696e52018-08-16 16:25:13 -0700132 action nop_acl() {
133 acl_counter.count();
134 }
135
Yi Tsengbe342052017-11-03 10:21:23 -0700136 table acl {
137 key = {
Yi Tseng1d842672017-11-28 16:06:52 -0800138 standard_metadata.ingress_port: ternary; // 9
139 fabric_metadata.ip_proto: ternary; // 8
140 fabric_metadata.l4_src_port: ternary; // 16
141 fabric_metadata.l4_dst_port: ternary; // 16
142
143 hdr.ethernet.dst_addr: ternary; // 48
144 hdr.ethernet.src_addr: ternary; // 48
Yi Tseng1d842672017-11-28 16:06:52 -0800145 hdr.vlan_tag.vlan_id: ternary; // 12
Yi Tseng8235a1a2018-07-24 20:57:28 +0800146 hdr.vlan_tag.ether_type: ternary; //16
Yi Tseng1d842672017-11-28 16:06:52 -0800147 hdr.ipv4.src_addr: ternary; // 32
148 hdr.ipv4.dst_addr: ternary; // 32
Yi Tseng1d842672017-11-28 16:06:52 -0800149 hdr.icmp.icmp_type: ternary; // 8
150 hdr.icmp.icmp_code: ternary; // 8
Yi Tsengbe342052017-11-03 10:21:23 -0700151 }
152
153 actions = {
Yi Tseng47eac892018-07-11 02:17:04 +0800154 set_next_id_acl;
Carmelo Cascone1e8843f2018-07-19 19:01:12 +0200155 punt_to_cpu;
156 clone_to_cpu;
Yi Tsengbe342052017-11-03 10:21:23 -0700157 drop;
Charles Chancf696e52018-08-16 16:25:13 -0700158 nop_acl;
Yi Tsengbe342052017-11-03 10:21:23 -0700159 }
160
Charles Chancf696e52018-08-16 16:25:13 -0700161 const default_action = nop_acl();
Yi Tseng8235a1a2018-07-24 20:57:28 +0800162 size = 128;
Yi Tseng3a5731e2018-01-22 11:38:58 -0800163 counters = acl_counter;
Yi Tsengbe342052017-11-03 10:21:23 -0700164 }
165
Yi Tseng47eac892018-07-11 02:17:04 +0800166#ifdef WITH_IPV6
167 /*
Charles Chan384aea22018-08-23 22:08:02 -0700168 * IPv6 Routing Table.
Yi Tseng47eac892018-07-11 02:17:04 +0800169 * Matches IPv6 prefix and make egress decision.
170 */
Charles Chan384aea22018-08-23 22:08:02 -0700171 direct_counter(CounterType.packets_and_bytes) routing_v6_counter;
Yi Tseng47eac892018-07-11 02:17:04 +0800172
Charles Chan384aea22018-08-23 22:08:02 -0700173 action set_next_id_routing_v6(next_id_t next_id) {
Yi Tseng47eac892018-07-11 02:17:04 +0800174 fabric_metadata.next_id = next_id;
Charles Chan384aea22018-08-23 22:08:02 -0700175 routing_v6_counter.count();
Yi Tseng47eac892018-07-11 02:17:04 +0800176 }
177
Charles Chan384aea22018-08-23 22:08:02 -0700178 table routing_v6 {
Yi Tseng47eac892018-07-11 02:17:04 +0800179 key = {
180 hdr.ipv6.dst_addr: lpm;
181 }
182
183 actions = {
Charles Chan384aea22018-08-23 22:08:02 -0700184 set_next_id_routing_v6;
Yi Tseng47eac892018-07-11 02:17:04 +0800185 }
Charles Chan384aea22018-08-23 22:08:02 -0700186 counters = routing_v6_counter;
Yi Tseng47eac892018-07-11 02:17:04 +0800187 }
Yi Tseng47eac892018-07-11 02:17:04 +0800188#endif // WITH_IPV6
189
Yi Tsengbe342052017-11-03 10:21:23 -0700190 apply {
191 if(fabric_metadata.fwd_type == FWD_BRIDGING) bridging.apply();
Yi Tseng1d842672017-11-28 16:06:52 -0800192 else if (fabric_metadata.fwd_type == FWD_MPLS) {
193 mpls.apply();
Yi Tsengbd46d052018-01-22 17:18:16 -0800194
195 // TODO: IPv6
196 hdr.vlan_tag.ether_type = ETHERTYPE_IPV4;
Yi Tseng1d842672017-11-28 16:06:52 -0800197 }
Charles Chan384aea22018-08-23 22:08:02 -0700198 else if (fabric_metadata.fwd_type == FWD_IPV4_UNICAST) routing_v4.apply();
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800199#ifdef WITH_IPV6
Charles Chan384aea22018-08-23 22:08:02 -0700200 else if (fabric_metadata.fwd_type == FWD_IPV6_UNICAST) routing_v6.apply();
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800201#endif // WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -0700202 acl.apply();
203 }
204}