gaukas commented on issue #7001:
fixing Rustfmt...
gaukas edited a comment on issue #7001:
fixing Rustfmt... Done.
gaukas edited a comment on issue #7001:
Fixing Rustfmt... [DONE]
pchickey commented on issue #7001:
I missed the discussion in https://github.com/bytecodealliance/wasmtime-go/issues/187 and I am a little nervous about these changes - they can be supported today, but will have to change substantially in the future.
In our preview 2 implementation, we have eliminated all of the user-facing methods on WasiCtx. This is required due to new invariants that we need to maintain for preview 2 resources. You can still insert directories into a WasiCtx while in the builder. We also eliminated the WasiFile/WasiDir traits as a mechanism for extending the Wasi implementation. We do have extension traits for implementing streams (which maybe will be what you need, to expose pipes?) and a totally new interface and implementation for sockets. The story for how to expose these new interfaces to guests is itself a bit involved as well - we have adapters to transition modules consuming just Wasi preview 1, but it sounds like you are using preview 1 plus some other imports as well.
We expect the preview 2 builder/context (defined in
wasmtime-wasi::preview2
) will supplant the preview 1 implementation (defined inwasi-common
) pretty soon, and preview 1 will be supported through the p2->p1 host compatibility layer (wasmtime-wasi::preview2::preview1
). We will be supporting both the new and old Wasi implementations a little while for users to transition, but that is much easier to manage in Rust than in the C API. The existing C APIs which end up connecting to wasi-common are pretty easy to transition over wasmtime-wasi::preview2, but these methods will not be possible to transition.One way we can bypass the many wrinkles in this story is if we can switch you over to using Wasi Preview 2 and the Component Model. That still has open questions about how to use the C FFI, but those are questions that it will benefit a lot of users to solve, whereas if we expose these methods for just you to use today, we'll also have to solve other problems for just you in a few months when it is time to transition to preview 2.
pchickey edited a comment on issue #7001:
I missed the discussion in https://github.com/bytecodealliance/wasmtime-go/issues/187 and I am a little nervous about these changes - they can be supported today, but will have to change substantially in the future.
In our preview 2 implementation, we have eliminated all of the user-facing methods on WasiCtx. This is required due to new invariants that we need to maintain for preview 2 resources. You can still insert (host filesystem) directories into a WasiCtx while in the builder. We also eliminated the WasiFile/WasiDir traits as a mechanism for extending the Wasi implementation. We do have extension traits for implementing streams (which maybe will be what you need, to expose pipes?) and a totally new interface and implementation for sockets. The story for how to expose these new interfaces to guests is itself a bit involved as well - we have adapters to transition modules consuming just Wasi preview 1, but it sounds like you are using preview 1 plus some other imports as well.
We expect the preview 2 builder/context (defined in
wasmtime-wasi::preview2
) will supplant the preview 1 implementation (defined inwasi-common
) pretty soon, and preview 1 will be supported through the p2->p1 host compatibility layer (wasmtime-wasi::preview2::preview1
). We will be supporting both the new and old Wasi implementations a little while for users to transition, but that is much easier to manage in Rust than in the C API. The existing C APIs which end up connecting to wasi-common are pretty easy to transition over wasmtime-wasi::preview2, but these methods will not be possible to transition.One way we can bypass the many wrinkles in this story is if we can switch you over to using Wasi Preview 2 and the Component Model. That still has open questions about how to use the C FFI, but those are questions that it will benefit a lot of users to solve, whereas if we expose these methods for just you to use today, we'll also have to solve other problems for just you in a few months when it is time to transition to preview 2.
pchickey edited a comment on issue #7001:
I missed the discussion in https://github.com/bytecodealliance/wasmtime-go/issues/187 and I am a little nervous about these changes - they can be supported today, but will have to change substantially in the future.
In our preview 2 implementation, we have eliminated all of the user-facing methods on WasiCtx. This is required due to new invariants that we need to maintain for preview 2 resources. You can still insert (host filesystem) directories into a WasiCtx while in the builder. We also eliminated the WasiFile/WasiDir traits as a mechanism for extending the Wasi implementation. We do have extension traits for implementing streams (which maybe will be what you need, to expose pipes?) and a totally new interface and implementation for sockets. The story for how to expose these new interfaces to guests is itself a bit involved as well - we have adapters to transition modules consuming just Wasi preview 1, but it sounds like you are using preview 1 plus some other imports as well.
We expect the preview 2 builder/context (defined in
wasmtime-wasi::preview2
) will supplant the preview 1 implementation (defined inwasi-common
) pretty soon, and preview 1 will be supported through the p2->p1 host compatibility layer (wasmtime-wasi::preview2::preview1
). We will be supporting both the new and old Wasi implementations a little while for users to transition, but that is much easier to manage in Rust than in the C API. The existing C APIs which end up connecting to wasi-common are pretty easy to transition over wasmtime-wasi::preview2, but these methods will not be possible to transition.One way we can bypass the many wrinkles in this story is if we can switch you over to using Wasi Preview 2 and the Component Model. That still has open questions about how to use the C FFI, but those are questions that it will benefit a lot of users to solve, whereas if we expose these methods for just you to use today, we'll also have to solve other problems for just you in a few months when it is time to transition to preview 2.
This is a pretty complex design space which doesn't have much by the way of docs, so if I can help you understand this problem better by discussing it, we can talk on the bytecode alliance zulip or setup a call sometime.
gaukas commented on issue #7001:
I understand your concern. The reason for this PR to exist is simply that the Go's implementation of wasmtime (as wasmtime-go) has been missing way too many features from its Rust counterpart, and we really need BOTH to work on the same page. There's a set of projects we are working on right now and part of its job can ONLY be done in Go. However the gap between two implementation due to the absence of relevant C-API is irritating, and it feels like it is never a part of plan to allow the users with Go to do as much as Rust users can. If so, it is pretty sad, as I believe Go has its significance as much as Rust do.
It is not a bad idea to switch over to wasi preview2, but I am concerned about the amount of work needed to fill the gap in wasmtime-go, given it looks like not as popular and already fell short on features in preview 1. In the long run I believe it is definitely worth considering, though, if it implements a much more consistent feature set in across all ports. Specifically, the ability to inject sockets AFTER instance has been created/running.
A discussion will be nice to have, we can start by setting up a covert communication channel. Please feel free to shoot me an email if you wish.
github-actions[bot] commented on issue #7001:
Subscribe to Label Action
cc @peterhuene
<details>
This issue or pull request has been labeled: "wasmtime:c-api"Thus the following users have been cc'd because of the following labels:
- peterhuene: wasmtime:c-api
To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.
Learn more.
</details>
pchickey commented on issue #7001:
Wasmtime's C FFI isn't fully fleshed out, not because we don't want it to be, but because we have had other priorities. We are happy to help contributors add C FFI support for the parts of wasmtime where it is missing right now.
pchickey commented on issue #7001:
I looked at this again and talked to @alexcrichton about how we can move this over to preview 2 and I'm comfortable with it once he signs it off.
alexcrichton commented on issue #7001:
Personally I don't think that
void*
should be used here as a placeholder forHANDLE
-or-int
. I realize this is what Go seems to do withuintptr
as the return value from theFd()
method, but that's not how I'd personally do it. That being said I also don't have a lot of prior experience to draw from. Everything in Rust is "just useFile
" which isn't an option in C and otherwise I'm not aware of any C libraries that handle the Windows/Unix distinction as they generally take an fd and then don't work on Windows. To me though castingint
in C tovoid*
just to pass it to this function feels a bit too weird.Otherwise though another comment I would have is that
#[cfg]
can be applied on a much more granular level than the entire function, so I'd recommend avoiding duplication of the entire function bodies in Rust with something like:#[cfg(unix)] let file = File::from_raw_fd(the_argument); #[cfg(windows)] let file = File::from_raw_handle(the_argumet);
(or something like that)
gaukas commented on issue #7001:
So do we have a conclusion here, shall we include multiple functions for Unix and Windows to have explicit types (
int32
/i32
andvoid*
/HANDLE
), or do you think it is okay to save them for later and keep it as you described#[cfg(unix)] let file = File::from_raw_fd(the_argument); #[cfg(windows)] let file = File::from_raw_handle(the_argumet);
alexcrichton commented on issue #7001:
All I can really offer here is my own personal opinion and preference. My preference is that the types of the argument reflect what the system uses, which in C is
int
on Unix (notint32_t
) andHANDLE
on Windows. The Rust version of those isRaw*
in the standard library. I don't have a strong preference on whether there's two different names for the function, but I think it's reasonable to have the same symbol with a platform-specific signature, meaning just one function with different types depending on the platform.
gaukas commented on issue #7001:
Now using
RawFd
andRawHandle
.On C's side:
Unix:
WASM_API_EXTERN void wasmtime_context_insert_file(wasmtime_context_t *context, uint32_t guest_fd, int host_fd, uint32_t access_mode); WASM_API_EXTERN wasmtime_error_t *wasmtime_context_push_file(wasmtime_context_t *context, int host_fd, uint32_t access_mode, uint32_t *guest_fd);
Windows:
WASM_API_EXTERN void wasmtime_context_insert_file(wasmtime_context_t *context, uint32_t guest_fd, void *host_handle, uint32_t access_mode); WASM_API_EXTERN wasmtime_error_t *wasmtime_context_push_file(wasmtime_context_t *context, void *host_handle, uint32_t access_mode, uint32_t *guest_fd);
Tried to use
HANDLE
from<winnt.h>
but it turns out CGO won't even work, throws a bunch of errors such aserror: unknown type name 'DWORD' error: unknown type name 'WORD'
Defining
typedef void *HANDLE
instore.h
didn't work out for me either, I failed to figure out a way to convert theuintptr
into the self-definedC.HANDLE
type. Casting intoC.HANDLE()
simply does not work. Therefore, here I choose to stick withvoid*
in C-API, since it is just its true identity. Please feel free to push any further changes, but I guess that will be all I have for this.
gaukas commented on issue #7001:
I guess it is time for someone from
bytecodealliance
to deal with the PR, if you want to make a change, do it. I allowed changes by maintainers.I already got bored of this low communication efficiency and have much more prioritized work to do. And all I wanted could already be achieved with my fork, and for code style issue, please, no one can reach the agreement with others so push changes rather than suggesting one. I'm pissed and I hope I made that obvious.
gaukas commented on issue #7001:
![image](https://github.com/bytecodealliance/wasmtime/assets/9084527/bfad862e-3209-4cae-931f-92128357dcc0)
alexcrichton commented on issue #7001:
Ok thanks for the initial effort here. I'm going to close this and others can pick this up if they're interseted. If you feel inspired in the future feel free to reopen and/or resubmit as well.
Last updated: Nov 22 2024 at 16:03 UTC