]> git.lizzy.rs Git - rust.git/blobdiff - src/shims/os_str.rs
`rustc_target::abi::LayoutOf` -> `rustc_middle::ty::layout::LayoutOf`
[rust.git] / src / shims / os_str.rs
index df3c7a5ad99c430090c152a935d31facd59a3212..ede29d04d6bc9f4513e50a288a45bc684815b60f 100644 (file)
@@ -9,12 +9,13 @@
 #[cfg(windows)]
 use std::os::windows::ffi::{OsStrExt, OsStringExt};
 
-use rustc_target::abi::LayoutOf;
+use rustc_middle::ty::layout::LayoutOf;
+use rustc_target::abi::{Align, Size};
 
 use crate::*;
 
 /// Represent how path separator conversion should be done.
-pub enum Pathconversion {
+pub enum PathConversion {
     HostToTarget,
     TargetToHost,
 }
@@ -48,22 +49,27 @@ pub fn bytes_to_os_str<'a, 'tcx>(bytes: &'a [u8]) -> InterpResult<'tcx, &'a OsSt
 
 impl<'mir, 'tcx: 'mir> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
 pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
-
     /// Helper function to read an OsString from a null-terminated sequence of bytes, which is what
     /// the Unix APIs usually handle.
-    fn read_os_str_from_c_str<'a>(&'a self, scalar: Scalar<Tag>) -> InterpResult<'tcx, &'a OsStr>
+    fn read_os_str_from_c_str<'a>(
+        &'a self,
+        ptr: Pointer<Option<Tag>>,
+    ) -> InterpResult<'tcx, &'a OsStr>
     where
         'tcx: 'a,
         'mir: 'a,
     {
         let this = self.eval_context_ref();
-        let bytes = this.memory.read_c_str(scalar)?;
+        let bytes = this.read_c_str(ptr)?;
         bytes_to_os_str(bytes)
     }
 
     /// Helper function to read an OsString from a 0x0000-terminated sequence of u16,
     /// which is what the Windows APIs usually handle.
-    fn read_os_str_from_wide_str<'a>(&'a self, scalar: Scalar<Tag>) -> InterpResult<'tcx, OsString>
+    fn read_os_str_from_wide_str<'a>(
+        &'a self,
+        ptr: Pointer<Option<Tag>>,
+    ) -> InterpResult<'tcx, OsString>
     where
         'tcx: 'a,
         'mir: 'a,
@@ -79,7 +85,7 @@ pub fn u16vec_to_osstring<'tcx, 'a>(u16_vec: Vec<u16>) -> InterpResult<'tcx, OsS
             Ok(s.into())
         }
 
-        let u16_vec = self.eval_context_ref().memory.read_wide_str(scalar)?;
+        let u16_vec = self.eval_context_ref().read_wide_str(ptr)?;
         u16vec_to_osstring(u16_vec)
     }
 
@@ -91,10 +97,9 @@ pub fn u16vec_to_osstring<'tcx, 'a>(u16_vec: Vec<u16>) -> InterpResult<'tcx, OsS
     fn write_os_str_to_c_str(
         &mut self,
         os_str: &OsStr,
-        scalar: Scalar<Tag>,
+        ptr: Pointer<Option<Tag>>,
         size: u64,
     ) -> InterpResult<'tcx, (bool, u64)> {
-
         let bytes = os_str_to_bytes(os_str)?;
         // If `size` is smaller or equal than `bytes.len()`, writing `bytes` plus the required null
         // terminator to memory using the `ptr` pointer would cause an out-of-bounds access.
@@ -104,7 +109,7 @@ fn write_os_str_to_c_str(
         }
         self.eval_context_mut()
             .memory
-            .write_bytes(scalar, bytes.iter().copied().chain(iter::once(0u8)))?;
+            .write_bytes(ptr, bytes.iter().copied().chain(iter::once(0u8)))?;
         Ok((true, string_length))
     }
 
