This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtutorial.p4
216 lines (190 loc) · 5.05 KB
/
tutorial.p4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* The data plane program for VLAN assignment.
*
* Defines per-packet processing instructions. */
#include <core.p4>
#include <v1model.p4> // The V1model architecture.
const bit<16> TYPE_VLAN = 0x8100;
header Ethernet_t {
bit<48> dst;
bit<48> src;
bit<16> type;
}
header Vlan_t {
bit<3> pcp;
bit<1> dei;
bit<12> vid;
bit<16> etherType;
}
header Ipv4_t {
bit<4> version;
bit<4> ihl;
bit<6> dscp;
bit<2> ecn;
bit<16> totalLen;
bit<16> identification;
bit<3> flags;
bit<13> fragOffset;
bit<8> ttl;
bit<8> protocol;
bit<16> hdrChecksum;
bit<32> srcAddr;
bit<32> dstAddr;
}
struct metadata {
// The packet's conceptual VLAN, which may not be in a VLAN header.
bit<12> vid;
// Whether to flood this packet.
bool flood;
}
struct headers {
Ethernet_t eth;
Vlan_t vlan;
Ipv4_t ipv4;
}
parser TutorialParser(packet_in packet,
out headers hdr,
inout metadata meta,
inout standard_metadata_t standard_metadata) {
state start {
packet.extract(hdr.eth);
transition select(hdr.eth.type) {
TYPE_VLAN: parse_vlan;
}
}
state parse_vlan {
packet.extract(hdr.vlan);
transition accept;
}
}
control TutorialVerifyChecksum(inout headers hdr, inout metadata meta) {
apply {
verify_checksum(hdr.ipv4.isValid(),
{
hdr.ipv4.version,
hdr.ipv4.ihl,
hdr.ipv4.dscp,
hdr.ipv4.ecn,
hdr.ipv4.totalLen,
hdr.ipv4.identification,
hdr.ipv4.flags,
hdr.ipv4.fragOffset,
hdr.ipv4.ttl,
hdr.ipv4.protocol,
hdr.ipv4.srcAddr,
hdr.ipv4.dstAddr
},
hdr.ipv4.hdrChecksum,
HashAlgorithm.csum16
);
}
}
control TutorialIngress(inout headers hdr,
inout metadata meta,
inout standard_metadata_t standard_metadata) {
action Drop() {
mark_to_drop(standard_metadata);
}
action SetVlan(bit<12> vid) {
meta.vid = vid;
}
action UseTaggedVlan() {
meta.vid = hdr.vlan.vid;
}
table InputVlan {
key = {
standard_metadata.ingress_port: exact @name("port");
hdr.vlan.isValid(): exact @name("has_vlan") @nerpa_bool;
hdr.vlan.vid: optional @name("vid");
}
actions = {
Drop;
SetVlan;
UseTaggedVlan;
}
default_action = Drop;
}
apply {
InputVlan.apply();
}
}
control TutorialEgress(inout headers hdr,
inout metadata meta,
inout standard_metadata_t standard_metadata) {
// Output VLAN processing.
table OutputVlan {
key = {
standard_metadata.egress_port: exact @name("port");
meta.vid: optional @name("vlan");
}
actions = {
NoAction;
}
}
// Priority tagging mode.
table PriorityTagging {
key = {
standard_metadata.egress_port: exact @name("port");
hdr.vlan.isValid() && hdr.vlan.pcp != 0: exact @name("nonzero_pcp") @nerpa_bool;
}
actions = {
NoAction;
}
}
apply {
// Drop loopback.
if (standard_metadata.egress_port == standard_metadata.ingress_port) {
mark_to_drop(standard_metadata);
exit;
}
// Output VLAN processing, including priority tagging.
bool tag_vlan = OutputVlan.apply().hit;
bit<12> vid = tag_vlan ? meta.vid : 0;
bool include_vlan_header = tag_vlan || PriorityTagging.apply().hit;
if (include_vlan_header && !hdr.vlan.isValid()) {
hdr.vlan = {
0,
0,
vid,
hdr.eth.type
};
hdr.eth.type = TYPE_VLAN;
} else if (!include_vlan_header && hdr.vlan.isValid()) {
hdr.eth.type = hdr.vlan.etherType;
hdr.vlan.setInvalid();
}
}
}
control TutorialComputeChecksum(inout headers hdr, inout metadata meta) {
apply {
update_checksum(hdr.ipv4.isValid(),
{
hdr.ipv4.version,
hdr.ipv4.ihl,
hdr.ipv4.dscp,
hdr.ipv4.ecn,
hdr.ipv4.totalLen,
hdr.ipv4.identification,
hdr.ipv4.flags,
hdr.ipv4.fragOffset,
hdr.ipv4.ttl,
hdr.ipv4.protocol,
hdr.ipv4.srcAddr,
hdr.ipv4.dstAddr
},
hdr.ipv4.hdrChecksum,
HashAlgorithm.csum16
);
}
}
control TutorialDeparser(packet_out packet, in headers hdr) {
apply {
}
}
V1Switch (
TutorialParser(),
TutorialVerifyChecksum(),
TutorialIngress(),
TutorialEgress(),
TutorialComputeChecksum(),
TutorialDeparser()
) main;