-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trusty: Implement write_vectored
for stdio
#138876
Conversation
r? @Noratrieb rustbot has assigned @Noratrieb. Use |
@randomPoison I have some questions on Trusty's current state of stdio and std: Why use Is there a reason why Do you plan on implementing a |
c64319f
to
c392f50
Compare
Right, good catch. We need to update the reference to list |
library/std/src/sys/stdio/trusty.rs
Outdated
@@ -58,20 +76,43 @@ pub fn panic_output() -> Option<impl io::Write> { | |||
Some(Stderr) | |||
} | |||
|
|||
fn _write(fd: i32, message: &[u8]) -> io::Result<usize> { | |||
let mut iov = libc::iovec { iov_base: message.as_ptr() as *mut _, iov_len: message.len() }; | |||
// FIXME: This should be in libc with a proper value. Several platforms use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Afaik Trusty does not have a limit for this (yet).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps not a constant that's exposed to users, but is there a limit in the implementation? If so, I want to make sure to avoid issues like found in #138879.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not that I know of, but 1024 should be safe to use. The kernel code implements an infinite iterator over the user iovec, and avoids copying the whole array.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In that case, I'll change it to libc::c_int::MAX
, since that's what the API limits it to. We don't need to limit it to something arbitrarily lower. Windows does it like that, for example.
That one seems to come from https://r.android.com/2124958 (@randomPoison can correct me). Maybe it needed to be different there? |
This change looks fine to me, but we should test it. We'll need to rebuild the toolchain with this change, and see if Trusty prints stuff to |
I didn't write the original implementation of the
I hadn't planned on it (because I wasn't aware of that approach), but if this would simplify the implementation or cut down on duplication between other platforms then it's probably worth doing. Let me look at it a bit more and see how much effort it would be to put up a PR. |
We discussed this elsewhere and unfortunately we can't actually test this change in the way we want due to the details of how we pull Rust into Android. We'll have to land the PR here and then wait until we later import it into Android, at which point we can do testing. So testing shouldn't block this PR, and we'll come back and fix any issues if we later find them. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good other than the one outstanding question about IOV_MAX
.
c392f50
to
ab3be66
Compare
Since #138875 does not conflict with this, I have dropped its changes from this PR. Keep in mind, though, that you'll need it for now to fix the build for Trusty if you want to build this PR. I have also addressed the |
Currently, `write` for stdout and stderr on Trusty is implemented with the semantics of `write_all`. Instead, call the underlying syscall only once in `write` and use the default implementation of `write_all` like other platforms. Also, implement `write_vectored` by adding support for `IoSlice`. Refactor stdin to reuse the unsupported type like rust-lang#136769.
ab3be66
to
41b0465
Compare
I decided to drop the |
write_vectored
and write_all
for stdio write_vectored
for stdio
@bors r+ |
…llaumeGomez Rollup of 6 pull requests Successful merges: - rust-lang#138562 (Optimize slice {Chunks,Windows}::nth) - rust-lang#138876 (Trusty: Implement `write_vectored` for stdio ) - rust-lang#139072 (Add `slice::align_to_uninit_mut`) - rust-lang#139367 (Add `*_value` methods to proc_macro lib) - rust-lang#139391 (Check if merged attributes list is empty in expr) - rust-lang#139414 (Fix typo in `RawList`'s documentation) r? `@ghost` `@rustbot` modify labels: rollup
Thanks, Nora! |
Rollup merge of rust-lang#138876 - thaliaarchi:trusty-stdio, r=Noratrieb Trusty: Implement `write_vectored` for stdio Currently, `write` for stdout and stderr on Trusty is implemented with the semantics of `write_all`. Instead, call the underlying syscall only once in `write` and use the default implementation of `write_all` like other platforms. Also, implement `write_vectored` by adding support for `IoSlice`. Refactor stdin to reuse the unsupported type like rust-lang#136769. It requires rust-lang#138875 to fix the build for Trusty, though they do not conflict and can merge in either order. cc `@randomPoison`
Currently,
write
for stdout and stderr on Trusty is implemented with the semantics ofwrite_all
. Instead, call the underlying syscall only once inwrite
and use the default implementation ofwrite_all
like other platforms. Also, implementwrite_vectored
by adding support forIoSlice
.Refactor stdin to reuse the unsupported type like #136769.
It requires #138875 to fix the build for Trusty, though they do not conflict and can merge in either order.
cc @randomPoison