@@ -116,7 +121,7 @@ fn write_os_str_to_c_str(
     fn write_os_str_to_wide_str(
         &mut self,
         os_str: &OsStr,
-        scalar: Scalar<Tag>,
+        ptr: Pointer<Option<Tag>>,
         size: u64,
     ) -> InterpResult<'tcx, (bool, u64)> {
         #[cfg(windows)]
@@ -138,15 +143,24 @@ fn os_str_to_u16vec<'tcx>(os_str: &OsStr) -> InterpResult<'tcx, Vec<u16>> {
         // If `size` is smaller or equal than `bytes.len()`, writing `bytes` plus the required
         // 0x0000 terminator to memory would cause an out-of-bounds access.
         let string_length = u64::try_from(u16_vec.len()).unwrap();
-        if size <= string_length {
+        let string_length = string_length.checked_add(1).unwrap();
+        if size < string_length {
             return Ok((false, string_length));
         }
 
         // Store the UTF-16 string.
-        self.eval_context_mut()
+        let size2 = Size::from_bytes(2);
+        let this = self.eval_context_mut();
+        let mut alloc = this
             .memory
-            .write_u16s(scalar, u16_vec.into_iter().chain(iter::once(0x0000)))?;
-        Ok((true, string_length))
+            .get_mut(ptr, size2 * string_length, Align::from_bytes(2).unwrap())?
+            .unwrap(); // not a ZST, so we will get a result
+        for (offset, wchar) in u16_vec.into_iter().chain(iter::once(0x0000)).enumerate() {
+            let offset = u64::try_from(offset).unwrap();
+            alloc
+                .write_scalar(alloc_range(size2 * offset, size2), Scalar::from_u16(wchar).into())?;
+        }
+        Ok((true, string_length - 1))
     }
 
     /// Allocate enough memory to store the given `OsStr` as a null-terminated sequence of bytes.
@@ -154,14 +168,14 @@ fn alloc_os_str_as_c_str(
         &mut self,
         os_str: &OsStr,
         memkind: MemoryKind<MiriMemoryKind>,
-    ) -> Pointer<Tag> {
+    ) -> InterpResult<'tcx, Pointer<Option<Tag>>> {
         let size = u64::try_from(os_str.len()).unwrap().checked_add(1).unwrap(); // Make space for `0` terminator.
         let this = self.eval_context_mut();
 
         let arg_type = this.tcx.mk_array(this.tcx.types.u8, size);
-        let arg_place = this.allocate(this.layout_of(arg_type).unwrap(), memkind);
+        let arg_place = this.allocate(this.layout_of(arg_type).unwrap(), memkind)?;
         assert!(self.write_os_str_to_c_str(os_str, arg_place.ptr, size).unwrap().0);
-        arg_place.ptr.assert_ptr()
+        Ok(arg_place.ptr)
     }
 
     /// Allocate enough memory to store the given `OsStr` as a null-terminated sequence of `u16`.
@@ -169,37 +183,43 @@ fn alloc_os_str_as_wide_str(
         &mut self,
         os_str: &OsStr,
         memkind: MemoryKind<MiriMemoryKind>,
-    ) -> Pointer<Tag> {
+    ) -> InterpResult<'tcx, Pointer<Option<Tag>>> {
         let size = u64::try_from(os_str.len()).unwrap().checked_add(1).unwrap(); // Make space for `0x0000` terminator.
         let this = self.eval_context_mut();
 
         let arg_type = this.tcx.mk_array(this.tcx.types.u16, size);
-        let arg_place = this.allocate(this.layout_of(arg_type).unwrap(), memkind);
+        let arg_place = this.allocate(this.layout_of(arg_type).unwrap(), memkind)?;
         assert!(self.write_os_str_to_wide_str(os_str, arg_place.ptr, size).unwrap().0);
-        arg_place.ptr.assert_ptr()
+        Ok(arg_place.ptr)
     }
 
     /// Read a null-terminated sequence of bytes, and perform path separator conversion if needed.
