transaction_fuzzer/
programmable_transaction_gen.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
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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use std::{cmp, str::FromStr};

use move_core_types::identifier::Identifier;
use once_cell::sync::Lazy;
use proptest::collection::vec;
use proptest::prelude::*;
use sui_protocol_config::ProtocolConfig;
use sui_types::base_types::{ObjectID, ObjectRef, SuiAddress};
use sui_types::programmable_transaction_builder::ProgrammableTransactionBuilder;
use sui_types::transaction::{Argument, CallArg, Command, ProgrammableTransaction};

static PROTOCOL_CONFIG: Lazy<ProtocolConfig> =
    Lazy::new(ProtocolConfig::get_for_max_version_UNSAFE);

prop_compose! {
    pub fn gen_transfer()
        (x in arg_len_strategy())
        (args in vec(gen_argument(), x..=x), arg_to in gen_argument()) -> Command {
                Command::TransferObjects(args, arg_to)
    }
}

prop_compose! {
    pub fn gen_split_coins()
        (x in arg_len_strategy())
        (args in vec(gen_argument(), x..=x), arg_to in gen_argument()) -> Command {
                Command::SplitCoins(arg_to, args)
    }
}

prop_compose! {
    pub fn gen_merge_coins()
        (x in arg_len_strategy())
        (args in vec(gen_argument(), x..=x), arg_from in gen_argument()) -> Command {
                Command::MergeCoins(arg_from, args)
    }
}

prop_compose! {
    pub fn gen_move_vec()
        (x in arg_len_strategy())
        (args in vec(gen_argument(), x..=x)) -> Command {
                Command::MakeMoveVec(None, args)
    }
}

prop_compose! {
    pub fn gen_programmable_transaction()
        (len in command_len_strategy())
        (commands in vec(gen_command(), len..=len)) -> ProgrammableTransaction {
            let mut builder = ProgrammableTransactionBuilder::new();
            for command in commands {
                builder.command(command);
            }
            builder.finish()
    }
}

pub fn gen_command() -> impl Strategy<Value = Command> {
    prop_oneof![
        gen_transfer(),
        gen_split_coins(),
        gen_merge_coins(),
        gen_move_vec(),
    ]
}

pub fn gen_argument() -> impl Strategy<Value = Argument> {
    prop_oneof![
        Just(Argument::GasCoin),
        u16_with_boundaries_strategy().prop_map(Argument::Input),
        u16_with_boundaries_strategy().prop_map(Argument::Result),
        (
            u16_with_boundaries_strategy(),
            u16_with_boundaries_strategy()
        )
            .prop_map(|(a, b)| Argument::NestedResult(a, b))
    ]
}

pub fn u16_with_boundaries_strategy() -> impl Strategy<Value = u16> {
    prop_oneof![
        5 => 0u16..u16::MAX - 1,
        1 => Just(u16::MAX - 1),
        1 => Just(u16::MAX),
    ]
}

pub fn arg_len_strategy() -> impl Strategy<Value = usize> {
    let max_args = PROTOCOL_CONFIG.max_arguments() as usize;
    1usize..max_args
}

pub fn command_len_strategy() -> impl Strategy<Value = usize> {
    let max_commands = PROTOCOL_CONFIG.max_programmable_tx_commands() as usize;
    // Favor smaller transactions to make things faster. But generate a big one every once in a while
    prop_oneof![
        10 => 1usize..10,
        1 => 10..=max_commands,
    ]
}

// these constants have been chosen to deliver a reasonable runtime overhead and can be played with

/// this also reflects the fact that we have coin-generating functions that can generate between 1
/// and MAX_ARG_LEN_INPUT_MATCH coins
pub const MAX_ARG_LEN_INPUT_MATCH: usize = 64;
pub const MAX_COMMANDS_INPUT_MATCH: usize = 24;
pub const MAX_ITERATIONS_INPUT_MATCH: u32 = 10;
pub const MAX_SPLIT_AMOUNT: u64 = 1000;
/// the merge command takes must take no more than MAX_ARG_LEN_INPUT_MATCH total to make sure that
/// we have enough coins to pass as input
pub const MAX_COINS_TO_MERGE: u64 = (MAX_ARG_LEN_INPUT_MATCH - 1) as u64;
/// the max number of coins that the vector can be made out of cannot exceed the number of coins we
/// can generate as input
pub const MAX_VECTOR_COINS: usize = MAX_ARG_LEN_INPUT_MATCH;

/// Stand-ins for programmable transaction Commands used to randomly generate values used when
/// creating the actual command instances
#[derive(Debug)]
pub enum CommandSketch {
    // Command::TransferObjects sketch - argument describes number of objects to transfer
    TransferObjects(u64),
    // Command::SplitCoins sketch - argument describes coin values to split
    SplitCoins(Vec<u64>),
    // Command::MergeCoins sketch - argument describes number of coins to merge
    MergeCoins(u64),
    // Command::MakeMoveVec sketch - argument describes coins to be put into a vector
    MakeMoveVec(Vec<u64>),
}

