-
Notifications
You must be signed in to change notification settings - Fork 449
/
Copy pathmultiple_tables_example_02.p4
270 lines (254 loc) · 6.7 KB
/
multiple_tables_example_02.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
#include <core.p4>
#include <tc/pna.p4>
typedef bit<48> EthernetAddress;
header ethernet_t {
EthernetAddress dstAddr;
EthernetAddress srcAddr;
bit<16> etherType;
}
header ipv4_t {
bit<4> version;
bit<4> ihl;
bit<8> diffserv;
bit<16> totalLen;
bit<16> identification;
bit<3> flags;
bit<13> fragOffset;
bit<8> ttl;
bit<8> protocol;
bit<16> hdrChecksum;
@tc_type ("ipv4") bit<32> srcAddr;
@tc_type ("ipv4") bit<32> dstAddr;
}
header tcp_t {
bit<16> srcPort;
bit<16> dstPort;
bit<32> seqNo;
bit<32> ackNo;
bit<4> dataOffset;
bit<4> res;
bit<8> flags;
bit<16> window;
bit<16> checksum;
bit<16> urgentPtr;
}
// Masks of the bit positions of some bit flags within the TCP flags field.
const bit<8> TCP_URG_MASK = 0x20;
const bit<8> TCP_ACK_MASK = 0x10;
const bit<8> TCP_PSH_MASK = 0x08;
const bit<8> TCP_RST_MASK = 0x04;
const bit<8> TCP_SYN_MASK = 0x02;
const bit<8> TCP_FIN_MASK = 0x01;
const PortId_t hport = (PortId_t) 0;
const PortId_t nport = (PortId_t) 1;
//////////////////////////////////////////////////////////////////////
// Struct types for holding user-defined collections of headers and
// metadata in the P4 developer's program.
//
// Note: The names of these struct types are completely up to the P4
// developer, as are their member fields, with the only restriction
// being that the structs intended to contain headers should only
// contain members whose types are header, header stack, or
// header_union.
//////////////////////////////////////////////////////////////////////
struct main_metadata_t {
// empty for this skeleton
}
// User-defined struct containing all of those headers parsed in the
// main parser.
struct headers_t {
ethernet_t ethernet;
ipv4_t ipv4;
tcp_t tcp;
}
parser MainParserImpl(
packet_in pkt,
out headers_t hdr,
inout main_metadata_t main_meta,
in pna_main_parser_input_metadata_t istd)
{
state start {
pkt.extract(hdr.ethernet);
transition select(hdr.ethernet.etherType) {
0x0800 : parse_ipv4;
default : accept;
}
}
state parse_ipv4 {
pkt.extract(hdr.ipv4);
transition select(hdr.ipv4.protocol) {
6 : parse_tcp;
default : accept;
}
}
state parse_tcp {
pkt.extract(hdr.tcp);
transition accept;
}
}
control MainControlImpl(
inout headers_t hdr, // from main parser
inout main_metadata_t user_meta, // from main parser, to "next block"
in pna_main_input_metadata_t istd,
inout pna_main_output_metadata_t ostd)
{
bool do_add_on_miss;
bool update_aging_info;
bool update_expire_time;
ExpireTimeProfileId_t new_expire_time_profile_id;
action next_hop(PortId_t vport) {
hdr.ipv4.version = 1;
send_to_port(vport);
}
action default_route_drop() {
if (!(hdr.ipv4.protocol == 6)) {
drop_packet();
}
}
action sendtoport() {
send_to_port(istd.input_port);
}
action drop() {
if ((hdr.ipv4.protocol == 6) || (hdr.ipv4.version > 1) && (hdr.ipv4.ihl <= 2)) {
drop_packet();
}
}
action tcp_syn_packet () {
do_add_on_miss = true;
update_aging_info = true;
update_expire_time = true;
}
action tcp_fin_or_rst_packet () {
update_aging_info = true;
update_expire_time = true;
}
action tcp_other_packets () {
do_add_on_miss = true;
update_expire_time = true;
}
table ipv4_tbl_1 {
key = {
hdr.ipv4.dstAddr : exact;
}
actions = {
@tableonly next_hop;
default_route_drop;
}
default_action = default_route_drop;
}
table ipv4_tbl_2 {
key = {
hdr.ipv4.dstAddr : exact;
hdr.ipv4.srcAddr : exact;
hdr.ipv4.protocol : exact;
}
actions = {
next_hop;
@defaultonly drop;
}
default_action = drop;
}
table ipv4_tbl_3 {
key = {
hdr.ipv4.dstAddr : exact;
hdr.ipv4.srcAddr : exact;
hdr.ipv4.flags : exact;
}
actions = {
sendtoport;
drop;
}
size = 1024;
}
table ipv4_tbl_4 {
key = {
hdr.ipv4.dstAddr : exact;
hdr.ipv4.srcAddr : exact;
hdr.ipv4.fragOffset : exact;
}
actions = {
sendtoport;
drop;
NoAction;
}
size = 1024;
default_action = NoAction();
}
table ipv4_tbl_5 {
key = {
hdr.ipv4.fragOffset : exact;
}
actions = {
NoAction;
}
size = 1024;
default_action = NoAction();
}
table set_ct_options {
key = {
hdr.tcp.flags : ternary;
}
actions = {
tcp_syn_packet;
tcp_fin_or_rst_packet;
tcp_other_packets;
}
const default_action = tcp_other_packets;
}
table set_all_options {
key = {
hdr.ipv4.srcAddr : exact;
hdr.tcp.srcPort : exact;
hdr.ipv4.fragOffset : exact;
hdr.ipv4.flags : exact;
}
actions = {
next_hop;
default_route_drop;
tcp_syn_packet;
tcp_fin_or_rst_packet;
tcp_other_packets;
sendtoport;
drop;
NoAction;
}
const entries = {
(0x1000, 0x10, 10, 1) : tcp_syn_packet;
(0x2000, 0x20, 20, 2) : tcp_fin_or_rst_packet;
(0x3000, 0x30, 30, 3) : tcp_fin_or_rst_packet;
(0x4000, 0x40, 40, 4) : default_route_drop;
(0x5000, 0x50, 50, 5) : next_hop(hport);
(0x6000, 0x60, 60, 6) : sendtoport();
}
const default_action = drop;
}
apply {
if (hdr.ipv4.isValid()) {
ipv4_tbl_1.apply();
ipv4_tbl_2.apply();
ipv4_tbl_3.apply();
ipv4_tbl_4.apply();
ipv4_tbl_5.apply();
set_ct_options.apply();
set_all_options.apply();
}
}
}
control MainDeparserImpl(
packet_out pkt,
inout headers_t hdr, // from main control
in main_metadata_t user_meta, // from main control
in pna_main_output_metadata_t ostd)
{
apply {
pkt.emit(hdr.ethernet);
pkt.emit(hdr.ipv4);
}
}
// BEGIN:Package_Instantiation_Example
PNA_NIC(
MainParserImpl(),
MainControlImpl(),
MainDeparserImpl()
) main;
// END:Package_Instantiation_Example