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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
// SPDX-License-Identifier: Apache-2.0
use crate::codegen::cfg::{ControlFlowGraph, Instr};
use crate::codegen::encoding::buffer_validator::BufferValidator;
use crate::codegen::encoding::{
allocate_array, allow_direct_copy, calculate_array_bytes_size,
calculate_direct_copy_bytes_size, calculate_size_args, finish_array_loop, increment_four,
load_array_item, load_struct_member, load_sub_array, retrieve_array_length, set_array_loop,
AbiEncoding,
};
use crate::codegen::vartable::Vartable;
use crate::codegen::{Builtin, Expression};
use crate::sema::ast::{ArrayLength, Namespace, RetrieveType, StructType, Type};
use num_bigint::BigInt;
use num_traits::{One, Zero};
use solang_parser::pt::Loc;
use std::collections::HashMap;
use std::ops::{Add, AddAssign, MulAssign};
/// This struct implements the trait AbiEncoding for Borsh encoding
pub(super) struct BorshEncoding {
/// The trait AbiEncoding has a 'cache_storage_loaded' function, which needs this HashMap to work.
/// Encoding happens in two steps. First, we look at each argument to calculate their size. If an
/// argument is a storage variable, we load it and save it to a local variable.
///
/// During a second pass, we copy each argument to a buffer. To copy storage variables properly into
/// the buffer, we must load them from storage and save them in a local variable. As we have
/// already done this before, we can cache the Expression::Variable, containing the items we loaded before.
/// In addition, loading from storage can be an expensive operation if it done with large structs
/// or vectors. The has map contains (argument number, Expression::Variable)
///
/// For more information, check the comment at function 'cache_storage_load' on encoding/mod.rs
storage_cache: HashMap<usize, Expression>,
/// Are we packed encoding?
packed_encoder: bool,
}
impl AbiEncoding for BorshEncoding {
fn abi_encode(
&mut self,
loc: &Loc,
args: Vec<Expression>,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> (Expression, Expression) {
let size = calculate_size_args(self, &args, ns, vartab, cfg);
let encoded_bytes = vartab.temp_name("abi_encoded", &Type::DynamicBytes);
cfg.add(
vartab,
Instr::Set {
loc: *loc,
res: encoded_bytes,
expr: Expression::AllocDynamicBytes(
*loc,
Type::DynamicBytes,
Box::new(size.clone()),
None,
),
},
);
let mut offset = Expression::NumberLiteral(*loc, Type::Uint(32), BigInt::zero());
let buffer = Expression::Variable(*loc, Type::DynamicBytes, encoded_bytes);
for (arg_no, item) in args.iter().enumerate() {
let advance = self.encode(item, &buffer, &offset, arg_no, ns, vartab, cfg);
offset = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(offset),
Box::new(advance),
);
}
(buffer, size)
}
fn abi_decode(
&self,
loc: &Loc,
buffer: &Expression,
types: &[Type],
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
buffer_size_expr: Option<Expression>,
) -> Vec<Expression> {
assert!(!self.packed_encoder);
let buffer_size = vartab.temp_anonymous(&Type::Uint(32));
if let Some(length_expression) = buffer_size_expr {
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: buffer_size,
expr: length_expression,
},
);
} else {
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: buffer_size,
expr: Expression::Builtin(
Loc::Codegen,
vec![Type::Uint(32)],
Builtin::ArrayLength,
vec![buffer.clone()],
),
},
);
}
let mut validator = BufferValidator::new(buffer_size, types);
let mut read_items: Vec<Expression> = vec![Expression::Poison; types.len()];
let mut offset = Expression::NumberLiteral(*loc, Type::Uint(32), BigInt::zero());
validator.initialize_validation(&offset, ns, vartab, cfg);
for (item_no, item) in types.iter().enumerate() {
validator.set_argument_number(item_no);
validator.validate_buffer(&offset, ns, vartab, cfg);
let (read_item, advance) =
self.read_from_buffer(buffer, &offset, item, &mut validator, ns, vartab, cfg);
read_items[item_no] = read_item;
offset = Expression::Add(
*loc,
Type::Uint(32),
false,
Box::new(offset),
Box::new(advance),
);
}
validator.validate_all_bytes_read(offset, ns, vartab, cfg);
read_items
}
fn cache_storage_loaded(&mut self, arg_no: usize, expr: Expression) {
self.storage_cache.insert(arg_no, expr);
}
fn get_encoding_size(&self, expr: &Expression, ty: &Type, ns: &Namespace) -> Expression {
match ty {
Type::Uint(n) | Type::Int(n) => Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(n.next_power_of_two() / 8),
),
Type::Enum(_) | Type::Contract(_) | Type::Bool | Type::Address(_) | Type::Bytes(_) => {
let size = ty.memory_size_of(ns);
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), size)
}
Type::String | Type::DynamicBytes => {
// When encoding a variable length array, the total size is "length (u32)" + elements
let length = Expression::Builtin(
Loc::Codegen,
vec![Type::Uint(32)],
Builtin::ArrayLength,
vec![expr.clone()],
);
if self.is_packed() {
length
} else {
increment_four(length)
}
}
_ => unreachable!("Type should have the same size for all encoding schemes"),
}
}
fn is_packed(&self) -> bool {
self.packed_encoder
}
}
impl BorshEncoding {
pub fn new(packed: bool) -> BorshEncoding {
BorshEncoding {
storage_cache: HashMap::new(),
packed_encoder: packed,
}
}
/// Encode expression to buffer. Returns the size in bytes of the encoded item.
fn encode(
&mut self,
expr: &Expression,
buffer: &Expression,
offset: &Expression,
arg_no: usize,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> Expression {
let expr_ty = expr.ty().unwrap_user_type(ns);
match &expr_ty {
Type::Contract(_) | Type::Address(_) => {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: expr.clone(),
},
);
Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(ns.address_length),
)
}
Type::Bool => {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: expr.clone(),
},
);
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), BigInt::from(1u8))
}
Type::Uint(width) | Type::Int(width) => {
let encoding_size = width.next_power_of_two();
let expr = if encoding_size != *width {
if expr_ty.is_signed_int() {
Expression::SignExt(
Loc::Codegen,
Type::Int(encoding_size),
Box::new(expr.clone()),
)
} else {
Expression::ZeroExt(
Loc::Codegen,
Type::Uint(encoding_size),
Box::new(expr.clone()),
)
}
} else {
expr.clone()
};
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: expr,
},
);
Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(encoding_size / 8),
)
}
Type::Value => {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: expr.clone(),
},
);
Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(ns.value_length),
)
}
Type::Bytes(length) => {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: expr.clone(),
},
);
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), BigInt::from(*length))
}
Type::String | Type::DynamicBytes => {
let get_size = Expression::Builtin(
Loc::Codegen,
vec![Type::Uint(32)],
Builtin::ArrayLength,
vec![expr.clone()],
);
let array_length = vartab.temp_anonymous(&Type::Uint(32));
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: array_length,
expr: get_size,
},
);
let var = Expression::Variable(Loc::Codegen, Type::Uint(32), array_length);
let string_offset = if self.packed_encoder {
offset.clone()
} else {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: var.clone(),
},
);
increment_four(offset.clone())
};
// ptr + offset + size_of_integer
let dest_address = Expression::AdvancePointer {
pointer: Box::new(buffer.clone()),
bytes_offset: Box::new(string_offset),
};
cfg.add(
vartab,
Instr::MemCopy {
source: expr.clone(),
destination: dest_address,
bytes: var.clone(),
},
);
if self.is_packed() {
var
} else {
increment_four(var)
}
}
Type::Enum(_) => {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: expr.clone(),
},
);
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), BigInt::one())
}
Type::Struct(struct_ty) => self.encode_struct(
expr,
buffer,
offset.clone(),
struct_ty,
arg_no,
ns,
vartab,
cfg,
),
Type::Slice(ty) => {
let dims = vec![ArrayLength::Dynamic];
self.encode_array(
expr, &expr_ty, ty, &dims, arg_no, buffer, offset, ns, vartab, cfg,
)
}
Type::Array(ty, dims) => self.encode_array(
expr, &expr_ty, ty, dims, arg_no, buffer, offset, ns, vartab, cfg,
),
Type::UserType(_) | Type::Unresolved | Type::Rational | Type::Unreachable => {
unreachable!("Type should not exist in codegen")
}
Type::ExternalFunction { .. } => {
let selector = expr.external_function_selector();
let address = expr.external_function_address();
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: selector,
},
);
let mut size = Type::FunctionSelector.memory_size_of(ns);
let new_offset = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
offset.clone().into(),
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), size.clone()).into(),
);
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: new_offset,
value: address,
},
);
size.add_assign(BigInt::from(ns.address_length));
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), size)
}
Type::InternalFunction { .. }
| Type::Void
| Type::BufferPointer
| Type::Mapping(..) => unreachable!("This type cannot be encoded"),
Type::FunctionSelector => {
cfg.add(
vartab,
Instr::WriteBuffer {
offset: offset.clone(),
value: expr.clone(),
buf: buffer.clone(),
},
);
Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(ns.target.selector_length()),
)
}
Type::Ref(r) => {
if let Type::Struct(struct_ty) = &**r {
// Structs references should not be dereferenced
return self.encode_struct(
expr,
buffer,
offset.clone(),
struct_ty,
arg_no,
ns,
vartab,
cfg,
);
}
let loaded = Expression::Load(Loc::Codegen, *r.clone(), Box::new(expr.clone()));
self.encode(&loaded, buffer, offset, arg_no, ns, vartab, cfg)
}
Type::StorageRef(..) => {
let loaded = self.storage_cache.remove(&arg_no).unwrap();
self.encode(&loaded, buffer, offset, arg_no, ns, vartab, cfg)
}
}
}
/// Encode an array and return its size in bytes
fn encode_array(
&mut self,
array: &Expression,
array_ty: &Type,
elem_ty: &Type,
dims: &Vec<ArrayLength>,
arg_no: usize,
buffer: &Expression,
offset: &Expression,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> Expression {
let size = if dims.is_empty() {
// Array has no dimension
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(0u8),
),
},
);
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), BigInt::from(4u8))
} else if allow_direct_copy(array_ty, elem_ty, dims, ns) {
// Calculate number of elements
let (bytes_size, offset) = if matches!(dims.last(), Some(&ArrayLength::Fixed(_))) {
let elem_no = calculate_direct_copy_bytes_size(dims, elem_ty, ns);
(
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), elem_no),
offset.clone(),
)
} else {
let arr_size = Expression::Builtin(
Loc::Codegen,
vec![Type::Uint(32)],
Builtin::ArrayLength,
vec![array.clone()],
);
let size_temp = vartab.temp_anonymous(&Type::Uint(32));
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: size_temp,
expr: arr_size,
},
);
let new_offset = if self.packed_encoder {
offset.clone()
} else {
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset.clone(),
value: Expression::Variable(Loc::Codegen, Type::Uint(32), size_temp),
},
);
increment_four(offset.clone())
};
let size = calculate_array_bytes_size(size_temp, elem_ty, ns);
(size, new_offset)
};
let dest_address = Expression::AdvancePointer {
pointer: Box::new(buffer.clone()),
bytes_offset: Box::new(offset),
};
cfg.add(
vartab,
Instr::MemCopy {
source: array.clone(),
destination: dest_address,
bytes: bytes_size.clone(),
},
);
// If the array is dynamic, we have written into the buffer its size (a uint32)
// and its elements
let dyn_dims = dims.iter().filter(|d| **d == ArrayLength::Dynamic).count();
if dyn_dims > 0 && !self.packed_encoder {
Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(bytes_size),
Box::new(Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(4 * dyn_dims),
)),
)
} else {
bytes_size
}
} else {
// In all other cases, we must loop through the array
let mut indexes: Vec<usize> = Vec::new();
let offset_var = vartab.temp_anonymous(&Type::Uint(32));
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: offset.clone(),
},
);
self.encode_complex_array(
array,
arg_no,
dims,
buffer,
offset_var,
dims.len() - 1,
ns,
vartab,
cfg,
&mut indexes,
);
// Subtract the original offset from
// the offset variable to obtain the vector size in bytes
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: Expression::Subtract(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(Expression::Variable(
Loc::Codegen,
Type::Uint(32),
offset_var,
)),
Box::new(offset.clone()),
),
},
);
Expression::Variable(Loc::Codegen, Type::Uint(32), offset_var)
};
size
}
/// Encode a complex array.
/// This function indexes an array from its outer dimension to its inner one
fn encode_complex_array(
&mut self,
arr: &Expression,
arg_no: usize,
dims: &Vec<ArrayLength>,
buffer: &Expression,
offset_var: usize,
dimension: usize,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
indexes: &mut Vec<usize>,
) {
// If this dimension is dynamic, we must save its length before all elements
if dims[dimension] == ArrayLength::Dynamic && !self.packed_encoder {
// TODO: This is wired up for the support of dynamic multidimensional arrays, like
// TODO: 'int[3][][4] vec', but it needs testing, as soon as Solang works with them.
// TODO: A discussion about this is under way here: https://github.com/hyperledger/solang/issues/932
// We only support dynamic arrays whose non-constant length is the outer one.
let (sub_array, _) = load_sub_array(
arr.clone(),
&dims[(dimension + 1)..dims.len()],
indexes,
true,
);
let size = Expression::Builtin(
Loc::Codegen,
vec![Type::Uint(32)],
Builtin::ArrayLength,
vec![sub_array],
);
let offset_expr = Expression::Variable(Loc::Codegen, Type::Uint(32), offset_var);
cfg.add(
vartab,
Instr::WriteBuffer {
buf: buffer.clone(),
offset: offset_expr.clone(),
value: size,
},
);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: increment_four(offset_expr),
},
);
}
let for_loop = set_array_loop(arr, dims, dimension, indexes, vartab, cfg);
cfg.set_basic_block(for_loop.body_block);
if 0 == dimension {
// If we are indexing the last dimension, we have an element, so we can encode it.
let deref = load_array_item(arr, dims, indexes);
let offset_expr = Expression::Variable(Loc::Codegen, Type::Uint(32), offset_var);
let elem_size = self.encode(&deref, buffer, &offset_expr, arg_no, ns, vartab, cfg);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(elem_size),
Box::new(offset_expr),
),
},
);
} else {
self.encode_complex_array(
arr,
arg_no,
dims,
buffer,
offset_var,
dimension - 1,
ns,
vartab,
cfg,
indexes,
)
}
finish_array_loop(&for_loop, vartab, cfg);
}
/// Encode a struct
fn encode_struct(
&mut self,
expr: &Expression,
buffer: &Expression,
mut offset: Expression,
struct_ty: &StructType,
arg_no: usize,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> Expression {
let size = if let Some(no_padding_size) = ns.calculate_struct_non_padded_size(struct_ty) {
let padded_size = struct_ty.struct_padded_size(ns);
// If the size without padding equals the size with padding, we
// can memcpy this struct directly.
if padded_size.eq(&no_padding_size) {
let size = Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), no_padding_size);
let dest_address = Expression::AdvancePointer {
pointer: Box::new(buffer.clone()),
bytes_offset: Box::new(offset),
};
cfg.add(
vartab,
Instr::MemCopy {
source: expr.clone(),
destination: dest_address,
bytes: size.clone(),
},
);
return size;
} else {
// This struct has a fixed size, but we cannot memcpy it due to
// its padding in memory
Some(Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
no_padding_size,
))
}
} else {
None
};
let qty = struct_ty.definition(ns).fields.len();
let first_ty = struct_ty.definition(ns).fields[0].ty.clone();
let loaded = load_struct_member(first_ty, expr.clone(), 0);
let mut advance = self.encode(&loaded, buffer, &offset, arg_no, ns, vartab, cfg);
let mut runtime_size = advance.clone();
for i in 1..qty {
let ith_type = struct_ty.definition(ns).fields[i].ty.clone();
offset = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(offset.clone()),
Box::new(advance),
);
let loaded = load_struct_member(ith_type.clone(), expr.clone(), i);
// After fetching the struct member, we can encode it
advance = self.encode(&loaded, buffer, &offset, arg_no, ns, vartab, cfg);
runtime_size = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(runtime_size),
Box::new(advance.clone()),
);
}
size.unwrap_or(runtime_size)
}
/// Read a value of type 'ty' from the buffer at a given offset. Returns an expression
/// containing the read value and the number of bytes read.
fn read_from_buffer(
&self,
buffer: &Expression,
offset: &Expression,
ty: &Type,
validator: &mut BufferValidator,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> (Expression, Expression) {
match ty {
Type::Uint(width) | Type::Int(width) => {
let encoding_size = width.next_power_of_two();
let size = Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(encoding_size / 8),
);
validator.validate_offset_plus_size(offset, &size, ns, vartab, cfg);
let read_value = Expression::Builtin(
Loc::Codegen,
vec![ty.clone()],
Builtin::ReadFromBuffer,
vec![buffer.clone(), offset.clone()],
);
let read_var = vartab.temp_anonymous(ty);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: read_var,
expr: if encoding_size == *width {
read_value
} else {
Expression::Trunc(Loc::Codegen, ty.clone(), Box::new(read_value))
},
},
);
let read_expr = Expression::Variable(Loc::Codegen, ty.clone(), read_var);
(read_expr, size)
}
Type::Bool
| Type::Address(_)
| Type::Contract(_)
| Type::Enum(_)
| Type::Value
| Type::Bytes(_) => {
let read_bytes = ty.memory_size_of(ns);
let size = Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), read_bytes);
validator.validate_offset_plus_size(offset, &size, ns, vartab, cfg);
let read_value = Expression::Builtin(
Loc::Codegen,
vec![ty.clone()],
Builtin::ReadFromBuffer,
vec![buffer.clone(), offset.clone()],
);
let read_var = vartab.temp_anonymous(ty);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: read_var,
expr: read_value,
},
);
let read_expr = Expression::Variable(Loc::Codegen, ty.clone(), read_var);
(read_expr, size)
}
Type::DynamicBytes | Type::String => {
// String and Dynamic bytes are encoded as size (uint32) + elements
validator.validate_offset(increment_four(offset.clone()), ns, vartab, cfg);
let array_length = retrieve_array_length(buffer, offset, vartab, cfg);
let size = increment_four(Expression::Variable(
Loc::Codegen,
Type::Uint(32),
array_length,
));
let offset_to_validate = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(size.clone()),
Box::new(offset.clone()),
);
validator.validate_offset(offset_to_validate, ns, vartab, cfg);
let allocated_array = allocate_array(ty, array_length, vartab, cfg);
let advanced_pointer = Expression::AdvancePointer {
pointer: Box::new(buffer.clone()),
bytes_offset: Box::new(increment_four(offset.clone())),
};
cfg.add(
vartab,
Instr::MemCopy {
source: advanced_pointer,
destination: Expression::Variable(
Loc::Codegen,
ty.clone(),
allocated_array,
),
bytes: Expression::Variable(Loc::Codegen, Type::Uint(32), array_length),
},
);
(
Expression::Variable(Loc::Codegen, ty.clone(), allocated_array),
size,
)
}
Type::UserType(type_no) => {
let usr_type = ns.user_types[*type_no].ty.clone();
self.read_from_buffer(buffer, offset, &usr_type, validator, ns, vartab, cfg)
}
Type::ExternalFunction { .. } => {
let selector_size = Type::FunctionSelector.memory_size_of(ns);
// Extneral function has selector + address
let size = Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
BigInt::from(ns.address_length).add(&selector_size),
);
validator.validate_offset_plus_size(offset, &size, ns, vartab, cfg);
let selector = Expression::Builtin(
Loc::Codegen,
vec![Type::FunctionSelector],
Builtin::ReadFromBuffer,
vec![buffer.clone(), offset.clone()],
);
let new_offset = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
offset.clone().into(),
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), selector_size).into(),
);
let address = Expression::Builtin(
Loc::Codegen,
vec![Type::Address(false)],
Builtin::ReadFromBuffer,
vec![buffer.clone(), new_offset],
);
let external_func = Expression::Cast(
Loc::Codegen,
ty.clone(),
Box::new(Expression::StructLiteral(
Loc::Codegen,
Type::Struct(StructType::ExternalFunction),
vec![selector, address],
)),
);
(external_func, size)
}
Type::Array(elem_ty, dims) => self.decode_array(
buffer, offset, ty, elem_ty, dims, validator, ns, vartab, cfg,
),
Type::Slice(elem_ty) => {
let dims = vec![ArrayLength::Dynamic];
self.decode_array(
buffer, offset, ty, elem_ty, &dims, validator, ns, vartab, cfg,
)
}
Type::Struct(struct_ty) => self.decode_struct(
buffer,
offset.clone(),
ty,
struct_ty,
validator,
ns,
vartab,
cfg,
),
Type::Rational
| Type::Ref(_)
| Type::StorageRef(..)
| Type::BufferPointer
| Type::Unresolved
| Type::InternalFunction { .. }
| Type::Unreachable
| Type::Void
| Type::FunctionSelector
| Type::Mapping(..) => unreachable!("Type should not appear on an encoded buffer"),
}
}
/// Given the buffer and the offers, decode an array.
/// The function returns an expression containing the array and the number of bytes read.
fn decode_array(
&self,
buffer: &Expression,
offset: &Expression,
array_ty: &Type,
elem_ty: &Type,
dims: &[ArrayLength],
validator: &mut BufferValidator,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> (Expression, Expression) {
// Checks if we can memcpy the elements from the buffer directly to the allocated array
if allow_direct_copy(array_ty, elem_ty, dims, ns) {
// Calculate number of elements
let (bytes_size, offset, var_no) =
if matches!(dims.last(), Some(&ArrayLength::Fixed(_))) {
let elem_no = calculate_direct_copy_bytes_size(dims, elem_ty, ns);
let allocated_vector = vartab.temp_anonymous(array_ty);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: allocated_vector,
expr: Expression::ArrayLiteral(
Loc::Codegen,
array_ty.clone(),
vec![],
vec![],
),
},
);
(
Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), elem_no),
offset.clone(),
allocated_vector,
)
} else {
validator.validate_offset(increment_four(offset.clone()), ns, vartab, cfg);
let array_length = retrieve_array_length(buffer, offset, vartab, cfg);
let allocated_array = allocate_array(array_ty, array_length, vartab, cfg);
let size = calculate_array_bytes_size(array_length, elem_ty, ns);
(size, increment_four(offset.clone()), allocated_array)
};
validator.validate_offset_plus_size(&offset, &bytes_size, ns, vartab, cfg);
let source_address = Expression::AdvancePointer {
pointer: Box::new(buffer.clone()),
bytes_offset: Box::new(offset),
};
let array_expr = Expression::Variable(Loc::Codegen, array_ty.clone(), var_no);
cfg.add(
vartab,
Instr::MemCopy {
source: source_address,
destination: array_expr.clone(),
bytes: bytes_size.clone(),
},
);
let bytes_size = if matches!(dims.last(), Some(ArrayLength::Dynamic)) {
increment_four(bytes_size)
} else {
bytes_size
};
(array_expr, bytes_size)
} else {
let mut indexes: Vec<usize> = Vec::new();
let array_var = vartab.temp_anonymous(array_ty);
// The function decode_complex_array assumes that, if the dimension is fixed,
// there is no need to allocate an array
if matches!(dims.last(), Some(ArrayLength::Fixed(_))) {
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: array_var,
expr: Expression::ArrayLiteral(
Loc::Codegen,
array_ty.clone(),
vec![],
vec![],
),
},
);
}
let offset_var = vartab.temp_anonymous(&Type::Uint(32));
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: offset.clone(),
},
);
let array_var_expr = Expression::Variable(Loc::Codegen, array_ty.clone(), array_var);
let offset_expr = Expression::Variable(Loc::Codegen, Type::Uint(32), offset_var);
self.decode_complex_array(
&array_var_expr,
buffer,
offset_var,
&offset_expr,
dims.len() - 1,
elem_ty,
dims,
validator,
ns,
vartab,
cfg,
&mut indexes,
);
// Subtract the original offset from
// the offset variable to obtain the vector size in bytes
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: Expression::Subtract(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(offset_expr.clone()),
Box::new(offset.clone()),
),
},
);
(array_var_expr, offset_expr)
}
}
/// Decodes a complex array from a borsh encoded buffer
/// Complex arrays are either dynamic arrays or arrays of dynamic types, like structs.
/// If this is an array of structs, whose representation in memory is padded, the array is
/// also complex, because it cannot be memcpy'ed
fn decode_complex_array(
&self,
array_var: &Expression,
buffer: &Expression,
offset_var: usize,
offset_expr: &Expression,
dimension: usize,
elem_ty: &Type,
dims: &[ArrayLength],
validator: &mut BufferValidator,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
indexes: &mut Vec<usize>,
) {
// If we have a 'int[3][4][] vec', we can only validate the buffer after we have
// allocated the outer dimension, i.e., we are about to read a 'int[3][4]' item.
// Arrays whose elements are dynamic cannot be verified.
if validator.validation_necessary()
&& !dims[0..(dimension + 1)]
.iter()
.any(|d| *d == ArrayLength::Dynamic)
&& !elem_ty.is_dynamic(ns)
{
let mut elems = BigInt::one();
for item in &dims[0..(dimension + 1)] {
elems.mul_assign(item.array_length().unwrap());
}
elems.mul_assign(elem_ty.memory_size_of(ns));
let elems_size = Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), elems);
validator.validate_offset_plus_size(offset_expr, &elems_size, ns, vartab, cfg);
validator.validate_array();
}
// Dynamic dimensions mean that the subarray we are processing must be allocated in memory.
if dims[dimension] == ArrayLength::Dynamic {
let offset_to_validate = increment_four(offset_expr.clone());
validator.validate_offset(offset_to_validate, ns, vartab, cfg);
let array_length = retrieve_array_length(buffer, offset_expr, vartab, cfg);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: increment_four(offset_expr.clone()),
},
);
let new_ty = Type::Array(Box::new(elem_ty.clone()), dims[0..(dimension + 1)].to_vec());
let allocated_array = allocate_array(&new_ty, array_length, vartab, cfg);
if indexes.is_empty() {
if let Expression::Variable(_, _, var_no) = array_var {
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: *var_no,
expr: Expression::Variable(
Loc::Codegen,
new_ty.clone(),
allocated_array,
),
},
);
} else {
unreachable!("array_var must be a variable");
}
} else {
// TODO: This is wired up for multidimensional dynamic arrays, but they do no work yet
// Check https://github.com/hyperledger/solang/issues/932 for more information
let (sub_arr, _) = load_sub_array(
array_var.clone(),
&dims[(dimension + 1)..dims.len()],
indexes,
true,
);
cfg.add(
vartab,
Instr::Store {
dest: sub_arr,
data: Expression::Variable(Loc::Codegen, new_ty.clone(), allocated_array),
},
);
}
}
let for_loop = set_array_loop(array_var, dims, dimension, indexes, vartab, cfg);
cfg.set_basic_block(for_loop.body_block);
if 0 == dimension {
let (read_expr, advance) =
self.read_from_buffer(buffer, offset_expr, elem_ty, validator, ns, vartab, cfg);
let ptr = load_array_item(array_var, dims, indexes);
cfg.add(
vartab,
Instr::Store {
dest: ptr,
data: if matches!(read_expr.ty(), Type::Struct(_)) {
// Type::Struct is a pointer to a struct. If we are dealing with a vector
// of structs, we need to dereference the pointer before storing it at a
// given vector index.
Expression::Load(Loc::Codegen, read_expr.ty(), Box::new(read_expr))
} else {
read_expr
},
},
);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: offset_var,
expr: Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(advance),
Box::new(offset_expr.clone()),
),
},
);
} else {
self.decode_complex_array(
array_var,
buffer,
offset_var,
offset_expr,
dimension - 1,
elem_ty,
dims,
validator,
ns,
vartab,
cfg,
indexes,
);
}
finish_array_loop(&for_loop, vartab, cfg);
}
/// Read a struct from the buffer
fn decode_struct(
&self,
buffer: &Expression,
mut offset: Expression,
expr_ty: &Type,
struct_ty: &StructType,
validator: &mut BufferValidator,
ns: &Namespace,
vartab: &mut Vartable,
cfg: &mut ControlFlowGraph,
) -> (Expression, Expression) {
let size = if let Some(no_padding_size) = ns.calculate_struct_non_padded_size(struct_ty) {
let padded_size = struct_ty.struct_padded_size(ns);
// If the size without padding equals the size with padding,
// we can memcpy this struct directly.
if padded_size.eq(&no_padding_size) {
let size = Expression::NumberLiteral(Loc::Codegen, Type::Uint(32), no_padding_size);
validator.validate_offset_plus_size(&offset, &size, ns, vartab, cfg);
let source_address = Expression::AdvancePointer {
pointer: Box::new(buffer.clone()),
bytes_offset: Box::new(offset),
};
let allocated_struct = vartab.temp_anonymous(expr_ty);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: allocated_struct,
expr: Expression::StructLiteral(Loc::Codegen, expr_ty.clone(), vec![]),
},
);
let struct_var =
Expression::Variable(Loc::Codegen, expr_ty.clone(), allocated_struct);
cfg.add(
vartab,
Instr::MemCopy {
source: source_address,
destination: struct_var.clone(),
bytes: size.clone(),
},
);
return (struct_var, size);
} else {
// This struct has a fixed size, but we cannot memcpy it due to
// its padding in memory
Some(Expression::NumberLiteral(
Loc::Codegen,
Type::Uint(32),
no_padding_size,
))
}
} else {
None
};
let struct_tys = struct_ty
.definition(ns)
.fields
.iter()
.map(|item| item.ty.clone())
.collect::<Vec<Type>>();
// If it was not possible to validate the struct beforehand, we validate each field
// during recursive calls to 'read_from_buffer'
let mut struct_validator = validator.create_sub_validator(&struct_tys);
let qty = struct_ty.definition(ns).fields.len();
if validator.validation_necessary() {
struct_validator.initialize_validation(&offset, ns, vartab, cfg);
}
let (mut read_expr, mut advance) = self.read_from_buffer(
buffer,
&offset,
&struct_tys[0],
&mut struct_validator,
ns,
vartab,
cfg,
);
let mut runtime_size = advance.clone();
let mut read_items = vec![Expression::Poison; qty];
read_items[0] = read_expr;
for i in 1..qty {
struct_validator.set_argument_number(i);
struct_validator.validate_buffer(&offset, ns, vartab, cfg);
offset = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(offset.clone()),
Box::new(advance),
);
(read_expr, advance) = self.read_from_buffer(
buffer,
&offset,
&struct_tys[i],
&mut struct_validator,
ns,
vartab,
cfg,
);
read_items[i] = read_expr;
runtime_size = Expression::Add(
Loc::Codegen,
Type::Uint(32),
false,
Box::new(runtime_size),
Box::new(advance.clone()),
);
}
let allocated_struct = vartab.temp_anonymous(expr_ty);
cfg.add(
vartab,
Instr::Set {
loc: Loc::Codegen,
res: allocated_struct,
expr: Expression::StructLiteral(Loc::Codegen, expr_ty.clone(), read_items),
},
);
let struct_var = Expression::Variable(Loc::Codegen, expr_ty.clone(), allocated_struct);
(struct_var, size.unwrap_or(runtime_size))
}
}