prop_compose! {
    pub fn gen_transfer_input_match()
        (x in arg_len_strategy_input_match()) -> CommandSketch {
            CommandSketch::TransferObjects(x as u64)
    }
}

prop_compose! {
    pub fn gen_split_coins_input_match()
        (x in arg_len_strategy_input_match())
        (args in vec(1..MAX_SPLIT_AMOUNT, x..=x)) -> CommandSketch {
            CommandSketch::SplitCoins(args)
    }
}

prop_compose! {
    pub fn gen_merge_coins_input_match()
        (coins_to_merge in 1..MAX_COINS_TO_MERGE) -> CommandSketch {
            CommandSketch::MergeCoins(coins_to_merge)
    }
}

prop_compose! {
    pub fn gen_move_vec_input_match()
        (vec_size in 1..MAX_VECTOR_COINS)
        (args in vec(1u64..7u64, vec_size..=vec_size)) -> CommandSketch {
            // at this point we don't care about coin values to be put into the vector but we keep
            // the vector itself to be able to match on a union of MakeMoveVec and SplitCoins when
            // generating the actual commands
            CommandSketch::MakeMoveVec(args)
    }
}

pub fn gen_command_input_match() -> impl Strategy<Value = CommandSketch> {
    prop_oneof![
        gen_transfer_input_match(),
        gen_split_coins_input_match(),
        gen_merge_coins_input_match(),
        gen_move_vec_input_match(),
    ]
}

pub fn arg_len_strategy_input_match() -> impl Strategy<Value = usize> {
    prop_oneof![
        20 => 1usize..10,
        10 => 10usize..MAX_ARG_LEN_INPUT_MATCH
    ]
}

prop_compose! {
    pub fn gen_many_input_match(recipient: SuiAddress, package: ObjectID, cap: ObjectRef)
        (mut command_sketches in vec(gen_command_input_match(), 1..=MAX_COMMANDS_INPUT_MATCH)) -> ProgrammableTransaction {
            let mut builder = ProgrammableTransactionBuilder::new();
            let mut prev_cmd_num = -1;
            // does not matter which is picked as first as they are generated randomly anyway
            let first_cmd_sketch = command_sketches.pop().unwrap();
            let (first_cmd, cmd_inc) = gen_input(&mut builder, None, &first_cmd_sketch, prev_cmd_num, recipient, package, cap);
            builder.command(first_cmd);
            prev_cmd_num += cmd_inc + 1;
            let mut prev_cmd = first_cmd_sketch;
            for cmd_sketch in command_sketches {
                let (cmd, cmd_inc) = gen_input(&mut builder, Some(&prev_cmd), &cmd_sketch, prev_cmd_num, recipient, package, cap);
                builder.command(cmd);
                prev_cmd_num += cmd_inc + 1;
                prev_cmd = cmd_sketch;
            }
            builder.finish()
    }
}

fn gen_input(
    builder: &mut ProgrammableTransactionBuilder,
    prev_command: Option<&CommandSketch>,
    cmd: &CommandSketch,
    prev_cmd_num: i64,
    recipient: SuiAddress,
    package: ObjectID,
    cap: ObjectRef,
) -> (Command, i64) {
    match cmd {
        CommandSketch::TransferObjects(_) => gen_transfer_input(
            builder,
            prev_command,
            cmd,
            prev_cmd_num,
            recipient,
            package,
            cap,
        ),
        CommandSketch::SplitCoins(_) => {
            gen_split_coins_input(builder, cmd, prev_cmd_num, package, cap)
        }
        CommandSketch::MergeCoins(_) => {
            gen_merge_coins_input(builder, prev_command, cmd, prev_cmd_num, package, cap)
        }
        CommandSketch::MakeMoveVec(_) => {
            gen_move_vec_input(builder, prev_command, cmd, prev_cmd_num, package, cap)
        }
    }
}

pub fn gen_transfer_input(
    builder: &mut ProgrammableTransactionBuilder,
    prev_command: Option<&CommandSketch>,
    cmd: &CommandSketch,
    prev_cmd_num: i64,
    recipient: SuiAddress,
    package: ObjectID,
    cap: ObjectRef,
) -> (Command, i64) {
    let CommandSketch::TransferObjects(args_len) = cmd else {
        panic!("Should be TransferObjects command");
    };
    let mut coins = vec![];
    // we need that many coins as input to transfer
    let coins_needed = *args_len as usize;

    let cmd_inc = gen_transfer_or_move_vec_input_internal(
        builder,
        prev_cmd_num,
        package,
        cap,
        prev_command,
        coins_needed,
        &mut coins,
    );
    assert!(coins.len() == *args_len as usize);

    let next_cmd = Command::TransferObjects(coins, builder.pure(recipient).unwrap());
    (next_cmd, cmd_inc)
}

