pub struct CStr { /* private fields */ }
A dynamically-sized view of a C string.
The type &CStr represents a reference to a borrowed nul-terminated array of bytes. It can be constructed safely from a &[u8] slice, or unsafely from a raw *const c_char. It can be expressed as a literal in the form c"Hello world".
The &CStr can then be converted to a Rust &str by performing UTF-8 validation, or into an owned CString.
&CStr is to CString as &str is to String: the former in each pair are borrowing references; the latter are owned strings.
Note that this structure does not have a guaranteed layout (the repr(transparent) notwithstanding) and should not be placed in the signatures of FFI functions. Instead, safe wrappers of FFI functions may leverage CStr::as_ptr and the unsafe CStr::from_ptr constructor to provide a safe interface to other consumers.
Inspecting a foreign C string:
use std::ffi::CStr;
use std::os::raw::c_char;
extern "C" { fn my_string() -> *const c_char; }
unsafe {
let slice = CStr::from_ptr(my_string());
println!("string buffer size without nul terminator: {}", slice.to_bytes().len());
}Passing a Rust-originating C string:
use std::ffi::CStr;
use std::os::raw::c_char;
fn work(data: &CStr) {
unsafe extern "C" fn work_with(s: *const c_char) {}
unsafe { work_with(data.as_ptr()) }
}
let s = c"Hello world!";
work(&s);Converting a foreign C string into a Rust String:
use std::ffi::CStr;
use std::os::raw::c_char;
extern "C" { fn my_string() -> *const c_char; }
fn my_string_safe() -> String {
let cstr = unsafe { CStr::from_ptr(my_string()) };
// Get a copy-on-write Cow<'_, str>, then extract the
// allocated String (or allocate a fresh one if needed).
cstr.to_string_lossy().into_owned()
}
println!("string: {}", my_string_safe());impl CStr
pub const unsafe fn from_ptr<'a>(ptr: *const i8) -> &'a CStr
Wraps a raw C string with a safe C string wrapper.
This function will wrap the provided ptr with a CStr wrapper, which allows inspection and interoperation of non-owned C strings. The total size of the terminated buffer must be smaller than isize::MAX bytes in memory (a restriction from slice::from_raw_parts).
The memory pointed to by ptr must contain a valid nul terminator at the end of the string.
ptr must be valid for reads of bytes up to and including the nul terminator. This means in particular:
CStr must be contained within a single allocation!ptr must be non-null even for a zero-length cstr.The memory referenced by the returned CStr must not be mutated for the duration of lifetime 'a.
The nul terminator must be within isize::MAX from ptr
Note: This operation is intended to be a 0-cost cast but it is currently implemented with an up-front calculation of the length of the string. This is not guaranteed to always be the case.
The lifetime for the returned slice is inferred from its usage. To prevent accidental misuse, it’s suggested to tie the lifetime to whichever source lifetime is safe in the context, such as by providing a helper function taking the lifetime of a host value for the slice, or by explicit annotation.
use std::ffi::{c_char, CStr};
fn my_string() -> *const c_char {
c"hello".as_ptr()
}
unsafe {
let slice = CStr::from_ptr(my_string());
assert_eq!(slice.to_str().unwrap(), "hello");
}use std::ffi::{c_char, CStr};
const HELLO_PTR: *const c_char = {
const BYTES: &[u8] = b"Hello, world!\0";
BYTES.as_ptr().cast()
};
const HELLO: &CStr = unsafe { CStr::from_ptr(HELLO_PTR) };
assert_eq!(c"Hello, world!", HELLO);pub const fn from_bytes_until_nul(
bytes: &[u8],
) -> Result<&CStr, FromBytesUntilNulError>Creates a C string wrapper from a byte slice with any number of nuls.
This method will create a CStr from any byte slice that contains at least one nul byte. Unlike with CStr::from_bytes_with_nul, the caller does not need to know where the nul byte is located.
If the first byte is a nul character, this method will return an empty CStr. If multiple nul characters are present, the CStr will end at the first one.
If the slice only has a single nul byte at the end, this method is equivalent to CStr::from_bytes_with_nul.
use std::ffi::CStr;
let mut buffer = [0u8; 16];
unsafe {
// Here we might call an unsafe C function that writes a string
// into the buffer.
let buf_ptr = buffer.as_mut_ptr();
buf_ptr.write_bytes(b'A', 8);
}
// Attempt to extract a C nul-terminated string from the buffer.
let c_str = CStr::from_bytes_until_nul(&buffer[..]).unwrap();
assert_eq!(c_str.to_str().unwrap(), "AAAAAAAA");pub const fn from_bytes_with_nul(
bytes: &[u8],
) -> Result<&CStr, FromBytesWithNulError>Creates a C string wrapper from a byte slice with exactly one nul terminator.
This function will cast the provided bytes to a CStr wrapper after ensuring that the byte slice is nul-terminated and does not contain any interior nul bytes.
If the nul byte may not be at the end, CStr::from_bytes_until_nul can be used instead.
use std::ffi::CStr; let cstr = CStr::from_bytes_with_nul(b"hello\0"); assert_eq!(cstr, Ok(c"hello"));
Creating a CStr without a trailing nul terminator is an error:
use std::ffi::{CStr, FromBytesWithNulError};
let cstr = CStr::from_bytes_with_nul(b"hello");
assert_eq!(cstr, Err(FromBytesWithNulError::NotNulTerminated));Creating a CStr with an interior nul byte is an error:
use std::ffi::{CStr, FromBytesWithNulError};
let cstr = CStr::from_bytes_with_nul(b"he\0llo\0");
assert_eq!(cstr, Err(FromBytesWithNulError::InteriorNul { position: 2 }));pub const unsafe fn from_bytes_with_nul_unchecked(bytes: &[u8]) -> &CStr
Unsafely creates a C string wrapper from a byte slice.
This function will cast the provided bytes to a CStr wrapper without performing any sanity checks.
The provided slice must be nul-terminated and not contain any interior nul bytes.
use std::ffi::CStr;
let bytes = b"Hello world!\0";
let cstr = unsafe { CStr::from_bytes_with_nul_unchecked(bytes) };
assert_eq!(cstr.to_bytes_with_nul(), bytes);pub const fn as_ptr(&self) -> *const i8
Returns the inner pointer to this C string.
The returned pointer will be valid for as long as self is, and points to a contiguous region of memory terminated with a 0 byte to represent the end of the string.
The type of the returned pointer is *const c_char, and whether it’s an alias for *const i8 or *const u8 is platform-specific.
WARNING
The returned pointer is read-only; writing to it (including passing it to C code that writes to it) causes undefined behavior.
It is your responsibility to make sure that the underlying memory is not freed too early. For example, the following code will cause undefined behavior when ptr is used inside the unsafe block:
use std::ffi::{CStr, CString};
// 💀 The meaning of this entire program is undefined,
// 💀 and nothing about its behavior is guaranteed,
// 💀 not even that its behavior resembles the code as written,
// 💀 just because it contains a single instance of undefined behavior!
// 🚨 creates a dangling pointer to a temporary `CString`
// 🚨 that is deallocated at the end of the statement
let ptr = CString::new("Hi!".to_uppercase()).unwrap().as_ptr();
// without undefined behavior, you would expect that `ptr` equals:
dbg!(CStr::from_bytes_with_nul(b"HI!\0").unwrap());
// 🙏 Possibly the program behaved as expected so far,
// 🙏 and this just shows `ptr` is now garbage..., but
// 💀 this violates `CStr::from_ptr`'s safety contract
// 💀 leading to a dereference of a dangling pointer,
// 💀 which is immediate undefined behavior.
// 💀 *BOOM*, you're dead, your entire program has no meaning.
dbg!(unsafe { CStr::from_ptr(ptr) });This happens because, the pointer returned by as_ptr does not carry any lifetime information, and the CString is deallocated immediately after the expression that it is part of has been evaluated. To fix the problem, bind the CString to a local variable:
use std::ffi::{CStr, CString};
let c_str = CString::new("Hi!".to_uppercase()).unwrap();
let ptr = c_str.as_ptr();
assert_eq!(unsafe { CStr::from_ptr(ptr) }, c"HI!");pub const fn count_bytes(&self) -> usize
Returns the length of self. Like C’s strlen, this does not include the nul terminator.
Note: This method is currently implemented as a constant-time cast, but it is planned to alter its definition in the future to perform the length calculation whenever this method is called.
assert_eq!(c"foo".count_bytes(), 3); assert_eq!(c"".count_bytes(), 0);
pub const fn is_empty(&self) -> bool
Returns true if self.to_bytes() has a length of 0.
assert!(!c"foo".is_empty()); assert!(c"".is_empty());
pub const fn to_bytes(&self) -> &[u8] ⓘ
Converts this C string to a byte slice.
The returned slice will not contain the trailing nul terminator that this C string has.
Note: This method is currently implemented as a constant-time cast, but it is planned to alter its definition in the future to perform the length calculation whenever this method is called.
assert_eq!(c"foo".to_bytes(), b"foo");
pub const fn to_bytes_with_nul(&self) -> &[u8] ⓘ
Converts this C string to a byte slice containing the trailing 0 byte.
This function is the equivalent of CStr::to_bytes except that it will retain the trailing nul terminator instead of chopping it off.
Note: This method is currently implemented as a 0-cost cast, but it is planned to alter its definition in the future to perform the length calculation whenever this method is called.
assert_eq!(c"foo".to_bytes_with_nul(), b"foo\0");
pub fn bytes(&self) -> Bytes<'_> ⓘ
cstr_bytes #112115)
Iterates over the bytes in this C string.
The returned iterator will not contain the trailing nul terminator that this C string has.
#![feature(cstr_bytes)] assert!(c"foo".bytes().eq(*b"foo"));
pub const fn to_str(&self) -> Result<&str, Utf8Error>
Yields a &str slice if the CStr contains valid UTF-8.
If the contents of the CStr are valid UTF-8 data, this function will return the corresponding &str slice. Otherwise, it will return an error with details of where UTF-8 validation failed.
assert_eq!(c"foo".to_str(), Ok("foo"));pub fn display(&self) -> impl Display
cstr_display #139984)
Returns an object that implements Display for safely printing a CStr that may contain non-Unicode data.
Behaves as if self were first lossily converted to a str, with invalid UTF-8 presented as the Unicode replacement character: �.
#![feature(cstr_display)]
let cstr = c"Hello, world!";
println!("{}", cstr.display());impl CStr
pub fn to_string_lossy(&self) -> Cow<'_, str>
Converts a CStr into a Cow<str>.
If the contents of the CStr are valid UTF-8 data, this function will return a Cow::Borrowed(&str) with the corresponding &str slice. Otherwise, it will replace any invalid UTF-8 sequences with U+FFFD REPLACEMENT CHARACTER and return a Cow::Owned(String) with the result.
Calling to_string_lossy on a CStr containing valid UTF-8. The leading c on the string literal denotes a CStr.
use std::borrow::Cow;
assert_eq!(c"Hello World".to_string_lossy(), Cow::Borrowed("Hello World"));Calling to_string_lossy on a CStr containing invalid UTF-8:
use std::borrow::Cow;
assert_eq!(
c"Hello \xF0\x90\x80World".to_string_lossy(),
Cow::Owned(String::from("Hello �World")) as Cow<'_, str>
);pub fn into_c_string(self: Box<CStr>) -> CString
impl AsRef<CStr> for CStr
fn as_ref(&self) -> &CStr
impl AsRef<CStr> for CString
fn as_ref(&self) -> &CStr
impl Borrow<CStr> for CString
impl Clone for Box<CStr>
fn clone(&self) -> Box<CStr>
fn clone_from(&mut self, source: &Self)
source. Read more
impl CloneToUninit for CStr
unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit #126799)
impl Debug for CStrShows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl Default for &CStr
impl Default for Box<CStr>
impl From<&CStr> for Arc<CStr>Available on target_has_atomic=ptr only.
fn from(s: &CStr) -> Arc<CStr>
Converts a &CStr into a Arc<CStr>, by copying the contents into a newly allocated Arc.
impl From<&CStr> for Box<CStr>
fn from(s: &CStr) -> Box<CStr>
Converts a &CStr into a Box<CStr>, by copying the contents into a newly allocated Box.
impl From<&CStr> for CString
fn from(s: &CStr) -> CString
impl<'a> From<&'a CStr> for Cow<'a, CStr>
fn from(s: &'a CStr) -> Cow<'a, CStr>
impl From<&CStr> for Rc<CStr>
fn from(s: &CStr) -> Rc<CStr>
Converts a &CStr into a Rc<CStr>, by copying the contents into a newly allocated Rc.
impl From<&mut CStr> for Arc<CStr>Available on target_has_atomic=ptr only.
fn from(s: &mut CStr) -> Arc<CStr>
Converts a &mut CStr into a Arc<CStr>, by copying the contents into a newly allocated Arc.
impl From<&mut CStr> for Box<CStr>
fn from(s: &mut CStr) -> Box<CStr>
Converts a &mut CStr into a Box<CStr>, by copying the contents into a newly allocated Box.
impl From<&mut CStr> for Rc<CStr>
fn from(s: &mut CStr) -> Rc<CStr>
Converts a &mut CStr into a Rc<CStr>, by copying the contents into a newly allocated Rc.
impl From<CString> for Box<CStr>
fn from(s: CString) -> Box<CStr>
impl From<Cow<'_, CStr>> for Box<CStr>
fn from(cow: Cow<'_, CStr>) -> Box<CStr>
Converts a Cow<'a, CStr> into a Box<CStr>, by copying the contents if they are borrowed.
impl Hash for CStr
fn hash<__H>(&self, state: &mut __H)where
__H: Hasher,impl Index<RangeFrom<usize>> for CStr
type Output = CStr
fn index(&self, index: RangeFrom<usize>) -> &CStr
container[index]) operation. Read more
impl Ord for CStr
fn cmp(&self, other: &CStr) -> Ordering
impl PartialEq<&CStr> for CStr
fn eq(&self, other: &&CStr) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &&CStr) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq<&CStr> for CString
fn eq(&self, other: &&CStr) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &&CStr) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq<&CStr> for Cow<'_, CStr>
fn eq(&self, other: &&CStr) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &&CStr) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq<CStr> for CString
fn eq(&self, other: &CStr) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &CStr) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq<CStr> for Cow<'_, CStr>
fn eq(&self, other: &CStr) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &CStr) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq<CString> for CStr
fn eq(&self, other: &CString) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &CString) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq<Cow<'_, CStr>> for CStr
fn eq(&self, other: &Cow<'_, CStr>) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &Cow<'_, CStr>) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialEq for CStr
fn eq(&self, other: &CStr) -> bool
self and other values to be equal, and is used by ==.fn ne(&self, other: &Rhs) -> bool
!=. The default implementation is almost always sufficient, and should not be overridden without very good reason.impl PartialOrd for CStr
fn partial_cmp(&self, other: &CStr) -> Option<Ordering>
fn lt(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
fn gt(&self, other: &Rhs) -> bool
fn ge(&self, other: &Rhs) -> bool
impl ToOwned for CStr
type Owned = CString
fn to_owned(&self) -> CString
fn clone_into(&self, target: &mut CString)
impl Eq for CStr
impl StructuralPartialEq for CStr
impl Freeze for CStr
impl RefUnwindSafe for CStr
impl Send for CStr
impl !Sized for CStr
impl Sync for CStr
impl Unpin for CStr
impl UnwindSafe for CStr
impl<T> Any for Twhere
T: 'static + ?Sized,impl<T> Borrow<T> for Twhere
T: ?Sized,impl<T> BorrowMut<T> for Twhere
T: ?Sized,
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ffi/c_str/struct.CStr.html