Skip to content

Instantly share code, notes, and snippets.

@dicej
Last active September 12, 2024 16:32
Show Gist options
  • Save dicej/3559ed3334719a58affc397bb742a1d6 to your computer and use it in GitHub Desktop.
Save dicej/3559ed3334719a58affc397bb742a1d6 to your computer and use it in GitHub Desktop.

State of WASIp2 on .NET (primarily using NativeAOT-LLVM) according to Joel

Note that I've generally been focusing on NativeAOT-LLVM because that's the only thing that worked with the component model when I started working on .NET, plus it's currently the best option from a performance and binary size perspective. Since then, Pavel has moved Mono and its interpreter forward so it's in much better shape, but I haven't played with it myself.

Status

Known issues

  • No System.Net.Security.SSLStream support (need e.g. wasi:sockets/tls to advance: WebAssembly/wasi-sockets#100). I've just started working on this.
  • No multithreading (idea: add stack-switching-based green thread support to wasi-libc or adjacent library to enable pthread APIs which .NET can use)
    • Pavel is skeptical that non-premptive multithreading will meet .NET developers' needs, though
    • So far, we haven't encountered a library needed by an Important Customer which requires multithreading, so no urgency yet, but I expect we'll hit one eventually
  • No System.Net.Sockets support yet (tends to use multithreading internally, even for async functions)
    • Pavel has begun working on this; looks like supporting pure async ops with no multithreading is doable, but non-trivial
  • Many APIs that are currently disabled or restricted for the "browser" target should also be disabled or restricted for the "wasi" target. Currently, they either silently fail or error in the wrong place.
    • Pavel has started enumerating these cases and addressing them.
  • No exception stack traces for NativeAOT: dotnet/runtimelab#2404 (works fine for the Mono interpeter, though)
    • You can kind of work around this using e.g. GDB and putting a breakpoint on S_P_CoreLib_System_Runtime_EH__RhpThrowEx and then getting a backtrace when it's hit, but in general it's a huge papercut when doing any kind of casual debugging or forensics
    • SingleAccretion has proposed adding a "virtual stack trace" feature to address this without any special WASI or Wasm features
  • Reflection is limited with NativeAOT
    • Nothing WASI- or Wasm- specific here, but important to be aware of
    • Stuff that relies heavily on reflection (e.g. MVC, Razor Pages, etc.) not currently supported at all
    • Customers who want both maximum performance and minimum porting effort will find this painful

TODO items

  • Merge outstanding PR(s) discussed above
  • Update CI to build and publish official Linux and Mac (x86_64 and ARM64) ILCompiler packages
  • Release WASI-SDK 25 and update .NET to it. This will include a wasm-component-ld update to resolve a WASI 0.2.0 vs. 0.2.1 compatibility issue.
  • Port, test, and (as necessary) fix real-world apps for Important Customers
    • The sooner we know which of the known issues listed above actually matter to Important Customer(s) (and what as-yet-unknown issues may lurk), the sooner we can prioritize and address them.
    • Pay special attention to libraries which require reflection and research and/or develop e.g. source-generation-based workarounds
  • Support at least the async APIs of System.Net.Sockets
    • Pavel has a plan for this
  • Support System.Net.Security.SslStream via the current draft of wasi:sockets/tls
  • Support stack traces on NativeAOT
  • Performance optimization (as driven by Important Customer needs and profiling)
    • Wizer-style pre-init support (probably via component-init)
    • Use Spans instead of e.g. byte[] in wit-bindgen-generated code to minimize copies (e.g. here)
  • Add support for exporting async functions to wit-bindgen
    • This would reduce application level boilerplate
  • Other ergonomic improvements as deemed appropriate by .NET experts (i.e. not me)
  • (nice to have) Support wasi:io/poll/pollable cancellation (i.e. discard pollables which the app no longer cares about)
    • Pavel is interested in addressing this, although I don't consider it particularly urgent for serverless workloads
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment