blob: 89eb35a3eedf71e5a8fb62a77bd281e7d0ec6b00 [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 Chan384aea22018-08-23 22:08:02 -070087 table routing_v4 {
Yi Tsengbe342052017-11-03 10:21:23 -070088 key = {
89 hdr.ipv4.dst_addr: lpm;
90 }
91
92 actions = {
Charles Chan384aea22018-08-23 22:08:02 -070093 set_next_id_routing_v4;
Yi Tsengbe342052017-11-03 10:21:23 -070094 }
Charles Chan384aea22018-08-23 22:08:02 -070095 counters = routing_v4_counter;
Yi Tsengbe342052017-11-03 10:21:23 -070096 }
97
Yi Tseng47eac892018-07-11 02:17:04 +080098 /*
99 * ACL Table.
100 * Make final egress decision based on general metch fields.
101 */
102 direct_counter(CounterType.packets_and_bytes) acl_counter;
Carmelo Casconea1061402018-02-03 17:39:59 -0800103
Yi Tseng47eac892018-07-11 02:17:04 +0800104 action set_next_id_acl(next_id_t next_id) {
105 fabric_metadata.next_id = next_id;
106 acl_counter.count();
Yi Tsengbe342052017-11-03 10:21:23 -0700107 }
108
Carmelo Cascone1e8843f2018-07-19 19:01:12 +0200109 // Send immendiatelly to CPU - skip the rest of pipeline.
110 action punt_to_cpu() {
Yi Tseng47eac892018-07-11 02:17:04 +0800111 standard_metadata.egress_spec = CPU_PORT;
112 acl_counter.count();
Carmelo Cascone1e8843f2018-07-19 19:01:12 +0200113 exit;
114 }
115
116 action clone_to_cpu() {
117 // FIXME: works only if pkt will be replicated via PRE multicast group.
118 fabric_metadata.clone_to_cpu = _TRUE;
119 acl_counter.count();
Yi Tsengbe342052017-11-03 10:21:23 -0700120 }
Yi Tseng47eac892018-07-11 02:17:04 +0800121
122 action drop() {
123 mark_to_drop();
124 acl_counter.count();
125 }
Yi Tsengbe342052017-11-03 10:21:23 -0700126
Charles Chancf696e52018-08-16 16:25:13 -0700127 action nop_acl() {
128 acl_counter.count();
129 }
130
Yi Tsengbe342052017-11-03 10:21:23 -0700131 table acl {
132 key = {
Yi Tseng1d842672017-11-28 16:06:52 -0800133 standard_metadata.ingress_port: ternary; // 9
134 fabric_metadata.ip_proto: ternary; // 8
135 fabric_metadata.l4_src_port: ternary; // 16
136 fabric_metadata.l4_dst_port: ternary; // 16
137
138 hdr.ethernet.dst_addr: ternary; // 48
139 hdr.ethernet.src_addr: ternary; // 48
Yi Tseng1d842672017-11-28 16:06:52 -0800140 hdr.vlan_tag.vlan_id: ternary; // 12
Yi Tseng8235a1a2018-07-24 20:57:28 +0800141 hdr.vlan_tag.ether_type: ternary; //16
Yi Tseng1d842672017-11-28 16:06:52 -0800142 hdr.ipv4.src_addr: ternary; // 32
143 hdr.ipv4.dst_addr: ternary; // 32
Yi Tseng1d842672017-11-28 16:06:52 -0800144 hdr.icmp.icmp_type: ternary; // 8
145 hdr.icmp.icmp_code: ternary; // 8
Yi Tsengbe342052017-11-03 10:21:23 -0700146 }
147
148 actions = {
Yi Tseng47eac892018-07-11 02:17:04 +0800149 set_next_id_acl;
Carmelo Cascone1e8843f2018-07-19 19:01:12 +0200150 punt_to_cpu;
151 clone_to_cpu;
Yi Tsengbe342052017-11-03 10:21:23 -0700152 drop;
Charles Chancf696e52018-08-16 16:25:13 -0700153 nop_acl;
Yi Tsengbe342052017-11-03 10:21:23 -0700154 }
155
Charles Chancf696e52018-08-16 16:25:13 -0700156 const default_action = nop_acl();
Yi Tseng8235a1a2018-07-24 20:57:28 +0800157 size = 128;
Yi Tseng3a5731e2018-01-22 11:38:58 -0800158 counters = acl_counter;
Yi Tsengbe342052017-11-03 10:21:23 -0700159 }
160
Yi Tseng47eac892018-07-11 02:17:04 +0800161#ifdef WITH_IPV6
162 /*
Charles Chan384aea22018-08-23 22:08:02 -0700163 * IPv6 Routing Table.
Yi Tseng47eac892018-07-11 02:17:04 +0800164 * Matches IPv6 prefix and make egress decision.
165 */
Charles Chan384aea22018-08-23 22:08:02 -0700166 direct_counter(CounterType.packets_and_bytes) routing_v6_counter;
Yi Tseng47eac892018-07-11 02:17:04 +0800167
Charles Chan384aea22018-08-23 22:08:02 -0700168 action set_next_id_routing_v6(next_id_t next_id) {
Yi Tseng47eac892018-07-11 02:17:04 +0800169 fabric_metadata.next_id = next_id;
Charles Chan384aea22018-08-23 22:08:02 -0700170 routing_v6_counter.count();
Yi Tseng47eac892018-07-11 02:17:04 +0800171 }
172
Charles Chan384aea22018-08-23 22:08:02 -0700173 table routing_v6 {
Yi Tseng47eac892018-07-11 02:17:04 +0800174 key = {
175 hdr.ipv6.dst_addr: lpm;
176 }
177
178 actions = {
Charles Chan384aea22018-08-23 22:08:02 -0700179 set_next_id_routing_v6;
Yi Tseng47eac892018-07-11 02:17:04 +0800180 }
Charles Chan384aea22018-08-23 22:08:02 -0700181 counters = routing_v6_counter;
Yi Tseng47eac892018-07-11 02:17:04 +0800182 }
Yi Tseng47eac892018-07-11 02:17:04 +0800183#endif // WITH_IPV6
184
Yi Tsengbe342052017-11-03 10:21:23 -0700185 apply {
186 if(fabric_metadata.fwd_type == FWD_BRIDGING) bridging.apply();
Yi Tseng1d842672017-11-28 16:06:52 -0800187 else if (fabric_metadata.fwd_type == FWD_MPLS) {
188 mpls.apply();
Yi Tsengbd46d052018-01-22 17:18:16 -0800189
190 // TODO: IPv6
191 hdr.vlan_tag.ether_type = ETHERTYPE_IPV4;
Yi Tseng1d842672017-11-28 16:06:52 -0800192 }
Charles Chan384aea22018-08-23 22:08:02 -0700193 else if (fabric_metadata.fwd_type == FWD_IPV4_UNICAST) routing_v4.apply();
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800194#ifdef WITH_IPV6
Charles Chan384aea22018-08-23 22:08:02 -0700195 else if (fabric_metadata.fwd_type == FWD_IPV6_UNICAST) routing_v6.apply();
Carmelo Casconeed88f2b2018-01-26 17:36:34 -0800196#endif // WITH_IPV6
Yi Tsengbe342052017-11-03 10:21:23 -0700197 acl.apply();
198 }
199}