jart 2 days ago

WASM sandboxes don't do much to guarantee the soundness of your program. It can hose your memory all it wants, it can just only do so within the confines of the sandbox.

Using a sandbox also limits what you can do with a system. With stuff like SECCOMP you have to methodically define policies for all its interactions. Like you're dealing with two systems. It's very bureaucratic and the reason we do it, is because we don't trust our programs to behave.

With Fil-C you get a different approach. The language and runtime offer a stronger level of assurance your program can only behave, so you can trust it more to have unfettered access to the actual system. You also have the choice to use Fil-C with a sandbox like SECCOMP as described in the blog post, since your Fil-C binaries are just normal executables that can access powerful Linux APIs like prctl. It took Linux twenty years to invent that interface, so you'll probably have to wait ten years to get something comparable from WASI.

  • IshKebab 2 days ago

    > It can hose your memory all it wants, it can just only do so within the confines of the sandbox.

    True, although as I understand it the WASI component model at least allows multiple fine-grained sandboxes, so it's somewhere in-between per-object capabilities and one big sandbox for your entire program. I haven't actually used it yet so I might be wrong about that.

    > so you'll probably have to wait ten years to get something comparable from WASI

    I think for many WASI use cases the capability control would be done by the host program itself, so you don't need OS-level support for it. E.g. with Wasmtime I do

      WasiCtxBuilder::new()
            .allow_tcp(false)
            .allow_udp(false)
            .allow_ip_name_lookup(false)
    
    But yeah a standard WASI program can't itself decide to give up capabilities.
    • pjmlp 2 days ago

      WASI is basically CORBA, and DCOM, PDO for newer generations.

      Or if you prefer the bytecode based evolution of them, RMI and .NET Remoting.

      I don't see it going that far.

      The WebAssembly development experience on the browser mostly still sucks, especially the debugging part, and on the server it is another yet another bytecode.

      Finally, there is hardly any benefit over OS processes, talking over JSON-RPC (aka how REST gets mostly used), GraphQL, gRPC, or plain traditional OS IPC.

      • jart a day ago

        You've named half of the weasel security technologies of the last three decades. The nice thing about SECCOMP BPF is it's so difficult to use that you get the comfort of knowing that only a very enlightened person could have written your security policy. Hell is being subjected to restrictions defined by people with less imagination than you.

      • IshKebab 2 days ago

        > hardly any benefit over OS processes, talking over JSON-RPC

        Hardly any benefit except portability and sandboxing, the main reasons WASM exists?

pizlonator 2 days ago

That's a sandboxing technology but not a memory safety technology.

You can totally achieve weird execution inside the rlbox.

  • ComputerGuru 2 days ago

    Running ffmpeg compiled for wasm and watching as most codec selections lead to runtime crashes due to invalid memory accesses is fun. But, yeah, it’s runtime safety, so going to wasm as a middle step doesn’t do much.

    • pizlonator 2 days ago

      > Running ffmpeg compiled for wasm and watching as most codec selections lead to runtime crashes due to invalid memory accesses is fun.

      For all you know that’s a bug in the wasm port of the codec.

      > it’s runtime safety

      So is Fil-C

      The problem with wasm is that an OOBA in one C allocation in the wasm guest can still give the attacker the power to clobber any memory in the guest. All that’s protected is the host. That’s enough to achieve weird execution.

      Hence why I say that wasm is a sandbox. It’s not memory safety.

    • [removed] 2 days ago
      [deleted]
    • pjmlp 2 days ago

      Finally reality is catching up with the WASM sales pitch against other bytecode formats introduced since 1958, regarding security and how great it is over anything else.

      • singpolyma3 2 days ago

        Warm was great because it was lightweight and easy to target from any language and create any custom interaction API with the host. That's becoming less true as they bolt on features no one needed (GC) and popularize standardized interfaces that contain the kitchen sink (WASI) but these things can still be treated as optional so it can still be used for much more flexible use cases than java or .net

  • zozbot234 2 days ago

    Wasm now supports multiple modules and multiple linear memories per module, so it ought to be quite possible to compile C to Wasm in a way that enforces C's object access rules, much like CHERI if perhaps not Fil-C itself.

    • IshKebab 2 days ago

      You wouldn't be able to get quite as fine-grained. One memory per object is probably horrifically slow. And I don't know about Fil-C, but CHERI at least allows capabilities (pointers with bounds) to overlap and subset each other. I.e. you could allocate an arena and get a capability for that, and then allocate an object inside that arena and get a smaller capability for that, and then get a pointer to a field in that object and get capability just for that field.

      • Findecanor 2 days ago

        Fil-C has like one "linear memory" per object and each capability gives read/write access to the whole object.

        But Fil-C has its compiler which does analysis passes for eliding bounds-checks where they are not needed, and I think it could theoretically do a better job at that than a WASM compiler with multi-memories, because C source code could contain more information. Unlike WASM, but like CHERI, every pointer in memory is also tagged, and would lose its pointer status if overwritten by an integer, so it is still more memory-safe in that way.

        • IshKebab 2 days ago

          It has a separate address space for each object? That seems unlikely. Is it not pretty much a software implementation of CHERI?

      • zozbot234 2 days ago

        One would probably just need to define WASM extensions that allow for such subsetting. Performance will probably be competitive with software implementations of CHERI (perhaps with varying levels of hardware acceleration down the road) which isn't that bad.

    • favflam a day ago

      The multiple linear memory is supported in wasi preview 3? I thought it was not supported as of preview 2.

    • pjmlp 2 days ago

      Some WebAssembly runtimes now do support those parts of the specification.