TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: I built a Rust crate for running unsafe code safely

113 pointsby braxxoxabout 1 month ago

19 comments

woodruffwabout 1 month ago
I don&#x27;t think this meets the definition of &quot;safe&quot; in &quot;safe&quot; Rust: &quot;safe&quot; doesn&#x27;t just mean &quot;won&#x27;t crash due to spatial memory errors,&quot; it means that the code is <i>in fact</i> spatially and temporally memory safe.<p>In other words: this won&#x27;t detect memory unsafety that doesn&#x27;t result in an abnormal exit or other detectable fault. If I&#x27;m writing an exploit, my entire goal is to perform memory corruption <i>without</i> causing a fault; that&#x27;s why Rust&#x27;s safety property is much stronger than crash-freeness.
评论 #43602444 未加载
评论 #43617278 未加载
评论 #43602298 未加载
nextaccounticabout 1 month ago
There <i>is</i> a way to sandbox native code without forking to a new process, and it looks like this<p><a href="https:&#x2F;&#x2F;hacks.mozilla.org&#x2F;2020&#x2F;02&#x2F;securing-firefox-with-webassembly&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hacks.mozilla.org&#x2F;2020&#x2F;02&#x2F;securing-firefox-with-weba...</a><p>Firefox employs processes for sandboxing but for small components they are not worth the overhead. For those they employed this curious idea: first compile the potentially unsafe code to wasm (any other VM would work), then compile the wasm code to C (using the wasm2c tool). Then use this new C source normally in your program.<p>All UB in the original code becomes logical bugs in the wasm, that can output incorrect values but not corrupt memory or do things that UB can do. Firefox does this to encapsulate C code, but it can be done with Rust too
评论 #43604673 未加载
评论 #43603531 未加载
评论 #43603372 未加载
destroycomabout 1 month ago
This isn&#x27;t mentioned anywhere on the page, but fork is generally not a great API for these kinds of things. In a multi-threaded application, any code between the fork and exec syscalls should be async-signal-safe. Since the memory is replicated in full at the time of the call, the current state of mutexes is also replicated and if some thread was holding them at the time, there is a risk of a deadlock. A simple print! or anything that allocates memory can lead to a freeze. There&#x27;s also an issue of user-space buffers, again printing something may write to a user-space buffer that, if not flushed, will be lost after the callback completes.
pjmlpabout 1 month ago
Rather design the application from the start to use multiple processes, OS IPC and actual OS sandboxing APIs.<p>Pseudo sandboxing on the fly is an old idea and with its own issues, as proven by classical UNIX approach to launching daemons.
评论 #43602471 未加载
wavemodeabout 1 month ago
If you can afford to sacrifice that much performance just to run some potentially unsafe code, then you can probably afford to not be writing Rust in the first place and instead use a garbage-collected language.
评论 #43602887 未加载
评论 #43602756 未加载
djha-skinabout 1 month ago
This is cool from a theoretical perspective, but `fork()` can be prohibitively expensive, at least on the hot path. This is a cool tool that should be used with care.
评论 #43601698 未加载
评论 #43601892 未加载
slashdevabout 1 month ago
I&#x27;d love to know what horrible library &#x2F; code the author was using where sandboxing it like this seemed like the best alternative.
Svetlitskiabout 1 month ago
This is likely to violate async-signal-safety [1] in any non-trivial program, unless used with extreme care. Running code in between a fork() and an exec() is fraught with peril; it&#x27;s not hard to end up in a situation where you deadlock because you forked a multi-threaded process where one of the existing threads held a lock at the time of forking, among other hazards.<p>[1] <a href="https:&#x2F;&#x2F;man7.org&#x2F;linux&#x2F;man-pages&#x2F;man7&#x2F;signal-safety.7.html" rel="nofollow">https:&#x2F;&#x2F;man7.org&#x2F;linux&#x2F;man-pages&#x2F;man7&#x2F;signal-safety.7.html</a>
评论 #43617262 未加载
null_investorabout 1 month ago
Forking and this package can be useful if you know that the unsafe code is really unsafe and have no hope of making it better.<p>But I wouldn&#x27;t use this often. I&#x27;d be willing to bet that you&#x27;d lose all performance benefits of using Rust versus something like Python or Ruby that uses forking extensively for parallelism.
评论 #43602223 未加载
dijitabout 1 month ago
this seems like a good place to ask, I don’t write very much unsafe Rust code… but when I do, it’s because I’m calling the Win32 API.<p>Tools like valgrind do not work on windows, and I am nowhere near smart enough to know the entire layout of memory that should exist.<p>When using Windows and calling system system functions, there’s a lot of casting involved; to convert wide characters and DWORDS to rust primitives for example. And given that I don’t have a good debugging situation, I’m terrified that I’m corrupting or leaking memory.<p>does anyone know any good tools that work on windows to help me out here?
评论 #43602430 未加载
评论 #43601778 未加载
评论 #43607717 未加载
TheDongabout 1 month ago
This also means the function might not do what you want, i.e. if it takes a `&amp;mut T` argument, that argument can&#x27;t actually be mutated, and anything that relies on interior mutability, even if it&#x27;s not a mut argument, also won&#x27;t work.<p>Rust allows memory-impure things, like interior mutability of arguments, so you can get different (i.e. incorrect) results when using this to run otherwise fine rust code.<p>For example:<p><pre><code> fn some_fn(x: &amp;mut i32) { *x = 2; } fn main() { let mux x = 1; mem_isolate::execute_in_isolated_process(|| { some_fn(&amp;mut x); }).unwrap(); println!(&quot;{x}&quot;); &#x2F;&#x2F; prints &#x27;1&#x27; even though without &#x27;mem_isolate&#x27; this would be 2 }</code></pre>
corankabout 1 month ago
&gt; It forces functions to be memory pure (pure with respect to memory), even if they aren&#x27;t.<p>What if the unsafe code is not supposed to be pure but mutates some memory? For example, does this allow implementing a doubly-linked list?
jesprenjabout 1 month ago
Why use a pipe to communicate instead of shared memory?
评论 #43603289 未加载
kelnosabout 1 month ago
Please please please add a big huge warning to your crate that it should never be used in multi-threaded programs. fork() is not safe when there is more than one thread present, as the child process can easily deadlock (or worse) if the fork() happens at just the wrong time with respect to what other threads are doing.
评论 #43617269 未加载
syrusakbaryabout 1 month ago
This is super interesting! I would be very curious to see how we can get into even more safety when running WebAssembly in Wasmer with this crate (similar to V8 isolates).<p>Awesome work!
cryptonectorabout 1 month ago
If you want this to be fast when used in processes with large resident set sizes create a thread and there use `vfork()` rather than `fork()`.
m00dyabout 1 month ago
&gt;&gt;We call this trick the &quot;fork and free&quot; pattern. It&#x27;s pretty nifty.<p>It should be called &quot;fork and see&quot; pattern instead :D
评论 #43606095 未加载
teknopaulabout 1 month ago
Hammer, nut.<p>Clever trick tho if you are in a bind.
loegabout 1 month ago
As a joke, it&#x27;s funny. Obviously you would not want to actually deploy this. I feel like most comments are too quick to criticize using this in prod (don&#x27;t!) and missing the point.
评论 #43605024 未加载