-    fn read_path_from_c_str<'a>(&'a self, scalar: Scalar<Tag>) -> InterpResult<'tcx, Cow<'a, Path>>
+    fn read_path_from_c_str<'a>(
+        &'a self,
+        ptr: Pointer<Option<Tag>>,
+    ) -> InterpResult<'tcx, Cow<'a, Path>>
     where
         'tcx: 'a,
         'mir: 'a,
     {
         let this = self.eval_context_ref();
-        let os_str = this.read_os_str_from_c_str(scalar)?;
+        let os_str = this.read_os_str_from_c_str(ptr)?;
 
-        Ok(match this.convert_path_separator(Cow::Borrowed(os_str), Pathconversion::TargetToHost) {
+        Ok(match this.convert_path_separator(Cow::Borrowed(os_str), PathConversion::TargetToHost) {
             Cow::Borrowed(x) => Cow::Borrowed(Path::new(x)),
             Cow::Owned(y) => Cow::Owned(PathBuf::from(y)),
         })
     }
 
     /// Read a null-terminated sequence of `u16`s, and perform path separator conversion if needed.
-    fn read_path_from_wide_str(&self, scalar: Scalar<Tag>) -> InterpResult<'tcx, PathBuf> {
+    fn read_path_from_wide_str(&self, ptr: Pointer<Option<Tag>>) -> InterpResult<'tcx, PathBuf> {
         let this = self.eval_context_ref();
-        let os_str = this.read_os_str_from_wide_str(scalar)?;
+        let os_str = this.read_os_str_from_wide_str(ptr)?;
 
-        Ok(this.convert_path_separator(Cow::Owned(os_str), Pathconversion::TargetToHost).into_owned().into())
+        Ok(this
+            .convert_path_separator(Cow::Owned(os_str), PathConversion::TargetToHost)
+            .into_owned()
+            .into())
     }
 
     /// Write a Path to the machine memory (as a null-terminated sequence of bytes),
@@ -207,12 +227,13 @@ fn read_path_from_wide_str(&self, scalar: Scalar<Tag>) -> InterpResult<'tcx, Pat
     fn write_path_to_c_str(
         &mut self,
         path: &Path,
-        scalar: Scalar<Tag>,
+        ptr: Pointer<Option<Tag>>,
         size: u64,
     ) -> InterpResult<'tcx, (bool, u64)> {
         let this = self.eval_context_mut();
-        let os_str = this.convert_path_separator(Cow::Borrowed(path.as_os_str()), Pathconversion::HostToTarget);
-        this.write_os_str_to_c_str(&os_str, scalar, size)
+        let os_str = this
+            .convert_path_separator(Cow::Borrowed(path.as_os_str()), PathConversion::HostToTarget);
+        this.write_os_str_to_c_str(&os_str, ptr, size)
     }
 
     /// Write a Path to the machine memory (as a null-terminated sequence of `u16`s),
@@ -220,21 +241,22 @@ fn write_path_to_c_str(
     fn write_path_to_wide_str(
         &mut self,
         path: &Path,
-        scalar: Scalar<Tag>,
+        ptr: Pointer<Option<Tag>>,
         size: u64,
     ) -> InterpResult<'tcx, (bool, u64)> {
         let this = self.eval_context_mut();
-        let os_str = this.convert_path_separator(Cow::Borrowed(path.as_os_str()), Pathconversion::HostToTarget);
-        this.write_os_str_to_wide_str(&os_str, scalar, size)
+        let os_str = this
+            .convert_path_separator(Cow::Borrowed(path.as_os_str()), PathConversion::HostToTarget);
+        this.write_os_str_to_wide_str(&os_str, ptr, size)
     }
 
     fn convert_path_separator<'a>(
         &self,
         os_str: Cow<'a, OsStr>,
-        direction: Pathconversion,
+        direction: PathConversion,
     ) -> Cow<'a, OsStr> {
         let this = self.eval_context_ref();
-        let target_os = &this.tcx.sess.target.target.target_os;
+        let target_os = &this.tcx.sess.target.os;
         #[cfg(windows)]
         return if target_os == "windows" {
             // Windows-on-Windows, all fine.
@@ -242,8 +264,8 @@ fn convert_path_separator<'a>(
         } else {
             // Unix target, Windows host.
             let (from, to) = match direction {
-                Pathconversion::HostToTarget => ('\\', '/'),
-                Pathconversion::TargetToHost => ('/', '\\'),
+                PathConversion::HostToTarget => ('\\', '/'),
+                PathConversion::TargetToHost => ('/', '\\'),
             };
             let converted = os_str
                 .encode_wide()
@@ -255,8 +277,8 @@ fn convert_path_separator<'a>(
         return if target_os == "windows" {
             // Windows target, Unix host.
             let (from, to) = match direction {
-                Pathconversion::HostToTarget => ('/', '\\'),
-                Pathconversion::TargetToHost => ('\\', '/'),
+                PathConversion::HostToTarget => ('/', '\\'),
+                PathConversion::TargetToHost => ('\\', '/'),
             };
             let converted = os_str
                 .as_bytes()
@@ -270,4 +292,3 @@ fn convert_path_separator<'a>(
         };
     }
 }
-