mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-09 00:00:08 +02:00
io: fix take when using evil reader (#4428)
This commit is contained in:
@@ -84,9 +84,14 @@ impl<R: AsyncRead> AsyncRead for Take<R> {
|
|||||||
return Poll::Ready(Ok(()));
|
return Poll::Ready(Ok(()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let buf_ptr = buf.filled().as_ptr();
|
||||||
|
|
||||||
let me = self.project();
|
let me = self.project();
|
||||||
let mut b = buf.take(*me.limit_ as usize);
|
let mut b = buf.take(*me.limit_ as usize);
|
||||||
|
|
||||||
ready!(me.inner.poll_read(cx, &mut b))?;
|
ready!(me.inner.poll_read(cx, &mut b))?;
|
||||||
|
assert_eq!(b.filled().as_ptr(), buf_ptr);
|
||||||
|
|
||||||
let n = b.filled().len();
|
let n = b.filled().len();
|
||||||
|
|
||||||
// We need to update the original ReadBuf
|
// We need to update the original ReadBuf
|
||||||
|
|||||||
+29
-1
@@ -1,7 +1,9 @@
|
|||||||
#![warn(rust_2018_idioms)]
|
#![warn(rust_2018_idioms)]
|
||||||
#![cfg(feature = "full")]
|
#![cfg(feature = "full")]
|
||||||
|
|
||||||
use tokio::io::AsyncReadExt;
|
use std::pin::Pin;
|
||||||
|
use std::task::{Context, Poll};
|
||||||
|
use tokio::io::{self, AsyncRead, AsyncReadExt, ReadBuf};
|
||||||
use tokio_test::assert_ok;
|
use tokio_test::assert_ok;
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
@@ -14,3 +16,29 @@ async fn take() {
|
|||||||
assert_eq!(n, 4);
|
assert_eq!(n, 4);
|
||||||
assert_eq!(&buf, &b"hell\0\0"[..]);
|
assert_eq!(&buf, &b"hell\0\0"[..]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct BadReader;
|
||||||
|
|
||||||
|
impl AsyncRead for BadReader {
|
||||||
|
fn poll_read(
|
||||||
|
self: Pin<&mut Self>,
|
||||||
|
_cx: &mut Context<'_>,
|
||||||
|
read_buf: &mut ReadBuf<'_>,
|
||||||
|
) -> Poll<io::Result<()>> {
|
||||||
|
let vec = vec![0; 10];
|
||||||
|
|
||||||
|
let mut buf = ReadBuf::new(vec.leak());
|
||||||
|
buf.put_slice(&[123; 10]);
|
||||||
|
*read_buf = buf;
|
||||||
|
|
||||||
|
Poll::Ready(Ok(()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
#[should_panic]
|
||||||
|
async fn bad_reader_fails() {
|
||||||
|
let mut buf = Vec::with_capacity(10);
|
||||||
|
|
||||||
|
BadReader.take(10).read_buf(&mut buf).await.unwrap();
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user