pub fn gen_split_coins_input(
    builder: &mut ProgrammableTransactionBuilder,
    cmd: &CommandSketch,
    prev_cmd_num: i64,
    package: ObjectID,
    cap: ObjectRef,
) -> (Command, i64) {
    let CommandSketch::SplitCoins(split_amounts) = cmd else {
        panic!("Should be SplitCoins command");
    };
    let mut cmd_inc = 0;
    let mut split_args = vec![];

    // the tradeoff here is that we either generate output for each split command that will make it
    // succeed or we will very quickly hit the insufficient coin error only after a few (often just
    // 2) split coin transactions are executed making the whole batch testing into a rather narrow
    // error case
    create_input_calls(
        builder,
        package,
        cap,
        prev_cmd_num,
        MAX_SPLIT_AMOUNT * split_amounts.len() as u64,
        1,
    );
    cmd_inc += 2; // two input calls

    for s in split_amounts {
        split_args.push(builder.pure(*s).unwrap());
    }

    let coin_arg = Argument::Result((prev_cmd_num + cmd_inc) as u16);
    let next_cmd = Command::SplitCoins(coin_arg, split_args);
    (next_cmd, cmd_inc)
}

pub fn gen_merge_coins_input(
    builder: &mut ProgrammableTransactionBuilder,
    prev_command: Option<&CommandSketch>,
    cmd: &CommandSketch,
    prev_cmd_num: i64,
    package: ObjectID,
    cap: ObjectRef,
) -> (Command, i64) {
    let CommandSketch::MergeCoins(coins_to_merge) = cmd else {
        panic!("Should be MergeCoins command");
    };
    let mut cmd_inc = 0;
    let mut coins = vec![];
    // we need all coins that are going to be merged plus on that they are going to be merged into
    let coins_needed = *coins_to_merge as usize + 1;

    let output_coin = if let Some(prev_cmd) = prev_command {
        match prev_cmd {
            CommandSketch::TransferObjects(_) | CommandSketch::MergeCoins(_) => {
                // no useful input
                create_input_calls(builder, package, cap, prev_cmd_num, 7, coins_needed as u64);
                cmd_inc += 2; // two input calls
                for i in 0..coins_needed - 1 {
                    coins.push(Argument::NestedResult(
                        (prev_cmd_num + cmd_inc) as u16,
                        i as u16,
                    ));
                }
                Argument::NestedResult((prev_cmd_num + cmd_inc) as u16, *coins_to_merge as u16)
            }
            CommandSketch::SplitCoins(output) | CommandSketch::MakeMoveVec(output) => {
                // how many coins we have a available as output from previous command that we can
                // immediately use as input to the next command
                let usable_coins = cmp::min(output.len(), coins_needed);
                if let CommandSketch::MakeMoveVec(_) = prev_cmd {
                    create_unpack_call(builder, package, prev_cmd_num, output.len() as u64);
                    cmd_inc += 1; // unpack call
                };
                // there is at least one coin in the output - use it as the coin others are merged into
                let res_coin = Argument::NestedResult((prev_cmd_num + cmd_inc) as u16, 0);

                cmd_inc = gen_enough_arguments(
                    builder,
                    prev_cmd_num,
                    package,
                    cap,
                    coins_needed,
                    usable_coins,
                    1, /* one available coin already used */
                    output.len(),
                    &mut coins,
                    cmd_inc,
                );
                res_coin
            }
        }
    } else {
        // first command - no input
        create_input_calls(builder, package, cap, prev_cmd_num, 7, coins_needed as u64);
        cmd_inc += 2; // two input calls
        for i in 0..coins_needed - 1 {
            coins.push(Argument::NestedResult(
                (prev_cmd_num + cmd_inc) as u16,
                i as u16,
            ));
        }
        Argument::NestedResult((prev_cmd_num + cmd_inc) as u16, *coins_to_merge as u16)
    };

    let next_cmd = Command::MergeCoins(output_coin, coins);
    (next_cmd, cmd_inc)
}

pub fn gen_move_vec_input(
    builder: &mut ProgrammableTransactionBuilder,
    prev_command: Option<&CommandSketch>,
    cmd: &CommandSketch,
    prev_cmd_num: i64,
    package: ObjectID,
    cap: ObjectRef,
) -> (Command, i64) {
    let CommandSketch::MakeMoveVec(vector_coins) = cmd else {
        panic!("Should be MakeMoveVec command");
    };
    let mut coins = vec![];
    // we need that many coins as input to transfer
    let coins_needed = vector_coins.len();

    let cmd_inc = gen_transfer_or_move_vec_input_internal(
        builder,
        prev_cmd_num,
        package,
        cap,
        prev_command,
        coins_needed,
        &mut coins,
    );

    let next_cmd = Command::MakeMoveVec(None, coins);
    (next_cmd, cmd_inc)
}

