summary refs log tree commit diff
path: root/disk
diff options
context:
space:
mode:
authorDaniel Verkamp <dverkamp@chromium.org>2019-11-13 09:39:41 -0800
committerCommit Bot <commit-bot@chromium.org>2019-11-27 21:22:41 +0000
commit4cc280bcff161e08a44c83fbd5384e324b8c3585 (patch)
tree0e8413a1ec9696faeb8d5efb995fc1636fd466c7 /disk
parent624c51bee3a8356c3e4bbdd6aef21ea45b0f4d59 (diff)
downloadcrosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.tar
crosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.tar.gz
crosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.tar.bz2
crosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.tar.lz
crosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.tar.xz
crosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.tar.zst
crosvm-4cc280bcff161e08a44c83fbd5384e324b8c3585.zip
disk: add get_len() to eliminate need for Seek
This new trait allows DiskFile implementors to provide the length of the
file directly rather than using SeekFrom::End with seek().

BUG=None
TEST=./build_test
TEST=Boot Termina in crosvm

Change-Id: I9447ebb43dbd5fbb32a3a6b6d2fc969b9406cdbc
Signed-off-by: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1913961
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Dylan Reid <dgreid@chromium.org>
Diffstat (limited to 'disk')
-rw-r--r--disk/src/composite.rs34
-rw-r--r--disk/src/disk.rs7
2 files changed, 17 insertions, 24 deletions
diff --git a/disk/src/composite.rs b/disk/src/composite.rs
index da0fe07..bd21b33 100644
--- a/disk/src/composite.rs
+++ b/disk/src/composite.rs
@@ -3,7 +3,6 @@
 // found in the LICENSE file.
 
 use std::cmp::{max, min};
-use std::convert::TryFrom;
 use std::fmt::{self, Display};
 use std::fs::{File, OpenOptions};
 use std::io::{self, ErrorKind, Read, Seek, SeekFrom};
@@ -14,7 +13,9 @@ use crate::{create_disk_file, DiskFile, ImageType};
 use data_model::VolatileSlice;
 use protos::cdisk_spec;
 use remain::sorted;
-use sys_util::{AsRawFds, FileReadWriteAtVolatile, FileSetLen, FileSync, PunchHole, WriteZeroesAt};
+use sys_util::{
+    AsRawFds, FileGetLen, FileReadWriteAtVolatile, FileSetLen, FileSync, PunchHole, WriteZeroesAt,
+};
 
 #[sorted]
 #[derive(Debug)]
@@ -68,7 +69,6 @@ impl ComponentDiskPart {
 /// and not overlapping.
 pub struct CompositeDiskFile {
     component_disks: Vec<ComponentDiskPart>,
-    cursor_location: u64,
 }
 
 fn ranges_overlap(a: &Range<u64>, b: &Range<u64>) -> bool {
@@ -109,7 +109,6 @@ impl CompositeDiskFile {
         }
         Ok(CompositeDiskFile {
             component_disks: disks,
-            cursor_location: 0,
         })
     }
 
@@ -211,6 +210,12 @@ impl CompositeDiskFile {
     }
 }
 
+impl FileGetLen for CompositeDiskFile {
+    fn get_len(&self) -> io::Result<u64> {
+        Ok(self.length())
+    }
+}
+
 impl FileSetLen for CompositeDiskFile {
     fn set_len(&self, _len: u64) -> io::Result<()> {
         Err(io::Error::new(ErrorKind::Other, "unsupported operation"))
@@ -287,19 +292,6 @@ impl PunchHole for CompositeDiskFile {
     }
 }
 
-impl Seek for CompositeDiskFile {
-    fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
-        let cursor_location = match pos {
-            SeekFrom::Start(offset) => Ok(offset),
-            SeekFrom::End(offset) => u64::try_from(self.length() as i64 + offset),
-            SeekFrom::Current(offset) => u64::try_from(self.cursor_location as i64 + offset),
-        }
-        .map_err(|e| io::Error::new(ErrorKind::InvalidData, e))?;
-        self.cursor_location = cursor_location;
-        Ok(cursor_location)
-    }
-}
-
 impl WriteZeroesAt for CompositeDiskFile {
     fn write_zeroes_at(&mut self, offset: u64, length: usize) -> io::Result<usize> {
         let cursor_location = offset;
@@ -349,7 +341,7 @@ mod tests {
     }
 
     #[test]
-    fn seek_to_end() {
+    fn get_len() {
         let file1: File = SharedMemory::new(None).unwrap().into();
         let file2: File = SharedMemory::new(None).unwrap().into();
         let disk_part1 = ComponentDiskPart {
@@ -362,9 +354,9 @@ mod tests {
             offset: 100,
             length: 100,
         };
-        let mut composite = CompositeDiskFile::new(vec![disk_part1, disk_part2]).unwrap();
-        let location = composite.seek(SeekFrom::End(0)).unwrap();
-        assert_eq!(location, 200);
+        let composite = CompositeDiskFile::new(vec![disk_part1, disk_part2]).unwrap();
+        let len = composite.get_len().unwrap();
+        assert_eq!(len, 200);
     }
 
     #[test]
diff --git a/disk/src/disk.rs b/disk/src/disk.rs
index a9c44c6..c520d13 100644
--- a/disk/src/disk.rs
+++ b/disk/src/disk.rs
@@ -11,7 +11,8 @@ use libc::EINVAL;
 use qcow::{QcowFile, QCOW_MAGIC};
 use remain::sorted;
 use sys_util::{
-    AsRawFds, FileReadWriteAtVolatile, FileSetLen, FileSync, PunchHole, SeekHole, WriteZeroesAt,
+    AsRawFds, FileGetLen, FileReadWriteAtVolatile, FileSetLen, FileSync, PunchHole, SeekHole,
+    WriteZeroesAt,
 };
 
 #[cfg(feature = "composite-disk")]
@@ -41,10 +42,10 @@ pub type Result<T> = std::result::Result<T, Error>;
 #[rustfmt::skip] // rustfmt won't wrap the long list of trait bounds.
 pub trait DiskFile:
     FileSetLen
+    + FileGetLen
     + FileSync
     + FileReadWriteAtVolatile
     + PunchHole
-    + Seek
     + WriteZeroesAt
     + Send
     + AsRawFds
@@ -52,10 +53,10 @@ pub trait DiskFile:
 }
 impl<
         D: FileSetLen
+            + FileGetLen
             + FileSync
             + PunchHole
             + FileReadWriteAtVolatile
-            + Seek
             + WriteZeroesAt
             + Send
             + AsRawFds,