Implement limiting WebAssembly execution with fuel (#2611)
* Consume fuel during function execution This commit adds codegen infrastructure necessary to instrument wasm code to consume fuel as it executes. Currently nothing is really done with the fuel, but that'll come in later commits. The focus of this commit is to implement the codegen infrastructure necessary to consume fuel and account for fuel consumed correctly. * Periodically check remaining fuel in wasm JIT code This commit enables wasm code to periodically check to see if fuel has run out. When fuel runs out an intrinsic is called which can do what it needs to do in the result of fuel running out. For now a trap is thrown to have at least some semantics in synchronous stores, but another planned use for this feature is for asynchronous stores to periodically yield back to the host based on fuel running out. Checks for remaining fuel happen in the same locations as interrupt checks, which is to say the start of the function as well as loop headers. * Improve codegen by caching `*const VMInterrupts` The location of the shared interrupt value and fuel value is through a double-indirection on the vmctx (load through the vmctx and then load through that pointer). The second pointer in this chain, however, never changes, so we can alter codegen to account for this and remove some extraneous load instructions and hopefully reduce some register pressure even maybe. * Add tests fuel can abort infinite loops * More fuzzing with fuel Use fuel to time out modules in addition to time, using fuzz input to figure out which. * Update docs on trapping instructions * Fix doc links * Fix a fuzz test * Change setting fuel to adding fuel * Fix a doc link * Squelch some rustdoc warnings
This commit is contained in:
208
tests/all/fuel.wast
Normal file
208
tests/all/fuel.wast
Normal file
@@ -0,0 +1,208 @@
|
||||
(assert_fuel 0 (module))
|
||||
|
||||
(assert_fuel 1
|
||||
(module
|
||||
(func $f)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 2
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
drop
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 1
|
||||
(module
|
||||
(func $f
|
||||
block
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 1
|
||||
(module
|
||||
(func $f
|
||||
unreachable
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 7
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
unreachable
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 1
|
||||
(module
|
||||
(func $f
|
||||
return
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
i32.const 0
|
||||
unreachable
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 3
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
if
|
||||
call $f
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 4
|
||||
(module
|
||||
(func $f
|
||||
i32.const 1
|
||||
if
|
||||
i32.const 0
|
||||
drop
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 4
|
||||
(module
|
||||
(func $f
|
||||
i32.const 1
|
||||
if
|
||||
i32.const 0
|
||||
drop
|
||||
else
|
||||
call $f
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 4
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
if
|
||||
call $f
|
||||
else
|
||||
i32.const 0
|
||||
drop
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 3
|
||||
(module
|
||||
(func $f
|
||||
block
|
||||
i32.const 1
|
||||
br_if 0
|
||||
i32.const 0
|
||||
drop
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
(assert_fuel 4
|
||||
(module
|
||||
(func $f
|
||||
block
|
||||
i32.const 0
|
||||
br_if 0
|
||||
i32.const 0
|
||||
drop
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
;; count code before unreachable
|
||||
(assert_fuel 2
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
unreachable
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
;; count code before return
|
||||
(assert_fuel 2
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
return
|
||||
)
|
||||
(start $f)))
|
||||
|
||||
;; cross-function fuel works
|
||||
(assert_fuel 3
|
||||
(module
|
||||
(func $f
|
||||
call $other
|
||||
)
|
||||
(func $other)
|
||||
(start $f)))
|
||||
(assert_fuel 5
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
call $other
|
||||
i32.const 0
|
||||
drop
|
||||
)
|
||||
(func $other (param i32))
|
||||
(start $f)))
|
||||
(assert_fuel 4
|
||||
(module
|
||||
(func $f
|
||||
call $other
|
||||
drop
|
||||
)
|
||||
(func $other (result i32)
|
||||
i32.const 0
|
||||
)
|
||||
(start $f)))
|
||||
(assert_fuel 4
|
||||
(module
|
||||
(func $f
|
||||
i32.const 0
|
||||
call_indirect
|
||||
)
|
||||
(func $other)
|
||||
(table funcref (elem $other))
|
||||
(start $f)))
|
||||
|
||||
;; loops!
|
||||
(assert_fuel 1
|
||||
(module
|
||||
(func $f
|
||||
loop
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
(assert_fuel 53 ;; 5 loop instructions, 10 iterations, 2 header instrs, 1 func
|
||||
(module
|
||||
(func $f
|
||||
(local i32)
|
||||
i32.const 10
|
||||
local.set 0
|
||||
|
||||
loop
|
||||
local.get 0
|
||||
i32.const 1
|
||||
i32.sub
|
||||
local.tee 0
|
||||
br_if 0
|
||||
end
|
||||
)
|
||||
(start $f)))
|
||||
Reference in New Issue
Block a user