-
Notifications
You must be signed in to change notification settings - Fork 6
/
l3.yml
255 lines (221 loc) · 5.29 KB
/
l3.yml
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
################################################################
#
# A very simple IR instance for L3, no VLAN
#
################################################################
ethernet :
type : header
doc : "The L2 header"
fields :
- dst_mac : 48
- src_mac : 48
- ethertype : 16
# No options support
ipv4 :
type : header
doc : "An IPv4 header"
fields :
- version : 4
- ihl : 4
- diff_serve : 8
- total_length : 16
- identification : 16
- flags : 3
- fragment_offset : 13
- ttl : 8
- protocol : 8
- header_checksum : 16
- src : 32
- dst : 32
udp :
type : header
doc : "A UDP header"
fields :
- srcPort : 16
- dstPort : 16
- length : 16
- checksum : 16
tcp :
type : header
doc : "A TCP header"
fields :
- srcPort : 16
- dstPort : 16
- seqNo : 32
- ackNo : 32
- dataOffset : 4
- res : 3
- ecn : 3
- ctrl : 6
- window : 16
- checksum : 16
- urgentPtr : 16
route_md : # Routing metadata
type : metadata
doc : "Metadata related to routing"
fields :
- next_hop_idx : 16
intrinsic_metadata : # Standard AIR metadata
type : metadata
doc : "Metadata which has special meaning for the switch's operation"
fields :
- ingress_port : 16
- egress_specification : 32
- egress_port : 16
- egress_instance : 16
################################################################
#
# PARSE GRAPH
#
################################################################
ethernet_p :
type : parse_state
doc : "Parse state for ethernet"
extracts :
- ethernet
select_value :
- ethernet.ethertype
ip4_p :
type : parse_state
doc : "Parse state for first IPv4 header"
extracts :
- ipv4
select_value :
- ipv4.protocol
udp_p :
type : parse_state
doc : "Parse state for UDP header"
extracts :
- udp
tcp_p :
type : parse_state
doc : "Parse state for TCP header"
extracts :
- tcp
parser :
type : parser
doc : "Implementation of primary parser"
format : dot
start_state : ethernet_p
implementation : >-
digraph {
ethernet_p -> ip4_p [value="0x0800"]
ip4_p -> udp_p [value=6]
ip4_p -> tcp_p [value=17]
}
################################################################
#
# ACTIONS
#
################################################################
ipv4_route_a :
type : action
doc : "Do L3 routing"
format : action_set
parameter_list :
- src_mac
- dst_mac
- egress_spec
implementation : >-
modify_field(ethernet.src_mac, src_mac);
modify_field(ethernet.dst_mac, dst_mac);
modify_field(intrinsic_metadata.egress_specification, egress_spec);
add_to_field(ipv4.ttl, -1);
################################################################
#
# TABLES
#
################################################################
host_route :
type : table
doc : "Look for specific IPv4 dest"
match_on :
ipv4.dst_addr : exact
lpm_route :
type : table
doc : "Look for route based on LPM (or any ternary match)"
match_on :
ipv4.dst_addr : ternary
################################################################
#
# CONTROL FLOW GRAPH
#
################################################################
ingress_flow :
type : control_flow
doc : "The control flow for ingress"
format : dot
implementation : >-
digraph {
host_route -> lpm_route [action=miss]
host_route -> exit_control_flow [action=hit]
lpm_route -> exit_control_flow [action=hit]
}
################################################################
#
# TRAFFIC MANAGER
#
################################################################
tm_queues :
type : traffic_manager
doc : "The central traffic manager"
queues_per_port : 8
dequeue_discipline : strict
################################################################
#
# Table initialization
#
# - <table> # table to which to add entry
# match_values : # Map of field refs to values
# match_masks : # Optional map for ternary matches
# action : # Name of action to use
# action_params : # Map of parameter name to value
#
# If no match is specified, it is added as a default entry
#
################################################################
# Route data
route_1 : &route_1
src_mac : 0x7777
dst_mac : 0x8888
egress_spec : 2
route_2 : &route_2
src_mac : 0x7777
dst_mac : 0x9999
egress_spec : 3
route_3 : &route_3
src_mac : 0x7777
dst_mac : 0xaaaa
egress_spec : 1
route_4 : &route_4
src_mac : 0x7777
dst_mac : 0xbbbb
egress_spec : 2
table_initialization :
- host_route :
match_values :
ipv4.dst_addr : 0xc0a80001
action : ipv4_route_a
action_params : *route_1
- host_route :
match_values :
ipv4.dst_addr : 0xc0a80002
action : ipv4_route_a
action_params : *route_2
- lpm_route :
match_values :
ipv4.dst_addr : 0xc0a80000
match_masks :
ipv4.dst_addr : 0xffff0000
action : ipv4_route_a
action_params : *route_3
- lpm_route :
match_values :
ipv4.dst_addr : 0x0a000000
match_masks :
ipv4.dst_addr : 0xff000000
action : ipv4_route_a
action_params : *route_3
- lpm_route : # Default
action : ipv4_route_a
action_params : *route_4