2022-07-06 04:13:09 +00:00
|
|
|
use std::cmp::min;
|
2023-06-12 08:07:43 +00:00
|
|
|
use std::ffi::{CStr, FromBytesWithNulError, OsStr};
|
|
|
|
use std::fmt::{Arguments, Debug, Display, Formatter};
|
|
|
|
use std::ops::Deref;
|
|
|
|
use std::path::Path;
|
2023-05-26 06:45:38 +00:00
|
|
|
use std::str::Utf8Error;
|
2023-06-12 08:07:43 +00:00
|
|
|
use std::{fmt, io, slice, str};
|
2022-07-06 04:13:09 +00:00
|
|
|
|
2023-06-12 08:07:43 +00:00
|
|
|
use libc::c_char;
|
2023-05-26 06:45:38 +00:00
|
|
|
use thiserror::Error;
|
|
|
|
|
2023-06-21 01:17:26 +00:00
|
|
|
use crate::ffi;
|
|
|
|
|
2023-06-09 09:00:37 +00:00
|
|
|
pub fn copy_str<T: AsRef<[u8]>>(dest: &mut [u8], src: T) -> usize {
|
|
|
|
let src = src.as_ref();
|
2023-05-02 23:49:43 +00:00
|
|
|
let len = min(src.len(), dest.len() - 1);
|
|
|
|
dest[..len].copy_from_slice(&src[..len]);
|
|
|
|
dest[len] = b'\0';
|
|
|
|
len
|
|
|
|
}
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
pub fn copy_cstr<T: AsRef<CStr> + ?Sized>(dest: &mut [u8], src: &T) -> usize {
|
|
|
|
let src = src.as_ref().to_bytes_with_nul();
|
2023-06-09 09:00:37 +00:00
|
|
|
let len = min(src.len(), dest.len());
|
|
|
|
dest[..len].copy_from_slice(&src[..len]);
|
2023-06-15 11:00:32 +00:00
|
|
|
len - 1
|
2023-06-09 09:00:37 +00:00
|
|
|
}
|
|
|
|
|
2022-07-06 04:13:09 +00:00
|
|
|
struct BufFmtWriter<'a> {
|
|
|
|
buf: &'a mut [u8],
|
|
|
|
used: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> BufFmtWriter<'a> {
|
|
|
|
fn new(buf: &'a mut [u8]) -> Self {
|
|
|
|
BufFmtWriter { buf, used: 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> fmt::Write for BufFmtWriter<'a> {
|
|
|
|
// The buffer should always be null terminated
|
|
|
|
fn write_str(&mut self, s: &str) -> fmt::Result {
|
|
|
|
if self.used >= self.buf.len() - 1 {
|
|
|
|
// Silent truncate
|
|
|
|
return Ok(());
|
|
|
|
}
|
2023-06-09 09:00:37 +00:00
|
|
|
self.used += copy_str(&mut self.buf[self.used..], s);
|
2022-07-06 04:13:09 +00:00
|
|
|
// Silent truncate
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fmt_to_buf(buf: &mut [u8], args: Arguments) -> usize {
|
|
|
|
let mut w = BufFmtWriter::new(buf);
|
|
|
|
if let Ok(()) = fmt::write(&mut w, args) {
|
|
|
|
w.used
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
2022-08-09 05:53:37 +00:00
|
|
|
|
2022-09-15 08:17:05 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! bfmt {
|
|
|
|
($buf:expr, $($args:tt)*) => {
|
|
|
|
$crate::fmt_to_buf($buf, format_args!($($args)*));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! bfmt_cstr {
|
|
|
|
($buf:expr, $($args:tt)*) => {{
|
|
|
|
let len = $crate::fmt_to_buf($buf, format_args!($($args)*));
|
2023-06-15 11:00:32 +00:00
|
|
|
#[allow(unused_unsafe, clippy::unnecessary_mut_passed)]
|
2023-06-12 12:59:50 +00:00
|
|
|
unsafe {
|
|
|
|
$crate::Utf8CStr::from_bytes_unchecked($buf.get_unchecked(..(len + 1)))
|
|
|
|
}
|
2022-09-15 08:17:05 +00:00
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2023-05-25 08:03:04 +00:00
|
|
|
// The cstr! macro is copied from https://github.com/bytecodealliance/rustix/blob/main/src/cstr.rs
|
2022-08-09 05:53:37 +00:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! cstr {
|
2023-05-25 08:03:04 +00:00
|
|
|
($str:literal) => {{
|
|
|
|
assert!(
|
|
|
|
!$str.bytes().any(|b| b == b'\0'),
|
|
|
|
"cstr argument contains embedded NUL bytes",
|
|
|
|
);
|
2023-06-09 09:00:37 +00:00
|
|
|
#[allow(unused_unsafe)]
|
|
|
|
unsafe {
|
2023-06-12 12:59:50 +00:00
|
|
|
$crate::Utf8CStr::from_bytes_unchecked(concat!($str, "\0").as_bytes())
|
2023-06-09 09:00:37 +00:00
|
|
|
}
|
2022-08-09 05:53:37 +00:00
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2023-05-02 23:49:43 +00:00
|
|
|
#[macro_export]
|
2023-05-25 08:03:04 +00:00
|
|
|
macro_rules! raw_cstr {
|
2023-05-02 23:49:43 +00:00
|
|
|
($s:literal) => {{
|
|
|
|
cstr!($s).as_ptr()
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2023-05-26 06:45:38 +00:00
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub enum StrErr {
|
|
|
|
#[error(transparent)]
|
2023-06-12 08:07:43 +00:00
|
|
|
Utf8Error(#[from] Utf8Error),
|
|
|
|
#[error(transparent)]
|
|
|
|
CStrError(#[from] FromBytesWithNulError),
|
2023-05-26 06:45:38 +00:00
|
|
|
#[error("argument is null")]
|
2023-06-12 08:07:43 +00:00
|
|
|
NullPointerError,
|
|
|
|
}
|
|
|
|
|
|
|
|
// The better CStr: UTF-8 validated + null terminated buffer
|
|
|
|
pub struct Utf8CStr {
|
|
|
|
inner: [u8],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Utf8CStr {
|
|
|
|
pub fn from_cstr(cstr: &CStr) -> Result<&Utf8CStr, StrErr> {
|
|
|
|
// Validate the buffer during construction
|
|
|
|
str::from_utf8(cstr.to_bytes())?;
|
|
|
|
Ok(unsafe { Self::from_bytes_unchecked(cstr.to_bytes_with_nul()) })
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_bytes(buf: &[u8]) -> Result<&Utf8CStr, StrErr> {
|
|
|
|
Self::from_cstr(CStr::from_bytes_with_nul(buf)?)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_string(s: &mut String) -> &Utf8CStr {
|
|
|
|
if s.capacity() == s.len() {
|
|
|
|
s.reserve(1);
|
|
|
|
}
|
|
|
|
// SAFETY: the string is reserved to have enough capacity to fit in the null byte
|
|
|
|
// SAFETY: the null byte is explicitly added outside of the string's length
|
|
|
|
unsafe {
|
|
|
|
let buf = slice::from_raw_parts_mut(s.as_mut_ptr(), s.len() + 1);
|
|
|
|
*buf.get_unchecked_mut(s.len()) = b'\0';
|
|
|
|
Self::from_bytes_unchecked(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
pub unsafe fn from_bytes_unchecked(buf: &[u8]) -> &Utf8CStr {
|
|
|
|
&*(buf as *const [u8] as *const Utf8CStr)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn from_ptr<'a>(ptr: *const c_char) -> Result<&'a Utf8CStr, StrErr> {
|
|
|
|
if ptr.is_null() {
|
|
|
|
return Err(StrErr::NullPointerError);
|
|
|
|
}
|
|
|
|
Self::from_cstr(unsafe { CStr::from_ptr(ptr) })
|
|
|
|
}
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
pub fn as_bytes(&self) -> &[u8] {
|
|
|
|
// The length of the slice is at least 1 due to null termination check
|
|
|
|
unsafe { self.inner.get_unchecked(..self.inner.len() - 1) }
|
|
|
|
}
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
pub fn as_bytes_with_nul(&self) -> &[u8] {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
pub fn as_ptr(&self) -> *const c_char {
|
|
|
|
self.inner.as_ptr().cast()
|
|
|
|
}
|
2023-06-12 12:59:50 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn as_cstr(&self) -> &CStr {
|
|
|
|
self.as_ref()
|
|
|
|
}
|
2023-06-12 08:07:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for Utf8CStr {
|
|
|
|
type Target = str;
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
fn deref(&self) -> &str {
|
|
|
|
self.as_ref()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Utf8CStr {
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
|
|
|
Display::fmt(self.deref(), f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Debug for Utf8CStr {
|
2023-06-12 12:59:50 +00:00
|
|
|
#[inline]
|
2023-06-12 08:07:43 +00:00
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
|
|
|
Debug::fmt(self.deref(), f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<CStr> for Utf8CStr {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &CStr {
|
|
|
|
// SAFETY: Already validated as null terminated during construction
|
|
|
|
unsafe { CStr::from_bytes_with_nul_unchecked(&self.inner) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<str> for Utf8CStr {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &str {
|
|
|
|
// SAFETY: Already UTF-8 validated during construction
|
|
|
|
unsafe { str::from_utf8_unchecked(self.as_bytes()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<OsStr> for Utf8CStr {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &OsStr {
|
2023-06-12 12:59:50 +00:00
|
|
|
OsStr::new(self.deref())
|
2023-06-12 08:07:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<Path> for Utf8CStr {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &Path {
|
2023-06-12 12:59:50 +00:00
|
|
|
Path::new(self.deref())
|
2023-06-12 08:07:43 +00:00
|
|
|
}
|
2023-05-26 06:45:38 +00:00
|
|
|
}
|
|
|
|
|
2023-06-12 12:59:50 +00:00
|
|
|
impl PartialEq<CStr> for Utf8CStr {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &CStr) -> bool {
|
|
|
|
self.as_cstr() == other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq<str> for Utf8CStr {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &str) -> bool {
|
|
|
|
self.deref() == other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq<Utf8CStr> for CStr {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &Utf8CStr) -> bool {
|
|
|
|
self == other.as_cstr()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq<Utf8CStr> for str {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &Utf8CStr) -> bool {
|
|
|
|
self == other.deref()
|
2023-05-26 06:45:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-15 08:17:05 +00:00
|
|
|
pub fn ptr_to_str<'a, T>(ptr: *const T) -> &'a str {
|
2023-01-19 19:45:16 +00:00
|
|
|
if ptr.is_null() {
|
|
|
|
"(null)"
|
|
|
|
} else {
|
|
|
|
unsafe { CStr::from_ptr(ptr.cast()) }.to_str().unwrap_or("")
|
|
|
|
}
|
2022-08-09 05:53:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn errno() -> &'static mut i32 {
|
2022-08-15 18:53:51 +00:00
|
|
|
unsafe { &mut *libc::__errno() }
|
2022-08-09 05:53:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn error_str() -> &'static str {
|
|
|
|
unsafe { ptr_to_str(libc::strerror(*errno())) }
|
|
|
|
}
|
2022-09-15 23:56:22 +00:00
|
|
|
|
|
|
|
// When len is 0, don't care whether buf is null or not
|
|
|
|
#[inline]
|
|
|
|
pub unsafe fn slice_from_ptr<'a, T>(buf: *const T, len: usize) -> &'a [T] {
|
|
|
|
if len == 0 {
|
|
|
|
&[]
|
|
|
|
} else {
|
|
|
|
slice::from_raw_parts(buf, len)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// When len is 0, don't care whether buf is null or not
|
|
|
|
#[inline]
|
|
|
|
pub unsafe fn slice_from_ptr_mut<'a, T>(buf: *mut T, len: usize) -> &'a mut [T] {
|
|
|
|
if len == 0 {
|
|
|
|
&mut []
|
|
|
|
} else {
|
|
|
|
slice::from_raw_parts_mut(buf, len)
|
|
|
|
}
|
|
|
|
}
|
2023-05-10 01:54:38 +00:00
|
|
|
|
2023-06-14 14:24:42 +00:00
|
|
|
pub trait FlatData
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
fn as_raw_bytes(&self) -> &[u8] {
|
2023-05-10 01:54:38 +00:00
|
|
|
unsafe {
|
|
|
|
let self_ptr = self as *const Self as *const u8;
|
|
|
|
slice::from_raw_parts(self_ptr, std::mem::size_of::<Self>())
|
|
|
|
}
|
|
|
|
}
|
2023-06-14 14:24:42 +00:00
|
|
|
fn as_raw_bytes_mut(&mut self) -> &mut [u8] {
|
2023-05-10 01:54:38 +00:00
|
|
|
unsafe {
|
|
|
|
let self_ptr = self as *mut Self as *mut u8;
|
|
|
|
slice::from_raw_parts_mut(self_ptr, std::mem::size_of::<Self>())
|
|
|
|
}
|
|
|
|
}
|
2023-06-14 14:24:42 +00:00
|
|
|
|
|
|
|
fn bytes_size(&self) -> usize {
|
|
|
|
std::mem::size_of::<Self>()
|
|
|
|
}
|
2023-05-10 01:54:38 +00:00
|
|
|
}
|
2023-06-12 08:07:43 +00:00
|
|
|
|
2023-06-14 14:24:42 +00:00
|
|
|
impl<T: Copy> FlatData for T {}
|
|
|
|
|
2023-06-12 08:07:43 +00:00
|
|
|
// Check libc return value and map errors to Result
|
|
|
|
pub trait LibcReturn: Copy {
|
|
|
|
fn is_error(&self) -> bool;
|
|
|
|
fn check_os_err(self) -> io::Result<Self> {
|
|
|
|
if self.is_error() {
|
|
|
|
return Err(io::Error::last_os_error());
|
|
|
|
}
|
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LibcReturn for i32 {
|
|
|
|
fn is_error(&self) -> bool {
|
|
|
|
*self < 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LibcReturn for isize {
|
|
|
|
fn is_error(&self) -> bool {
|
|
|
|
*self < 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> LibcReturn for *const T {
|
|
|
|
fn is_error(&self) -> bool {
|
|
|
|
self.is_null()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> LibcReturn for *mut T {
|
|
|
|
fn is_error(&self) -> bool {
|
|
|
|
self.is_null()
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 01:17:26 +00:00
|
|
|
|
|
|
|
pub trait MutBytesExt {
|
|
|
|
fn patch(&mut self, from: &[u8], to: &[u8]) -> Vec<usize>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: AsMut<[u8]>> MutBytesExt for T {
|
|
|
|
fn patch(&mut self, from: &[u8], to: &[u8]) -> Vec<usize> {
|
|
|
|
ffi::mut_u8_patch(self.as_mut(), from, to)
|
|
|
|
}
|
|
|
|
}
|