You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fnmain(){let result = std::fs::create_dir("/tmp/does_not_exist/new_dir_name");println!("{:?}", result);}
With the test binary built:
export LANG=zh_CN; ./target/debug/binary_name
This crash was encountered on a "stock" Fedora 36 installation. The issue is highly dependent on how your Linux system's locale is configured. It seems that it is up to the distro to configure which locale encoding set is used, in this specific case for Chinese. Given that GB-2312 used to be a mandated standard, it is unsurprising to see it in the wild.
I expected to see this happen: The error message would be printed in any form.
Instead, this happened: A panic kills the app and no error is printed.
I am not sure what the "most correct" solution is for the standard library given that all Rust strings must be UTF-8, but I think that it would be ideal to not crash a thread (or app, depending on the unwind mode) if an end-user has their locale set to something that uses a non-unicode representation.
… r=thomcc
Recover error strings on Unix from_lossy_utf8
Some language settings can result in unreliable UTF-8 being produced.
This can result in failing to emit the error string, panicking instead.
from_lossy_utf8 allows us to assume these strings usually will be fine.
This fixesrust-lang#99535.
I tried this code:
With the test binary built:
This crash was encountered on a "stock" Fedora 36 installation. The issue is highly dependent on how your Linux system's locale is configured. It seems that it is up to the distro to configure which locale encoding set is used, in this specific case for Chinese. Given that GB-2312 used to be a mandated standard, it is unsurprising to see it in the wild.
I expected to see this happen: The error message would be printed in any form.
Instead, this happened: A panic kills the app and no error is printed.
AFAICT, this error comes from an assumption that the standard library made to assume all characters returned by
strerror_r
will use UTF-8 encoding: https://github.com/rust-lang/rust/blob/master/library/std/src/sys/unix/os.rs#L113-L130If you look at other larger software projects and how they use
strerror_r
, in this case Chromium and Firefox:I am not sure what the "most correct" solution is for the standard library given that all Rust strings must be UTF-8, but I think that it would be ideal to not crash a thread (or app, depending on the unwind mode) if an end-user has their locale set to something that uses a non-unicode representation.
Meta
rustc --version --verbose
:Backtrace
The text was updated successfully, but these errors were encountered: