forked from Proxmox/proxmox
proxmox-io: fix sparse_copy
not copying sparsely on irregular read operations
In the uncommon circumstance that calls to `read()` end up reading any number of bytes other than 4096, the subsequently read bytes become misaligned, causing blocks of zeroes to be written unnecessarily. To illustrate, imagine you have a 12KiB file: [x][x][x][x][ ][ ][ ][ ][x][x][x][x] └──4096──┘ └──4096──┘ └──4096──┘ The first and last block are filled with some data, whereas the middle block is empty and will therefore result in only zeroes being read. In order for the empty block to be skipped with `seek()`, the entire buffer has to be filled with zeroes. If, for example, the first `read()` ends up putting only 3KiB into the buffer, the empty block in the middle won't be detected properly, as the buffer will now always contain some data. What results are four misaligned reads: [x][x][x][x][ ][ ][ ][ ][x][x][x][x] ├─────┘ ├────────┘ ├────────┘ │ 1 2 3 4 This is fixed by ensuring chunks of 4KiB are always read into the buffer, except when the last block is truncated. In order to prevent frequent small reads, the incoming reader is also buffered via `io::BufReader`. Signed-off-by: Max Carrara <m.carrara@proxmox.com>
This commit is contained in:
parent
e9499bbcf2
commit
8841b389e3
@ -1,7 +1,13 @@
|
|||||||
use std::io::{self, ErrorKind, Read, Seek, SeekFrom, Write};
|
use std::io::{self, BufReader, BufWriter, ErrorKind, Read, Seek, SeekFrom, Write};
|
||||||
|
|
||||||
#[cfg(feature = "tokio")]
|
#[cfg(feature = "tokio")]
|
||||||
use tokio::io::{AsyncRead, AsyncSeek, AsyncSeekExt, AsyncWrite, AsyncWriteExt};
|
use tokio::io::{
|
||||||
|
AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt, AsyncWrite, AsyncWriteExt,
|
||||||
|
BufReader as AsyncBufReader, BufWriter as AsyncBufWriter,
|
||||||
|
};
|
||||||
|
|
||||||
|
const CHUNK_SIZE: usize = 4096;
|
||||||
|
const BUF_SIZE: usize = 8192;
|
||||||
|
|
||||||
/// Efficiently check whether a byte slice contains only zeroes.
|
/// Efficiently check whether a byte slice contains only zeroes.
|
||||||
///
|
///
|
||||||
@ -45,19 +51,27 @@ pub fn sparse_copy<R: Read + ?Sized, W: Write + Seek + ?Sized>(
|
|||||||
reader: &mut R,
|
reader: &mut R,
|
||||||
writer: &mut W,
|
writer: &mut W,
|
||||||
) -> Result<SparseCopyResult, io::Error> {
|
) -> Result<SparseCopyResult, io::Error> {
|
||||||
let mut buf = crate::byte_buffer::ByteBuffer::with_capacity(4096);
|
let mut reader = BufReader::with_capacity(BUF_SIZE, reader);
|
||||||
|
let mut writer = BufWriter::with_capacity(BUF_SIZE, writer);
|
||||||
|
|
||||||
|
let mut buf: Vec<u8> = crate::vec::undefined(CHUNK_SIZE);
|
||||||
let mut written = 0;
|
let mut written = 0;
|
||||||
let mut seek_amount: i64 = 0;
|
let mut seek_amount: i64 = 0;
|
||||||
let mut seeked_last = false;
|
let mut seeked_last = false;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
buf.clear();
|
buf.clear();
|
||||||
let len = match buf.read_from(reader) {
|
let len = match reader
|
||||||
|
.by_ref()
|
||||||
|
.take(CHUNK_SIZE as u64)
|
||||||
|
.read_to_end(&mut buf)
|
||||||
|
{
|
||||||
Ok(len) => len,
|
Ok(len) => len,
|
||||||
Err(ref e) if e.kind() == ErrorKind::Interrupted => continue,
|
Err(ref e) if e.kind() == ErrorKind::Interrupted => continue,
|
||||||
Err(e) => return Err(e),
|
Err(e) => return Err(e),
|
||||||
};
|
};
|
||||||
|
|
||||||
if len > 0 && buffer_is_zero(&buf[..]) {
|
if len > 0 && buffer_is_zero(&buf[..len]) {
|
||||||
seek_amount += len as i64;
|
seek_amount += len as i64;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -70,7 +84,7 @@ pub fn sparse_copy<R: Read + ?Sized, W: Write + Seek + ?Sized>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len > 0 {
|
if len > 0 {
|
||||||
writer.write_all(&buf[..])?;
|
writer.write_all(&buf[..len])?;
|
||||||
written += len as u64;
|
written += len as u64;
|
||||||
seeked_last = false;
|
seeked_last = false;
|
||||||
} else {
|
} else {
|
||||||
@ -112,19 +126,26 @@ where
|
|||||||
R: AsyncRead + Unpin,
|
R: AsyncRead + Unpin,
|
||||||
W: AsyncWrite + AsyncSeek + Unpin,
|
W: AsyncWrite + AsyncSeek + Unpin,
|
||||||
{
|
{
|
||||||
let mut buf = crate::byte_buffer::ByteBuffer::with_capacity(4096);
|
let mut reader = AsyncBufReader::with_capacity(BUF_SIZE, reader);
|
||||||
|
let mut writer = AsyncBufWriter::with_capacity(BUF_SIZE, writer);
|
||||||
|
|
||||||
|
let mut buf: Vec<u8> = crate::vec::undefined(CHUNK_SIZE);
|
||||||
let mut written = 0;
|
let mut written = 0;
|
||||||
let mut seek_amount: i64 = 0;
|
let mut seek_amount: i64 = 0;
|
||||||
let mut seeked_last = false;
|
let mut seeked_last = false;
|
||||||
loop {
|
loop {
|
||||||
buf.clear();
|
buf.clear();
|
||||||
let len = match buf.read_from_async(reader).await {
|
let len = match (&mut reader)
|
||||||
|
.take(CHUNK_SIZE as u64)
|
||||||
|
.read_to_end(&mut buf)
|
||||||
|
.await
|
||||||
|
{
|
||||||
Ok(len) => len,
|
Ok(len) => len,
|
||||||
Err(ref e) if e.kind() == ErrorKind::Interrupted => continue,
|
Err(ref e) if e.kind() == ErrorKind::Interrupted => continue,
|
||||||
Err(e) => return Err(e),
|
Err(e) => return Err(e),
|
||||||
};
|
};
|
||||||
|
|
||||||
if len > 0 && buffer_is_zero(&buf[..]) {
|
if len > 0 && buffer_is_zero(&buf[..len]) {
|
||||||
seek_amount += len as i64;
|
seek_amount += len as i64;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -137,10 +158,12 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len > 0 {
|
if len > 0 {
|
||||||
writer.write_all(&buf[..]).await?;
|
writer.write_all(&buf[..len]).await?;
|
||||||
written += len as u64;
|
written += len as u64;
|
||||||
seeked_last = false;
|
seeked_last = false;
|
||||||
} else {
|
} else {
|
||||||
|
// buffer must be flushed before it goes out of scope
|
||||||
|
writer.flush().await?;
|
||||||
return Ok(SparseCopyResult {
|
return Ok(SparseCopyResult {
|
||||||
written,
|
written,
|
||||||
seeked_last,
|
seeked_last,
|
||||||
|
Loading…
Reference in New Issue
Block a user