async-ebpf 0.4.0-alpha.5

Async-friendly, fully preemptive userspace eBPF runtime
Documentation
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
use std::{sync::Arc, time::Duration};

use crate::{
  error::{Error, RuntimeError},
  helpers::Helper,
  program::{DummyProgramEventListener, HelperScope, PreemptionEnabled, ProgramLoader},
  test_util::{compile_ebpf, gt_env, run_one_program, timeslice_config, RunOpts, TokioTimeslicer},
};

static HELPERS: &'static [(&'static str, Helper)] = &[
  ("return_5", h_return_5),
  ("return_7_async", h_return_7_async),
];

#[tokio::test]
#[tracing_test::traced_test]
async fn test_sync_and_async_call() {
  let ret = run_one_program(
    RunOpts::simple(vec![HELPERS], "test"),
    r#"
  extern int return_5(void);
  extern int return_7_async(void);
  int __attribute__((section("test"))) entry(void) {
    int a = return_5();
    int b = return_5();
    int c = return_5();
    int d = return_7_async();
    int e = return_7_async();
    return a + b + c + d + e;
  }
  "#,
  )
  .await
  .unwrap();
  assert_eq!(ret, 5 * 3 + 7 * 2);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_calldata() {
  let v_100 = 100u64.to_le_bytes();

  let ret = run_one_program(
    RunOpts {
      helpers: vec![HELPERS],
      entrypoint: "test",
      calldata: &v_100,
      resources: &mut [],
      allow_dynamic_regions: false,
    },
    r#"
  unsigned long long __attribute__((section("test"))) entry(unsigned long long *input) {
    return *input + 1;
  }
  "#,
  )
  .await
  .unwrap();
  assert_eq!(ret, 101);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_noinline_local_function_calls() {
  let ret = run_one_program(
    RunOpts::simple(vec![], "test"),
    r#"
  static int __attribute__((noinline, section("test"))) add_seven(int x) {
    return x + 7;
  }

  static int __attribute__((noinline, section("test"))) twice_after_add(int x) {
    return add_seven(x) * 2;
  }

  int __attribute__((section("test"))) entry(void) {
    return twice_after_add(4);
  }
  "#,
  )
  .await
  .unwrap();
  assert_eq!(ret, 22);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_lazy_jit_compiles_entry_on_first_run() {
  let (_, t_env) = gt_env();
  let binary = compile_ebpf(
    r#"
  int __attribute__((section("test"))) entry(void) {
    return 42;
  }
  "#
    .as_bytes()
    .to_vec(),
  )
  .await
  .unwrap();
  let loader = ProgramLoader::new(
    &mut rand::thread_rng(),
    Arc::new(DummyProgramEventListener),
    &[&[]],
  )
  .require_static_region_analysis(true);
  let prog = loader
    .load(&mut rand::thread_rng(), &binary)
    .unwrap()
    .pin_to_current_thread(t_env);

  assert_eq!(prog.compiled_function_count_for_tests(), 0);
  assert_eq!(prog.code_arena_used_for_tests(), 0);

  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await
    .unwrap();
  assert_eq!(ret, 42);
  assert_eq!(prog.compiled_function_count_for_tests(), 1);
  let arena_used = prog.code_arena_used_for_tests();
  assert!(arena_used > 0);

  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await
    .unwrap();
  assert_eq!(ret, 42);
  assert_eq!(prog.compiled_function_count_for_tests(), 1);
  assert_eq!(prog.code_arena_used_for_tests(), arena_used);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_lazy_jit_compiles_local_functions_on_first_call() {
  let (_, t_env) = gt_env();
  let binary = compile_ebpf(
    r#"
  static int __attribute__((noinline, section("test"))) add_seven(int x) {
    return x + 7;
  }

  static int __attribute__((noinline, section("test"))) twice_after_add(int x) {
    return add_seven(x) * 2;
  }

  int __attribute__((section("test"))) entry(void) {
    return twice_after_add(4);
  }
  "#
    .as_bytes()
    .to_vec(),
  )
  .await
  .unwrap();
  let loader = ProgramLoader::new(
    &mut rand::thread_rng(),
    Arc::new(DummyProgramEventListener),
    &[&[]],
  )
  .require_static_region_analysis(true);
  let prog = loader
    .load(&mut rand::thread_rng(), &binary)
    .unwrap()
    .pin_to_current_thread(t_env);

  assert_eq!(prog.compiled_function_count_for_tests(), 0);

  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await
    .unwrap();
  assert_eq!(ret, 22);
  assert_eq!(prog.compiled_function_count_for_tests(), 3);
  let arena_used = prog.code_arena_used_for_tests();

  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await
    .unwrap();
  assert_eq!(ret, 22);
  assert_eq!(prog.compiled_function_count_for_tests(), 3);
  assert_eq!(prog.code_arena_used_for_tests(), arena_used);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_lazy_jit_specializes_callee_per_pointer_signature() {
  let (_, t_env) = gt_env();
  // `first_byte` is called once with a stack pointer and once with a read-only
  // data pointer. The two call sites produce different incoming pointer
  // signatures (R1 = foreign-stack vs R1 = data), so the callee is JIT-compiled
  // into two distinct specializations.
  let binary = compile_ebpf(
    r#"
  static int __attribute__((noinline, section("test"))) first_byte(const char *p) {
    return *p;
  }

  int __attribute__((section("test"))) entry(void) {
    char buf[8];
    buf[0] = 3;
    const char *ro = "Z";
    return first_byte(buf) + first_byte(ro);
  }
  "#
    .as_bytes()
    .to_vec(),
  )
  .await
  .unwrap();
  let loader = ProgramLoader::new(
    &mut rand::thread_rng(),
    Arc::new(DummyProgramEventListener),
    &[&[]],
  )
  .require_static_region_analysis(true);
  let prog = loader
    .load(&mut rand::thread_rng(), &binary)
    .unwrap()
    .pin_to_current_thread(t_env);

  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await
    .unwrap();
  assert_eq!(ret, 3 + 'Z' as i64);

  // Two source functions (`entry`, `first_byte`); `first_byte` is specialized
  // into two pointer-signature variants, so three native functions total.
  let variant_counts = prog.function_variant_counts_for_tests();
  assert_eq!(
    variant_counts.len(),
    2,
    "expected exactly two source functions, got {variant_counts:?}"
  );
  assert!(
    variant_counts.contains(&2),
    "expected one callee specialized into two variants, got {variant_counts:?}"
  );
  assert_eq!(prog.compiled_function_count_for_tests(), 3);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_fault_write_rodata() {
  let ret = run_one_program(
    RunOpts::simple(vec![HELPERS], "test"),
    r#"
  extern int return_5(const char *x);
  unsigned long long __attribute__((section("test"))) entry() {
    const char *rostr = "test";
    *(char *) rostr = 'a';
    return_5(rostr); // force side effect
    return 0;
  }
  "#,
  )
  .await;
  assert!(matches!(ret, Err(Error(RuntimeError::MemoryFault(_)))));
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_read_rodata_via_data_region() {
  // A volatile read of a constant compiles to a load whose pointer is a
  // relocated data-section address. The region analysis routes it to the data
  // region, exercising the branchless single-region (data) JIT path.
  let ret = run_one_program(
    RunOpts::simple(vec![], "test"),
    r#"
  unsigned long long __attribute__((section("test"))) entry(void) {
    static const volatile char msg[] = "ABCD";
    return (unsigned char) msg[0] + (unsigned char) msg[3];
  }
  "#,
  )
  .await
  .unwrap();
  assert_eq!(ret, ('A' as i64) + ('D' as i64));
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_fault_read_past_stack() {
  let ret = run_one_program(
    RunOpts::simple(vec![HELPERS], "test"),
    r#"
  unsigned long long __attribute__((section("test"))) entry(unsigned long long *bad) {
    return *bad;
  }
  "#,
  )
  .await;
  assert!(matches!(ret, Err(Error(RuntimeError::MemoryFault(_)))));
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_fault_write_past_stack() {
  let ret = run_one_program(
    RunOpts::simple(vec![HELPERS], "test"),
    r#"
  unsigned long long __attribute__((section("test"))) entry(unsigned long long *bad) {
    *bad = 1;
    return 0;
  }
  "#,
  )
  .await;
  assert!(matches!(ret, Err(Error(RuntimeError::MemoryFault(_)))));
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_fault_read_null_ptr() {
  // This program dereferences a helper-returned pointer, whose region cannot be
  // determined statically, so it opts out of strict region analysis.
  let mut opts = RunOpts::simple(vec![HELPERS], "test");
  opts.allow_dynamic_regions = true;
  let ret = run_one_program(
    opts,
    r#"
  extern char * return_5(void);
  unsigned long long __attribute__((section("test"))) entry(unsigned long long *bad) {
    char *p = return_5() - 5;
    return *p;
  }
  "#,
  )
  .await;
  assert!(matches!(ret, Err(Error(RuntimeError::MemoryFault(_)))));
}

/// Asserts that executing `code` under the default (strict) region analysis is
/// rejected because some access cannot be routed to a single region for the
/// concrete function specialization being compiled.
fn assert_static_region_rejected(ret: Result<i64, Error>) {
  match ret {
    Err(Error(RuntimeError::InvalidArgumentOwned(msg)))
      if msg.contains("static region analysis") => {}
    other => panic!("expected static region rejection, got {other:?}"),
  }
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_strict_region_validation_is_deferred_until_execution() {
  let (_, t_env) = gt_env();
  let binary = compile_ebpf(
    r#"
  extern char *return_5(void);
  unsigned long long __attribute__((section("test"))) entry(void) {
    char *p = return_5();
    return *p;
  }
  "#
    .as_bytes()
    .to_vec(),
  )
  .await
  .unwrap();
  let loader = ProgramLoader::new(
    &mut rand::thread_rng(),
    Arc::new(DummyProgramEventListener),
    &[HELPERS],
  )
  .require_static_region_analysis(true);
  let prog = loader
    .load(&mut rand::thread_rng(), &binary)
    .unwrap()
    .pin_to_current_thread(t_env);

  assert_eq!(prog.compiled_function_count_for_tests(), 0);
  assert_eq!(prog.failed_function_count_for_tests(), 0);
  assert_eq!(prog.function_compile_attempt_count_for_tests(), 0);
  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await;
  assert_static_region_rejected(ret);
  assert_eq!(prog.compiled_function_count_for_tests(), 0);
  assert_eq!(prog.failed_function_count_for_tests(), 1);
  assert_eq!(prog.function_compile_attempt_count_for_tests(), 1);
  assert_eq!(prog.code_arena_used_for_tests(), 0);

  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await;
  assert_static_region_rejected(ret);
  assert_eq!(prog.compiled_function_count_for_tests(), 0);
  assert_eq!(prog.failed_function_count_for_tests(), 1);
  assert_eq!(prog.function_compile_attempt_count_for_tests(), 1);
  assert_eq!(prog.code_arena_used_for_tests(), 0);
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_reject_helper_returned_pointer() {
  // The pointer comes from a helper return value, whose region is unknown.
  let code = r#"
  extern char *return_5(void);
  unsigned long long __attribute__((section("test"))) entry(void) {
    char *p = return_5();
    return *p;
  }
  "#;
  assert_static_region_rejected(
    run_one_program(RunOpts::simple(vec![HELPERS], "test"), code).await,
  );
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_reject_pointer_loaded_from_memory() {
  // `**pp` first loads a pointer out of memory (region not tracked through
  // memory), then dereferences it — the inner deref is unroutable. The same
  // program loads and faults at runtime once strict analysis is disabled,
  // confirming the lazy strict-region rejection is the gate, not a bad program.
  let code = r#"
  unsigned long long __attribute__((section("test"))) entry(unsigned long long **pp) {
    return **pp;
  }
  "#;
  assert_static_region_rejected(run_one_program(RunOpts::simple(vec![], "test"), code).await);

  let mut opts = RunOpts::simple(vec![], "test");
  opts.allow_dynamic_regions = true;
  let dynamic = run_one_program(opts, code).await;
  assert!(
    matches!(dynamic, Err(Error(RuntimeError::MemoryFault(_)))),
    "expected runtime fault when opted out, got {dynamic:?}"
  );
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_reject_pointer_selected_across_regions() {
  // A pointer that is a stack address on one path and a data address on the
  // other joins to an ambiguous region, so the dereference is unroutable.
  let idx = 1u64.to_le_bytes();
  let code = r#"
  unsigned long long __attribute__((section("test"))) entry(unsigned long long *sel) {
    static const volatile char msg[] = "ABCD";
    char stackbuf[8] = {1, 2, 3, 4, 5, 6, 7, 8};
    const char *p = (*sel) ? (const char *) msg : (const char *) stackbuf;
    return p[0];
  }
  "#;
  let ret = run_one_program(
    RunOpts {
      helpers: vec![],
      entrypoint: "test",
      calldata: &idx,
      resources: &mut [],
      allow_dynamic_regions: false,
    },
    code,
  )
  .await;
  assert_static_region_rejected(ret);
}

fn h_return_5(_: &HelperScope, _: u64, _: u64, _: u64, _: u64, _: u64) -> Result<u64, ()> {
  Ok(5)
}

fn h_return_7_async(
  scope: &HelperScope,
  _: u64,
  _: u64,
  _: u64,
  _: u64,
  _: u64,
) -> Result<u64, ()> {
  scope.post_task(async move {
    tokio::time::sleep(Duration::from_millis(5)).await;
    |_: &HelperScope| Ok(7)
  });
  Ok(0)
}

#[tokio::test]
#[tracing_test::traced_test]
async fn test_custom_code_size_limit() {
  use crate::program::{DummyProgramEventListener, PreemptionEnabled, ProgramLoader};
  use crate::test_util::compile_ebpf;
  use std::sync::Arc;

  let (_, t_env) = gt_env();
  let binary = compile_ebpf(
    br#"
  int __attribute__((section("test"))) entry(void) {
    return 42;
  }
  "#
    .to_vec(),
  )
  .await
  .unwrap();

  let loader = ProgramLoader::new(
    &mut rand::thread_rng(),
    Arc::new(DummyProgramEventListener),
    &[],
  )
  .with_code_size_limit(64 * 1024);
  let prog = loader
    .load(&mut rand::thread_rng(), &binary)
    .unwrap()
    .pin_to_current_thread(t_env);
  let ret = prog
    .run(
      &timeslice_config(),
      &TokioTimeslicer,
      "test",
      &mut [],
      &[],
      &PreemptionEnabled::new(t_env),
    )
    .await
    .unwrap();
  assert_eq!(ret, 42);
}

#[test]
#[should_panic(expected = "multiple of 64 KiB")]
fn test_invalid_code_size_limit() {
  use crate::program::{DummyProgramEventListener, ProgramLoader};
  use std::sync::Arc;

  let _ = ProgramLoader::new(
    &mut rand::thread_rng(),
    Arc::new(DummyProgramEventListener),
    &[],
  )
  .with_code_size_limit(4096);
}