-
Notifications
You must be signed in to change notification settings - Fork 2
/
mplsProgram.p4
213 lines (183 loc) · 3.68 KB
/
mplsProgram.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
//////////////////////////////////////
////////// PARSER VALUE SETS /////////
//////////////////////////////////////
parser_value_set pvs_ipv4;
//////////////////////////////////////
////////// HEADERS /////////
//////////////////////////////////////
header_type eth_hdr {
fields {
dst : 48;
src : 48;
etype : 16;
}
}
header_type mpls_hdr {
fields {
label: 20;
traffic_class: 3;
bottom_of_stack: 1;
ttl: 8;
}
}
header_type ipv4_hdr {
fields {
version : 4;
ihl : 4;
diffserv : 8;
totalLen : 16;
identification : 16;
flags : 3;
fragOffset : 13;
ttl : 8;
protocol : 8;
hdrChecksum : 16;
srcAddr : 32;
dstAddr: 32;
}
}
header_type tcp_hdr {
fields {
srcPort : 16;
dstPort : 16;
seqNo : 32;
ackNo : 32;
dataOffset : 4;
res : 4;
flags : 8;
window : 16;
checksum : 16;
urgentPtr : 16;
}
}
header_type udp_hdr {
fields {
srcPort : 16;
dstPort : 16;
length_ : 16;
checksum : 16;
}
}
header eth_hdr eth;
header mpls_hdr mpls;
header ipv4_hdr ipv4;
header tcp_hdr tcp;
header udp_hdr udp;
//////////////////////////////////////
////////// PARSING /////////
//////////////////////////////////////
#define ETHERTYPE_IPV4 0x0800
#define ETHERTYPE_MPLS 0x8847
#define IP_PROT_TCP 0x06
#define IP_PROT_UDP 17
parser start {
return eth_parse;
}
parser eth_parse {
extract(eth);
return select(latest.etype) {
ETHERTYPE_IPV4 : ipv4_parse;
ETHERTYPE_MPLS : mpls_parse;
default: ingress;
}
}
parser mpls_parse {
extract(mpls);
return select(mpls.label) {
pvs_ipv4 : ipv4_parse;
default: ingress;
}
}
parser ipv4_parse {
extract(ipv4);
return select(ipv4.protocol) {
IP_PROT_TCP : tcp_parse;
IP_PROT_UDP : udp_parse;
default : ingress;
}
}
parser tcp_parse {
extract(tcp);
return ingress;
}
parser udp_parse {
extract(udp);
return ingress;
}
//////////////////////////////////////
////////// ACTIONS /////////
//////////////////////////////////////
// @TV action DROP
action drop_act() {
drop();
}
// @TV action GOTO_TABLE_1
action no_op_act() {
no_op();
}
// @TV action OUTPUT OUT_PORT=prt
action fwd_act(prt) {
modify_field(standard_metadata.egress_spec, prt);
}
// @TV action MPLS_POP POP_ETHERTYPE=etype
// @TV action GOTO_TABLE_2
action mpls_pop(etype) {
remove_header(mpls);
modify_field(eth.etype, etype);
}
// @TV action SET_FIELD_ETH_DST ETH_DST=mac
// @TV action GOTO_TABLE_3
action set_dst_mac(mac) {
modify_field(eth.dst, mac);
}
//////////////////////////////////////
////////// TABLES /////////
//////////////////////////////////////
// @TV table 0
table acl_tbl {
reads {
// @TV field eth_type
eth.etype : exact;
// @TV field eth_dst
eth.dst : exact;
}
actions {
drop_act;
no_op_act;
}
}
// @TV table 1
table mpls_tbl {
actions {
mpls_pop;
}
}
// @TV table 2
table routing_tbl {
reads {
eth.etype : exact;
// @TV field ipv4_dst
ipv4.dstAddr : exact;
}
actions {
set_dst_mac;
}
}
// @TV table 3
table switch_tbl {
reads {
eth.dst : exact;
}
actions {
fwd_act;
}
}
//////////////////////////////////////
////////// PIPELINE /////////
//////////////////////////////////////
control ingress {
apply(acl_tbl);
apply(mpls_tbl);
apply(routing_tbl);
apply(switch_tbl);
}