/// A helper function to generate enough input coins for a command (transfer, merge, or create vector)
/// - either collect them all from previous command or generate additional ones if the previous
///     command does not deliver enough.
fn gen_enough_arguments(
    builder: &mut ProgrammableTransactionBuilder,
    prev_cmd_num: i64,
    package: ObjectID,
    cap: ObjectRef,
    coins_needed: usize,
    coins_available: usize,
    available_coins_used: usize,
    prev_cmd_out_len: usize,
    coins: &mut Vec<Argument>,
    mut cmd_inc: i64,
) -> i64 {
    for i in available_coins_used..coins_available {
        coins.push(Argument::NestedResult(
            (prev_cmd_num + cmd_inc) as u16,
            i as u16,
        ));
    }
    if prev_cmd_out_len < coins_needed {
        // we have some arguments from previous command's output but not all
        let remaining_args_num = (coins_needed - prev_cmd_out_len) as u64;
        create_input_calls(
            builder,
            package,
            cap,
            prev_cmd_num + cmd_inc,
            7,
            remaining_args_num,
        );
        cmd_inc += 2; // two input calls
        for i in 0..remaining_args_num {
            coins.push(Argument::NestedResult(
                (prev_cmd_num + cmd_inc) as u16,
                i as u16,
            ));
        }
    }
    cmd_inc
}

/// A helper function to generate arguments fro transfer or create vector commands as they are
/// exactly the same.
fn gen_transfer_or_move_vec_input_internal(
    builder: &mut ProgrammableTransactionBuilder,
    prev_cmd_num: i64,
    package: ObjectID,
    cap: ObjectRef,
    prev_command: Option<&CommandSketch>,
    coins_needed: usize,
    coins: &mut Vec<Argument>,
) -> i64 {
    let mut cmd_inc = 0;
    if let Some(prev_cmd) = prev_command {
        match prev_cmd {
            CommandSketch::TransferObjects(_) | CommandSketch::MergeCoins(_) => {
                // no useful input
                create_input_calls(builder, package, cap, prev_cmd_num, 7, coins_needed as u64);
                cmd_inc += 2; // two input calls
                for i in 0..coins_needed {
                    coins.push(Argument::NestedResult(
                        (prev_cmd_num + cmd_inc) as u16,
                        i as u16,
                    ));
                }
            }
            CommandSketch::SplitCoins(output) | CommandSketch::MakeMoveVec(output) => {
                // how many coins we have a available as output from previous command that we can
                // immediately use as input to the next command
                let usable_coins = cmp::min(output.len(), coins_needed);
                if let CommandSketch::MakeMoveVec(_) = prev_cmd {
                    create_unpack_call(builder, package, prev_cmd_num, output.len() as u64);
                    cmd_inc += 1; // unpack call
                };

                cmd_inc = gen_enough_arguments(
                    builder,
                    prev_cmd_num,
                    package,
                    cap,
                    coins_needed,
                    usable_coins,
                    0, /* no available coins used */
                    output.len(),
                    coins,
                    cmd_inc,
                )
            }
        }
    } else {
        // first command - no input
        create_input_calls(builder, package, cap, prev_cmd_num, 7, coins_needed as u64);
        cmd_inc += 2; // two input calls
        for i in 0..coins_needed {
            coins.push(Argument::NestedResult(
                (prev_cmd_num + cmd_inc) as u16,
                i as u16,
            ));
        }
    }
    cmd_inc
}

fn create_input_calls(
    builder: &mut ProgrammableTransactionBuilder,
    package: ObjectID,
    cap: ObjectRef,
    prev_cmd_num: i64,
    coin_value: u64,
    input_size: u64,
) {
    builder
        .move_call(
            package,
            Identifier::from_str("coin_factory").unwrap(),
            Identifier::from_str("mint_vec").unwrap(),
            vec![],
            vec![
                CallArg::from(cap),
                CallArg::from(coin_value),
                CallArg::from(input_size),
            ],
        )
        .unwrap();
    create_unpack_call(builder, package, prev_cmd_num + 1, input_size);
}

fn create_unpack_call(
    builder: &mut ProgrammableTransactionBuilder,
    package: ObjectID,
    prev_cmd_num: i64,
    input_size: u64,
) {
    builder.programmable_move_call(
        package,
        Identifier::from_str("coin_factory").unwrap(),
        Identifier::from_str(format!("unpack_{input_size}").as_str()).unwrap(),
        vec![],
        vec![Argument::Result(prev_cmd_num as u16)],
    );
}