-
Notifications
You must be signed in to change notification settings - Fork 6
/
control.rs
521 lines (473 loc) · 19 KB
/
control.rs
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
// Copyright 2022 Oxide Computer Company
use crate::{
expression::ExpressionGenerator,
qualified_table_function_name, rust_type,
statement::{StatementContext, StatementGenerator},
try_extract_prefix_len, Context,
};
use p4::ast::{
Action, Control, ControlParameter, Direction, ExpressionKind,
KeySetElementValue, MatchKind, Table, Type, AST,
};
use p4::hlir::Hlir;
use p4::util::resolve_lvalue;
use proc_macro2::TokenStream;
use quote::{format_ident, quote};
pub(crate) struct ControlGenerator<'a> {
ast: &'a AST,
ctx: &'a mut Context,
hlir: &'a Hlir,
}
impl<'a> ControlGenerator<'a> {
pub(crate) fn new(
ast: &'a AST,
hlir: &'a Hlir,
ctx: &'a mut Context,
) -> Self {
Self { ast, hlir, ctx }
}
pub(crate) fn generate(&mut self) {
for control in &self.ast.controls {
self.generate_control(control);
}
if let Some(ingress) = self.ast.get_control("ingress") {
self.generate_top_level_control(ingress);
};
if let Some(egress) = self.ast.get_control("egress") {
self.generate_top_level_control(egress);
};
}
fn generate_top_level_control(&mut self, control: &Control) {
let tables = control.tables(self.ast);
for (cs, t) in tables {
let qtn = qualified_table_function_name(Some(control), &cs, t);
let qtfn = qualified_table_function_name(Some(control), &cs, t);
let control = cs.last().unwrap().1;
let (_, mut param_types) = self.control_parameters(control);
for var in &control.variables {
if let Type::UserDefined(typename) = &var.ty {
if self.ast.get_extern(typename).is_some() {
let extern_type = format_ident!("{}", typename);
param_types.push(quote! {
&p4rs::externs::#extern_type
})
}
}
}
let (type_tokens, table_tokens) =
self.generate_control_table(control, t, ¶m_types);
let qtn = format_ident!("{}", qtn);
let qtfn = format_ident!("{}", qtfn);
self.ctx.functions.insert(
qtn.to_string(),
quote! {
pub fn #qtfn() -> #type_tokens {
#table_tokens
}
},
);
}
}
pub(crate) fn generate_control(
&mut self,
control: &Control,
) -> (TokenStream, TokenStream) {
let (mut params, _param_types) = self.control_parameters(control);
for action in &control.actions {
if action.name == "NoAction" {
continue;
}
self.generate_control_action(control, action);
}
let tables = control.tables(self.ast);
for (cs, table) in tables {
let c = cs.last().unwrap().1;
let qtn = qualified_table_function_name(None, &cs, table);
let (_, mut param_types) = self.control_parameters(c);
for var in &c.variables {
if let Type::UserDefined(typename) = &var.ty {
if self.ast.get_extern(typename).is_some() {
let extern_type = format_ident!("{}", typename);
param_types.push(quote! {
&p4rs::externs::#extern_type
})
}
}
}
let n = table.key.len();
let table_type = quote! {
p4rs::table::Table::<
#n,
std::sync::Arc<dyn Fn(#(#param_types),*)>
>
};
let qtn = format_ident!("{}", qtn);
params.push(quote! {
#qtn: &#table_type
});
}
let name = format_ident!("{}_apply", control.name);
let apply_body = self.generate_control_apply_body(control);
let sig = quote! {
(#(#params),*)
};
self.ctx.functions.insert(
name.to_string(),
quote! {
pub fn #name #sig {
#apply_body
}
},
);
(sig, apply_body)
}
pub(crate) fn control_parameters(
&mut self,
control: &Control,
) -> (Vec<TokenStream>, Vec<TokenStream>) {
let mut params = Vec::new();
let mut types = Vec::new();
for arg in &control.parameters {
match arg.ty {
Type::UserDefined(ref typename) => {
match self.ast.get_user_defined_type(typename) {
Some(_udt) => {
let name = format_ident!("{}", arg.name);
let ty = rust_type(&arg.ty);
match &arg.direction {
Direction::Out | Direction::InOut => {
params.push(quote! {
#name: &mut #ty
});
types.push(quote! { &mut #ty });
}
_ => {
params.push(quote! {
#name: &#ty
});
types.push(quote! { &#ty });
}
}
}
None => {
// if this is a generic type, skip for now
if control.is_type_parameter(typename) {
continue;
}
panic!("Undefined type {}", typename);
}
}
}
_ => {
let name = format_ident!("{}", arg.name);
let ty = rust_type(&arg.ty);
match &arg.direction {
Direction::Out | Direction::InOut => {
params.push(quote! { #name: &mut #ty });
types.push(quote! { &mut #ty });
}
_ => {
if arg.ty == Type::Bool {
params.push(quote! { #name: #ty });
types.push(quote! { #ty });
} else {
params.push(quote! { #name: &#ty });
types.push(quote! { &#ty });
}
}
}
}
}
}
(params, types)
}
fn generate_control_action(&mut self, control: &Control, action: &Action) {
let name = format_ident!("{}_action_{}", control.name, action.name);
let (mut params, _) = self.control_parameters(control);
for var in &control.variables {
if let Type::UserDefined(typename) = &var.ty {
if self.ast.get_extern(typename).is_some() {
let name = format_ident!("{}", var.name);
let extern_type = format_ident!("{}", typename);
params.push(quote! {
#name: &p4rs::externs::#extern_type
})
}
}
}
let mut dump_fmt = Vec::new();
for p in &action.parameters {
dump_fmt.push(p.name.clone() + "={}");
}
//let dump_fmt = vec!["{}"; action.parameters.len()];
let dump_fmt = dump_fmt.join(", ");
let dump_args: Vec<TokenStream> = action
.parameters
.iter()
.map(|x| format_ident!("{}", x.name.clone()))
.map(|x| quote! { #x })
.collect();
let dump = quote! {
// TODO find a way to only allocate the string when probe is active.
// Cannot simply return reference to string created within probe.
let dump = format!(#dump_fmt, #(#dump_args,)*);
softnpu_provider::action!(|| (&dump));
};
for arg in &action.parameters {
// if the type is user defined, check to ensure it's defined
if let Type::UserDefined(ref typename) = arg.ty {
match self.ast.get_user_defined_type(typename) {
Some(_) => {
let name = format_ident!("{}", arg.name);
let ty = rust_type(&arg.ty);
params.push(quote! { #name: #ty });
}
None => {
panic!(
"codegen: undefined type {} for arg {:#?}",
typename, arg,
);
}
}
} else {
let name = format_ident!("{}", arg.name);
let ty = rust_type(&arg.ty);
params.push(quote! { #name: #ty });
}
}
let mut names = control.names();
let sg = StatementGenerator::new(
self.ast,
self.hlir,
StatementContext::Control(control),
);
let body = sg.generate_block(&action.statement_block, &mut names);
let __name = name.to_string();
self.ctx.functions.insert(
name.to_string(),
quote! {
pub fn #name(#(#params),*) {
//TODO <<<< DTRACE <<<<<<
//Generate dtrace prbes that allow us to trace control
//action flows.
//println!("####{}####", #__name);
#dump
#body
}
},
);
}
pub(crate) fn generate_control_table(
&mut self,
control: &Control,
table: &Table,
control_param_types: &Vec<TokenStream>,
) -> (TokenStream, TokenStream) {
let mut key_type_tokens: Vec<TokenStream> = Vec::new();
let mut key_types: Vec<Type> = Vec::new();
for (k, _) in &table.key {
let parts: Vec<&str> = k.name.split('.').collect();
let root = parts[0];
// try to find the root of the key as an argument to the control block.
// TODO: are there other places to look for this?
match Self::get_control_arg(control, root) {
Some(_param) => {
if parts.len() > 1 {
let tm = control.names();
//TODO: use hlir?
let ty = resolve_lvalue(k, self.ast, &tm).unwrap().ty;
key_types.push(ty.clone());
key_type_tokens.push(rust_type(&ty));
}
}
None => {
panic!("bug: control arg undefined {:#?}", root)
}
}
}
let table_name = format_ident!("{}_table", table.name);
let n = table.key.len();
let table_type = quote! {
p4rs::table::Table::<
#n,
std::sync::Arc<dyn Fn(#(#control_param_types),*)>
>
};
let mut tokens = quote! {
let mut #table_name: #table_type = #table_type::new();
};
if table.const_entries.is_empty() {
tokens.extend(quote! { #table_name });
return (table_type, tokens);
}
for entry in &table.const_entries {
let mut keyset = Vec::new();
for (i, k) in entry.keyset.iter().enumerate() {
match &k.value {
KeySetElementValue::Expression(e) => {
let eg = ExpressionGenerator::new(self.hlir);
let xpr = eg.generate_expression(e.as_ref());
let ks = match table.key[i].1 {
MatchKind::Exact => {
let k = format_ident!("{}", "Exact");
quote! {
p4rs::table::Key::#k(
p4rs::bitvec_to_biguint(&#xpr))
}
}
MatchKind::Ternary => {
let k = format_ident!("{}", "Ternary");
quote! {
p4rs::table::Key::#k(
p4rs::bitvec_to_biguint(&#xpr))
}
}
MatchKind::LongestPrefixMatch => {
let len = match try_extract_prefix_len(e) {
Some(len) => len,
None => {
panic!(
"codegen: coult not determine prefix
len for key {:#?}",
table.key[i].1,
);
}
};
let k = format_ident!("{}", "Lpm");
quote! {
p4rs::table::Key::#k(p4rs::table::Prefix{
addr: bitvec_to_ip6addr(&(#xpr)),
len: #len,
})
}
}
MatchKind::Range => {
let k = format_ident!("Range");
quote! {
p4rs::table::Key::#k(#xpr)
}
}
};
keyset.push(ks);
}
x => todo!("key set element {:?}", x),
}
}
let action = match control.get_action(&entry.action.name) {
Some(action) => action,
None => {
panic!("codegen: action {} not found", entry.action.name);
}
};
let mut action_fn_args = Vec::new();
for arg in &control.parameters {
let a = format_ident!("{}", arg.name);
action_fn_args.push(quote! { #a });
}
let action_fn_name =
format_ident!("{}_action_{}", control.name, entry.action.name);
for (i, expr) in entry.action.parameters.iter().enumerate() {
match &expr.kind {
ExpressionKind::IntegerLit(v) => {
match &action.parameters[i].ty {
Type::Bit(n) => {
if *n <= 8 {
let v = *v as u8;
action_fn_args.push(quote! {
#v.view_bits::<Msb0>().to_bitvec()
});
}
}
x => {
todo!("action int lit expression type {:?}", x)
}
}
}
ExpressionKind::BitLit(width, v) => {
match &action.parameters[i].ty {
Type::Bit(n) => {
let n = *n;
if n != *width as usize {
panic!(
"{:?} not compatible with {:?}",
expr.kind, action.parameters[i],
);
}
let size = n;
action_fn_args.push(quote! {{
let mut x = bitvec![mut u8, Msb0; 0; #size];
x.store_le(#v);
x
}});
}
x => {
todo!("action bit lit expression type {:?}", x)
}
}
}
x => todo!("action parameter type {:?}", x),
}
}
let mut closure_params = Vec::new();
for x in &control.parameters {
let name = format_ident!("{}", x.name);
closure_params.push(quote! { #name });
}
tokens.extend(quote! {
let action: std::sync::Arc<dyn Fn(#(#control_param_types),*)> =
std::sync::Arc::new(|#(#closure_params),*| {
#action_fn_name(#(#action_fn_args),*);
});
#table_name.entries.insert(
p4rs::table::TableEntry::<
#n,
std::sync::Arc<dyn Fn(#(#control_param_types),*)>,
>{
key: [#(#keyset),*],
priority: 0,
name: "your name here".into(),
action,
//TODO actual data, does this actually matter for
//constant entries?
action_id: String::new(),
parameter_data: Vec::new(),
});
})
}
tokens.extend(quote! { #table_name });
(table_type, tokens)
}
fn generate_control_apply_body(
&mut self,
control: &Control,
) -> TokenStream {
let mut tokens = TokenStream::new();
for var in &control.variables {
//TODO check in checker that externs are actually defined by
//SoftNPU.
if let Type::UserDefined(typename) = &var.ty {
if self.ast.get_extern(typename).is_some() {
let name = format_ident!("{}", var.name);
let extern_type = format_ident!("{}", typename);
tokens.extend(quote! {
let #name = p4rs::externs::#extern_type::new();
})
}
}
}
let mut names = control.names();
let sg = StatementGenerator::new(
self.ast,
self.hlir,
StatementContext::Control(control),
);
tokens.extend(sg.generate_block(&control.apply, &mut names));
tokens
}
fn get_control_arg<'b>(
control: &'b Control,
arg_name: &str,
) -> Option<&'b ControlParameter> {
control.parameters.iter().find(|&arg| arg.name == arg_name)
}
}